My new super crap iPhone ringtone.
Download the m4r ringtone file here. files.me.com/sponno/cifjza
My new super crap iPhone ringtone.
Download the m4r ringtone file here. files.me.com/sponno/cifjza
@nzben
General gadget news and TV show boy, has taken to blogging a lot lately.
@mitch_olson
Co-founder of Smallworlds.com always has some great links for anyone running a business.
General rants and oracle of worldly knowledge.
@PolarBearFarm
Loves kicking the s**t out of Apple products and tools because they dont work they way he wants them. A great read and things would work a lot better at Apple if Layton was running the show.
@segdeha
Notorious twitter, posting dozens of updates a day. Replies to many and always has something interesting to say. Generally hates every product once using it, always thinks the next product around the corner will be better from reading reviews.
@matthewbuchanan
Matthew Buchanan likes to keep his finger in the pulse and the other hand tapped into the internet 18 hours a day. If there ever is any decent movie to see you will find it via Matthew.
@beattieboy
Actually writes good blog posts and contributes a lot to the web development community. Gets involved in a good Twitter scarp some times.
@sneak
Coffee addict. Also the creator of some fun twitter tools.
@jarred
Gadget, flim, photography, tumblr.com, design and internet geek for Wellington, definitely on the up.
@simianaudio
Good links and active in twitter conversations with pretty good feedback.
@elliottkember
x-kiwi, he will be back, currently working in the UK. His generally musing are generally on the money and now he has quite a lot of followers he creates more thoughtful posts.
Author: @sponno
So you built a project in XCode and decided to change the name. Well its a small pain to do this. 6 simple steps - how to rename the project and target executables.
NSBundle *bundle = [NSBundle mainBundle];
NSDictionary *info = [bundle infoDictionary];
if ([info objectForKey: @”SignerIdentity”] != nil)
{
/* Looks like this is app is pirated */
}
I use the built-in OSX screen capture tools a lot when I’m working. By default, when using the Command+Shift+3/4 options, these captures are saved to the desktop — which gets messy fast when you use them often. A number of months ago I found a great tip on changing the default save location of these screen captures, and so now I have them saving to a folder in my Documents and have put that folder into my dock as a Stack, making them easily accessible but out of the way.
To change the default save location, open up Terminal and run the following command:
defaults write com.apple.screencapture location /Users/YOURUSERNAME/Documents/ScreenshotsObviously you would change the path to match whatever folder you want the captures to save into. You will need to log out and back in before you will see the changes. Once done, go to the new save folder and drag it down into the right-hand side of your dock. Now whenever you save a screen capture it will automagically appear down in your Stack :)
Of course, if you don’t need a saved copy of the capture you can also add the Ctrl key to the mix when taking it — this will save the screen capture onto your clipboard rather than saving a file, and you can then paste it directly into a document.
Mini Mortgage Manager icon displayed in the Austin Texas Apple Store. Awesome.
Dog signs in parks are always a bit funny
H2O PHP TEMPLATING ENGINE / LIKE DJANGO
Wow finally I found something that really makes me like PHP so much more. Recently I have been trying to do every new project I start in Google App Engine. Simply I love the Django templates that allows me to quickly build up the project in a tiny amount of code.
After a quick search I found H20 templating system which is port of the Django system.
http://github.com/speedmax/h2o-php/tree/master
The documentation is quick and excellent, setup is simple.
To get started code is simple as this.
*in your template*
{{ person.name }}
*in php*
$person =array(
‘name’ => ‘Peter Jackson’, ‘age’ => 25
);
$h2o->render(compact(‘person’));
?>
OK, so that was easy. But you can also get your template to inherit your layout or base template which means it will automatically write into pre-defined areas of this template.
Since using this, it has turned 2-3 pages of pretty messy code down to 3-4 pages of super tiny simple code that is extensible.
Tilda the dog aged about 6 weeks. Boy puppies are cute.