We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Filip
Doing research here too. I have created hacks before that get it done but the Cocoa API seems to …
»
Björn Berggren
If you want to go at it programmatically: Carbon is old 32bit API that was developed to aid port…
»
Filip
So, what would be the preferred way to go for cocoa? I assume two main paths: (but I'm no expert …
»
Casey Muratori
Thanks for doing this conversion! I'm looking forward to seeing the native Mac layer... - Casey
»
Stefan Koch
Well, then. Lets go an make a compiler everybody can understand ;) I cannot say anything abou…
»
M. Symmes
I know you are looking for books, and I too like to read over video most of the time, but have yo…
»
Johan Öfverstedt
Kladdehelvete I already follow the videos of Jonathan Blow. And they are very interesting. (And I…
»
Livet Ersomen Strøm
I already follow the videos of Jonathan Blow. And they are very interesting. (And I missing more …
»
Johan Öfverstedt
AutoIconicity To get this thread back on the topic of texts on programming, I'm currently reading…
»
Ianuarius
Well, this is pretty much all you'll ever need:
»
Johan Öfverstedt
rathersleepy In the work I currently do (embedded - litte memory, crappy CPU) I have found that …
»
Livet Ersomen Strøm
ryanries Thanks for the info, everyone. From what I understand, QPC will use RDTSC *if* Windows h…
»
Livet Ersomen Strøm
If you listen to people like Ray Kurzweil, and consider history you get the feeling that hardware…
»
Johan Öfverstedt
I would absolutely want to see that happen! I would never miss a show!
»
Ryan Ries
Thanks for the info, everyone. Just for everyone else's amusement and information, here is anoth…
»
zenmumbler
Yes, I'm working right now on a the Mac platform file. It covers the window, keyboard input, audi…
»
Björn Berggren
Thanks! I've been trying to figure out how to do a os x platform layer. This helps a lot. Somewh…
»
Stefan Koch
please remember. I had to hack the source to get it to compile. Expect hiccups! The ValuePrinter …
»
Livet Ersomen Strøm
cmuratori __rdtsc is very important and you definitely want to use it _for profiling_. What MSDN…
»
Stefan Koch
Alright. I ran into problems I have to hack windows support for cling together. It should not be …
»
zenmumbler
Hey, thanks for converting it. I've added a comment on my version linking to yours. I'll post my …
»
Filip
Awesome! I took the liberty to convert to pure c99 for people like myself that don't use c++ much…
»
matra
What's the point in using different function on dev machine if both perform the same function? Is…
»
Stefan Koch
1 2 3 4 5 6 7 8 9 10#define SWAP(T,A,B) {T _tmp = A; A=B; _tmp=A;} //T is the Type A and…
»
Mārtiņš Možeiko
@ryanries: __rdtsc works reliably on SandyBridge and up (also on newer AMD cpus). See here: https…
»
Mārtiņš Možeiko
Not sure why you use winegcc to compile on Linux. You should install mingw-w64-gcc package. MinG…
»
Casey Muratori
__rdtsc is very important and you definitely want to use it _for profiling_. What MSDN is talkin…
»
Ryan Ries
I was curious about a couple things. MSDN strongly discourages the use of the __rdtsc() intrinsi…
»
zenmumbler
For those interested in Mac OS X development, I created a CoreAudio based sample program that sho…
»
Matt Gilene
For anyone using Sublime Text as their editor here is a build system that should automatically bu…
»