Empty iPhone Emails – Solved

August 25th, 2008

NOTE: iPhones Firmware update 2.1, seems to have gotten rid of the problem. If now only Apple would fix the damn calendar bug

Have you recently sent an email from your beloved iPhone and have it delivered – empty? Then when you look at the sent on your phone you get the lovely: “This message has no content”. Read more »

Paperless office – the story of the S510M

August 24th, 2008

Going green? Or going neat? Get rid of that paper!

Paper stack. Source: flickr{bookgrl}

Think of all the bills, invoices, warranty cards, tax refunds and bank statements that you file away, day after day. The problem here is that paper is bulky, and takes up a lot of physical space, especially if you’re an owner of a filing cabinet.

My hope for this task was to achieve a state where I can be light on my feet, Read more »

Fantastic GPS Logger, a Field Report for BT-1000P

August 15th, 2008

To add to the ever increasing arsenal of gadgets to never leave at home, comes the BT-1000P GPS Logger.

Having recently purchased the unit, especially for the purpose tagging all the photos for an upcoming trip, I flew away extremely happy, Read more »

BT-1000P mini-review on a mac

June 12th, 2008

Am soon going away on a little trip, over to Europe, through Tokyo. Wishing to record my trip, as well as have some data for geocoding the photos, I went on a quest to find a GPS unit that allowed me to:

  • log data to internal memory
  • make sure there’s LOTS of memory
  • and lots of battery

Read more »

Get Nightly WebKit without SVN

April 13th, 2008

WebKit Icon

Everyone agrees that WebKit is the faster browser engine. Plus its my favourite browser/engine in OSX

Problem is that it doesn’t update itself automatically – and every night there’s a beautiful new build that comes out – which I simply must have.

So in order to save you time – here’s a little script that I put together this afternoon that will download the latest build at the push of a button.

Initially I wrote it with wget, but realised not everyone will have it installed – hence here’s a version with curl



#!/bin/bash

# getWebKit.sh - Obtain the latest WebKit build
#
# Created by Roman Tarnavski on 2008-04-13.
# For an updated version head to www.romant.net
#
#
# Distributed under a Creative Commons Attribution 3.0 License
# For more details on the license: http://creativecommons.org/licenses/by/3.0/

var_dir="/var/tmp/"

echo -n "Downloading WebPage ..."
location="http://nightly.webkit.org"
curl http://nightly.webkit.org/index.html -o ${var_dir}index.html > .get_webkit.log 2>&1
nightly=`cat ${var_dir}index.html | grep ".dmg" | cut -d '"' -f 2 | uniq`
echo "Done"

filename=`echo $nightly | cut -d '/' -f 5`

echo -n "Getting WebKit ..."
curl $location$nightly -o $var_dir$filename >> .get_webkit.log 2>&1
echo "Done"

if [ $? ]; then
echo -n "Installing WebKit ..."
rm -rf /Applications/WebKit.app
hdiutil attach -quiet "$var_dir$filename"
cp -R /Volumes/WebKit/WebKit.app /Applications/
hdiutil detach -quiet /Volumes/WebKit
echo "Done"
exit 0
fi

#cleanup
if (( $? )); then rm ${var_dir}index.html && rm $var_dir$filename ; fi

 Grab it and let me know how you go

 

OSX Not Colour Calibrated

March 20th, 2008

It seems that Apple left one thing out of the equation for Safari 3.1 – colour adherence. With my new Dell 2408WFP, I was getting quite stroppy – as no matter how many times I would calibrate it – it would continually not show the correct colours as compared to my MacBook Pro screen [matte] – or so it seemed. I initially posted two photos on DPreview hoping to ascertain some unknown out of the crown. Here is the MacBook Pro screen with the ‘correct’ colour. Read more »

Neat Lightroom Shortcut

March 17th, 2008

Ever wanted to hide the left+right pane’s within Lightroom without having either custom defined shortcuts, or modifying OS X keyboard preferences to enable function keys? Read more »

Quality control at Apple

March 16th, 2008

Apple and their quality control leaves to be desired, especially on their last revision of the MacBook Pro’s.

Late last week I purchased the MBP from Apple’s Online store. Thinking about the resale value, I decided to spec up the bottom model. I added: Read more »

MacBook Air vs. Dell XPS m1730

March 6th, 2008

I decided to bring my girlfriends MacBook Air into class – Ola had his Dell XPS m1730.

Brendan decided to take some photos. Enjoy. Sorry for the bad quality – its his crappyN95 to blame Read more »

Google Apps and Domains semi-Integration

January 29th, 2008

Gmail/Gcal and Google Reader, my most used webapps within Google Apps. Although if you’re a dedicated geek or merely wish to exhibit more control over your email experience, you’d be well accustomed with Google Apps For Your Domain [GAFYD]. Where-by you’d have Google look after your e-mail needs at the very least. Read more »