-
Recent Posts
Recent Comments
- Marto Sepa on Why I no longer use fossil source control.
- max on C# is a complete piece of shit.
- Engin on Another reason why Microsoft is completely brain-dead
- Fred Nurk on C# is a complete piece of shit.
- lol on C# is a complete piece of shit.
Archives
Categories
Meta
Monthly Archives: November 2019
Beware the page heap
So I nearly pulled out all my hair today trying to figure out the most insane and bizarre problem. I thought my OS had gotten fucked up in some way, even worried that I had some kind of infection. There … Continue reading
Posted in Uncategorized
Leave a comment
The gcc optimizer is retarded
So it is usually the case that I compile my code with -Os, this results in nice and compact code, however gcc tries too hard to make the code as small as possible sometimes making it very slow. I was … Continue reading
Posted in Uncategorized
Leave a comment
gnu ld is a shit linker
So today I was trying to build a module where a few functions were placed at fixed addresses, well it turns out there is absolutely no way to do such a thing with ld. Sure you can place a section … Continue reading
Posted in Uncategorized
Leave a comment
A simple solution to integer overflow in c/c++.
In c/c++ there is a major issue which is responsible for a significant proportion of all software security and stability problems. The bullshit integer model: for each operator of an expression its operands are first promoted to integer and then … Continue reading
Posted in Uncategorized
Leave a comment