Posts tagged with osx

BT-1000P mini-review on a mac

June 12th, 2008 • 3 responded. You?

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 • no one likes this

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 • 7 responded. You?

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 • someone cares

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 »