-
HOWTO: Connect Mac OS X Panther laptop to Canon MP390 multi-function printer
My brother was having problems hooking up his Powerbook to a Canon MP390 multi-function printer/scanner/fax. Here is his write-up about how to successfully print to this (PC-only) printer: So I have a Powerbook OS 10.3.8 and I needed to print a word document and my roommate only has a Canon MP390 which only works for…
-
HOWTO: use grep to transform company, address, phone, web into CSV format
Grep pattern for the day: (.*)r(.*)r(.*), ([A-Z]*) ([0-9]*(-[0-9]*)?)r(P: (.*)r)?(F: (.*)r)?((.*@.*)r)?((www.*)r)? This will take a list in the form of: Company Name Address City, State ZIP P: 123-123-1234 F: 123-123-1234 email@example.com www.example.com where the phone, fax, email and website are all optional and allow you to then reorder into a nice CSV format with a replace:…
-
Unix command for the day: du -h | grep “[0-9]M” | sort -n -r > du.txt
Here’s the unix command for the day: du -h | grep “[0-9]M” | sort -n -r > du.txt or du -h | grep “[0-9]M” | sort -n -r | less This will: 1) Do a disk usage (human readable) du -h 2) pipe the results to grep to search for all instances of a number…
-
HOWTO: How to record a streaming .ram file to .mp3 using OS X
Introduction The other day I was trying to figure out how to get the audio-recorded version of the Christian Science Bible Lesson onto my shiny new iPod photo. The iPod likes .mp3 or .aac files. It does not include any way to save out a Real Player audio stream in .ram or .rm format and…
-
howto rsync current directory with remote server over ssh
This will upload the new files using SSH from the current directory and synchronize with the remote directory public_html on HOST, pushing only the new or changed files. rsync -rvC –rsh=”ssh -l SSH_USERNAME” * HOST:public_html/ mmmm, tasty rsync. my new best friend. even better than scp, I think. From man rsync: -C, –cvs-exclude This is…
-
Convert Real Player and WMV into AVI then join and encode into new WMV file using Real7ime Converter, Stoik, VirtualDub and Windows Media Encoder
I was working on a project and needed to combine a Real Player clip together with a Windows Media Player clip into a new WMV file. I was able to use the following software (all free to download and use) to tackle each part. 1) To convert Real Player video to AVI format: Real7ime Converter…
-
find: missing argument to -exec (remove Picasa.ini files)
So let’s say you just ran Picasa, Google’s new aquisition, and it displays all your pictures great. It’s actually a reall neat little application, pretty slick. However, it is not so slick that it can’t help but leave a (hidden) “Picasa.ini” file in every directory it finds images in. That is mostly fine, except for…
-
Kryptonite Evolution 2000 U- Lock hacked by a Bic pen – Engadget – www.engadget.com
Kryptonite Evolution 2000 U- Lock hacked by a Bic pen – Engadget – www.engadget.com Kryptonite Evolution 2000 U- Lock hacked by a Bic pen Posted Sep 14, 2004, 5:04 PM ET by Phillip Torrone Related entries: Misc. Gadgets lock vs pen Much to our surprise, we were able to hack our Kryptonite Evolution 2000 U-…
-
Print from OS X to OS 9 print server using free Print66 LPD daemon
Print66, a free print server for the Macintosh What is it ? Print66 is a print server that implements the Berkeley Line Printer Protocols on the Macintosh. It listens on the TCP port 515, spools files sent from remote hosts and sends them to an USB printer, a Serial printer, or a LaserWriter on the…
-
mezzoblue  § Virtual Hosts for Dummies
mezzoblue  § Virtual Hosts for Dummies Virtual Hosts for Dummies August 05, 2004 9AM PST Running your own local Apache server for development is a great idea, and even better if you’ve enabled local virtual hosts. As demand for open source software increases, so do the options. Popular packages are frequently ported to different platforms,…