January 16, 2023 Solving Advent of Code 2022 day 13 in Rust I took this (2022) Advent of Code as an opportunity to learn the Rust programming language. This post is about the puzzle on day 13 where I managed to come up with a pretty cleanly implementated solution thanks to some... rust adventofcode nom
July 19, 2022 Dissecting killbutmakeitlooklikeanaccident.sh and porting it to ARM64 Someone pointed out a shell script that was posted to GitHub named ‘killbutmakeitlooklikeanaccident.sh’. linux re
March 14, 2022 Building a Chromium-based web kiosk using Yocto/OpenEmbedded In this post, we’ll build a simple embedded Linux web kiosk that can run on devices, based on Yocto and the Chromium browser. Chromium has a great rendering engine, but is also quite resource hungry. On a small device a... linux yocto
May 9, 2021 Ignoring outgoing packets on Linux AF_PACKET sockets As AF_PACKET sockets are used for network sniffing tools such as tcpdump, Wireshark, etc, by default you will get all packets passing through the interface you bind on - incoming and outgoing packets. linux
March 15, 2021 KFENCE - Detecting memory bugs in production kernels On February 26 this year KFENCE was merged into the upstream kernel source, ready for release in Linux 5.12. KFENCE is basically a low-overhead address sanitizer, but actually so low-overhead that it can run in production kernels on live systems... linux