begin

What is a good Objective-C App to get started on?

I am starting Objective-C with intention to get into extensive iPhone Development. Where are some good places to start? I have purchased 2 books: Programming in Objective-C by Stephen Kochan and Beginning iPhone Development by Dave Mark and Jeff LaMarche The tutorials are good, I would just like to get into my own t...

Perl's BEGIN{} block in Python

I have Python code that uses the "with" keyword (new in 2.6) and I want to check if the interpreter version is at least 2.6, so I use this code: import sys if sys.version < '2.6': raise Exception( "python 2.6 required" ) However, the 2.4 interpreter chokes on the with keyword (later in the script) because it doesn't recognize the ...