Future Steve

Notes To Future Steve

Entries Tagged ‘programming’

Making Money with iPhone apps

Newsweek has a story about people who are making big bucks with iPhone apps.

Leave a Comment

Python 2.6 Released

Python 2.6 was released today.

Leave a Comment

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

Leave a Comment

Google MySQL Tools

Google has a bunch of MySQL tools.

Leave a Comment

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 [...]

Leave a Comment