Try the search, it's linked to some great forums
Saturday, December 31, 2011
Friday, December 30, 2011
Year end hike - Cal Poly Cow Corral
Here's a first version of one of my hikes built on the iPhone with MotionX, uploaded into Google Maps, and displayed on the blog! More tweeking to come.
Happy New Years everyone!
Wednesday, December 28, 2011
Thursday, December 1, 2011
Monday, November 28, 2011
Sunday, November 13, 2011
Thursday, November 10, 2011
Sunday, October 23, 2011
Great time lapse video example
I love the way the slow motion is used with the time lapse.
Landscapes: Volume One from Dustin Farrell on Vimeo.
Landscapes: Volume One from Dustin Farrell on Vimeo.
Sunday, September 25, 2011
Friday, September 16, 2011
Good Driving Article
http://www.cnn.com/2011/TECH/innovation/09/12/cars.waste.fuel.wired/index.html?hpt=hp_bn7saving gas the Prius way
Friday, August 19, 2011
Wednesday, August 17, 2011
Apps I've coded
The following links & icons are for apps I've coded for the nice folks at Blue Lotus;
iZen Desk HD
http://itunes.apple.com/br/app/izen-desk-hd/id428809619?mt=8
This is an upgraded version of the Sexy Car Clock and includes a Json weather widget with CLLocation and a 4 day weather forecast.
This iPad app is a 'slideshow' app with 100 JPEGs that can be scrolled across the screen. It includes a series of widgets on it's toolbar that allows iTunes build a custom playlist, view the time and also vary the slideshow parameters of time & type of transition.
Tomato Trouble
Tomato Trouble is an animated children's book using Cocos2D and a variety of 3rd party animation tools including SpriteHelper & LevelHelper. I did troubleshooting on some of the Xcode and also helped to detail the animation by layering physics onto various sprite.
iZen Desk HD
http://itunes.apple.com/br/app/izen-desk-hd/id428809619?mt=8
This is an upgraded version of the Sexy Car Clock and includes a Json weather widget with CLLocation and a 4 day weather forecast.
Sexy Car Clock HD
http://itunes.apple.com/sn/app/sexy-car-clock-hd/id425078257?mt=8This iPad app is a 'slideshow' app with 100 JPEGs that can be scrolled across the screen. It includes a series of widgets on it's toolbar that allows iTunes build a custom playlist, view the time and also vary the slideshow parameters of time & type of transition.
Tomato Trouble
Tomato Trouble is an animated children's book using Cocos2D and a variety of 3rd party animation tools including SpriteHelper & LevelHelper. I did troubleshooting on some of the Xcode and also helped to detail the animation by layering physics onto various sprite.
Importing & geolocating photos into Google Earth
Here are some tips & tricks for importing photos into your KML tours;
To add a photo;
In Google Earth press ADD - PHOTO
then BROWSE for your photo
To adjust view & details;
To add a photo;
In Google Earth press ADD - PHOTO
then BROWSE for your photo
To adjust view & details;
Sunday, August 14, 2011
Iraq / Afganistan Casualty Counters
This is a sobering reminder of the cost of our terrible mistake over there, and should be a warning for all future thoughts of meddling in other's affairs. The website is AntiWar.com, and their link;
http://antiwar.com/casualties/
Here's another important link for visualizing the impact of casualties from CNN;
http://www.cnn.com/SPECIALS/war.casualties/
Friday, August 12, 2011
UIImagePicker - Photo metadata
The keys for this dictionary are listed in the info dictionary (%@, info) within the UIImagePicker Delegate;
Where is the location data?
2011-08-02 19:20:21.489 HandMirror[762:707] The metadata is {
UIImagePickerControllerMediaMetadata = {
DPIHeight = 72;
DPIWidth = 72;
Orientation = 6;
"{Exif}" = {
ColorSpace = 1;
DateTimeDigitized = "2011:08:02 19:20:18";
DateTimeOriginal = "2011:08:02 19:20:18";
PixelXDimension = 480;
PixelYDimension = 640;
};
"{TIFF}" = {
DateTime = "2011:08:02 19:20:18";
Make = Apple;
Model = "iPad 2";
Software = "4.3.3";
XResolution = 72;
YResolution = 72;
};
};
UIImagePickerControllerMediaType = "public.image";
UIImagePickerControllerOriginalImage = "";
UIImagePickerControllerMediaMetadata = {
DPIHeight = 72;
DPIWidth = 72;
Orientation = 6;
"{Exif}" = {
ColorSpace = 1;
DateTimeDigitized = "2011:08:02 19:20:18";
DateTimeOriginal = "2011:08:02 19:20:18";
PixelXDimension = 480;
PixelYDimension = 640;
};
"{TIFF}" = {
DateTime = "2011:08:02 19:20:18";
Make = Apple;
Model = "iPad 2";
Software = "4.3.3";
XResolution = 72;
YResolution = 72;
};
};
UIImagePickerControllerMediaType = "public.image";
UIImagePickerControllerOriginalImage = "
Friday, July 29, 2011
Facebook API Installation
Facebooks instructions for getting hooked up to their git hub;
Github repository =
https://developers.facebook.com/docs/guides/mobile/
Github repository =
git clone git://github.com/facebook/facebook-ios-sdk.git
Thursday, July 28, 2011
Popover's & their delegate for iPads
The following code is a simple implementation of a popover using a separate view controller & xib file. First the instantiation & display code;
InfoViewController *popoverView = [[InfoViewController alloc] init];
popoverView.delegate = self;
// Creates the popoverController object
infoPopover = [[UIPopoverController alloc] initWithContentViewController:popoverView];
[infoPopover setDelegate:self];
[infoPopover presentPopoverFromRect:CGRectMake(512, 200, 10, -30) inView:self.view permittedArrowDirections:0 animated:NO];
[infoPopover setPopoverContentSize:CGSizeMake(400, 500)];
and then instructions;
in PopoverViewController
the .xib file
the .h file
InfoViewController *popoverView = [[InfoViewController alloc] init];
popoverView.delegate = self;
// Creates the popoverController object
infoPopover = [[UIPopoverController alloc] initWithContentViewController:popoverView];
[infoPopover setDelegate:self];
[infoPopover presentPopoverFromRect:CGRectMake(512, 200, 10, -30) inView:self.view permittedArrowDirections:0 animated:NO];
[infoPopover setPopoverContentSize:CGSizeMake(400, 500)];
and then instructions;
in PopoverViewController
the .xib file
- in the view change the status bar = None, so that you can resize the screen
- add controls as you like
- add IBOutlet IBActions to match the xib file
- connect them to the xib objects
- add delegate protocol & method definitions at the bottom of the file
- add the delegate property using assign & id
- synthesize & release the popover controls
the .h file
- add the conforms to
- add a UIPopoverController property use assign for the property
- Add an IBAction show button to display the popover
- Add the delegate's methods
Subscribe to:
Posts (Atom)