Monthly Archives: December 2011

Meetings.

Seth Godin, Firemen, donuts and meetings Somewhere along the way, meetings changed into events where we wait for someone to take responsibility (while everyone else dives for cover). This rings very true. Sometimes I feel that meetings have no start or end; there’s only the middle. It’s easy to float around there. There’s no finality [...]

Posted in interesting, link | Tagged | Comments closed

ACMA finds Facebook photos are not private

Brett Winterford writes The ACMA was begrudgingly unable to guarantee that users marking content as “private” on a social network could be safe guarded from broadcasters and publishers making it public, at least under the industry code of practice. Who thought sharing your life online could leave your powers of control? The ACMA’s CyberSmart web [...]

Posted in link, social media, thoughts | Comments closed

iOS development – Read and save settings with NSUserDefaults

If you want to store some preference information without having to use core data, then all you require is NSUserDefaults. The NSUserDefaults class provides a programmatic interface for interacting with the defaults system. The defaults system allows an application to customize its behavior to match a user’s preferences. For example, you can allow users to [...]

Posted in iOS, programming | Tagged | Comments closed

The influence of the fantastic martial artist

Ever watched a martial arts film before? There’s usually the protagonist who’s armed with the an arsenal of the deadly arts. Who, with their pure skill can take out everyone. And you know what? It usually looks really cool too. But. From what I’ve learned, that’s not the most practical approach. Martial arts is a [...]

Posted in my life, thoughts | Tagged , | Comments closed

Notethread version 1.0 released

Earlier in the year I had an idea for a different type of note taking application. It just didn’t work out at the time. Yet sometimes an idea is best left to sit in the subconscious. Eventually something clicked, the drive to start and finish it was back. Notethread began.

Posted in iOS, my life, programming | Tagged | Comments closed

iOS development – How do you hide the search bar in a table view?

On stackoverflow, petert answers // Get the frame of the search barCGRect searchBarFrame = self.searchDisplayController.searchBar.frame; // Retrieve it’s actual height// If the search bar’s height is changed we don’t need to worry about itCGFloat searchBarHeight = searchBarFrame.size.height; // Now you’re building the frame that will "hide" the search barCGRect offsetFrame = CGPointMake(0,searchBarHeight); // Set it! Upon load your [...]

Posted in iOS, link, programming | Tagged , | Comments closed

On moving to Android from iOS

It’s very different, and from my meek foray I’ve come to a few conclusions. My problems stem from trying to apply one domains idioms to another. It just does not work like that. Each is designed completely differently and the development tools have evolved in vastly different directions. The biggest mistake I’ve made has been [...]

Posted in Android, iOS, my life, programming, thoughts | Tagged | Comments closed