depicus

  just another nerd on the interweb…



  • home
  • gallery
  • play page
  • privacy
  • support
  • videos
  • what is depicus

Posts Tagged ‘Apple’

My new love – a Macbook Air 11″ i7 with 256GB of SSD

Monday, November 28th, 2011



Wowza this machine is amazing, just ran Aperture and imported 10Gb of MRAW files from a Canon 7D and it ran like a dream, fast – yes the processor all 4 of them maxed out but I was screen recording as well. More to follow when I have given it a thorough going over.

Tags: Aperture, Apple, Macbook Air, OSX
Posted in Apple, Canon, Computers, OS X | Comments Off

Apples Location Services and Privacy

Thursday, April 21st, 2011



My god there really are some complete and utter morons about. Now I appreciate keeping location data indefinitely is not ideal but please … Sky News is reporting that “…your iPhone is secretly tracking you every where you go…” yet a minute later they complain that the iPhone they tested did not track the Sky building or the users home address !!!

Out of the many tables in the db the main two appear to be CellLocation and WifiLocation. Mmmmm ok so they record the cell location so not really where I am but the location of the cell towers that are around me. Indeed if I look at the map of these locations many are places where I don’t think I have been. So why record them ?

Well seems that it’s all down to the battery, querying cell towers uses battery power faster than a database lookup. Now that was easy. So what’s the big issue. Well looks like the database person did their job.

But the programmers might have cocked up a bit. The above is a trigger in the database which decreases the record count every time a record is deleted, but the records are not being deleted. Now I suspect that when they tested this feature they used a low number of days (say 1) to keep these records, then when they were happy it was working changed to a larger number. Maybe the number was so large nothing gets deleted. Or they may just have cocked up and commented out the code to delete while testing and forgot to put it back in.

Either way while this isn’t an ideal situation it is compounded by people who know very little about the subject being dragged out to comment on the situation as experts. The situation is not helped by the misleading statements of Warden and Allan saying it is “unclear” why Apple are collecting the data. These so called “security researchers”, one who allegedly worked for Apple didn’t think of the possibility that this is data caching ?

If you think this is bad you really aren’t going to like some of the Apps like Pandora

UPDATE This is a very good read and much better than my ramblings http://ericfadden.com/2011/04/iphone-location-tracking-consolidated-db-and-a-rush-to-judgement/

Tags: Apple, GPS, Privacy, Tracking
Posted in Interweb, iOS | Comments Off

XIB iPad orientation in landscape problem and solution

Wednesday, January 26th, 2011



If you want to show a secondary nib file you may have noticed that it shows fine in portrait mode but from startup not in landscape mode.

This is what I use to fix this. Seems like a fudge but it works, I call this after creating the view.

vSettings is a UIView and backGroundSettings is a UIImageView.

View Code OBJC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
- (void) animateFlipInView:(NSString *)theNib;
{
    UIInterfaceOrientation toInterfaceOrientation = self.interfaceOrientation;
    NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:theNib owner:self options:nil];
    vSettings = [nibObjects objectAtIndex:0];
    [self.view addSubview:vSettings];
    if (iPadCheck)
    {
        if ((toInterfaceOrientation == UIDeviceOrientationLandscapeLeft) || 
			(toInterfaceOrientation == UIDeviceOrientationLandscapeRight)) 
        {
            CGRect contentRect = CGRectMake(0,0,1024,768);
            vSettings.bounds = contentRect;
            CGRect myFrame = vSettings.frame;
            myFrame.origin.x = 0.0;
            myFrame.origin.y = 0.0;
            vSettings.frame = myFrame;
            UIImage *image;
			image = [UIImage imageNamed: @"Default-Landscape.png"];
            [backGroundSettings setImage:image];
		}
    }
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:1.0];
    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.view cache:YES];
    [UIView commitAnimations];
}

Tags: Apple, Bug, iPad, NIB, XIB
Posted in Software Development | Comments Off

Wake on Lan for OSX updated

Saturday, January 8th, 2011



Just submitted to the App Store.

Updates are mainly cosmetic but also added the ability to delete bookmarks.

Tags: App Store, Apple, Wake On Lan, WakeOnLan
Posted in Computers, Software Development, Wake On Lan | Comments Off

Mac App Rejection….

Saturday, January 1st, 2011



Bummer just been rejected for “2.30 Apps that do not comply with the Mac OS X File System documentation will be rejected”

“The application is creating files or writing to ~/Library/Application Support/Depicus/…. Appropriate app-identifiers are ‘WakeOnLan’, ‘com.depicus.osx.wakeonlan’ and your name”

Well have filed an appeal so lets see how we get on but looks like I won’t make it into the App Store for launch.

UPDATE WE WON – Wake on Lan will be in the Mac App Store wheeeeeeeheeee

Tags: App Store, Apple, Code, OSX, Rejected, Wake On Lan, XCode
Posted in Software Development, Wake On Lan | 8 Comments »

<< Previous

  • how i pay the bills

  • depicus in africa

    depicus in africa
  • my charity page

    JustGiving - Sponsor me now!
  • friends

    • Agency Manager
    • AllClear Travel
    • Climbing Tikes
    • Globe Bloggers
    • Marchday
    • The Travel Toad
  • gallery

    IMG_3243 IMG_4351 IMG_2580 300 SL Badge
  • videos

    Vimeo

    YouTube
  • twitter

    • No public Twitter messages.
  • recent comments

    • john coull: correction to above, its www.oakley-ukstore.com
    • john coull: they are at it again. adverts on facebook . they are being hosted by enotch.com on ip address...
    • steve: The site are selling £120+ Oakley sun glasses for £13.00 I think its safe to say they may be either...
    • rob: have received a pair of glasses not what ive ordered they are now telling me the ones ive ordered are out of...
    • phil: hi i have purchased some (stupidly),not arrived yet, will they arrive/will they be fake/plz help

Copyright © - depicus | Entries (RSS) | Comments (RSS)

WordPress theme butchered and amended by me.