We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Cort
Speaking of the poor man's profiler, here's a neat trick for the Visual Studio debugger: if you a…
»
Christopher
Anyone interested in tasklists and using EMACS should check out ORG-mode (which is built into ema…
»
Neil Blakey-Milner
As forewarned in the stream chat, my holiday project is to write an XCB (X protocol C-language Bi…
»
Ian
There's no simple way to identify the return type and parameter types of the XInputGetState funct…
»
venfayth
Sorry to revive this, I am stuck here as well. Thanks to steelgolem and christianrohr and garlan…
»
Mārtiņš Možeiko
Btw, you could look on switch statement as a series of comparisons and goto's, if that is easier …
»
Ruy Calderon
EDIT: Overkill, explained much more succinctly above Further reading: http://msdn.microsoft.com…
»
Mārtiņš Možeiko
Alternative would be to use if statement: 1 2 3 4if (Message==WM_SYSKEYDOWN || Message==WM_SYSKEY…
»
Troncoso
That's...the only way to do it that I know of? The only alternative is to copy and paste the sam…
»
Class GenericHuman
Oh, okay. We are catching all those cases in one case. Thanks. Also, can you tell what the reason…
»
Troncoso
This isn't a day 25 thing. But anyway, yes, you're right. That's exactly what should happen. Bas…
»
Class GenericHuman
Sorry for printing out the code like this but I think it would make it easier to understand my qu…
»
Troncoso
Considering how often he'll change some things in the Q&A, I can't confidently skip them and …
»
Mike Oldham
My catch up technique is to watch at 2x speed on you tube, and skip the Q&A. This lets you se…
»
Troncoso
I've been into programming for like 8 years. I've got a BS in Computer Science and work as a Java…
»
Mārtiņš Možeiko
I think this is because we don't need to record/playback input on all platforms. For example, mos…
»
Tom Montgomery
Is there a reason that the record/playback of input needs to be done in the win32 layer, rather t…
»
Karl Kirch
Backend dev here, mainly in jvm land, but also some fullstack web dev, but never really delved in…
»
Class GenericHuman
Try (pseudo)randomizing the wave. In the for loop for generating a square wave, randomize all the…
»
Karl Kirch
I know @ifrombit has a good handle on an objc port of the handmade code. Was wondering if there w…
»
Chris
My first brush with programming was typing in code from Nibble magazine into the family Apple IIe…
»
Troncoso
Haha. Guess there's no point in voting now. I was in favor of the regular schedule except for the…
»
Tim F. Hans
Greetings - first of all - from Germany! I get started watching Handmadehero since some weeks -…
»
Casey Muratori
Thanks for replying, everyone. The vote seems overwhelmingly in favor of the regular schedule, s…
»
Casey Muratori
That is very odd! I have no idea why that would be happening, although admittedly there are ofte…
»
Casey Muratori
Yes, based on your description I would say you are compiling in 32-bit windows which is not going…
»
Roderic Bos
For my it was the 32bit vs the 64bit compiler size_t on 64 bit is same as int but on 32 its uns…
»
rich
Thanks for replying. That was how I originally tried to 'fix' my problem, but ended up casting as…
»
SteelGolem
I've gotten to the point where we got our sound buffer working and we're filling it with a square…
»
Class GenericHuman
I cannot help you with the loop problem itself but two things did catch my eye. uint64 and size_…
»