

There’s a DVD rip on Usenet, it seems. 723.20 MB
alt.binaries.friends - according to usenet-crawler.com
There’s a DVD rip on Usenet, it seems. 723.20 MB
alt.binaries.friends - according to usenet-crawler.com
Find a tool to properly convert them to .m4b format. This holds the whole book incl. cover and chapter marks in one single file. You can use HE-AAC or AAC-LC which are both superior to MP3 and result in much smaller files.
Once the downloads work again, this might help:
https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/
none of Ubuntu’s many projects has ever become a long-term, distro-agnostic alternative to whatever it was supposed to replace, suggesting either low quality or insufficient effort
I’d add irrational hate against Canonical to the list of possible causes.
systemd was in the hands of one single guy with very controversial ideas in the beginning. It wasn’t really better than Upstart, yet got adopted by more and more distributions over time.
Unity worked smoothly when Gnome-Shell was sluggish as hell on the same hardware.
And you have fixed versions every half a year with a set of packages that is guaranteed to work together. On top of that, there’s an upgrade path to the next version - no reinstall needed.
Ubuntu’s slogan is “Linux for human beings” which fits quite well, I believe. Otherwise, it wouldn’t get recommended to newbies so often. If you want all the nerdy stuff, there are plenty of other distributions to choose from. 😉
But you are doing the work the computer should do by scripting your own startup process. Also, it will process your rc.local
sequentially whereas systemd does things in parallel. If you have 5 different custom services that need network, your approach would have them started one after another. Systemd would wait for network access and then start them all in parallel. If one of those hangs, the others will still start in a few seconds (unless they depend on the hanging service) and the boot process will still continue.
Also, what about if some service fails? systemd can restart them automatically, you have commands to see at a glance whether your desired services are all running (i.e. the system is in your desired state), it manages the log outputs for each service, etc. etc. … it’s a huge comfort win and once you’ve written a few units, you won’t have to look everything up all the time.
[Unit]
Description=My service
After=network-online.target
[Service]
ExecStart=/usr/local/bin/myservice -d
[Install]
WantedBy=multi-user.target
Put this in /etc/systemd/system/myservice.service
, run systemctl daemon-reload
followed by systemctl enable myservice
and Bob’s your mother’s brother. Optionally, start it directly using systemctl start myservice
. (On most systems, service myservice start
will work, too.) It doesn’t get any easier than that.
And, if you start to automate your system’s configuration(s) using e.g. Ansible, it’s far easier to just place a few files in the filesystem and run a few commands than to modify the rc.local
in an automated fashion without breaking something.
While I don’t really like the one-tool-for-everything approach with systemd and its various additional features (timedated, resolvd, etc.), I do like the main feature.
I like Ubuntu for exactly that: The bravery and manpower to try different things. I remember I loved their Init-System Upstart when it came out in 2006 - long before systemd got established. It made managing services and their dependencies far easier than with the SysV-Init system other distros had at the time.
Unity was miles ahead of Gnome-Shell in the beginning. And I loved the one-menu-bar approach - similar to macOS - as it saved screen space on smaller screens.
It’s easy to flak on Ubuntu for not keeping in line with “tradition”, but I believe we wouldn’t have some newer projects without Canonical trying something new and showing people what’s possible.
It’s probably loading the home environment of root
similar to sudo -H vim …
instead of just elevating privileges but keeping your home environment.
Nah, youtube-dl
supports a plethora of sites. And you can download from almost all of them without breaking any laws. Like kitchen knives have 100s of uses that are totally fine and don’t hurt anyone. I stand by my analogy.
As I’m not using a Swarm or cluster, I consider Docker volumes volatile and use mounts where I need persistence. All my configuration and other persistent data is under /opt/docker/<container>/<foldername>
. And /opt/docker
gets backed up regularly using restic.
To be fair, Eyeo/ABP deserved everything they had coming at them. They not only blocked ads, but there was code found to replace Amazon affiliate links with an affiliate id from them. (German report here - look for the part about typoRules.js.)
Even then, are shops selling kitchen knives (mind you, despite the name, youtube-dl can be used to download videos from various sources) held liable for people doing murders with them?
EDIT: On a sidenote, the Hamburg courts are renowned to know jack shit about technology and often produce rulings against any common sense.
Yeah, everyone has to find their own way of organising, I guess. For me, there are too many different little projects that it would get messy throwing them all in one folder. And they’re so varied that I couldn’t think of one single “theme” or topic for most of them. Nothing I would remember a week later anyways.
Same, but by language, e.g. Development/Python
.
The last time I’ve used glances - to be fair, some years ago - it caused the main CPU usage on my Raspberry Pi 3. However, looks like it’s been fixed recently.
Possibly a bit overkill, but I’m running Zabbix in 3 containers (Core, WebUI, database). Using its agent installed on all my machines, I can monitor basically anything. Of course, you can set limits, alerts, draw graphs, etc.
That’s what happens if you rely on 3rd party services that are very eager to please anyone that spells out DMC without even waiting for the A.
The fear of naked (intact) female bodies, i.e. censoring of even the slightest nudity, when at the same time, it’s totally fine to have minors play computer games where they can dissect other humans in great bloody detail.
Oh, and chocolate that tastes like somebody barfed into it during manufacturing.
There should still be the rather tame World Digital Brasil… but their Tinfoil server is down at the moment, it seems.
Kemie and Kina
I threw up a little…
nmtui
if you’re using NetworkManager, Or edit the/etc/netplan/*.yaml
if your install uses netplan.io.