It's so much worse than you would ever expect. I worked for Amazon.com for 4.5 years, and that cul…
Yes - it probably would have been going by now, but the unexpected trip postponed things. Maybe t…
It's up on Github now, but I don't Casey has done the work to add people yet.
What is the current state of source controlled Hand Made Hero? If it is under control, where do we…
kirbasin, I had to format my hard drive, and lost the project file. I read in another topic that y…
I've heard ducks. But I thought the google wookie was the most famous one. I bet sometimes when Ca…
I'm going to quote from by Kernighan and Pike. (C and Go, what a combination.) On fixing bugs: …
Handmade Hero really provides a resource that just doesn't exist anywhere else. There are hundreds…
Oh sweet taco bell geezus... Screw it everyone! It was the pixel buffer... changed x; x < max_x; +…
Hello everybody, I've been slow in my projects but on one particular note, I've had a bug that I c…
Ah yes, I will take a look at the SubArena system and use that as a starting point for making the …
That point about 0 is a pretty good point... we probably should do it that way...Casey
Yes, you definitely cannot do what you are doing, assuming your description is accurate. It is ac…
After getting up to date with the HmH code recently, I've been getting random but consistent crash…
Mox —
I agree that the alternative might be easier to visualize. The original does have one additional a…
I've been using Eclipse Luna CDT in Linux and it just works as a stand-alone debugger. Just File -…
Thank you. I was hoping it would create a dummy project similar to Visual Studio creating a "stand…
I think this may be due to a misunderstanding of how Handmade Hero is designed to work. It is a…
My understanding is that tail call optimization only works well if the recursive call is one of t…
Yes, you are absolutely right that not every recursive solution will use tail calls (the wikipedia…
m1el —
There are algorithms that cannot be optimized "away" using tail call elimination. For example, tre…
I highly recommend anything about compiling Scheme to C, "Cheney on the MTA" being a prime example…
Regarding recursion and worry about stack frames. Modern compilers can optimize this away and use …
New results: Recursive (Forwards): 198543 cycles Recursive (Backwards): 202639 cycles Non-recursiv…
Whoop, thought I sanitized all that :P PushAllArrayIndirected (what a mouthful) is just this: And…
and are the same thing? What does look like?
Ah, yeah, I thought of that but wasn't sure it would make much difference. I guess since I'm only …
Is it possible that you're visiting the children in a different order in the non-recursive version…
As with many things, 3dmasons, it's hard to say whether something is "bad" out of context. In a "s…
My std:: container comparison was popular on twitter, so I figured I better replicate the usage co…