I would highly recommend using more items than 1000 if you want to check performance. 1000 really…
Sven —
A lot of things that are listed here as disadvantages of OOP don't really have anything to do with…
In response to 5sw: Past me would have agreed with what you said, but today me: I disagree complet…
While I'm all pro-const, I've never seen this to be true. You are confusing const with restrict k…
Sven —
const should be used everywhere, where it makes sense. Of course when one starts to use const one …
There is no logical or even economical reason (RPI would be cheaper in any case). I'm not even try…
What would be advantage of STM32F4 over RPi? My understanding is that STM32F4 is still small ARM C…
Thank you for that. I forgot about checking warning levels, that is something I need to do more of…
I am really considering to do this, actually I have been thinking about this a few weeks now. My i…
If you enable warnings the compiler will tell you. It's warning C6282 for MSVC.
I believe LLDB is still just a command line debugger. GDB has problems, certainly, but on the who…
I really want to do that but I don't have the expertise! I want a CPU guy to do a Handmade CPU an…
We could go real "pig mode" and build our own cpu/gpu combo and run it on a FPGA board.
Ah ok, so as the SignOf function parameter is defined as a signed int it all works. I get it, than…
You can subtract 2 unsigned values and get a signed value.
I don't quite understand the code at line 418 in handmade.cpp: We seem to be testing the sign of …
Casey, just to be clear: I did not mean to come over like I want to pressure you into explaining y…
Oh man, should have waited 10 more minutes and I would have had my answer. After careful evaluatio…
So I am playing around with hash tables and looking at how it effects performance. I wrote three d…
If I recall correctly here, Windows7 requires Xaudio2.7 and 2.8 isn't supported. However for some …
Yeah, and I think it will be fun to have a joystick that doesn't go through USB, because it would …
Much easier in fact than dealing with the USB. In fact you could just stick a few potentiometers a…
I don't know if we'll support USB on the Pi, because we might go even more handmade on there and d…
I'll do my best to explain it line by line, hopefully this will help you figure out what part you …
Small in terms that it is pretty readable. You can start reading it without being totally lost. Co…
Hehe Disguised Dormant Doormat :)
For suitable definitions of "small". I knew of this one, it has about 12k lines of code. That's ab…
Here is small USB stack written specially for Raspberry Pi: It can handle keyboard, mouse, gamepa…