safetydank | 11 years ago | on: Affinity Designer – Illustrator alternative
safetydank's comments
safetydank | 12 years ago | on: On Asm.js
So asm.js took a beeline - leveraging existing Javascript machinery for security/JIT and shoehorning a way to run executable LLVM on top of it. The fact that it's Javascript is just a detail, a legacy of the days when one vendor (Netscape) was able to push through a standard for running code in the browser.
In today's fragmented browser landscape I find it hard to believe a consensus could be reached again. Most of the major browser makers (Google, Microsoft, Apple) have their own platform agenda to push - in that context asm.js's compatibility with existing Javascript engines gives it the best chance of adoption.
But I agree, the hoops that had to be jumped through are a damned shame.
safetydank | 12 years ago | on: Three.js ported to C++
I wish I'd seen this a month ago - I've been working on my own C++ port of three.js, but focusing on mobile and web targets via emscripten.
It's reassuring to see how similar the client API looks. And interesting to note differences in the porting approach. Three.js uses dynamic objects in a lot of places, which can be difficult to translate to static types in C++. On the other hand, there's a lot less wrangling of types to and from OpenGL compatible arrays which makes it easier to use in some ways.
See http://github.com/safetydank/resinlib for my port.
safetydank | 12 years ago | on: Go 1.1 Function Calls
safetydank | 12 years ago | on: Go 1.1 Function Calls