Ephera

joined 5 years ago
MODERATOR OF
[–] Ephera@lemmy.ml 2 points 3 hours ago

My opinion is kind of invalid, since this is pretty much the only game I play that has items, but well, the Dungeon Crawl Stone Soup devs decided to add guns, uh sorry, hand cannons to the game, a few versions ago.

It's a game with swords and magic, and they did make the guns rare to find, but when you do find one, it's always a blast (pun intended).

The guns are really powerful, but also noisy which means they attract enemies. And they spit out clouds of smoke, which can obstruct your vision when you shoot too much, allowing enemies to draw close. So, it's just a really fun risk-reward loop.

[–] Ephera@lemmy.ml 5 points 6 hours ago

Yeah, I think that one's just FUD, because fluoride is added to the water by the US government.

https://en.wikipedia.org/wiki/Water_fluoridation_in_the_United_States

[–] Ephera@lemmy.ml 4 points 11 hours ago

Or a bus seat...

[–] Ephera@lemmy.ml 2 points 12 hours ago

To be honest, I think you're in the majority. Non-native speakers will know it almost exclusively as the image manipulation program.

[–] Ephera@lemmy.ml 6 points 13 hours ago

Yeah, although it goes both ways. A piece of software with tons of effort put into branding gets eyed extra closely. Chances are its commercial software, which typically means it's crappy.

[–] Ephera@lemmy.ml 3 points 13 hours ago

I definitely have the problem that if I try to eat until I'm 100% full, that it doesn't stop. Feels like my stomach is a bottomless pit. Meanwhile, my coworker eats like half a portion and then can't fit another bite.

[–] Ephera@lemmy.ml 19 points 19 hours ago

I enjoy the faces on the laptop. It's like a very modern art piece showing the horrors of remote work.

[–] Ephera@lemmy.ml 4 points 19 hours ago

recreational coding

Well, good news, it actually is fun to dick around in the Nix configuration and see those changes manifest on your system.

[–] Ephera@lemmy.ml 3 points 19 hours ago

The purpose is similar, i.e. configuring a system, but I'd say Ansible works best, if you need to make a few small changes from an existing distro, whereas NixOS rather takes the approach of controlling everything about the operating system.

And in many ways, controlling everything is actually simpler.

[–] Ephera@lemmy.ml 2 points 19 hours ago

As the other person said, the bit about Arch is just the preamble.
But you can use Nix Home-Manager on Arch (or other distros), if you're so inclined, which will give you that reproducibility for the stuff in your home-directory.

In some ways, this is like backing up and restoring your dotfiles, but it allows you to template those dotfiles and depending on the program, it offers simple ways to populate the dotfile templates. For example, KDE applications don't generally offer very legible dotfiles and so configuring e.g. a panel via dotfiles is kind of a pain. To help with this, there's Nix Plasma-Manager.

[–] Ephera@lemmy.ml 4 points 1 day ago* (last edited 1 day ago)

Here in Germany, I mainly know this setup with two knobs you can turn by hand:

[–] Ephera@lemmy.ml 5 points 1 day ago

I mean, this is conflating a fifth of the humans on Earth, so you should consider this borderline misinformation, but I believe, East Asian cultures tend to take things rather literal. So, sarcasm is often not understood, and I guess comedians overplaying stories or using satire might not land as it tends to in Western cultures. I assume, it's more situational humor and absurdism.

But yeah, here in Europe, we have stereotypical German humor, stereotypical British humor etc., so you should assume that different regions in East Asia or China will have different humor, too. Maybe there's no comedians where that girl is from, but in other regions there are...

 
 
174
submitted 1 week ago* (last edited 1 week ago) by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
 

Increasingly so, the more experienced I get...

129
Underappreciated top (friendo.monster)
 

Always thought top was one of those programs frozen in time since the 70s, but apparently, it has a feature set comparable to htop and the like. The default configuration just doesn't show much of it...

8
Reeperbahn (de.wikipedia.org)
 

Fand insbesondere spannend, dass der Name daher kommt, dass hier ursprünglich Seile gemacht wurden, wofür man eine möglichst lange, gerade Strecke brauchte.

 
 
-15
submitted 1 month ago* (last edited 1 month ago) by Ephera@lemmy.ml to c/dadjokes@lemmy.world
 

Spoilertrans-parent

 

Found this article interesting. Some (technological) highlights for me:

She initially wrote simple Python scripts to help with chain-of-custody problems. Those scripts worked on her machine, but she had trouble delivering the software to the people who actually need it.

Yeah, Python, Java etc. are quite portable in theory, but we also always ship the runtime along with it at $DAYJOB, because we don't want to deal with different runtime versions and users failing to install them properly. And since the runtime is compiled for specific platforms, we effectively have non-portable artifacts anyways.

Deuson's first attempt at distributing her software was to bundle it using Kubernetes. That sort of worked, but it turned out to be hard to get it installed in police departments. Opening ports in the firewall is also often prohibitively hard. "Getting software into these environments is really difficult."

Eventually, she decided that the only way to make this work would be to write a single, standalone executable that does everything locally. It would need to be able to run on ancient desktop computers, in a variety of environments, without external dependencies. That's why she ultimately chose Rust to write FolSum.

I feel like our industry poured tons of effort into making things deployable via Kubernetes, but there's still an absurd amount of niches, where this just does not make sense. Always interesting to hear about yet another such niche...

One thing that users really liked about the Rust version of the application was that it starts quickly, she said. Lots of commercial software is big and bulky, and takes a while to start up, leaving users staring at splash screens. FolSum starts up almost as soon as the user releases the mouse button.

Yep, I never quite buy it when this is deemed unimportant in commercial software development. The chance of your software running all the time is really low. And if it's not running all the time, I need to start it before I can use it. If I need to wait a minute for that, that takes me out of my workflow and I'll kind of hate your software for it.

It turns out that non-technical users like the approach that she has called "GUI as docs", where the application puts the explanation of what it does right next to the individual buttons that do those things. Several users have told her that they wished other software was written like this, to her bafflement. For-profit software is often a forest of features, which makes it hard to find the specific thing one needs, especially if the tool is only rarely used, she said.

I've been looking to take that kind of approach for our GUI at $DAYJOB, too. Our software is not either something that users use all the time. They might not look at it for months at a time. It's ridiculous to assume that they will remember all the concepts, just as ridiculous as it is to expect them to look at a completely separate manual every time. So, just dotting help texts around the place seems like a good idea.

view more: next ›