back
user profile
AntiRush
1,538karma·202submissions·September 8, 2010
about
t@fairfieldt.com
recent activity (202 total)
comment
Doesn't render at all in Firefox 37: "TypeError: undefined has no properties"
comment
There's a library[1] that wraps the jni, allowing just that. I haven't tried it, but it looks featureful enough to be useful. [1] https://github.com/Monnoroch/RustJni …
comment
uthash[1] is another good solution. It's pretty bulletproof and has lots of options. Also implemented with macros, if that's a plus :-). [1]: http://troydhanson.github.io/u…
comment
The referencesource project seems to be MIT licensed: https://github.com/Microsoft/referencesource/blob/master/LIC... …
comment
It seems like the current patch might not be a complete fix: http://seclists.org/oss-sec/2014/q3/671 …
comment
Another project targeting Java on iOS is XMLVM[1]. It has several frontends, including JVM bytecode, and several backends, including Objective-C (and vanilla C, these days). 1. http://xmlvm…
comment
Virtualbox is open source - GPLv2 https://www.virtualbox.org/browser/vbox/trunk
comment
Javascript has the normal (C syntax) set of bitwise operations that operate on 32 bit numbers. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe... …
comment
It's coffeescript[1] [1] http://coffeescript.org/
comment
The JavaScriptCore they are compiling is without the JIT. You still can't have memory pages marked write+execute, which is what you need for a JIT.
comment
If we look at Groupon as a model, it becomes clear that SG&A is the major expense for a deals company like Living Social. Earlier in its existence, marketing was also a huge cash sink for Groupon.…
comment
If you're looking for XMonad on OSX, check out OSXMonad( https://github.com/xmonad/osxmonad ). It's pretty usable at this point. One problem with it (and any of the other tiling solutions), is the dr…
comment
Yes, that's correct. Art assets can be licensed however you like.
comment
If you are interested in a commercial license under different terms, you can contact me at fairfieldt@gameclosure.com. The GCFL covers what we see as the majority case for game developers - we can wor…
comment
The spirit of the requirement is to encourage contributions back to the GPL version. You can fix or modify the GCFL version as needed - the only requirement is that you contribute back any changes to…
comment
We've dual licensed the DevKit - you can choose either the GPL or our free commercial license:
http://www.gameclosure.com/license.html That page is about the GPL licensed version. It's basically …
comment
Our focus has been on support for the mobile platforms - iOS and Android. As such, the deployment tooling is really focused on releasing games to the app store. This may change in the future - for th…
comment
Recently, I've been trying out a few of the options out there. My requirements are: * generates C * generates a fast parser Ease of use is also obviously a good thing. A few of the options I explored…
comment
The Cocos2d-x (Cocos2d api in C++ with a bunch of supported platforms[1]) has had Cocos2d-HTML5[2] for a while.
It uses the same api as their JavaScript bindings and there are some demos of complete…
comment
Another JavaScript VM in JavaScript (this one by Brendan Eich and Mozilla): https://github.com/mozilla/narcissus Narcissus is pretty cool - it's used as a testbed for new Harmony features. It's mo…
comment
Wine has a pretty good DirectX to OpenGL translation layer. It could be leveraged to provide this. Many games on Steam run quite well on top of Wine, and some of the OSX games available on Steam alr…
comment
Some ipod touch devices had a bluetooth chip in them and it wasn't enabled.
comment
I wrote something similar on top of nodejs to simplify some problems at Game Closure. http://www.github.com/gameclosure/jash It's probably not ready for prime time - past it's initial use cases it h…
comment
Another project that focuses on Java to Objective-C is http://xmlvm.org . XMLVM also offers an Android compatibility layer, including some UI support.
comment
I have an install of Firefox 3.6 because an application I develop uses the version of Spidermonkey that shipped with 3.6. It's nice to be able to easily test code and get a rough performance profile i…
comment
For iOS, at least, this is a requirement to conform with the license. Since you cannot dynamically link with libraries on iOS, sparrow is using static linking. The letter of the lgpl requires that yo…
comment
On Steam, you click add to cart (which takes you to a checkout page), and then you have to check an "I agree..." box before hitting the actual purchase button. I don't think this qualifies as one-clic…
comment
To solve the security issue, the bookmarklet could perform some sort of hash checking on the source and refuse to run if it's changed. The question is, can a hash function and verification logic be ma…
comment
I'm not sure if you did it on purpose, but http://www.w3.org/Provider/Style/URI works and is more in the spirit of the article than http://www.w3.org/Provider/Style/URI.html …