Elegant C code

What the result of this code will be? Answer The output of this program will be a rectangular grid of ASCII characters, where each character…

Read more...

IRC server and client

About I just started the development (May 2023). It's not my main side project, quite the opposite, this very random idea for practicing…

Read more...

Little file systems

Writing your own file system is not that scary as you may think. It's just a way of organizing chunks of storage on the big piece of storage…

Read more...

Git tips for old dogs

If you have started using git years ago, then you already have habits and your preferred ways of doing things. But new versions introduce…

Read more...

Simple Python TCP client

Features nonblocking socket server messages divided by a newline, broken packages concatenated before parsing sending messages to server…

Read more...

Generators in Python

Simple generators A quick tutorial on how to make generators. We want to achieve this simple behavior and the same output: Define a function…

Read more...