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.
Daniel Rasmussen
A big pro-tip would be to set the -E compiler flag. That will send the preprocessed file to stdout…
»
Barret Gaylor
This might not be the best place to ask this but since we are all talk about it, what would be a g…
»
Casey Muratori
I might also add to the discussion here that, at least with the sorts of things I talk about, peop…
»
Jack Mott
Would it be possible to make a custom function to pop to the matching header file when in a C/cpp …
»
Andrew Bromage
I agree with many of the points made here. I'm not going to go through them because I hate "me too…
»
Abner Coimbre
And it's interesting to hear this from Timothy, as he is an author of a good Java book. I feel we'…
»
Sergio González
Hey there Replying to the thread because this bug is fixed in the most recent build. And since thi…
»
Timothy Wright
Pointers are not bad at all. I've worked with a lot of different hardware over the years, and one…
»
Jeremiah Johnson
Pointers just aren't necessary for some people to learn. Pointers aren't required to be used in C…
»
Mārtiņš Možeiko
If you have multiple translation units then use /MP argument to cl.exe: This will make cl.exe to …
»
PassiveCoder
After speeding up my builds with some tricks learned here I wondered if we couldn't speed things u…
»
Jack Mott
Thanks, it is an interesting reply. I agree there is no need, but it is convenient at times. I won…
»
Jack Mott
I recently started a project to make a text adventure 'engine' in C++ while following some of the …
»
Randy Gaul
Make code difficult to read.Easy for pointers to point to nothing.Easy for the data referenced by …
»
Bill Strong
Yes, but which platform? The mobile web platform? The Firefox SIMD.js platform? The Chrome --webki…
»
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 an…
»
hugo schmitt
But IF hypothetically Casey was doing web development the same way he does Handmade Hero, he would…
»
Webbmaster1
Thanks for your detailed response and clearing this up for me! I had another look at the video and…
»
CJ Nelson
Thank you for replying. I'll check out emscripten sometime but I'm also glad that I'm not alone in…
»
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 p…
»
Jason
I found the problem. It was really a confusing issue because my bytes written/read were right, the…
»
Lucas89
The x-axis isn't inverted and it is working as Casey saw it working too; it just looks that way be…
»
Webbmaster1
Hi fellow coders, On running the code for Day 006, I find that while the y-axis is fine, the x-axi…
»
ratchetfreak
/Robert[/quote] Nearly every language that isn't C uses some kind of pointer+size struct for stri…
»
Robert Toth
Thanks! I was actually thinking about having a string struct that keeps track for the string lengt…
»
Daniel Hesslow
I currently have macros for defining the data structure for each type ie. #define DEFINE_DynamicAr…
»
ratchetfreak
In name of robustness I'd have read a char on either side of the cursor and made sure there was an…
»