klangcola

joined 3 years ago
[–] klangcola@reddthat.com 26 points 3 days ago

Also I feel confident Prusa will not try a rug-pull enshitification move in 6 months time after buying their printer, unlike certain other manufacturers (Bamboo)

[–] klangcola@reddthat.com 2 points 4 days ago (1 children)

Yeah that was my assumption. But I hadn't considered WOL being broadcast, so now I'm not so sure. I would assume it's broadcast on both IP and Ethernet layer. It's time to do some wiresharking :)

[–] klangcola@reddthat.com 14 points 4 days ago (2 children)

Not exactly a new book, but All Quiet on the Western Front was a fantastic read. It's a grotesquely frank depiction of the unfortunate "Have Not"s fighting a meaningless war for the "Have"s in society, set in the german trenches of WW1.

[–] klangcola@reddthat.com 0 points 5 days ago (4 children)

Maybe something else going on then, but ive never gotten WOL to work after a blackout when there's two switches between sender and receiver. After powering up the receiver once, WOL works again

[–] klangcola@reddthat.com 2 points 5 days ago* (last edited 5 days ago) (7 children)

If you're already using node-red, the Wake On Lan node works well, and with node-red it's easy to trigger the magic packet based on whatever trigger condition you want.

The only limitation I know is WOL doesn't work after a power outage, because the switch and RPI doesn't know where to find the target machine

Thanks for the tips on reusable enterprise cards btw

[–] klangcola@reddthat.com 13 points 1 week ago (1 children)

I'm surprised they chose MIT licence rather than AGPL or GPL

[–] klangcola@reddthat.com 3 points 1 week ago (1 children)

In math class when learning statistics we learned "the law of large numbers" , how with enough samples the average approaches the probability. Then applied it to two real world examples, gambling (lottery and roulette) and insurance. The math was the same, and the house always wins because the house deals in large numbers.

The takeaway is that gambling is stupid because the house always wins.

But also, statistics do not apply to individuals, so insurance is not stupid. At least not for life-altering expenses, like home, medical and traffic.

[–] klangcola@reddthat.com 3 points 2 weeks ago

Zim Desktop Wiki is absolutely excellent

[–] klangcola@reddthat.com 1 points 2 weeks ago

Default look n feel does feel a couple of decades outdated. But it can easily be customized to look look much more modern and comfortable.

Youtube tutorials on how to get started often begins with customizing the user interface before even starting the modeling tutorial. I recommend Deltahedra and Mangojelly on YouTube

[–] klangcola@reddthat.com 12 points 2 weeks ago

FreeCAD, and I recommend you give it a second try, while watching the excellent tutorials from Deltahedra and Mangojelly on YouTube. Lots of the jank can be avoided if you only know how, so the tutorials are extremely useful.

FreeCAD has gotten exponentially better with each release the last few years, and both active developers and funding/donations from users have increased exponentially. The future is bright. And unlike the "free" commercial programs, FreeCAD is immune to future rug-pulls and enshitification.

You might also want to try https://dune3d.org/ , a relatively new 3D CAD software

[–] klangcola@reddthat.com 3 points 1 month ago

Yay, v15 is LTS

[–] klangcola@reddthat.com 4 points 1 month ago

I'm confused how they don't already? More than 3500kg gross weight capacity is no longer a class B "car" but a class C/C1 "truck" and require a C1 license

 

On windows, Notepad++ compare plugin let's you compare unsaved files. So to compare two texts copied from elsewhere, just make two new tabs and paste the texts. Compare plugin will happily compare line by line.

On Linux I havent found something similar. The closes is Kate, but you still have to save tmp1.txt and tmp2.txt , and remove the clutter when finished.

Does anybody know a compare app that just lets you paste two text blocks without saving files first?

 

What are the pros and cons of using Named vs Anonymous volumes in Docker for self-hosting?

I've always used "regular" Anonymous volumes, and that's what is usually in official docker-compose.yml examples for various apps:

volumes:
  - ./myAppDataFolder:/data

where myAppDataFolder/ is in the same folder as the docker-compose.yml file.

As a self-hoster I find this neat and tidy; my docker folder has a subfolder for each app. Each app folder has a docker-compose.yml, .env and one or more data-folders. I version-control the compose files, and back up the data folders.

However some apps have docker-compose.yml examples using named volumes:

services:
  mealie:
    volumes:
      - mealie-data:/app/data/
volumes:
  mealie-data:

I had to google documentation https://docs.docker.com/engine/storage/volumes/ to find that the volume is actually called mealie_mealie-data

$ docker volume ls
DRIVER    VOLUME NAME
...
local     mealie_mealie-data

and it is stored in /var/lib/docker/volumes/mealie_mealie-data/_data

$ docker volume inspect mealie_mealie-data
...
  "Mountpoint": "/var/lib/docker/volumes/mealie_mealie-data/_data",
...

I tried googling the why of named volumes, but most answers were talking about things that sounded very enterprise'y, docker swarms, and how all state information should be stored in "the database" so you shouldnt need to ever touch the actual files backing the volume for any container.

So to summarize: Named volumes, why? Or why not? What are your preferences? Given the context that we are self-hosting, and not running huge enterprise clusters.

 

The joys of discovering DRG for the first time and gleefully learning all the mechanics. Extra props for the careful and methodical test to verify if the game has Friendly Fire

 

Some instances disable downvoting. Is this intended to be for communities on that instance or users on that instance, or both?

I noticed while reading Memes@lemmy.ml ( https://reddthat.com/post/2053 ) that some commenters were talking about being downvoted, but I have no downvote button. Because downvoting is disabled on my instance?

How does it work the opposite way? Are users from lemmy.ml allowed to downvote on posts for example beehaw (who also has disabled downvoting)

 

Many instances say to keep language settings as "undetermined" otherwise you won't see most posts Example: https://lemmy.blahaj.zone/post/59161 Example: https://reddthat.com/settings

Yet when I try to post a comment it will fail with language_not_allowed because initially there is no language selected. So I need to click on the "Select language" drop-down and choose English (the only option)

Actually in the Lemmy web interface (at least on my instance reddthat.com) the Post button will spin endlessly with no indication of what's wrong. Using the Jerboa Android app there's is the very brief error message language_not_allowed, and the comment disappears so I have to type it out again! On the Jerboa app there's also no option to select the language for the comment, so I can't use it to comment at all.

I experienced this language_not_allowed error while commentating on gaming@beehaw.org and lemmy_support@lemmy.ml , both English language communities

So how is this language setting supposed to work?

Is the language selected for posting comments the same setting as the profile setting, which the links recommend to keep as "undetermined" to be able to see (English language) posts?

Have i encountered a bug? Specific to my instance or Lemmy in general?

view more: next ›