MacFusion - Mount SSH/FTP folders on your Mac

My journey as a mac newbie continues, this open source tools allows me to share my FreeBSD virtual machine folder with my mac without configuring nfs or anything fancy.
best of all , its opensource …

http://www.macfusionapp.org/

Macfusion on my finder

Error: Missing Dependency: libgaim.so.0 is needed by package nautilus-sendto

tried installing gnome on CentOS using group installed and got the above error. there's a bug report and solutions for it here : http://bugs.centos.org/view.php?id=2483

Vi tips

Replace char with newline :

:s/X/^M/

^M = ctrl-V + m

Use DOS FOR loop to modify premissions on files/folders

This assumes your usernames and homdirs are the same for example : user: alfred homedir : alfred

for /F %u in ('DIR /B A*.*') do v:\tools\xcacls.exe %u /T /E /C /G %u:RCWD /y

CentOS 5 - No module named cElementTree when running yum

upgrade my elementtree

wget http://www.python.org/pyvault/centos-4-i386/python24-elementtree-1.2.6-5.el4.pyv.i386.rpm rpm -i python24-elementtree-1.2.6-5.el4.pyv.i386.rpm

http://www.centos.org/modules/newbb/viewtopic.php?topic_id=3401