January 16, 2010 - 7:25 pm
Posted in apple, technology | No comments
A cool mockup/rumour guide about the alledged Apple Tablet:
December 13, 2009 - 11:50 am
Posted in apple, technology | No comments
I have some contacts I wanted to share with other people so I figured let’s put them into Address Book Server on my Snow Leopard Server. I moved the group on to the server and everything was great. Contacts show up in Address Book on my macbook.
I synch my iPhone as usual. [...]
November 29, 2009 - 5:19 pm
Posted in apple, technology | No comments
To reset Xcode to the default settings:
$ defaults delete com.apple.Xcode
$ rm -rf ~/Library/Application\ Support/Xcode
First, I dislike having a lot of popup windows so I set the layout to “All-In-One” to keep most things within a single window:
And my usual indentation style:
I like having the files autosaved on build:
=
November 22, 2009 - 9:38 pm
Posted in apple | No comments
From How to make /opt visible in Mac OS X Finder:
$ sudo SetFile -a v /opt
May 6, 2009 - 9:40 pm
Posted in technology | No comments
I’ve gotten pretty careful about keeping time in UTC and then converting it to localtime for the user to understand. For the first time, I actually had to find the localtime in a non-local timezone. It’s ugly. It seems you have to mess with the TZ environment variable. Here’s what I [...]
March 3, 2009 - 4:01 pm
Posted in technology | No comments
I tried to mount an NFS volume on my MacBook at home and it was failing. I hadn’t accesed my NFS in a month since I updated to OpenSuse 11.1 or changed some network parameters.
Checking the logs on the server (/var/log/messages) showed this error:
mount request from unknown host
but the IP address seemed good. [...]
January 14, 2009 - 9:50 am
Posted in web | No comments
Someone posted a temporary fix for Wordpress that takes the raw xml and replaces the offending entities with characters. He found three places. The fix looks like:
//xmllib 2.7.0 -2.7.2 stripping leading angle brackets bug patch
if(LIBXML_DOTTED_VERSION == ‘2.7.0′ ||
LIBXML_DOTTED_VERSION == ‘2.7.1′ ||
LIBXML_DOTTED_VERSION == ‘2.7.2′) {
$xml =str_replace("<","<",$xml );
[...]
January 10, 2009 - 3:01 pm
Posted in technology, web | No comments
I was having problems with MarsEdit after updating to OpenSuse 11.1 because of a bug in php aggravated by a recent release of libxml2 (details here).
I was waiting for a real fix but lost my patience today. The advice was to “fall back to libxml2-2.6.32″ so here’s what I did:
Grabbed the RPM from [...]
January 1, 2009 - 10:53 am
Posted in apple, technology, web | No comments
I’d looked into SproutCore and sort of liked the idea. I see Apple is doing more with it — the gallery of MobileMe looks pretty cool.
Here’s an interesting video (jump to the 20min point and listen for about 20min) that argues why we should move more business logic to the browser and use [...]
December 26, 2008 - 10:20 am
Posted in apple | No comments
I’d noticed my Apple Mail wasn’t always getting new messages in a timely manner. My iPhone would frequently get it before Mail!
Setup gmail, apple mail account as per google’s suggestions
These imap settings from google combine how gmail works with Apple’s mail. Read the extra details and the settings make sense.
It took 25 minutes [...]