Apple just published the video of the tribute to Steve special event at the Apple Campus on October 19, 2011. So kind, that the Apple folks are sharing the event with us. Thanks. It’s really moving.
Picture: Apple

Thank you for so much, Steve.
I was deeply moved by Your commencement speech in Stanford as I am when I watch it today …

Here’s the Quicktime video stream of this years WWDC 2011 keynote about Mac OS X Lion, iOS 5 and iCloud … and how it all works together. So, tune in to see Steve Jobs, Phil Schiller and Scott Forstall presenting the newest software developments.

This years WorldWideDeveloperConference WWDC 2011 sould out within 8 hours. So, bad luck if you’ve been on a transatlanic flight at that time. Today, the lucky ones of the iOS & Mac developer community, who managed to get a ticked this year, gather at the Moscone West Center in San Francisco. Probably, Apple will share the videos of all of the WWDC sessions for free with their registered iOS & Mac developers, like they did last year. And even if the Cupertino guys won’t stream Steve Jobs keynote live, we’ll get a video stream short after the event. For real live coverage we can rely on the all those people blogging from the keynote. The keynote begins at 10:00 AM PST (07:00 PM CET) and there are a lot of things to cover: The next version of Mac OS X called Lion, the next version of iOS for iPhones & iPads and Apples new cloud service iCould.
Here’s my link list for live coverage of the event:
As soon as the keynote is available as a Quicktime stream, you’ll get an update here
Finally, Apple introduced native Git support in Xcode 4. Git is now the standard version control system you can use within Xcode. The Apple engineers did a great job in integrating Git into Xcode 4 … but there is room for improvements
Tools like gitx still are essential for me to keep track of all the branches in the Git-repository.
If you want to use Git as the version control system for your Xcode projects, you definitely should use a specific .gitignore file to keep your Git-repository clean.
That’s the content of a Xcode4 optimized .gitignore text-file:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Exclude the build directory build/* # Exclude temp nibs and swap files *~.nib *.swp # Exclude OS X folder attributes .DS_Store # Exclude user-specific XCode 3 and 4 files *.mode1 *.mode1v3 *.mode2v3 *.perspective *.perspectivev3 *.pbxuser *.xcworkspace xcuserdata |