Welcome 🖖 to my blog!
/************************************************************************
* *
* Hi there! *
* Here you will find coding projects, snippets, insights, cheatsheets, *
* howtos, eventually a link-list and much more (atm not yet). *
* *
* _mofrim_ *
************************************************************************/
snippet of the day
// a constant array to functions type `int *func(int)`
int *(*const funcArr0[])(int) = {func1, func2, func3};
… without words!
quote / lesson / mantra of the day
Parsing is the process of structuring a linear representation in accordance with a given grammar.
Source: Parsing Techniques - A Practical Guide, D. Grune, C. Jacobs, Vrije Universiteit, Amsterdam, 1998
The length of a function is inversely proportional to its complexity and indentation level of that function!
(Source: idk?)
selected posts
- 2025-08-25: Write-up about philosophers problem