Monthly Shaarli
February, 2024
Learn how to rename Linux users and move their home directories to a new path, as well as renaming their primary group and UID using usermod and groupmod.
Since I always forget, this simply lists the three commands in order with terse explanation.
Alternative to mermaid, plantuml, graphviz. Can be used in quarto.
Is a single golang cli binary at the core which I much (much) prefer to the javascript-dependent client-side nature of mermaid.
Otherwise, the DSL looks competent and fairly descriptive.
Supports displaying markdown, code, images, icons, or latex formulas in the diagrams.
Could be a good choice for quick diagrams!
A surprisingly in-depth explanation fo landing page fundamentals, with tips on extent and makeup.
Can come in very useful as a reference material.
Provides the virtual windows management interface that tmux/screen do.
Does explicitly not do anything like session management, for that it recommends using abduco or similar programs like dtach.
Allows writing commandline arguments as if you're in a shell script, but from javascript.
Somewhat similar to execa, but afaik tries to implement its own cross-platform coreutil commands. Has quick $
based syntax by default:
import { $ } from "bun";
const response = await fetch("https://example.com");
// Use Response as stdin.
await $`echo < ${response} > wc -c`; // 120
Excellent little breakdown of the concepts and what they are more/less useful to explain. 3min read.
Allows running anki in a docker container! Not super exciting by itself (other than to learn some X11 - docker related shenanigans) but the author mentions being able to run it headless.
That's where it gets interesting, providing e.g. an always-up interface for Anki-Connect!
From a dude who knows how to explain. Aimed at mostly intermediate use (& a little advanced i suppose)
Dashboard like heimdall, organizr, homar, ....
One possible solution to remove persistent keys from ssh-agent (or gpg-agent). Worked for me!
Suggesting sources for mattress purchase decisions. Especially https://www.sleeplikethedead.com/ seems like a good resource.
Many good suggestions for freecad tutorials, including Joko Engineering and Ha Gei, thehardwareguy, dr vax, ..
Command line csv viewer. (Less but for csv files)
Curious exactly what happens when you run a program on your computer? Learn how multiprocessing works, what system calls really are, how computers manage memory with hardware interrupts, and how Linux loads executables.
A really nice delve into CPU inner workings, especially system calls and hardware interrupts are an interesting read.
A super in-depth and fairly personal guide to everything to get your freelance operation going.
I am amazed at the amount of concreteness and obvious labour poured into this for free.
If you have any inclination of freelancing - setting your own costs and choosing your own clients - this takes you through the billing, tools, clients, rates, tricks, and more.
It is strongly focused on web development but some parts can probably be adapted to other areas.
Simple session management allowing to detach from a current session.
Does explicitly not emulate the virtual window system of screen/tmux.
A smarter shell and scripting environment with advanced features designed for usability, safety and productivity.
Soomewhat like nushell in that it can easily open (i.e. wget/curl) APIs and web pages, parse structured data (e.g. TOML, YAML, JSON) and work with the variables.
But also somewhat different in that it does not want to take over the rest of the coreutils/shell builtins, and as far as I understand strives to work alongside the traditional shell (e.g. using it mostly for scripting while ignoring it for repl use or whatever your use case is). Also not taking a(n almost) strictly functional approach like nushell.
Not sure how mature it is yet, have not extensively tried it out.
An open-source universal messaging library. Seems interesting as a concurrency tool. Implementations and bindings in many many languages.
Next Generation Taskwarrior Python API.
A simple fork of the stagnant taskw taskwarrior-python bindings.
Amazing concise guide for simple IO stream explanation. Good as a refresher for whenever I have to work with them.
Short and simple video lessons that start from scratch. Tools and thoughts that might make your professional life more enjoyable.
- Tools for checking your python code (pylint, precommit, pyinstrument, ...)
- scikit-learn
- visualization
- cli tools like entr, makefiles, typer, rich, ...
Neat!
Inject javascript into any running process (or python, or golang, or any of a bunch of other langauge bindings).
Can be used to hook into processes, run functions, send and receive messages, and a bunch more.
Essentially process injection on steroids - super cool.
It seems to even be able to inject itself to processes on other devices running connected to the machine? Not entirely sure how to implement but take a look at frida-ps
ios example.
Much smaller than other vuejs/nuxt,angular,react frontends.
But has the essentials for most 'javascript-interactive' functionalities provided by many modern websites.
Seems interesting!
Same rough functionality as entr - watch for filechanges from the commandline. But with a server/client interface and afaik possibility to invoke programmatically.
D programming language tutorial from the ground up.
Really extensive documentation and guided tour of the D language. From simple hello world to parallelism, concurrency, and manual memory management.
Simple commandline process execution with javascript. Takes care of stdin/stdout/stderr transformations, termination, newlines, child processes and so on.
Cross-platform Rust rewrite of the GNU coreutils.
Simply intends to have complete compatibility with original coreutils - strives to fully pass the GNU coreutils test suite.
Directly write Anki notes in tiddlywiki entries, very clever. Combines the thought with information on retain/recall.
A quick reference for Python's strftime formatting directives.
Personally, I always forget strftime placeholders. This gives it to me concisely, and without fuss.
"Wiby is a search engine for older style pages, lightweight and based on a subject of interest. Building a web more reminiscent of the early internet."
Hand-picked (?) selection of pages, smolnet, blogs, interesting tidbits. If you have time to kill or are looking for very niche topics like analog audio hardware this is a nice page to use!
Flac splitting guide using cuetools (and shntool). Works wonderfully and easy to split, or convert, and tag with two commands.