It was not implemented, and sinf from CRT is called in the code. There is no "hardware instruction…
Please tell me he was just going to use the hardware instruction... this is a project in itself.
I have been going over the first few days of HMH trying to get them in my head, and the TODO about…
Okay, now you've piqued my interest. XD What exactly do you find dishonest about a range [0-10)? …
New version of RemedyBG is available for download on itch.io. New FeatureAdded a Control | Source …
A popular use for macros is for extending syntax, but this often goes wrong. Even if you have a la…
Macros and compile time evaluation are popular ways to extend a language. While macros fell out of…
Shouldn't the link to enter in feed reader be https://macoy.me/rss instead of https://macoy.me ? I…
Well.... I have used elaborate type systems from time to time in haskell and typescript. And after…
It's increasingly popular to use type inference for variable declarations. – and it's understand…
This article is mirrored on my blog.News It has been nearly a month since my last post, and there …
I imagine Casey Muratori would have kept going much longer beyond this point... and someday I woul…
Hey i ran this benchmark on firefox and it seems like firefox is also doing the same with innerHTM…
Ah of course! I was thinking about the rant on Jeff and Casey show about creating the website usin…
So I am stumped! To me this seems to indicate that they should run in the same time... Not sure w…
Hello, I tried to find the code for innerHTML and appendChild in Chromium in the hopes that the ex…
I see. Thanks for the link. I'll watch it tonight. And Ill google the things you mentioned as well…
It can mean a lot of things. I would say there are two types of effects:fullscreen effect like mot…
Hi Simon, So I wanted to know what these special effects are. I am not really a gamer so I tried t…
For reference this is the part of the Q&A Casey will cover particle systems at some point (day 15…
Didn't they later on end up being the cause of injury?
I haven't used it. But can't you just use the Edit_SetSel to remove all the selection on losing fo…
During QNA Casey Muratori said that hmh will look better than most games made in engines off the s…
Variable length array (VLA) is when you don't know length at compile time. This is C99 feature: Sa…
The stack pointer tells how much is allocated on the stack to allow allocating variable length arr…
Allocating a constant amount of memory (no variable length array) on the stack is just an addition…
My god you are a genius. I see the issue you are pointing to and I will keep that in mind in the f…
So the shadow space is before any arguments that are on the stack? And because callers already nee…
Yes, caller allocates space. But the part of "waste of time" was about dumping registers to that s…