Movies downloader version 0.9 release

Added a support for kinoukr.tv website.

My Toshibe TV is very old and it has really slow fast-forward for long movies. But it has chapters flow, so I can switch them.

Chapters could be added with ffmpeg within META file.

To export meta use

ffmpeg  -y -i movie.mp4 -f ffmetadata METAFILE

Then I've created a script to add a chapter every 10 minutes.
Here's the source code

Porting my game to PlayStation2

Porting my game to PlayStation2

When the quest with cmake begins...

A week ago I was sitting at the late night and found ps2dev repo on my local disk. It was there for a very long time. Sometimes I took a look on the examples and close them. Everything seems very complicated.

But since I'm developing my games with SDL2 which has a PS2 support I've put my fingers on the keyboard and experiments begin.

PS2DEV: https://github.com/ps2dev/ps2dev

Decoding PHP Files

During my recent exploration of Ukrainian online theater platforms, I made an interesting discovery: the majority of these sites are built on the DataLife Engine (DLE). This observation sparked my curiosity, as DLE is a content management system that has been around for quite some time, yet continues to operate effectively in 2025.

Converting FB2/TXT to EPUB: A Lightweight Bash Solution

In the world of e-reading, having your books in a compatible format is essential. While EPUB has become a standard format supported by most e-readers, many books are still available in FB2 (FictionBook) format or plain text. Converting between these formats often requires installing bulky software like Calibre, but there's a more elegant solution using common Linux tools.

Converting Text Files to FB2 Format with txt2fb2.sh

In the world of e-books and digital reading, having content in the right format can make all the difference in your reading experience. The FB2 (FictionBook) format has become popular among e-book enthusiasts due to its XML-based structure that preserves formatting and metadata effectively. This article introduces a powerful yet simple bash script called txt2fb2.sh that converts plain text files to the FB2 format on Linux systems.