Also, it is inspired by a Polish service, Wykop which developed its specific language
nawordar
Zephyr is an actual operating system, but it's not Linux
Heh, I thought about blocking them like a thousand times, but they are sometimes sharing neutral or interesting information so I'm just trying to ignore this type of comments
How is it progressing so fast compared to Servo? Isn't Servo being developed for a longer time?
I thought for a minute that Linux now panics when trying to play DRM'd content
Even when you don't know the language, you can judge if something is an ad just by an overly excited tone of voice. I wonder if someone has tried writing an ad detection algorithm already. It would still be a lot heavier on resources than SponsorBlock.
I don't know about its derivatives, but Mandriva had something similar.
LaTeX and ConTeXt are both macros for TeX. LyX is a graphical editor which outputs LaTeX.
I didn't see it until I read your comment
Actually, PulseEffects has been renamed into EasyEffects and is PipeWire only now
- Fish. Much, much saner defaults.
- I am writing
#!/usr/bin/env sh
for dead simple scripts, so they will be a tiny bit more portable and run a tiny bit faster. The lack of arrays causes too much pain in longer scripts. I would love to use Fish, but it lacks a strict mode. - No, why would I?
- I used to share all my dotfiles, scripts included, but I was too afraid that I would publish some secrets someday, so I stopped doing that. For synchronizing commands, aliases and other stuff between computers I use Chezmoi.
- To use Fish instead of fighting with start up time of Zsh with hundreds of plugins
- Always use the so-called "strict mode" in Bash, that is, the
set -euo pipefail
line. It will make Bash error on non-zero exit code, undefined variables and non-zero exit codes in commands in pipe. Also, always use shellcheck. It's extremely easy to make a mistake in Bash. If you want to check the single command exit code manually, just wrap it inset +e
andset -e
. - Consider writing your scripts in Python. Like Bash, it also has some warts, but is multiplatform and easy to read. I have a snippet which contains some boilerplate like a
main
function definition withArgumentParser
instantiated. Then at the end of the script themain
function is called wrapped intry … except KeyboardInterrupt: exit(130)
which should be a default behavior. - Absolutely not a bad practice. If you need to use them on a remote server and can't remember what they stand for, you can always execute
type some_command
. Oh, and read about abbreviations in Fish. It always expands the abbreviation, so you see what you execute.
Is it about restoring window position and size?