Handmade Network»Feed
Sven
I always interpreted the standard in a way that casting the const away and writing through that p…
»
Andy
Thanks for the response, unfortunately none of those things worked for me. Damn you microsoft!
»
mallardz
Thanks a lot for the replies, very helpful. There seem to be many ways of doing similar things in…
»
Mārtiņš Možeiko
#1, #2 - yes, you are correct. It is guaranteed that all structure members after last specified a…
»
Bigpet
I'm not familiar with #4 maybe you meant to type 1v2 v{0, 1}; instead edit: nvm, I can't re…
»
mallardz
I've read K&R and followed some C++ tutorials but am still very green when it comes to both l…
»
»
Juan Felipe Garcia Catalan
There's also this book: http://www.dataorienteddesign.com/dodmain/ I've had a quick read in the l…
»
Huitzilopochtli
Thanks! now it works wonderfully!
»
Casey Muratori
Mike Acton does a bunch of that in his talks (eg., https://www.youtube.com/watch?v=rX0ItVEVjHc) …
»
sinsizer
Well, it's hard enough getting used to programming paradigms, but I think I get what everyone is …
»
Furkan
[quote post=2515]Hardware is cheap, programmer time is expensive And sometimes hardware is fixed…
»
d7samurai
@rathersleepy Speaking of IMGUI.. Here's a video of (a bearded) Casey explaining his take on the…
»
Casey Muratori
The collision detector is not really very good at the moment. Or rather, the collision detector …
»
Andrew Bromage
There is a saying: "Hardware is cheap, programmer time is expensive". It's true. It is true, but …
»
Casey Muratori
It is a free font. You can get it at: http://www.fontsquirrel.com/fonts/Liberation-Mono - Casey
»
ben
There is a saying: "Hardware is cheap, programmer time is expensive". It's true. This is the min…
»
Phillip
I believe the problem is that the font that Casey's .emacs uses isn't on your computer. Same thin…
»
Andrew Bromage
cmuratori If I may, I think part of the problem here is that different people like to define OOP …
»
popcorn
"Hardware is cheap, programmer time is expensive". It's true. So you basically throw money at …
»
David Owens II
5sw Yes, you can create a different pointer to change that value. But you are not allowed to mak…
»
Patrick Lahey
There is a saying: "Hardware is cheap, programmer time is expensive". It's true. Sometimes it is…
»
Mārtiņš Možeiko
Ah, ok. That makes sense. Then I don't know why it doesn't work. My guess would be that there is …
»
Mārtiņš Možeiko
Yes, I understand what timeBeginPeriod does. It switches resolution of kernel scheduler. But it i…
»
Stefan
Since 'End' is a reserved word in Delphi, it allows you to place an & in front of the variabl…
»
Stefan
As Casey explained, this is why we call the timeBeginPeriod. It is supposed to force the granular…
»
d7samurai
@khahem First let me put things in perspective: This framework is for internal use, embedded in …
»
Mārtiņš Možeiko
5sw Yes, you can write that. But you are not allowed to. This is undefined behavior, the compiler…
»
Mārtiņš Možeiko
That's what Sleep does. It sleeps at least that many milliseconds what you pass in argument. Not …
»
Mārtiņš Možeiko
What is &End syntax in argument list in Delphi? As far as I remember my Delphi days passing v…
»