Yeah... I suspect the entire point was missed there. I can somewhat see that blog post's point of…
Justin —
Speaking of programming paradigms, I read an article bashing "compression oriented programming". B…
Bigpet —
Seems almost expected with virtual machines. Maybe you should make sure that your CPU has virtuali…
Stefan —
Hi. Thought this may be relevant since Casey is using Virtualbox for windows XP testing. I'm devel…
Stefan —
I've listened to Casey explaining the reason for fixing the frame rate on this game. I've played m…
Stefan —
I'm translating the C code to Delphi and ran into a performance issue on a specific piece: Origina…
I disable javascript (Side note: topics like this are why we should definitely have an offtopic / …
I am using AdBlock Plus (with Chrome).
Lenny —
Was just wondering what others are using to block ads. I find that the uBlock Firefox extension co…
Who knows. const doesn't add any guarantees to that. And I never claimed anything about this. con…
Sven —
Who knows. const doesn't add any guarantees to that. And I never claimed anything about this. con…
I think it's awesome home you are keeping the suspense about what the game itself will be in the e…
So I modified my code a bit to do what you suggested and boy did I see the differences. The naive…
I would assume there is no way it will take less than 2 years. There is no question that I am at …
If I may, I think part of the problem here is that different people like to define OOP in differen…
Yes, since people seemed very concerned that scrolling was somehow harder or that they wouldn't le…
There may be some cases where this breaks down; for example when the player gets to a wall they s…
On the subject of GUIs, I happen to catch a bit of the pre-stream chat this week (it is very rare …
khahem —
Interesting, in your system, do you use the same shader for decoration and text ? I'm working a bi…
Casey was discussing this exact point at some length in the day 60 stream (58:24), and my post was…
I don't mean to be rude or offensive, but how's that relevant to the handmade hero code discussion…
This calculation depends heavily upon the idea that he's n-times faster when working alone(3-4 tim…
DSmith —
In the last couple of streams, Casey has mentioned something along the lines of 'we're in our seco…
I am currently working on a 2D GUI framework built directly on top of Direct3D 11 that uses Z-buff…
Strawmen aside, OOP is about two things, as has been mentioned above:EncapsulationPolymorphism Enc…
So people end up with designs that have things inheriting from base classes for functionality whe…
You're right, I wouldn't write a vector like that. But when you are taught OO, to "model the objec…
I agree, const is not hard to go around... it's not real meant for security, it's just meant to pr…
what... this is just silly. You would never write a Vector2f like that, and waht does a virtual fu…
Owen is right that const is mostly an annotation for you to expressing intent of 'Do not mess with…