why you gotta toss C# under the bus there!
Thanks for the reply Casey. I completely understand why you left the platform layer how it is for …
This is really interesting Martins... I will check it out! Maybe we can use it on stream... Thank…
Yes, in this case by "shippable" I just mean that we have not focused on things that the end user …
memcpy could be faster because it supports only non-overlapping regions. memmove needs to test if …
yeah Delix pointed that out to me on IRC earlier, not a good day for me with math ;) edit: oh also…
@miotatsu: x/1.5 = x/(3/2) = x2/3 = x3/3-x/3 = x-x/3
2 is the mathematically worst possible growth factor for exponential growth, and linear growth is…
Your code in _da_insert will do one memcpy too much. You need to start with size-1 index, not with…
@mmozeiko Ah, right; wasn't thinking about this. Implemented this change. Wasn't sure about this; …
@insofaras Thanks! Also yeah, that would be a great feature; I'll implement that. Also, you're abs…
I have a Pi and I've been wanting to get 4coder on it, but I don't think the time is right for it …
I believe the Linux 4coder port should already compile for 32-bit x86 (and probably ARM, but I hav…
This one should be easier then OSX I suppose. Hopefully it's just a compile for ARM (what do i kno…
I just downloaded the project and I've found a few problems in the tutorial. The name of the direc…
ratchetfreak, mrmixer Thanks so much for taking the time and sharing your knowledge on this. Ben
Looks pretty good, one thing I might miss from stb's stretchy buffer though is sb_add. works nice…
Before exploring possibilities for speeding up the computations in Tile Machine, I decided to add …
Why are you realloc'ing in the pop? RIP performance if you want to have a way to shrink the cap to…
As someone who works as a web developer I would say listen to this advice. If you absolutely must…
Don't use double where using just integers is enough. _da_raw(*array)[1] += _da_raw(*array)[1] / 2…
Hey everyone! As a start to my journey in programming in a more handmade fashion, I decided to tes…
My advice. Don't. The "web" as perceived with a browser was invented by a computer scientist as a …
@Ben J Anderson : you're correct. To summarize: In a single run of the program you never want to c…
[/quote] the non-fixed VirtualAlloc would cause issues if you the game and then loaded the memor…
Thank you! That's what I thought could happen. However correct me if I'm wrong, but since the Base…