honestb There are basically two "minimal" ways to build a Mac App. One is to create an Xcode proj…
Interesting,
Ask yourself Is this code the most performant given the current restrictions at pla…
Thank you for suggestions. Yes, others have also noted that XAudio causes problems on Windows 7, …
Marthog Do you have the hashes in a header file, so that they get instanciated multiple times?
No.
I'm far from an expert but I have played around with this stuff a bit. It's an understatement to …
I think the only new thing would be code signing, which is done with codesign
The Handmade way as I see it is less a philosophy and more a brass tax process. It's about unders…
Yes, it's the whole create-a-bundle situation that I was curious about. I remember shipping Gran…
pragmatic_hero
I've always had the impression the Handmade Way had performance and respecting th…
Handmade.
It’s not a specific technique or programming language—it’s an idea. The idea that we ca…
gingerBill
The Handmade movement is nothing about which programming language you use, nor if you…
Sizik You could also represent them the other way around, which lines up intuitively with what th…
All right! Now it totally makes sense. Thank you!
adge
Because I think that << means: shift to the left (to the next lower memory address)
…
Hmm I think I got a fundamental understanding problem with how memory works
Lets say I have memo…
It means Casey will want to run/ship his 1935 game on OSX.
Btw running just the clang to compile…
cmuratori Quick aside: I would like to get 1935 building on the Mac sometime in the future...
An…
To be a little bit more specific:
For writing code I use Atom. Which I also write my build.sh sc…
Do you have the hashes in a header file, so that they get instanciated multiple times?
lldb TUI is absolutely unusable and would not wish upon anyone. Unfortunately, the only half-dece…
C++'s const is not a good comparison. The constness is too shallow. Pointers can still mutate oth…
ratchetfreak This is undefined behavior because the compiler is free to not allocate space for v2…
For building its easy - you don't need to install full Xcode. You can install only "Xcode Command…
I use Sublime text for my editing needs and then use either lldb in the console or Xcode to debug…
Quick aside: I would like to get 1935 building on the Mac sometime in the future, and so I'd be i…
Hi there!
This is a shoutout to everyone who is developing on OS X without the use of big IDE's …
In the case of shared data in concurrency, immutability can be very good as you suggest. I'm not …
If your code is multi-threaded, then having data shared across threads never change is a very goo…
Cranky:
I understand that problem too. How I handle entities (variables, constants, procedures, …
ratchetfreak
1
2
3
4abs :: overload{ (f : float ) -> float{return ...},
(f …