Links / Resources directory
This a growing directory of links I have found useful or interesting. You will mainly find blog-posts, git repositories, security write-ups, scientific papers and learning resources.
The list is presented in no particular order. The tags are not filterable yet (I intend to add this later though). I still have a lot of saved links to filter and tag.
I've collected and tagged these links using wallabag. Click to show the SQL query I used to export them.
SELECT e.url, e.title, STRING_AGG(t.slug, ',') as tag_slugs FROM wallabag_entry e LEFT JOIN wallabag_entry_tag et ON e.id=et.entry_id LEFT JOIN wallabag_tag t ON et.tag_id=t.id INNER JOIN wallabag_entry_tag ett ON ett.entry_id=e.id WHERE ett.tag_id IN (SELECT id FROM wallabag_tag WHERE slug='share') AND t.slug <> 'share' GROUP BY e.url, e.title ORDER BY COUNT(t.slug) DESC;
List
- Git from the Bottom Up git learning
- WebVM - Linux virtualization in WebAssembly webasm awesome
- WiFi Game Boy Cartridge lowlevel tinkering
- 3Blue1Brown teaching math learning
- trust learning game-theory
- linuxProgramStartup.html linux learning lowlevel
- Exploit Party: Bring Your Own Vulnerable Driver Attacks - FourCore security lowlevel
- Challenging algorithms and data structures every programmer should try dev learning
- How to shuffle songs? - Spotify Engineering dev story
- Stealing passwords from infosec Mastodon - without bypassing CSP security web
- The Perfect Commit git dev best-practices
- GitHub - kirjavascript/quine-howto: how to write lots of quines fun dev
- Oh Shit, Git!?! git teaching learning
- Code Smells Catalog best-practices dev
- Browser-Powered Desync Attacks: A New Frontier in HTTP Request Smuggling exploit security web vulnerability
- Documentation System dev
- LinuxCard - Dmitry.GR lowlevel
- Write Better Commits, Build Better Projects | The GitHub Blog learning git
- Hertzbleed Attack side-channel security
- A tale of a trailing dot dev story lowlevel
- Porting Zelda Classic to the Web web write-up wasm dev gamedev awesome
- Oh My Git! teaching git
- Horrible edge cases to consider when dealing with music dev
- Never Use Text Pixelation To Redact Sensitive Information security
- Using the Dirty Pipe Vulnerability to Break Out from Containers security
- New Browser-in-the Browser (BITB) Attack Makes Phishing Nearly Undetectable web security
- GitHub - ossu/computer-science: Path to a free self-taught education in Computer Science! teaching
- GitHub - danistefanovic/build-your-own-x: 🤓 Build your own (insert technology here) teaching
- sigbovik dev toy
- manim/README.md at main · ManimCommunity/manim teaching
- Building an AI Dog Poop Detector for my Backyard robotics ai
- What If Answer Keys Are Bad? - Upperline Code teaching
- A deep dive into an NSO zero-click iMessage exploit: Remote Code Execution security
- An oral history of Bank Python python story dev
- GitHub - labmlai/annotated_deep_learning_paper_implementations: 🧑🏫 50! Implementations/tutorials of deep learning papers with side-by-side notes 📝; including transformers (original, xl, switch, feedback, vit, ...), optimizers (adam, adabelief, ...), gans(cyclegan, stylegan2, ...), 🎮 reinforcement learning (ppo, dqn), capsnet, distillation, ... 🧠 ai learning
- Explorable Explanations teaching
- Explorable Explanations learning teaching
- The Missing Semester of Your CS Education dev teaching
- And voilà! dev ai dataviz
- The Invisible JavaScript Backdoor web security
- A Visualization Grammar dataviz
- Web Archiving Community datahoarding archiving homeserver
- Security - ArchWiki security homeserver linux