DW's Home Page : September 2003 Blog Archive
September 27, 2003
Here is my current config: OS X 10.2.6 with Dev Tools, SwapSwapVM (discussions on moving swap here), MenuMeters + PTHClock (screenshot), TinkerTool, OnMyCommand (screenshot), QuickImageCM (screenshot), Fink.
Programs I use (and recommend): Drop Drawers (screenshot), Vim, Idea Knot, Tex-Edit Plus, Video Lan Client, Fugu, MacCvsX, mlMac, SNES9X, Camino (Unofficial), plus iCal, Project Builder.
Posted by dirkpitt2050 at 01:49 AM | Comments (0)
September 16, 2003
For RenderMan on OS X, check out 3Delight, a free REYES renderer with 3Delighter front-end, and BORG, a free network (farm) rendering tool written in Java.
Posted by dirkpitt2050 at 01:41 PM | Comments (0)
In vi, you may search for control characters by typing /^[xxx]
where ^ means [ctrl-v] and xxx is an ascii code. Useful for matching line-endings (a nice shortcut is /^[enter]
). Mac files look like one long line in vi, but if you have vim just add a set fileformats=unix,mac,dos
to your .vimrc and vim will behave nicely.
To batch convert line endings in the shell:
tr "\r" "\n" < mac.txt > unix.txt
Or to get grep to actually work in Mac files:
tr "\r" "\n" < mac.txt | grep 'text'
.
Posted by dirkpitt2050 at 12:05 PM | Comments (0)