Non-boomers do, yeah.
Canadian software engineer living in Europe.
Non-boomers do, yeah.
Flu vaccines are reasonably cheap, but COVID vaccines are still £100.
Torrent stuff in HD or 4K and play those files instead of trying to stream from a company that won’t offer better than 720p :-)
Syncthing on Android will be discontinued, and there’s a fork already, which as I said above, I use.
deleted by creator
I guess it’s been a while then. Syncthing works perfectly for me, with the official latest version in Arch, the older version in Debian, the flatpak on Ubuntu, and the forked version on Android, syncing all my Joplin data all over the place.
I don’t much care for the file format though. The appeal of Git Journal is strong.
Joplin + Syncthing has been great for me. Sync across multiple devices with no third party in between. However the “sharing” in this context is limited to other installations of the entire db. To my knowledge, there’s no way to say “sync these notes with my wife, and these others with my phone only” etc.
I used KDE for about 10 years, but switched to GNOME when 3 came out and haven’t looked back. It’s a little unusual if you’re coming from Windows, but I’ve found that once I let go of old paradigms like a start bar and icons and embraced multiple workspaces, that GNOME is pretty damned amazing.
BG3 is a pretty impressive game really. It’s clear that they poured a lot of effort and talent into it. It just feels… pointlessly complicated to me. There’s like, 200 different spells to cast, each with their own effectiveness based on a dice roll, a multitude of different configurations for character development which all feel both too similar and like I’m closing the door on something I might really like. The story is… okay, but really not that interesting to me, and the pacing in combination with the very open world and constant fiddling with gear with a multitude of only slightly different attributes… it’s just too much. The game feels more like a job than something I’d do for fun.
Whaaaaat?? Friend you just made my night! Thank you!
I broke down and bought Baldur’s Gate 3. I really tried to like it, but I did not.
So now I bought Horizon: Forbidden West, but the Deck can’t play it, so I’m playing that on my desktop.
Where are kids seeing ads these days? Is this just for people who watch tv rather than streaming, or would this include any sort of product placement you see in streamed shows? Honestly, it’d probably be a lot more effective (and better for adults too!) if we just taxed the shit out of junk food.
You might want to consider using Docker. You can build an image on your normal machine, export it as a file onto a USB stick, and then transfer it to your air-gapped machine, import it there. Then running it is just docker run --rm my_image
You can do this for a whole bunch of programs in one image, or a separate image for each one.
The problem of unintuitiveness is sadly very common in Free software, but it’s getting better… in a few spaces anyway.
For an Apple Notes replacement, I would suggest looking at Joplin, which I use daily for everything from database diagrams to recipes. It has a built-in sync feature, supporting a variety of options, all encrypted. I used it with Syncthing, which admittedly isn’t very easy, but there are other simpler options.
Depending on your DE, you can have those no problem. You just symlink to the respective .desktop
file for the program you want to run. So for example, if you wanna start Firefox from your desktop, you’d look for a file called Firefox.desktop
on your system (probably living under /usr
) and symlink to that from ~/Desktop
.
Knowing how to fix my wife’s computer, or my parents’ computers, or my brother’s.
Actually, while it’s rather frustrating for them, it’s not so bad for me ;-)
The Framework 16 looks pretty great. Repairable & upgradable, discrete graphics (AMD), and guaranteed Linux support.
Each Pi 4 has 8GB of RAM. With six devices, that’s 48GB to play with. More than enough for my needs.
Actually, as a web guy, I find the ARM architecture to be more than sufficient. Most of the stuff I build is memory heavy and CPU light, so the Pi is great for this stuff.
You can’t really make them go idle, save by restarting them with a do-nothing command like
tail -f /dev/null
. What you probably want to do is scale a service down to 0. This leaves the declaration that you want to have an image deployed as a container, “but for right now, don’t stand any containers up”.If you’re running a Kubernetes cluster, then this is pretty straightforward: just edit the deployment config for the service in question to set
scale: 0
. If you’re using Docker Compose, I believe the value to set is calledreplicas
and the default is1
.As for a limit to the number of running containers, I don’t think it exists unless you’re running an orchestrator like AWS EKS that sets an artificial limit of… 15 per node? I think? Generally you’re limited only by the resources availabale, which means it’s a good idea to make sure that you’re setting limits on the amount of RAM/CPU a container can use.