Home
Blog
Projects
Books
Categories:
ctf
1
projects
1
Tags:
c++
3
cmake
1
game
2
hardware
1
htb
1
reversing
1
rust
1
sfml
2
Car inspection: Daihatsu Sirion 2006 - Day 1
August 15, 2025
Since i have been working in the automotive industry for almost 2 years now, i think it’s kind of time to get into cars. My very first project will be a FULL checkup of a Daihatsu Sirion 2006 from the internals to the externals and there will be soooooo much to learn. Lets dive in.
Where i started, what i learned so far? A post for the future me...
August 13, 2025
This should have been written when i first created the website however i did not X). A more proper title would be ‘What i learned and what changed in one and a half year.’ Damn, its been a while. So much happened.
HTB - Debugging Interface - Intro to Hardware Hacking
March 30, 2024
“We accessed the embedded device’s asynchronous serial debugging interface while it was operational and captured some messages that were being transmitted over it. Can you decode them?”
How i grasped the basics of CMake aka CMAKE NIGHTMARE
January 28, 2024
Now systems could have multiple build systems installed, and also lets say your developing on linux and you would want your application to be cross platform, you would have to specify rules for your build process for the specific build system on the windows platform. Now CMake comes in and lets you do exactly that in a high-level config file and also in a managable format, hence the name cross-platform build system generator. It generates the build system specific build files for the given build systems.
Learning SFML through making a space shooter game: Game loop, FPS, events
January 26, 2024
So in my previous post i went through what SFML is in a nutshell, in this one im gonna talk about some basic game concepts such as game loops, FPS, fixed time step.
The first date between Me and the Rust programming language :)
January 26, 2024
YOOOOOOOOOOOOOOOOOOOOO! In this Im just gonna go through a couple of things I learned going with the Rust book, and it seems pretty interesting so far. It will also serves a documentation for me to remember useful things. Everything will be pretty surface level and just guessing on things because Im going sequentially with the book, thats why im not breaking down things on a deeper level
What is SFML?
January 25, 2024
After the boring summary, now for the dumdums like me, its basically something that lets you create graphical applications including everything you would interact with a modern software nowdays. Its primarily used for game development. Its also based on OpenGL, keep that in mind boys. To make an insane AAA game you just include some libraries, write some code and BOOOOM you have a game, thats it, its that easy. Anyways…