The bulker, carrying a 20,000-tonne cargo, was rejected by Norway and Lithuania as it sought refuge for repairs after being damaged in a storm en route from Russia.
A much smaller quantity of ammonium nitrate caused the devastating blast in the port of Beirut, Lebanon, that killed at least 218 people in 2020.
Damn, not surprised noone wants a floating bomb
For half a moment, that shared nothingness created something new, but then they came and chopped it off into small, blend, mouth sized pieces that never make you full.
Unpopular opinion?: without wordpress, mysql/mariadb would have died years ago.
/sbin are system binaries, eg root only stuff, dunno the rest but I would guess there are some historical reasons for the bin usr/bin separation
How did you install jellyfin?
It should not core-dump (read: hard crash, something has gone terribly wrong), at best you should get a configuration error and errors like that.
You can see the logs of any systemd service/unit with this: journalctl -u <name of sevice>
so in this case journalctl -u jellyfin
(Tip: add -f
to follow the output of a running service - useful for monitoring).
Note that some programs log to their own files (and not to stdout) so if the above command comes out empty you should look into /var/log/
directory.
Maybe that LTT linux challenge?
I just usually do !map
I am currently in the market for a new mobile phone. The current’s one battery is basically dead and because of security patches now being about 2 years old I have to replace it whole instead of just getting the battery replaced again.
Pixel with GrapheneOS has been my number one choice for some time but…
I will probably just get the OnePlus Nord 4 instead because of their pledge to do 6 years of updates.
I’ve been eyeing https://codeberg.org/river/river
pipx install yt-dlp
This will install yt-dlp with everything it needs but without fucking anything else up, both system-wise and for your user (because installing python packages in your home manually can cause problems). You must have your $HOME/.local/bin
in $PATH
to then be able to run yt-dlp
, but I think pipx will check and warn you.
pipx upgrade yt-dlp
to update it (or upgrade-all)
On point summary.
And I was just about to write that I have confirmed SQLi is not possible to find out I have missed something that might in-turn make it possible! holy hell back to drawing board
also RawTherapee
Matter of time, good while it lasted
Happy cake day !
Yeah kinda, unix socket does count as ipc
Alternatively you could use capabilities:
I have been pretty content with just zsh with fzf - extends the ctrl+R with interactive fuzzy search across the history.
In theory some session like behaviour should be easy to make with a little script that changes $HISTFILE
Using pip to install packages outside of venv was always a risk, (newer) pip now has this mechanism to really drive the point home that this can break stuff.
Do I have to do this everytime I start the script via console?
Yes, one way to get rid of this requirement is to package the script as binary/executable package (add pyproject.toml with some sane defaults and with proper [
) and then install the project using pipx - ]pipx install -e path/to/the/project/
, the -e
flag stands for editable and is nice to have here as you won’t have to reinstall everytime you change the script.
What pipx does is that it creates the local virtualenv, installs everything the package declares as needed and adds a special executable script into location like ~/.local/bin/
that first sources the venv and then starts the entry script - keeping everything isolated.
You will want to use virtualenv, it creates isolated “workspace” so that system (python) packages do not conflict or mix.
Run your ip through ip abuse databases to make sure there is nothing wrong perceived from outside.