klangcola

joined 2 years ago
[–] klangcola@reddthat.com 1 points 16 hours ago

The 'old' Phillips is not the same as the current. The original Phillips is now doing medical equipment mainly, selling to hospitals etc. Phillips Lighting is now Signify, though as far as I can tell that's still a Dutch company. Phillips consumer electronics where spun of and sold out, to a Chinese buyer I believe. TVs and monitors I think were sold out separately from general consumer electronics.

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

Zim Desktop Wiki is absolutely excellent

[–] klangcola@reddthat.com 3 points 4 days 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 19 points 4 days 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 7 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

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

"Pumped storage" is already a thing. Using excess grid electricity to pump water uphill.

Though excavating underground cavern for pumped storage sounds exceedingly expensive:O

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

Hydro is definitely highly geography dependant, and certainly the environmental impact can be severe. Though there's also been great advancements in smaller scale "low head" hydro where you don't need to submerge half a valley or block migratory paths. Hence curiosity where hydro stacks up.

I suppose it's so geography dependant you can't make a meaningful global average to compare with other forms.

Then again in my particular neck of the woods solar is limited at best, for half the year. While the local landscape is nothing but mountains, valleys , lakes and rivers. So many lakes and rivers.

Another neat thing about hydro is that it's a renewable base load. Geothermal is another, but that's also highly geography dependant

[–] klangcola@reddthat.com 4 points 1 month ago (7 children)

Disappointing DW didn't include hydropower in the price comparison graphic. Also would have been interesting to see where offshore wind stacks up, though tbh I'm not sure the math is even in yet for offshore wind

[–] klangcola@reddthat.com 7 points 1 month ago (1 children)

My gut reaction too. But their readme/faq makes a lot of sound points. Also Nextcloud is one of the main contributors, so you know it's serious. Also Proton and Ionos (which I admit I'd never heard of, but they seem big)

 

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?

[–] klangcola@reddthat.com 51 points 2 months ago (1 children)

There's strong Farquaad vibes here..

Some of you may die, but that's a sacrifice I'm willing to make

[–] klangcola@reddthat.com 7 points 2 months ago

Huge, but full of rocks and mountains and fjords. "Arrable land" is at a premium. Norwegian farmers look at danish and Dutch fields with much envy

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

Especially with all the work being put in to Forgejo CI/CD lately

 

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.

view more: next ›