Skip to main content

Pauls Mac Tips

How to stop macs from writing DS_store entries on network drives
http://support.apple.com/kb/HT1629

Force Quit
Option / Command / Esc

Showing the full path in Finder

To display the full path in the Finder title in Leopard, open Terminal.app and run:

$ defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES

then

$ osascript -e 'tell app "Finder" to quit'

Then relaunch the Finder from the dock. To undo:

$ defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO

How to flush the dns cache (works for 10.5 and above)

dscacheutil -flushcache  

Comments

Popular posts from this blog

Javascript Form Validation

It's real simple. All you need to do is call a javascript function in a html  " onsubmit " in the form tag as a javascript return, like this       <form method="post" action="dosomething.php" onsubmit="return validateForm();"> If the code completes ok, the form is then sent to the page listed in "action" http://www.w3schools.com/js/js_form_validation.asp If the function specified in the onsubmit returns false, then the form is not sent to the page mentioned in action.