Technology

admin on December 31st, 2010

If you compile your source with >= 3.x versions, we will get a deprecated warning cell.image = [UIImage imageNamed:@"your_image.png"]; should be changed to: [cell.imageView setImage:[UIImage imageNamed:@"your_image.png"]]; Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

Continue reading about cell.image deprecated

admin on December 18th, 2010

Dropbox has released today a new update.  These are some of the changes: Dropbox 1.0! In addition to hundreds (yep, hundreds) of bug fixes, vastly reduced resource usage (think of it as the Prius model of Dropbox), Dropbox 1.0 (“Rainbow Shell”) also offers support for extended attributes, selective sync, and a shiny new installation wiza [...]

Continue reading about Dropbox v1.0 is here!

admin on December 15th, 2010

Who has not been at one time or another requested by family members to do free tech support? Some folks at Google want to remedy this situation by providing video tutorials for then non technical savy Find out more at  ’Teach Parents Tech” website Bookmark on Delicious Digg this post Recommend on Facebook share via [...]

Continue reading about Teach Parents Tech via Google

admin on December 15th, 2010

If you are looking for a file sharing solution or a backup solution, look no further than DropBox.  This software works on Windows, Mac and even iPhone.  You will also get 2 GB absolutely FREE! Give it a try! Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it [...]

Continue reading about File Sharing the easy way: DropBox to the rescue!

admin on December 13th, 2010

If you have two CLLocations and are wondering how to calculate the distance in between, here is how: CLLocation *location1 = [[CLLocation alloc] initWithLatitude:42.333297 longitude:-71.588858]; CLLocation *location2 = [[CLLocation alloc] initWithLatitude:42.353297 longitude:-71.578858]; float distanceInBetween = [location1 getDistanceFrom:location2]; The code above is deprecated, the new code should look like: CLLocationDistance kilometers; kilometers = [location1 distanceFromLocation:location2] / [...]

Continue reading about Calculate distance between two locations

admin on December 12th, 2010

Google Cloud Print enables any application (web, desktop, mobile) on any device to print to any printer. for more info, visit: http://bit.ly/dSzuNd Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

Continue reading about What is Google Cloud Print?