• 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle






  • I would probably prefer having a headphone jack. I am using wireless buds though. The problem with them is the price. While you can get decent wired earbuds for around $100 or even slightly less you have to pay at least $300 for decent wireless ones. Seriously I tried a few, but they all sounded like absolute garbage. It’s probably a cheap DAC in all of them combined with even less available space due to batteries and other electronics.

    Another downside is that you can only use them for like 5 hours at a time. It is fine most of the time, but on long train rides I hit the limitation a few times.

    Overall I am happy with the wireless ones, they are convenient, but it is really expensive to replace them and you have fewer choices, so having wired headsets as an option would be great.

    I never tried wireless Bluetooth interfaces though and I suspect they might be better than the inbuilt jack of phones which would make them obsolete in my opinion.







  • Unfortunately they are very in your face unless you fully submit to their view. They belittle your efforts if it is anything but outright revolution, cheer on horrible regimes and deny genocides. Very US centric point of view.

    Of course it is not all of them, but that’s what you will experience very soon if you interact with them, because it is a radicalized echo chamber let loose.

    Our instance actually managed to get defederated from them though. Although it wasn’t handled well from either side they seriously only dish out, but can’t take a hit. I won’t say that nothing of value was lost, because there were a few moderate users and of course some interesting content might be lost, but overall my lemmy experience got better without them.




  • If you can use containers always use containers as a rule of thumb. VMs are less efficient in almost every way and they add some unnecessary complexity.

    For docker you basically only have to backup the persistent data. So in case of the docker setup you just have to backup the mounts and probably your compose file you are using. This probably also answers your third question already. Container files can be left alone and don’t need to be considered for backups as they should be stateless and can reside in their default location (/var/lib/docker/overlay2 or so by default).

    Overall it is quite simple as you only really have to consider the mounts and the docker setup. The mounts you define and should be really obvious and the docker setup is just a few config files at most or just the compose file.


  • The part you see isn’t mold, but the spores. Mold almost looks like spider webs and it is very hard to see without a microscope. If there is anything visible it means the actual mold had already grown much further and deeper. As others have said you can cut of the visible part plus an inch or so for hard cheese (and some vegetables or apples), but for other cheeses or food it is a no. Throw it all away. At that point it already spread throughout most of the food.


  • I worked on projects using C++, C#, PHP, Python and JavaScript, also Typescript. I learned programming with C. So I am at least at a professional or competent level at each of them.

    The language I am most productive in is JS. There is barely any boilerplate, it is easily writeable and supports multiple paradigms. Personally I prefer Typescript and I make it a requirement for projects I lead. I use it for everything unless it is a native application in which case I use C++. Just the language features of JS, compatibility, tooling, platforms where you can run it and so on makes it easily the most useful language on the list. I don’t even consider Python, C# or Java over JS. None of them are any faster or better designed languages, except for C# and that’s mostly improved by TS.