Interesting. I almost guessed that variant, too, but figured it would be a bit too wild for a country to auto-adopt most laws that another country implements. 🙃
Interesting. I almost guessed that variant, too, but figured it would be a bit too wild for a country to auto-adopt most laws that another country implements. 🙃
I stopped using Reddit a few years before the whole stupidity, because the culture was fucking with my head.
Then I did the Mastodons for two years or so, with Lemmy eventually entering the mix. And then as Lemmy got more users and content, it took over as my preferred platform.
I’m more surprised that it even got offered there. There’s some legal hurdles to clear for selling in a new country, and I guess, one of their distribution platforms decided it was worth it.
I guess, the Vatican might not have a ton of laws, though…
Codeberg also does have Pages.
Still uses Git, but yeah.
When I was around 3 years old, me and my not much older brother decided to walk across town, where our mum was visiting relatives.
I was missing mummy, which was technically not an emergency, for which we were supposed to phone those relatives.
We had been raised very well, you see. 🙃
Yeah, the formulation is a bit off here. With opt-out, you have no way to measure consent, because you can’t discern between people who actually consent and those who just haven’t opted out, for lack of knowledge or other reasons.
These societies have simply weighed up the two options and decided that saving lives is more important than leaving personal freedom intact at all costs.
What I don’t like about the genre, is that I’m bad at it. 🙃
More seriously, I do find it kind of frustrating at times. Restarting ten times in a roguelike, no problem, because it’s always a new challenge.
But if I miss the same jump ten times, or have to retry the same platforming passage ten times, you’ll see me getting impatient, which means I’ll fail the next ten attempts, too…
Codeberg recently held a translation event where projects could sign up, if they wanted help. You can still look at their resources here, or I guess, you can just pick out a project and start translating over here: https://translate.codeberg.org/
Depending on your file manager, you may be able to hold Shift while triggering the delete to get a hard delete.
Shift+Del is pretty much standardized as the keyboard shortcut. And here on KDE, I can hold Shift while clicking the “Move to Trash” menu entry, too (well, it actually replaces the menu entry with one for permanent deletion, but that’s effectively the same).
I, unfortunately, have to use GitHub at $DAYJOB and this is me. I navigate most of the webpage via the URL bar now.
Basically, let’s say I’m working on a repo github.com/tomato/sauce/
and want to navigate to the Releases page.
Via the webpage:
github.com
into the URL bar.tomato/sauce/
in the list of recent repos, even though it’s the only repo I work on.tomato/
org.tomato/
org.sauce/
repo in the list.Via the Firefox URL bar:
gi→t→s→r→
.I admit, it’s hard to compete with the latter, but I wouldn’t know how to navigate that way, if the former wasn’t so terrible.
I mean, when you hold down the Alt
key, it’s convention that GUI toolkits underline a letter in the text of UI elements, and when you then press Alt
+ that letter, it’ll activate that UI element.
That way, you can navigate most apps in a keyboard-driven fashion, although it is certainly not the most comfortable to use…
Not a fan of it using Electron and a proprietary license.
But I also actually like this workflow. Being able to note things in my regular text editor with the keybindings I know, is quite important to me.
Well, and an even more personal preference, but my way of using a desktop OS involves a lot of workspaces, so the global shortcut to summon a new editor window on the current workspace actually gets a lot of use.
You can probably just do sleep 5 && grim
as the program to run.
It depends on your desktop environment or window manager, how you’d bind a command to a keybind.
A few years ago, I got put into the same room as an extremely Catholic colleague and the kind of jackass who’d start discussions about everything.
And yeah, my only luck was that I was a ‘better’ Christian than him in every discipline. Well, you know, apart from being a heretic.
I’ve got various text files in Markdown format.
I also use a small CLI program to loosely manage them. Basically, it just creates a new file in a predetermined folder and opens it in my text editor, which I’ve bound to a global shortcut, so it’s just one keypress for me to start jotting something down.
Well, and then it also allows searching through all note files and things like that.
I hear, it actually significantly increases the chance of the miracle occurring when you pass the array into multiple threads. It’s a very mysterious algorithm.
Might be a song from Kevin MacLeod? His songs get used a lot on the YouTubs.
https://incompetech.com/music/royalty-free/music.html
When I just searched “Kevin MacLeod jazz”, the first result was “Acid Trumpet”, which seems like it could fit your description.
You don’t want to use exceptions in normal control flow, because they’re extremely slow. Every time you
throw
an exception, it has to collect a stacktrace, which is hundreds, if not thousands, of calculations, compared to a handful of calculations for returning a boolean or an enum variant.