TraceMonkey is coming.
Category Archive: programming
Oct
02
Python 2.6 Released
Python 2.6 was released today.
Oct
01
iPhone NDA Lifted
Apple made the following announcement today: We have decided to drop the non-disclosure agreement (NDA) for released iPhone software. We put the NDA in place because the iPhone OS includes many Apple inventions and innovations that we would like to protect, so that others don’t steal our work. It has happened before. While we have …
Sep
13
HTML 5 – In 2022??
Note to Future Steve… Remember to check to see if releasing the HTML 5 standard in 2022 will matter to anyone by then.
Sep
04
Cappuccino and Objective J
A new web framework called Cappuccino has been released. It allows you to program web apps in Objective-J (something similar to Object-C, only more like Javascript), and come up with some pretty impressive apps. Check out
Aug
25
Google MySQL Tools
Google has a bunch of MySQL tools.
Aug
24
Microsoft’s LINQ and Apple’s Cocoa Key Paths
I’ve been working with Objective-C recently, and ran across a discussion of Cocoa Key Paths and Microsoft’s LINQ. With Microsoft LINQ (Language Integrated Query), you can do things like this: public void Linq1() { int[] numbers = { 5, 4, 1, 3, 9, 8, 6, 7, 2, 0 }; var lowNums = from n in …