Last 5 comments
8 weeks ago
Pascal:  It should not have a problem with parentheses, any valid CSV should work. Is the file Ending ".csv"? Can you send me the output of the following Terminal command?
qlmanage -d1 -t file.csv
8 weeks ago
Ted Fischer:  This is a fantastic plugin! Unfortunately, it doesn't work with csv data generated from FileMaker Pro. I wonder if it's because FMP encloses the data in parentheses. Is there any way to fix that?
Thanks, Ted
FMPA 8.5 Mac OS 10.5.7
13 weeks ago
Pascal:  Nice tip, thanks! Looks like rsnapshot.org was also inspired by Mike Rubel's post, but done a little more professional than my version. :)
13 weeks ago
zero:  You might be interested in rsnapshot(http://rsnapshot.org). It can do snapshot backups using rsync. Timemachine might be the best comparison to its features... It's available through macports.
13 weeks ago
Bogdan:  With git, repository history rewriting is possible, but I have never tried that (only using git for less than a year).
Anyway, thanks for sharing your experience. In some environments (like whole server backup) using git/svn for backup is not really a good idea.
The archive
July 2009  (1)
March 2009  (1)
July 2008  (3)
June 2008  (1)
May 2008  (3)
March 2008  (1)
July 2007  (1)
June 2007  (3)
May 2007  (1)
April 2007  (1)
March 2007  (1)
July 2006  (2)
June 2006  (6)

Cocoa Framework For MySQL - Build MCPKit As Universal Binary

Monday, July 28th 2008 - 15:21
Using the MCPKit is one way to use MySQL from your Cocoa Application, and I decided to do just that. But there is that one problem since the project seems not to be all that alive - the compiled version is PPC only, no Universal Binary. Well, I thought, download the source and build the Framework on your own. I finally succeeded, but not without running into some troubles first.
6 comments

Eponyms on the iPhone/iPod touch

Saturday, July 19th 2008 - 12:57, 1 update Monday, August 4th 2008 - 11:04
WebIcon.pngIt's done, I just finished uploading my first iPhone application to the iTunes Store named Eponyms. It still is under review, but it's finally up there and scheduled for release July 20 (if it's accepdet by then). The app is an application to look up medical eponyms and is based on the eponym database created by Andrew J. Yee (www.eponyms.net/) featuring more than 1'600 eponyms. It's released under the Apache 2.0 License and therefore Open Source, you can checkout a working copy at the project site:

code.google.com/p/eponyms-touch/


I sell the app for 2 US Dollars but offer the same app as a free download for students. There will be no check if anyone indeed is a student, let's see how honest people are. :)

I hope you like it!

You can't download the app on your own because distributing iPhone applications is done exclusively through iTunes, here the links:
Eponyms Eponyms (for students)
4 comments

SQLite Bulk Insert on the iPhone

Tuesday, July 15th 2008 - 20:30, 1 update Monday, October 19th 2009 - 17:51
I'm currently working on an application for the iPhone/iPod touch and decided to use SQLite as storage for the data. The app will display medical eponyms and must fill the database on first launch and when new eponym data is available from an XML file. It parses the XML file and fills the SQLite database, which currently results in 27 entries to a categories table, 1'623 entries to the eponyms table and 3'281 entries to a linker table (4'931 entries in total). The whole database weighs only 394 KB.

Read the full article to see how I sped up the import process by a magnitude of more than 10.
2 comments