You can find my last blog posts here. Enjoy reading! Please be aware that this website is still work in progress. If you have any suggestions or feedback, feel free to contact me.
-
Weird Computer Questions
This is the result of shower thoughts, boredom, and way too much ambition. I am answering two weird computer questions and try to be scientific. Let's see if it worked. -
Using Basic Authentication in Jakarta EE Applications
Secure your Jakarta EE applications with the Basic authentication. This blog post shows you a simple setup to use Basic authentication in Jakarta EE. -
Create Your Own File System | Part 1
File systems are a fundamental part of every operating system to store temporary or persistent data. Some file system are quite complex, other more simple. In this blog post the focus is creating a flat filesystem. -
Writing a Lexer using Flex
A lexical analyzer (or, simply lexer) is a program used in compiler development. Lexers generate tokens from input text, mostly source code, which is essential for syntax analysis.