Curated river of news

Reader

Latest posts from blogs I follow

2873 entries
58 pages

Bash Scripting - Best Practices(opens in new tab)

A list of best practices for writing bash scripts: Use a portable shebang In computing, a shebang is the character sequence consisting of the characters number sign and exclamation mark (#!) at the beginning of a script. (source wikipedia) Use: ...

Generic data structures in C(opens in new tab)

Update (2026): This was the first 'real article' I ever wrote. It actually dates back to before 2010, though I didn't publish it until later. I’ve made a few tweaks here and there, but the original 'old code' remains. Please ...

Hello world!(opens in new tab)

My first blog post, in which I am writing Hello World!. #include int main() { long long h = 0x0A646C726F57206FLL; long long e = 0x6C6C6548; printf("%.4s%s", (char*)&e, (char*)&h); return 0; }