klangcola

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

Keeping the pickets vertical like that looks tidy

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

No 1 looks like a typical cabin. The rest looks like rich peoples modern interpretation of cabin

[–] klangcola@reddthat.com 3 points 6 days ago

The bing index is one of their sources for search results (although a major one yes).

From Wikipedia:

... including Bing, Yahoo! Search BOSS, Wolfram Alpha, Yandex, and its own web crawler (the DuckDuckBot)

[–] klangcola@reddthat.com 3 points 6 days ago

Just bring regular "charging bricks", virtually all modern ones support 110-240 V 50-60Hz. Just check their label first to make sure. (my electric toothbrush with inductive charging is my only charger that's 240V only, everything else is 110-240V).

Stepdown transformers are specialist equipment, not something you can expect to find in any random hotel.

The closest is the "shaving port" some hotel bathrooms have, but that is very limited in power and obviously only in the bathroom which is inconvenient.

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

I never thought about the toe killer potential of floor-flush furniture.

But won't a 2x4 place it at an awkward height where it's tall enough to accumulate heaps of dust, but not tall enough to easily clean underneath? I have a sofa like that, and hate cleaning under it

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

Qwant and Ecosiaia are currently building a joint independent index

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

What's else is there?

There is also 2 new alternatives, https://dune3d.org/ , and Blender with the CAD-Addon should be good enough for 3D printing.

I haven't tried them myself though, since I'm very happy with FreeCAD, and FreeCADs rate of development has accelerated enormously in recent years so I'm excited for it's future.

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

FreeCAD 100% here. I find the sketcher solver mostly works fine, but it helps if you can give the solver unambiguous constraints. It's often easy to give constraints that happen to have to 2 symmetrically opposite valid solutions. Have you seen these tips on giving Sketcher constraints that make the solver's job easier? https://wiki.freecad.org/Basic_Sketcher_Tutorial#Additional_information

FreeCAD also encourages a workflow using multiple simple sketches rather than a few complicated sketches, which would also make the solver's job easier.

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

Thanks for sharing the knowledge:)

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

Honestly 20km/h seems kinda slow. As a kid I'd do 20-25, and these days most European countries have a 25km/h limit on e-bikes. So 20km/h seems just low enough to be a hindrene.

Ultimately it depends on the bicycle lane or road though, just like for cars. There a huge difference between a crowded narrow inner-city cycle lane with immediate adjacent houses and other things obstructing vision, compared to a suburban cycle path with less traffic and completely unobstructed vision

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

That sounds wonderful. And awful. Weather pending

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

Starting with 40 jobs in one ministry while canceling a billion € statewide contract does signal the direction they're going, and does seem to indicate a gradual rollout rather than a sudden changeover

 

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 ›