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.
Timothy Wright
Pointers are not bad at all. I've worked with a lot of different hardware over the years, and on…
»
Jeremiah Johnson
Pointers just aren't necessary for some people to learn. Pointers aren't required to be used in …
»
Mārtiņš Možeiko
If you have multiple translation units then use /MP argument to cl.exe: 1cl.exe /MP ...(other arg…
»
PassiveCoder
After speeding up my builds with some tricks learned here I wondered if we couldn't speed things …
»
Jack Mott
Thanks, it is an interesting reply. I agree there is no need, but it *is* convenient at times. I …
»
Jack Mott
I recently started a project to make a text adventure 'engine' in C++ while following some of the…
»
Randy Gaul
RyanRothweiler Since hmh I've been working on a variety of prototypes in my own engine. I use poi…
»
Bill Strong
Yes, but which platform? The mobile web platform? The Firefox SIMD.js platform? The Chrome --webk…
»
Jonathan Blow
Well, I am glad we did not discourage you from continuing due to negative feedback!
»
Timothy Wright
I suggest you take a look at Ginger Bill's string library as a starting point. Or just use that a…
»
hugo schmitt
But IF hypothetically Casey was doing web development the same way he does Handmade Hero, he woul…
»
Webbmaster1
Thanks for your detailed response and clearing this up for me! I had another look at the video an…
»
CJ Nelson
Thank you for replying. I'll check out emscripten sometime but I'm also glad that I'm not alon…
»
Casey Muratori
That is actually the sort criteria we end up deciding to try, assuming I'm interpreting your list…
»
Allen Webster
If you do an out of range read, the read will fail. The fail is indicated as a zero return value…
»
Mārtiņš Možeiko
There should be no differences between using VS2013 and VS2015. I tried with both of them and it …
»
Jason
I found the problem. It was really a confusing issue because my bytes written/read were right, th…
»
Lucas89
The x-axis isn't inverted and it is working as Casey saw it working too; it just looks that way b…
»
Webbmaster1
Hi fellow coders, On running the code for Day 006, I find that while the y-axis is fine, the x-a…
»
ratchetfreak
Raybolio Thanks! I was actually thinking about having a string struct that keeps track for the st…
»
Robert Toth
Thanks! I was actually thinking about having a string struct that keeps track for the string leng…
»
Daniel Hesslow
I currently have macros for defining the data structure for each type ie. #define DEFINE_Dynamic…
»
ratchetfreak
In name of robustness I'd have read a char on either side of the cursor and made sure there was a…
»
Mór
That feature appears to have been added https://blog.jetbrains.com/clion/2015/05/debug-clion/ ht…
»
James Fulop
Here's one I use all the time, just switches a period to an arrow or vice versa. 1 2 3 4 5 …
»
Ian Hern
I just finished episode 299 and have a (probably wrong) solution to the sort issue. Can anybody …
»
Jay
Thanks Casey. It was the rogue is in rectangle call during begin sim. You fixed if a couple episo…
»
ratchetfreak
There is no real need to use templates (or something meta programming) at all. If I'd need to us…
»
Jack Mott
Do you just use some sort of void pointer approach? Do you use macros to approximate templates (…
»
Simon Anciaux
I'm not sure you need pool types (but it may be a good idea, I don't know). And pool is not the r…
»