Tech Thought

Tech tips, hints, and general musings. PHP, Perl, Mysql, Javascript, AJAX, JSON, Linux, Mac OSX

Entries for May 5th, 2008

How-To: Export RSS feeds from Mac Mail

To export all your RSS feeds from Mac Mail as a list, open up terminal and enter the following on a single line: IFS=$’\n’;for i in $(find ~/Library/Mail/RSS/ -name “Info.plist”);do grep “<string>http://” $i | sed “s/.*\(http[^<]*\).*/\1/”;done Thanks to macosxhints.com for this one!

Comments (1)

How To: SSH Port Forwarding on Mac OSX

As long as you have SSH access, you can still access ports on a remote server which are blocked via a firewall.  You simply need to use a function of the SSH protocol called Port Forwarding (or Tunneling).   This process allows you to open a port on your local machine, which is forwarded via SSH [...]

Comments (2)