how to rename jpg files easily

hey folks, here some useful tips, how to easily rename jpg file according to their exif information (found at http://giantdorks.org/alain/rename-jpeg-files-with-exif-date-using-exiv2): exiv2 -r ‘%Y-%m-%d_%H%M%S_:basename:’ rename myfile.jpg or using this script for entire directories: find . -iname “*.JPG” | while read f; do exiv2 -r ‘%Y-%m-%d_%H-%M-%S_:basename:’ rename “$f” done thanks to Alain Kelder! ;)

December 12, 2010

iphone application programming - videos

here you gonna get this … Tools and APIs required to build applications for the iPhone platform using the iPhone SDK. User interface designs for mobile devices and unique user interactions using multitouch technologies. Object-oriented design using model-view-controller pattern, memory management, Objective-C programming language. iPhone APIs and tools including Xcode, Interface Builder and Instruments on Mac OS X. Other topics include: core animation, bonjour networking, mobile device power management and performance considerations....

October 11, 2009

why to use git

more information at this meeting … http://jsug.at/wiki/Meeting_20

October 11, 2009