depicus

  just another nerd on the interweb…



  • home
  • gallery
  • play page
  • 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 | No Comments »

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 | No Comments »

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 | No Comments »

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 | No Comments »

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

  • google rank getter

    Android Apache Aperture Apple App Store bbPress Bike Bug Canon 7D Code Dell DotNet Dropbox Fail Firefox forum Frustration Golf iPad iPhone iPod Touch Java Kenya Linksys Macbook Pro Netgear Objective C Open Source OSX PHP Rejected Safari Server Skype Support Ubuntu Update WakeOnLan Wake On Lan Wifi Windows Windows 7 Phone Wireshark Wordpress XCode
  • depicus in africa

    depicus in africa
  • friends

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

    IMG_4643 Bisley Developments Ltd IMG_3879 IMG_2314
  • videos

    Vimeo

    YouTube
  • twitter

    • Holy geekness batman we have an Arduino doing Wake on Lan forwarding programmed in less than 4 hours… amazing - #iamanubergeektoday view
    • Arduino WoLF app coming along nicely view
    • RT @pasm69: On the one hand we are in a #drought says #thameswater, on the other £4.1B to throw rainwater down the #supersewer #itisjust ... view
  • recent comments

    • Sef: Yo, thats 720p @ 60fps. Huge Difference… in file size, processing, everything. DSLRs aren’t there...
    • Finson: Worked..!! Replaced all the InstallOnLHS and InstallOnWinXP with value 0 and the installation completed...
    • Geux: Terminal command didn’t work, but editing the plist manually did the trick. Thanks !!!
    • Nebras Alattar: Hi The code that you posted is very useful, but i faced a problem when i run the app i got the...
    • leon: how can I get the ImageIO.framework ? I’ve read that it doesn’t exist for iphone!!!! Can anyone...
  • archives

    • May 2012 (2)
    • April 2012 (4)
    • February 2012 (8)
    • January 2012 (6)
    • December 2011 (7)
    • November 2011 (1)
    • October 2011 (2)
    • September 2011 (2)
    • August 2011 (4)
    • July 2011 (6)
    • June 2011 (9)
    • May 2011 (8)
    • April 2011 (2)
    • February 2011 (6)
    • January 2011 (14)
    • December 2010 (9)
    • November 2010 (8)
    • October 2010 (14)
    • September 2010 (6)
    • August 2010 (9)
    • July 2010 (1)
    • June 2010 (2)
    • May 2010 (2)
    • April 2010 (2)
    • March 2010 (11)
    • February 2010 (3)

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

WordPress theme butchered and amended by me.