<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2242142962168977137</id><updated>2011-11-28T06:41:52.673+05:30</updated><category term='icon'/><title type='text'>Mac OS X Tips &amp; Tricks</title><subtitle type='html'>Welcome to Mac Tricks And Tips. The blog is all about Tricks and Tips for Apple Mac, updated daily to help you get the most out of your Mac.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>78</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7399387253071741323</id><published>2009-08-28T15:23:00.000+05:30</published><updated>2009-08-28T15:25:01.001+05:30</updated><title type='text'>Download, back up, and upload Google Docs files</title><content type='html'>You can download, back up, and upload documents from your Google Docs account using a little Terminal magic.  &lt;b&gt;Prerequisites:&lt;/b&gt; &lt;ol&gt;&lt;li&gt;gdata-python-client 2.0.1 - download page&lt;/li&gt;&lt;li&gt;gdatacopier 1.0.2 - download page&lt;/li&gt;&lt;/ol&gt;  &lt;b&gt;Installation:&lt;/b&gt; &lt;ol&gt;&lt;li&gt;Download the prerequisites. Decompress each of the downloads.&lt;/li&gt;&lt;li&gt;Install &lt;tt&gt;gdata-python-client&lt;/tt&gt;: &lt;pre&gt;&lt;code&gt;$ cd gdata-2.0.1&lt;br /&gt;&lt;br /&gt;$ sudo python setup.py install&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;&lt;/ol&gt; &lt;b&gt;Patch:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;The current &lt;tt&gt;gdatacopier&lt;/tt&gt; download has a small bug in it, and it needs to be patched to work properly. Open the file &lt;tt&gt;gdatacopier.py&lt;/tt&gt; in the app's folder, and locate line 555. On that line, change this...  &lt;pre&gt;&lt;code&gt;item_list.append({'title': entry.title.text.encode('UTF-8'),&lt;/code&gt;&lt;/pre&gt;   ...to this...  &lt;pre&gt;&lt;code&gt;item_list.append({'title': entry.title.text,&lt;/code&gt;&lt;/pre&gt;  Save the file and quit the editor.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Usage:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;By default, &lt;tt&gt;gdatacopier&lt;/tt&gt; will download your spreadsheets and text documents in the OpenOffice format (.ods and .odt, respectively). TextEdit does a pretty good job of opening the text (.odt) documents, but I was unable to find anything free that could open the spreadsheet (.ods) documents, so you may want to specify a specific format when downloading your documents.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Variables&lt;/b&gt; &lt;ul&gt;&lt;li&gt;&lt;tt&gt;$DIR&lt;/tt&gt; = local download location&lt;/li&gt;&lt;li&gt;&lt;tt&gt;$USERNAME&lt;/tt&gt; = Google email (e.g. someone@gmail.com)&lt;/li&gt;&lt;li&gt;&lt;tt&gt;$GOOGLEID&lt;/tt&gt; = Google docs id number. You can find the document's Google ID by using the &lt;tt&gt;list-&lt;/tt&gt; commands below. Make sure to copy &lt;em&gt;only&lt;/em&gt; the Google ID from the listing -- not the date or other data. Also make sure to enclose the Google ID in quotes in your command.&lt;/li&gt;&lt;/ul&gt;  &lt;b&gt;Examples:&lt;/b&gt; &lt;ul&gt;&lt;li&gt;Display gdatacopier help: &lt;tt&gt;./gdoc-cp.py --help&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Back up all Google Docs in OpenOffice format: &lt;tt&gt;./gdoc-cp.py --username someone@gmail.com --export default --google-id all --local $DIR&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Back up all Google Docs spreadsheets in Excel format: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export xls --google-id spreadsheets --local $DIR&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Back up all Google Docs Text in Rich Text format (retains most formatting): &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export rtf --google-id documents --local $DIR&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Back up all Google Docs in PDF Format: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export pdf --google-id all --local $DIR&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;List all Google Docs: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --list-all&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;List all Google Docs spreadsheets: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --list-sheets&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;List all Google Docs text documents: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --list-docs&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Find a specific Google Doc by title: &lt;tt&gt;./gdoc-cp.py --username $USERNAME -p $PASSWORD --list-all | grep Casserole&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Download a specific text document in TextEdit (rtf) format: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export rtf --google-id "$GOOGLEID" --local "OUTPUT_FILENAME.rtf"&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Download a specific spreadsheet document in Excel (xls) format: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export xls --google-id "$GOOGLEID" --local "OUTPUT_FILENAME.xls"&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Download a specific document in PDF format: &lt;tt&gt;./gdoc-cp.py --username $USERNAME --export pdf --google-id "$GOOGLEID" --local "OUTPUT_FILENAME.pdf"&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Upload a document to Google Docs (rtf, txt, xls, doc): &lt;tt&gt;./gdoc-cp.py --username $USERNAME --import --local "INPUT_FILENAME" --title "OPTIONAL_TITLE"&lt;/tt&gt;&lt;/li&gt;&lt;/ul&gt; &lt;b&gt;Notes:&lt;/b&gt; &lt;ul&gt;&lt;li&gt;A password can be hardcoded into the command if desired.&lt;/li&gt;&lt;li&gt;The current version of &lt;tt&gt;gdatacopier&lt;/tt&gt; (1.0.2) is unable to upload all the file types supported by Google Docs (including PDF, html, docx, and possibly others -- that's all I tested).&lt;/li&gt;&lt;li&gt;&lt;tt&gt;gdatacopier-1.0.3&lt;/tt&gt; in the repository appears to offer support for presentations and some other options including folders (aka tags). If you want to play around with it you can get it here. (The code must be patched as above, plus also patch line 289: &lt;tt&gt;download_document(document_id, file_format, local_path, write_metadata)&lt;/tt&gt; -- change that to &lt;tt&gt;download_item(document_id, file_format, local_path, write_metadata)&lt;/tt&gt;.)&lt;/li&gt;&lt;li&gt;A future v2.0 is in the works, hopefully soon.&lt;/li&gt;&lt;li&gt;Maybe a crafty AppleScript Studio programmer could write a GUI for all this.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7399387253071741323?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7399387253071741323/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/08/download-back-up-and-upload-google-docs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7399387253071741323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7399387253071741323'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/08/download-back-up-and-upload-google-docs.html' title='Download, back up, and upload Google Docs files'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5564668437548404506</id><published>2009-08-28T15:13:00.003+05:30</published><updated>2009-08-28T15:21:16.745+05:30</updated><title type='text'>Apple to release Mac OS X Snow Leopard on August 28</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_aX5Er_TQrhs/SpeoBhiYGFI/AAAAAAAAAG0/F2grS38odlk/s1600-h/overview_hero_20090824.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 138px;" src="http://4.bp.blogspot.com/_aX5Er_TQrhs/SpeoBhiYGFI/AAAAAAAAAG0/F2grS38odlk/s320/overview_hero_20090824.jpg" alt="" id="BLOGGER_PHOTO_ID_5374949424425867346" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div  style="font-weight: bold; text-align: center;font-family:verdana;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-size:180%;"&gt;&lt;strong  style="font-weight: bold;font-family:georgia;"&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;Mac OS X Snow Leopard&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;strong style="font-weight: normal;"&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong style="font-weight: bold; font-family: verdana;"&gt;The world's most advanced operating system. Finely Tuned.&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;Available on August 28, 2009.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;strong style="font-weight: normal;"&gt;&lt;/strong&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;strong style="font-weight: normal;"&gt;&lt;/strong&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;strong style="font-weight: normal;"&gt;Apple announced Monday that Mac OS X 10.6 Snow Leopard will go on sale Friday, August 28 at Apple's retail stores and Apple authorized resellers, and that Apple's online store is now accepting pre-orders.&lt;/strong&gt;&lt;br /&gt;&lt;strong style="font-weight: normal;"&gt;&lt;/strong&gt;&lt;/div&gt;&lt;strong style="font-weight: normal;"&gt;&lt;br /&gt;&lt;/strong&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/SpeoeJGkg_I/AAAAAAAAAG8/20zqbH0l4Ek/s1600-h/snowleo-090824-0.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 278px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/SpeoeJGkg_I/AAAAAAAAAG8/20zqbH0l4Ek/s320/snowleo-090824-0.png" alt="" id="BLOGGER_PHOTO_ID_5374949916082996210" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5564668437548404506?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5564668437548404506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/08/apple-to-release-mac-os-x-snow-leopard.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5564668437548404506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5564668437548404506'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/08/apple-to-release-mac-os-x-snow-leopard.html' title='Apple to release Mac OS X Snow Leopard on August 28'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/SpeoBhiYGFI/AAAAAAAAAG0/F2grS38odlk/s72-c/overview_hero_20090824.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4033510012345023557</id><published>2009-07-15T17:05:00.003+05:30</published><updated>2009-07-15T17:05:58.896+05:30</updated><title type='text'>Use web proxy auto-discovery in Safari</title><content type='html'>Unlike most browsers, Safari doesn't have a setting to use WPAD (web proxy auto-discovery) in OS X. However, there is a way to ask Safari to automatically detect the network's proxy settings, but only if your network administrator has configured WPAD on your network.&lt;br /&gt;&lt;br /&gt;This auto-detect feature works through DNS. The browser looks for a host named "wpad" and if it exists, loads its settings by accessing a file named "wpad.dat" via HTTP. To use DNS-based WPAD with Safari on OS X, follow these steps: &lt;ul style="text-align: justify;"&gt;&lt;li&gt;In Safari, choose Safari » Preferences&lt;/li&gt;&lt;li&gt;Click on the Advanced icon&lt;/li&gt;&lt;li&gt;Click on the Proxies » Change Settings button&lt;/li&gt;&lt;li&gt;In the Configure Proxies dropdown menu, select Using A PAC File&lt;/li&gt;&lt;li&gt;In the PAC File URL field, enter &lt;tt&gt;http://wpad/wpad.dat&lt;/tt&gt;&lt;/li&gt;&lt;li&gt;Click on OK&lt;/li&gt;&lt;li&gt;Click on Apply&lt;/li&gt;&lt;/ul&gt;Again, this is only helpful if your network administrator has set up a proxy to be auto-configured. If you're on a network that doesn't have such a setup, Safari will still work but &lt;em&gt;much, much slower&lt;/em&gt;. To find out if your network supports proxy auto-detection, visit &lt;a href="http://wpad/wpad.dat"&gt;http://wpad/wpad.dat&lt;/a&gt; in your web browser. If your network supports WPAD, then your browser will download the file "wpad.dat" (which you can just delete). If it's not supported, you'll get an error message.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4033510012345023557?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4033510012345023557/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/use-web-proxy-auto-discovery-in-safari.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4033510012345023557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4033510012345023557'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/use-web-proxy-auto-discovery-in-safari.html' title='Use web proxy auto-discovery in Safari'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8106640645259479736</id><published>2009-07-15T17:05:00.001+05:30</published><updated>2009-07-15T17:05:19.635+05:30</updated><title type='text'>Firefox 3.5's Three-Finger Swipes</title><content type='html'>&lt;div style="text-align: justify;"&gt;In addition to the previous &lt;a href="http://www.macosxhints.com/article.php?story=20090630172400412"&gt;"twist" gestures&lt;/a&gt; which are disabled by default, Firefox 3.5 also ships with default enabled multi-touch swipe inputs: &lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;Three-finger swipe up: Home key (top of the page)&lt;/li&gt;&lt;li&gt;Three-finger swipe down: End key (bottom of the page)&lt;/li&gt;&lt;li&gt;Three-finger swipe left: Browse back&lt;/li&gt;&lt;li&gt;Three-finger swipe right: Browse forward&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify;"&gt;  These can be edited by entering &lt;em&gt;about:config&lt;/em&gt; in the address bar. Enter &lt;em&gt;swipe&lt;/em&gt; in the filter box.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8106640645259479736?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8106640645259479736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/firefox-35s-three-finger-swipes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8106640645259479736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8106640645259479736'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/firefox-35s-three-finger-swipes.html' title='Firefox 3.5&apos;s Three-Finger Swipes'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6901184533778089851</id><published>2009-07-07T18:58:00.000+05:30</published><updated>2009-07-07T18:59:03.954+05:30</updated><title type='text'>Remove Safari history files on logout via shell script</title><content type='html'>&lt;div style="text-align: justify;"&gt;If you'd like to remove your Safari history files when you log out, first create the following shell script:  &lt;/div&gt;&lt;div style="border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap; text-align: justify;"&gt;&lt;pre&gt;&lt;code&gt;#!/bin/bash&lt;br /&gt;&lt;br /&gt;# Point this at your user folder.&lt;br /&gt;useroot=/Users/your_user&lt;br /&gt;&lt;br /&gt;# Clear Safari History (except for bookmarks).&lt;br /&gt;rm -f $useroot/Library/Safari/Downloads.plist $useroot/Library/Safari/History.plist&lt;br /&gt;rm -f $useroot/Library/Safari/HistoryIndex.sk $useroot/Library/Safari/TopSites.plist&lt;br /&gt;rm -f $useroot/Library/Safari/WebpageIcons.db $useroot/Library/Safari/LastSession.plist&lt;br /&gt;&lt;br /&gt;# Add any additional clean-up here.&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt; Save the script somewhere, make it executable, and because it runs as root, make sure it is protected from modification. Then copy and paste this command into Terminal, modifying it to point to wherever you put the above script:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;sudo defaults write com.apple.loginwindow LogoutHook "/Users/your_user/scripts/privacy.sh"&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;To be complete, you should also visit Safari's Preferences, open the AutoFill tab, and clear all of the checkmarks (Safari then won't remember passwords and forms). &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6901184533778089851?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6901184533778089851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/remove-safari-history-files-on-logout.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6901184533778089851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6901184533778089851'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/remove-safari-history-files-on-logout.html' title='Remove Safari history files on logout via shell script'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1627453754833424649</id><published>2009-07-07T18:57:00.000+05:30</published><updated>2009-07-07T18:58:03.128+05:30</updated><title type='text'>Make SMB shares appear in Devices section of Finder sidebar</title><content type='html'>It was driving me nuts that SMB shares from my Windows server would not reappear under DEVICES in the sidebar. However, I then figured out that I can do this: &lt;ol style="text-align: justify;"&gt;&lt;li&gt;Open System Preferences » Network&lt;/li&gt;&lt;li&gt;Click the network interface you use for the shares&lt;/li&gt;&lt;li&gt;Click on the Advanced button at lower right&lt;/li&gt;&lt;li&gt;Click on WINS tab, and manually enter the workgroup name of the server&lt;/li&gt;&lt;li&gt;Click the '+' under the WINS Servers list&lt;/li&gt;&lt;li&gt;Enter the IP of the server (you &lt;em&gt;are&lt;/em&gt; using static IP on your server, right?)&lt;/li&gt;&lt;li&gt;Click OK, Apply, etc. until you're done&lt;/li&gt;&lt;/ol&gt;The next time I dragged a mounted share to Devices, it then showed up there automatically after the next unmount/mount. My shares seem to mount much faster now, as well. Now if only I could find a way to increase the transfer speed...sigh.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1627453754833424649?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1627453754833424649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/make-smb-shares-appear-in-devices.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1627453754833424649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1627453754833424649'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/make-smb-shares-appear-in-devices.html' title='Make SMB shares appear in Devices section of Finder sidebar'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8040313156633033815</id><published>2009-07-07T18:30:00.001+05:30</published><updated>2009-07-07T18:30:59.408+05:30</updated><title type='text'>Mac OS X 10.5: Wake a sleeping Mac with via Automator</title><content type='html'>I have a Mac mini in my living room hooked up to my TV. I wanted to be able to control the mini from my iMac in my office. Using Screen Sharing built into Leopard, it's a simple click of the mouse to do this. With a little Automator love, I created a simple workflow that turns the Screen Sharing step into a click of an icon in the dock.&lt;br /&gt;&lt;br /&gt;However, even with the power efficiency of the 2009 Mac mini, I don't want to leave it on 24/7. After searching through several solutions that used Python and shell scripting (neither of which I know or could make work), I found this nifty &lt;a href="http://forums.dealmac.com/read.php?4,2751523"&gt;this nifty Applescript from Mark Muir&lt;/a&gt; that I adapted to solve my problem. Here's my modified code:  &lt;div style="border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap;"&gt;&lt;a title="Drag-select from top-to-bottom, then copy, and paste into Script Editor"&gt;&lt;pre&gt;&lt;code&gt;(*&lt;br /&gt;Script adapted from Wake on WAN - by Mark Muir (2008-04-01)&lt;br /&gt;http://forums.dealmac.com/read.php?4,2751523&lt;br /&gt;*)&lt;br /&gt;&lt;br /&gt;property MAC_address : "00:25:4b:9f:63:c8"&lt;br /&gt;property WAN_IP_address : "255.255.255.255"&lt;br /&gt;&lt;br /&gt;on run&lt;br /&gt; set command to "/usr/bin/php -r " &amp;amp; quoted form of ("$mac = " &amp;amp; quoted form of MAC_address &amp;amp; "; $ip = " &amp;amp; quoted form of WAN_IP_address &amp;amp; "; " &amp;amp; "&lt;br /&gt;$mac_bytes = explode(\":\", $mac);&lt;br /&gt;$mac_addr = \"\";&lt;br /&gt;for ($i=0; $i&lt;6; $i++)&lt;br /&gt;$mac_addr .= chr(hexdec($mac_bytes[$i]));&lt;br /&gt;$packet = \"\";&lt;br /&gt;for ($i=0; $i&lt;6; $i++) /*6x 0xFF*/&lt;br /&gt;$packet .= chr(255);&lt;br /&gt;for ($i=0; $i&lt;16; $i++) /*16x MAC address*/&lt;br /&gt;$packet .= $mac_addr;&lt;br /&gt;&lt;br /&gt;$port = 9;&lt;br /&gt;$sock = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);&lt;br /&gt;socket_set_option($sock, SOL_SOCKET, SO_BROADCAST, TRUE);&lt;br /&gt;socket_sendto($sock, $packet, strlen($packet), 0, $ip, $port);&lt;br /&gt;socket_close($sock);&lt;br /&gt;")&lt;br /&gt; do shell script command&lt;br /&gt;end run&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/a&gt;&lt;/div&gt;  You'll need to replace the &lt;tt&gt;MAC_address&lt;/tt&gt; property with the MAC address (found in the Networking System Preferences panel) of the machine you'd like to wake. I then wrapped this script in a simple Automator application to make it a true one-click operation. You can read all the details, and download a copy of the Automator application, in &lt;a href="http://joegolike.com/wake-sleeping-mac-with-applescript-and-automator/"&gt;this entry&lt;/a&gt; in my blog.&lt;br /&gt;&lt;br /&gt;I've &lt;a href="http://www.macosxhints.com/dlfiles/wake-and-share-mac-mini.zip"&gt;mirrored the Automator application&lt;/a&gt; here on Mac OS X Hints, in case the original post ever goes away. While I haven't tested this one, I'm pretty sure you could replace the full script shown above with a call to the free &lt;a href="http://gsd.di.uminho.pt/jpo/software/wakeonlan/"&gt;Wakeonlan&lt;/a&gt; perl script, which was described in &lt;a href="http://www.macosxhints.com/article.php?story=2002061709450594"&gt;this older hint&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8040313156633033815?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8040313156633033815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/mac-os-x-105-wake-sleeping-mac-with-via.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8040313156633033815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8040313156633033815'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/mac-os-x-105-wake-sleeping-mac-with-via.html' title='Mac OS X 10.5: Wake a sleeping Mac with via Automator'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5591856054811453395</id><published>2009-07-01T12:40:00.002+05:30</published><updated>2009-07-01T12:48:57.985+05:30</updated><title type='text'>SSH’ing Into Your Mac</title><content type='html'>&lt;p style="text-align: justify;"&gt;I use SSH a lot, it stands for Secure Shell and its main purpose is to connect to other computers, or servers, over a secure connection which you can use to manage the remote computer. For a general overview I recommend reading &lt;a href="http://en.wikipedia.org/wiki/Ssh" target="_blank"&gt;this &lt;/a&gt;Wikipedia article. For this article you do need to be a little tech savvy with Terminal, but if you are way from your computer, or you want to manage another computer this is a very useful technique.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;The first step, which you must do, is enable this process in your Firewall. Took me ages to work out while I couldn’t do this on my own Mac. Go to System Preferences &gt; Sharing and check Remote Login. This will open port 22 on your computer and allow SSH to be active.&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/SksMGHd4cUI/AAAAAAAAAGs/Aumr1MNe4LE/s1600-h/SSH-on-a-Mac-300x245.png"&gt;&lt;img style="cursor: pointer; width: 300px; height: 245px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/SksMGHd4cUI/AAAAAAAAAGs/Aumr1MNe4LE/s320/SSH-on-a-Mac-300x245.png" alt="" id="BLOGGER_PHOTO_ID_5353385881283096898" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;This should be done on the computer you want to log into. For the purpose of this tutorial you can do it on your own computer, remember to switch it off when you have finished for security purposes. Under the Green icon there will be an address. This combines your ISP Internet address, which is given to you by your ISP, in my case it is part of my Uni address, this will be unique to you. For example it will be a unique identifier, such as a MAC address or account name, on your ISP network, it will then be preceded by your ISP web address. For the most part you don’t need to understand how this address is built. You just need to know what it is. The first part of the address is the user name, for the purpose of most maintenance a normal account will suffice, if you want to do some really high level stuff an administrators account can be used.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;You can now log into the remote (or your Mac). Open terminal and type:&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;&lt;code&gt;ssh user@ISP.address.com&lt;/code&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;This will start the connection process. If it immediately says connection refused make sure you have enabled SSH as mentioned above. If it says couldn’t connect on port XXX, add the following.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;&lt;code&gt;shh -p22 user@ISP.address.com&lt;/code&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;This will force your SSH connection to run on port 22, instead of a different port. If you, or someone else, has used SSH before it may have been bound to a different port. This will correct this problem.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;The first login will ask you to accept and RSA key. This is a method to make sure the two computer are who they say they are. Since you know this accept the key by typing yes and hitting return. This is a security method to keep the connection secure, more information about this process can be found &lt;a href="http://unixwiz.net/techtips/ssh-agent-forwarding.html" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;The very final step is to type the password which belongs to the user name. This is the remote Mac’s login password, not your own, my friend who I tried to teach this concept too, didn’t grasp this step for a long while and confusion ensured. Once you have done this, the connection will be secured and you can happily run commands on their computer.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;At this point you can run any Terminal command, which is useful to sort out problems with file and folder errors and problems relating to settings. You can also use it to monitor the health of the remote computer by running a process such as ‘top’. The Terminal window, at this point, is exactly the same as one you would use on your own computer. It just happens that the result run on a different computer and are forwarded to you.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;When you have finished your session, type exit and the SSH session will finish.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;Although this is a tech savvy process and solutions such as screen sharing are more useful to people who do not know how to use Terminal, it is a great technique to learn. You can use it on any Mac, Linux or Unix computer, this method is exactly the same. It is also very low bandwidth, with screen sharing your are sending a lot of data, this technique sends text. Text has a very low data rate, as a result can run on a dial up connection. This sort of process can be used to administer a server over a home network, or to make sure a remote Mac (such as your Grandparents) is still operating fine.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;There is a lot more topics on how to use SSH on your Mac. I recommend search the internet for how to find out more, if you are interested on using this technique more.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5591856054811453395?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5591856054811453395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/sshing-into-your-mac.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5591856054811453395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5591856054811453395'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/07/sshing-into-your-mac.html' title='SSH’ing Into Your Mac'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/SksMGHd4cUI/AAAAAAAAAGs/Aumr1MNe4LE/s72-c/SSH-on-a-Mac-300x245.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2853994877358904512</id><published>2009-06-19T16:46:00.005+05:30</published><updated>2009-06-19T17:06:50.962+05:30</updated><title type='text'>MacBook Pro 13-inch teardown reveals "unimaginative" SD Card slot</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;strong&gt;A dissection of Apple's first 13-inch MacBook Pro shows the company may have run out of real estate to create a slot that would completely conceal SD cards but also points to certain do-it-yourself upgrades being near-trivial jobs for prospective owners.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The undisputed teardown experts at iFixit have just completed their &lt;a href="http://www.ifixit.com/Teardown/MacBook-Pro-13-Inch-Unibody/814/1"&gt;step-by-step illustrated disassembly&lt;/a&gt; of the latest member of the MacBook Pro family, in which they note that the system's new SD card slot "is rather unimaginative" given that "half the card hangs out of the side of the computer."&lt;br /&gt;&lt;br /&gt;"Apple couldn't free up enough space for a slot that would make the card completely captive," representatives for upgrade solutions provider told &lt;em&gt;AppleInsider&lt;/em&gt;.&lt;br /&gt;&lt;br /&gt;As with the MacBook Air and 17-inch MacBook Pro, removing the battery is simple enough that it can be done quickly, likely to allowing technicians to swap out batteries at Apple retail stores in a matter of minutes. All that's needed is a small Phillips screwdriver to open the case and a tri-wing screwdriver to remove the battery.&lt;br /&gt;&lt;br /&gt;It's also noted that the mid wall dividing the MacBook Pro is now attached to the top case, unlike in previous models where it was was held in by four Phillips screws. iFixit believes this may be a move on Apple's part to help out its do-it-yourself customers.&lt;br /&gt;&lt;br /&gt;"Aside from a couple of visual cues found outside, a casual user would not be able to discern if this was a [unibody] MacBook or MacBook Pro," the firm added. "Most screw layouts and brackets are identical to the old [unibody] MacBook."&lt;br /&gt;&lt;br /&gt;Also discovered was a slightly heavier battery at 360 grams (compared to 302 g for the old one). However, it offers 60 Watt-hours of power, compared to the lighter battery's 45 W-h. And given that its connectors, size, and shape are different from the battery in the 13-inch unibody MacBook, the new battery isn't interchangeable with last year's models.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/Sjt0MDy9v-I/AAAAAAAAAGc/_68-GbLwbwM/s1600-h/1.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/Sjt0MDy9v-I/AAAAAAAAAGc/_68-GbLwbwM/s320/1.jpg" alt="" id="BLOGGER_PHOTO_ID_5348996732958916578" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/Sjt345IxgaI/AAAAAAAAAGk/YsEZUKbvoPE/s1600-h/2.jpg"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2853994877358904512?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2853994877358904512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/macbook-pro-13-inch-teardown-reveals.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2853994877358904512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2853994877358904512'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/macbook-pro-13-inch-teardown-reveals.html' title='MacBook Pro 13-inch teardown reveals &quot;unimaginative&quot; SD Card slot'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_aX5Er_TQrhs/Sjt0MDy9v-I/AAAAAAAAAGc/_68-GbLwbwM/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6564120740456407758</id><published>2009-06-19T16:41:00.002+05:30</published><updated>2009-06-19T16:43:50.419+05:30</updated><title type='text'>Apple's Mac OS X 10.5.8 to fine tune service technologies</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;strong&gt;The next, and potentially final, upgrade to Apple's Mac OS X 10.5 Leopard operating system will address loose ends in the software's underlying service technologies with a particular focus on networking and syncing.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Just two betas of the Mac OS X 10.5.8 Update have made their way into developers' hands thus far, the first of which was labeled &lt;a href="http://www.appleinsider.com/articles/09/06/09/apple_quietly_testing_first_betas_of_mac_os_x_10_5_8.html"&gt;build 9L12&lt;/a&gt; and arrived for an extremely limited group of testers early last week. That distribution was quickly followed by the release of build 9L14 to all registered Mac OS X developers this past weekend.&lt;br /&gt;&lt;br /&gt;Unlike Mac OS X 10.5.7, which addressed roughly two dozen system components and applications, Mac OS X 10.5.8's focus appears more narrow from the onset. People familiar with the update say Apple has asked developers to concentrate their evaluation efforts on just a dozen key technologies, only two of which represent forward-facing applications: Automator and iCal.&lt;br /&gt;&lt;br /&gt;The remainder of the update addresses underlying service technologies that include 802.1x wireless protocols, Apple Filing Protocol, AirPort, Bluetooth, graphics drivers, iDisk syncing, networking, Spotlight indexing, Sync Services, and USB.&lt;br /&gt;&lt;br /&gt;Similarly, many of the roughly two-dozen code corrections already baked into the first two pre-release builds also target underlying networking and syncing technologies. For example, Apple has reportedly made note of fixes to AFP and TimeMachine syncing, iCal time and calendar syncing, execution of startup items on Network home folders, and problems with DHCP client and 802.1x integration.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;img src="file:///C:/DOCUME%7E1/KARTHI%7E1/LOCALS%7E1/Temp/moz-screenshot-1.jpg" alt="" /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/SjtyobHAXaI/AAAAAAAAAGU/BBVlMRNyjwc/s1600-h/macosx1058-090616.png"&gt;&lt;img style="cursor: pointer; width: 512px; height: 33px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/SjtyobHAXaI/AAAAAAAAAGU/BBVlMRNyjwc/s320/macosx1058-090616.png" alt="" id="BLOGGER_PHOTO_ID_5348995021230071202" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt; New Mac owners wrestling issues with their DisplayPort to DVI/VGA adapters should also see improvements with the release of Mac OS X 10.5.8, though Apple has reportedly failed to provide any color on the specific issues being addressed. Those users experiencing issues where their Mac inexplicably fails to go to sleep a second time around will also reportedly see relief to their problems.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6564120740456407758?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6564120740456407758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apples-mac-os-x-1058-to-fine-tune.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6564120740456407758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6564120740456407758'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apples-mac-os-x-1058-to-fine-tune.html' title='Apple&apos;s Mac OS X 10.5.8 to fine tune service technologies'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_aX5Er_TQrhs/SjtyobHAXaI/AAAAAAAAAGU/BBVlMRNyjwc/s72-c/macosx1058-090616.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2822403780878314852</id><published>2009-06-19T16:30:00.003+05:30</published><updated>2009-06-19T16:36:26.322+05:30</updated><title type='text'>Mac OS X Snow Leopard gives heads-up for near-death MacBook batteries</title><content type='html'>While the immediate charge on a Mac notebook's battery has been available for years, Mac OS X Snow Leopard now tells owners when their batteries are nearing the end of their useful lifespans.&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;Those familiar with the WWDC build of the operating system upgrade note that clicking the battery icon in the menu bar now shows a new, one-word "battery condition" summary in addition to the energy for the current charge and the power source.&lt;br /&gt;&lt;br /&gt;When the battery has been used often enough that it 's losing capacity, the icon is overlaid with an exclamation mark warning and the battery condition changes to "poor" -- both signs that the pack is due to be replaced. While not every condition is known, Snow Leopard presumably reports varying degrees of battery status when the pack has only been moderately used or is like new.&lt;br /&gt;&lt;br /&gt;The addition partly replaces third-party utilities that sometimes provide a more detailed estimate. Apple hasn't documented the reasons behind the change, but the most logical explanation is simply that the company's decision to &lt;a href="http://www.appleinsider.com/articles/09/06/08/apple_unveils_faster_more_affordable_macbook_pros.html"&gt;seal in most notebook batteries&lt;/a&gt; makes it more important to have an early notice that a battery is near failing. A replacement of the sort is &lt;a href="http://www.appleinsider.com/articles/09/06/10/13_inch_macbook_pro_teardown_reveals_unimaginative_sd_card_slot.html"&gt;easy for technicians&lt;/a&gt; but, without the option of swapping batteries in the field, not trivial for end users.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/Sjtw6A5jg2I/AAAAAAAAAGM/DQYevRt-0b0/s1600-h/snowleopardbatteryalert.jpg"&gt;&lt;img style="cursor: pointer; width: 245px; height: 152px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/Sjtw6A5jg2I/AAAAAAAAAGM/DQYevRt-0b0/s320/snowleopardbatteryalert.jpg" alt="" id="BLOGGER_PHOTO_ID_5348993124408722274" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Apple has lately been paying closer attention to battery life on all its devices and with iPhone OS 3.0 will add a numerical percentage to the iPhone's previously icon-only battery indicator.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2822403780878314852?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2822403780878314852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-snow-leopard-gives-heads-up.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2822403780878314852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2822403780878314852'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-snow-leopard-gives-heads-up.html' title='Mac OS X Snow Leopard gives heads-up for near-death MacBook batteries'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/Sjtw6A5jg2I/AAAAAAAAAGM/DQYevRt-0b0/s72-c/snowleopardbatteryalert.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8593090275647085195</id><published>2009-06-17T18:40:00.002+05:30</published><updated>2009-06-19T16:37:43.911+05:30</updated><title type='text'>Save non-savable PDF files</title><content type='html'>&lt;div style="text-align: justify;"&gt;Occasionally one has to use an annoying PDF that one can't re-save, but can only print. My sister had this situation dealing with some obnoxious state-run Microsoft system that didn't allow the user to save a completed form, only to print it from a browser. The individual administering the system apparently flipped the wrong bit, as last year, the form could be saved.&lt;br /&gt;&lt;br /&gt;Here's a workaround, various versions of which can allow you to save the PDF:&lt;br /&gt;&lt;br /&gt;  1. Turn off the print queue for the printer by going to Printer Setup Utility.&lt;br /&gt;  2. Print the file, but don't reactivate the printer -- choose the Add to Queue option.&lt;br /&gt;  3. Go into the terminal and su to root. (If you haven't enabled root, use sudo -s to start a root shell.)&lt;br /&gt;  4. Type cd /var/spool/cups, then identify the file you just printed. Do this by matching the queued file's time stamp to the time you printed the file (ls -l; the file of interest should be at the bottom).&lt;br /&gt;  5. Copy (don't move) that file out of the spool folder: cp filename ~/Desktop. I don't know what a move (mv) will do to the print system.&lt;br /&gt;  6. Type cd ~/Desktop to move to your user's Desktop folder.&lt;br /&gt;  7. Type chown myaccount:myaccount filename to make sure the Finder in your user space will play nicely with the file.&lt;br /&gt;  8. Peek inside the file and determine whether it's a postscript or PDF file -- you can drop it on TextEdit to see its contents. If it's a postscript file, rename the file to filename.ps. If it's a PDF file, rename it to filename.pdf.&lt;br /&gt;  9. Confirm the above by dropping the file on Preview. If the file is a postscript file, you can then save it as a PDF file from Preview.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8593090275647085195?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8593090275647085195/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/save-non-savable-pdf-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8593090275647085195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8593090275647085195'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/save-non-savable-pdf-files.html' title='Save non-savable PDF files'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-3163030415230078173</id><published>2009-06-17T18:39:00.005+05:30</published><updated>2009-06-19T16:38:40.188+05:30</updated><title type='text'>Bulk convert Safari's Web Archives to PDFs</title><content type='html'>&lt;div style="text-align: justify;"&gt;I've been archiving web pages using Safari's one-file web archive format for a while. I was trying to figure out a bulk conversion method if I want to send these archives to Windows users, or switch to a different browser. It turns out that Scott Garner's &lt;a href="http://automatorworld.com/archives/download-urls-as-pdfs/"&gt;Download URL as PDF&lt;/a&gt; Automator action can take web archive files from the Finder and will convert them to PDFs (in addition to its intended function of downloading pages off the web.)&lt;br /&gt;&lt;br /&gt;Just download the Automator action, then create a workflow with &lt;em&gt;Find Finder Items&lt;/em&gt; hunting through your home directory for files that have the extension &lt;tt&gt;webarchive&lt;/tt&gt;. That action should feed into Scott's action, and you're all set. The action has some options, including whether or not the PDF should be split into pages.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-3163030415230078173?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/3163030415230078173/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/bulk-convert-safaris-web-archives-to.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3163030415230078173'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3163030415230078173'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/bulk-convert-safaris-web-archives-to.html' title='Bulk convert Safari&apos;s Web Archives to PDFs'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2433016593976962456</id><published>2009-06-17T18:39:00.004+05:30</published><updated>2009-06-19T16:38:23.593+05:30</updated><title type='text'>Mac OS X 10.5: Take and upload screenshots via Automator</title><content type='html'>&lt;div style="text-align: justify;"&gt;I often take screenshots and upload them for my friends to see -- especially while working on web projects etc. So I created an Automator workflow that does this automagically!&lt;br /&gt;&lt;br /&gt;First the workflow snaps the whole screen and saves it to the desktop. Then a &lt;tt&gt;bash&lt;/tt&gt; script is run wich uses &lt;tt&gt;ftp&lt;/tt&gt; to upload the image to the webserver. It then takes the URL of the image and copies it to the clipboard. Lastly it notifies you of the upload via Growl. It has no error handling or anything. This is my first workflow and &lt;tt&gt;bash&lt;/tt&gt; script ever, but it works for me.  In Automator, create the following steps in a new blank workflow: &lt;/div&gt;&lt;ol style="text-align: justify;"&gt;&lt;li&gt;Utilities » Take Screenshot. Use these settings: &lt;ul&gt;&lt;li&gt;Type: Full Screen, or whatever you prefer.&lt;/li&gt;&lt;li&gt;Select Main Monitor Only and/or Timed as you desire.&lt;/li&gt;&lt;li&gt;Set the Save To pop-up menu so that it saves to a file named &lt;tt&gt;tmpScreen.png&lt;/tt&gt; on your Desktop.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Utilities » Run Shell Script. Set Shell to &lt;em&gt;/bin/bash&lt;/em&gt; and Pass Input to &lt;em&gt;to stdin&lt;/em&gt;. Enter the following code, noting the lines you need to edit: &lt;div style="border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap;"&gt;&lt;pre&gt;&lt;code&gt;#!/bin/sh&lt;br /&gt;# Author: Simon Ljungberg @ www.nimnim.se&lt;br /&gt;&lt;br /&gt;# Edit the 5 lines below to fit your configuration&lt;br /&gt;# URL will be copied to your clipboard!&lt;br /&gt;HOST='yourftphost'&lt;br /&gt;USER='yourusername'&lt;br /&gt;PASSWD='yourpassword'&lt;br /&gt;REMOTEFILE='pathtoremotefile(including filename)'&lt;br /&gt;URL='http://yourdomain.com/screens/screenshot.png'&lt;br /&gt;&lt;br /&gt;# If you change this you need to change the rm-line too.&lt;br /&gt;# For some reason (I'm new at this) I couldn't get the file&lt;br /&gt;# to disappear when using the variable...&lt;br /&gt;LOCALFILE='~/Desktop/tmpScreen.png'&lt;br /&gt;&lt;br /&gt;ftp -n $HOST &lt;&lt;end_script user="" quote="" pass="" passwd="" binary="" put="" localfile="" remotefile="" bye="" end_script="" rm="" desktop="" png="" echo="" url="" pbcopy=""&gt;&lt;/end_script&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&lt;li style="text-align: justify;"&gt;If you have Growl installed, add Utilities » Show Growl Notification. Give it a Title ("Done!") and Description ("Your screenshot has been uploaded") so you'll see a message after the upload is completed.&lt;/li&gt;&lt;/ol&gt; Alternatively, you could &lt;a href="http://www.nimnim.se/UploadScreen.zip"&gt;download the script from my server&lt;/a&gt;, and then just change the variables in the shell script section of the workflow.&lt;br /&gt;&lt;br /&gt;To make this work, you need a web server with FTP access, and note that your username and password are stored in the script. Works for me in 10.5.7; I hope someone can make use of it!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2433016593976962456?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2433016593976962456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-take-and-upload.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2433016593976962456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2433016593976962456'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-take-and-upload.html' title='Mac OS X 10.5: Take and upload screenshots via Automator'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8060395165315126759</id><published>2009-06-17T18:38:00.002+05:30</published><updated>2009-06-19T16:39:01.423+05:30</updated><title type='text'>Create a Numbers document listing all Safari bookmarks</title><content type='html'>&lt;div style="text-align: justify;"&gt;ou might find this AppleScript interesting and/or useful -- it opens a spreadsheet in Numbers of all of your Safari bookmarks.  &lt;/div&gt;&lt;div style="border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap; text-align: justify;"&gt;&lt;a title="Drag-select from top-to-bottom, then copy, and paste into Script Editor"&gt;&lt;pre&gt;&lt;code&gt;set the bookmarks_folderpath to the POSIX path of (path to "cach" from user domain) &amp;amp; "Metadata/Safari/Bookmarks/"&lt;br /&gt;&lt;br /&gt;tell application "System Events"&lt;br /&gt;set these_bookmark_filepaths to the POSIX path of every disk item of folder bookmarks_folderpath whose name extension is "webbookmark"&lt;br /&gt;-- generate book mark AppleScript list: {{bookmark 1 name, bookmark 1 URL}, {bookmark 1 name, bookmark 1 URL}, etc.}&lt;br /&gt;set the bookmarks_list to {}&lt;br /&gt;repeat with i from 1 to the count of these_bookmark_filepaths&lt;br /&gt;  set this_bookmark_path to item i of these_bookmark_filepaths&lt;br /&gt;  tell property list file this_bookmark_path&lt;br /&gt;    set the end of the bookmarks_list to {value of property list item "Name", value of property list item "URL"}&lt;br /&gt;  end tell&lt;br /&gt;end repeat&lt;br /&gt;end tell&lt;br /&gt;&lt;br /&gt;-- convert AppleScript list to text&lt;br /&gt;repeat with i from 1 to the count of the bookmarks_list&lt;br /&gt;set this_bookmark to item i of the bookmarks_list&lt;br /&gt;if i is 1 then&lt;br /&gt;  set the bookmark_text to (item 1 of this_bookmark) &amp;amp; tab &amp;amp; (item 2 of this_bookmark)&lt;br /&gt;else&lt;br /&gt;  set the bookmark_text to the bookmark_text &amp;amp; return &amp;amp; (item 1 of this_bookmark) &amp;amp; tab &amp;amp; (item 2 of this_bookmark)&lt;br /&gt;end if&lt;br /&gt;end repeat&lt;br /&gt;&lt;br /&gt;-- write to file&lt;br /&gt;set the target_file to (path to documents folder as string) &amp;amp; "Safari Bookmarks.cvs"&lt;br /&gt;write_to_file(bookmark_text, target_file, false)&lt;br /&gt;&lt;br /&gt;-- open in Numbers&lt;br /&gt;tell application "Numbers"&lt;br /&gt;activate&lt;br /&gt;open file target_file&lt;br /&gt;end tell&lt;br /&gt;&lt;br /&gt;on write_to_file(this_data, target_file, append_data)&lt;br /&gt;try&lt;br /&gt;  set the target_file to the target_file as string&lt;br /&gt;  set the open_target_file to open for access file target_file with write permission&lt;br /&gt;  if append_data is false then set eof of the open_target_file to 0&lt;br /&gt;  write this_data to the open_target_file starting at eof&lt;br /&gt;  close access the open_target_file&lt;br /&gt;  return true&lt;br /&gt;on error&lt;br /&gt;  try&lt;br /&gt;    close access file target_file&lt;br /&gt;  end try&lt;br /&gt;  return false&lt;br /&gt;end try&lt;br /&gt;end write_to_file&lt;/code&gt;&lt;/pre&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt; For the AppleScript wizards out there, I didn't send the data directly to Numbers because the Numbers scripting dictionary does not support making a document with the &lt;tt&gt;make&lt;/tt&gt; verb.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8060395165315126759?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8060395165315126759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/create-numbers-document-listing-all.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8060395165315126759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8060395165315126759'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/create-numbers-document-listing-all.html' title='Create a Numbers document listing all Safari bookmarks'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5951113831125469264</id><published>2009-06-17T18:37:00.004+05:30</published><updated>2009-06-19T16:39:36.989+05:30</updated><title type='text'>Add URLs to Address Book contacts for use in Safari</title><content type='html'>&lt;div style="text-align: justify;"&gt;A somewhat-hidden feature of Address Book is its ability to add a URL to a contact. This feature used in Safari 4, which has a special Bookmarks section for Address Book entries, where it will use URLs from Address Book contact records. (For instance, if you take a look a the Address Book entries in Safari 4's Bookmarks area, you will find that the Apple Inc. card has a home page associated with it.)&lt;br /&gt;&lt;br /&gt;It's not obvious how to accomplish this, as a Home Page field does not appear by default on a new blank card, nor when editing an old one or when adding fields using the green (+) button. The solution is in the Card » Add Field menu. From that menu, select the URL entry to add the field to any card. After entering a URL, it will then appear in Safari's Address Book bookmarks.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5951113831125469264?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5951113831125469264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-urls-to-address-book-contacts-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5951113831125469264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5951113831125469264'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-urls-to-address-book-contacts-for.html' title='Add URLs to Address Book contacts for use in Safari'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-891592439839547660</id><published>2009-06-17T18:37:00.003+05:30</published><updated>2009-06-19T16:39:20.157+05:30</updated><title type='text'>Mac OS X 10.5: Find which items weren't modified by Time Machine</title><content type='html'>&lt;div style="text-align: justify;"&gt;Getting ready for work this morning, I walked into my office to find my 2.5 year old daughter mashing on my keyboard with the monitors off. Time out! After a quick check, it looked like no damage had been done. Later though, I tried to launch iCal with Quicksilver, and Quicksilver could not find it.&lt;br /&gt;&lt;br /&gt;I looked at my apps folder (which was open apparently when she was mashing the keyboard) and saw that there were three folders with a bunch of jibberish for names. They were apps, but I wasn't sure which ones were which. Enter Time machine!&lt;br /&gt;&lt;br /&gt;I tried to restore the whole apps folder, which I knew would take a while, but it told me Applications cannot be restored as it is used by the system. I selected all apps, hit copy, pasted the names into a text file and printed the file, meaning to open Time Machine and go down the list marking things off until I figured out what was missing.&lt;br /&gt;&lt;br /&gt;With all of those items selected, I opened Time Machine and selected a backup from early this morning. All of the apps that were the same remained selected, but the ones that were missing -- the renamed ones -- were de-selected. I simply chose the de-selected apps and restored them.&lt;br /&gt;&lt;br /&gt;This saved me a bunch of time going down the list and manually comparing the folder in Time Machine to my printed list. Now, off to Home Depot to get a lock for the office door!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-891592439839547660?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/891592439839547660/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-find-which-items-werent.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/891592439839547660'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/891592439839547660'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-find-which-items-werent.html' title='Mac OS X 10.5: Find which items weren&apos;t modified by Time Machine'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6420493131493645744</id><published>2009-06-17T18:36:00.005+05:30</published><updated>2009-06-19T16:40:40.180+05:30</updated><title type='text'>Mix Safari 4 Beta and Final to get tabs on top</title><content type='html'>&lt;div style="text-align: justify;"&gt;Just a quick note to those who, like me, greatly miss the 'tabs in the title bar' feature of Safari 4 Beta in the final release of Safari:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;After installing Safari 4.0 Final, I was quite disappointed to no longer have the 'tabs in title bar,' but I still had both the app and the installer from the last Safari 4 Public Beta (remember there were two main versions; the last one was published on May 12) on another disk, and I noticed that it launches just fine using all the underpinnings of the final version.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;I'm sure it's not 100% compatible, but we all know that most of the meaningful components of Safari are *not* in the app itself. In fact, I'm using it right now to write this.&lt;br /&gt;&lt;br /&gt;In short, you can install the final Safari 4.0, then use Pacifist to extract just the app from the Public Beta disk image. Better yet, if you still have the beta, rename it to something like Safari_beta.app, and you'll be able to use the tabs in the title bar again, as well as any of the customization tricks &lt;a href="http://www.macosxhints.com/search.php?query=safari+4+beta&amp;amp;keyType=phrase&amp;amp;datestart=&amp;amp;dateend=&amp;amp;topic=0&amp;amp;type=stories&amp;amp;results=25&amp;amp;mode=search"&gt;found here&lt;/a&gt; and elsewhere.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6420493131493645744?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6420493131493645744/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mix-safari-4-beta-and-final-to-get-tabs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6420493131493645744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6420493131493645744'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mix-safari-4-beta-and-final-to-get-tabs.html' title='Mix Safari 4 Beta and Final to get tabs on top'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2225240660429526236</id><published>2009-06-17T18:36:00.003+05:30</published><updated>2009-06-19T16:40:01.222+05:30</updated><title type='text'>Fix an issue with Dreameaver and networked previews</title><content type='html'>&lt;div style="text-align: justify;"&gt;When using Dreamweaver's Browser Preview feature when editing a file on a network drive, you will receive a path name which is incorrect in your browser window: &lt;pre&gt;&lt;code&gt;file:///NetworkDrive/Folder/Folder/file.html&lt;/code&gt;&lt;/pre&gt;  Where the path name should be:  &lt;pre&gt;&lt;code&gt;file:///Volumes/NetworkDrive/Folder/Folder/file.html&lt;/code&gt;&lt;/pre&gt;  To resolve this instead of making a 'site' for each website with the text &lt;em&gt;Volumes:&lt;/em&gt; added to the front of the path name for the site it is much easier to use a symbolic link. Open Terminal and type  &lt;pre&gt;&lt;code&gt;$ cd /&lt;br /&gt;$ ln -s /Volumes/NetworkDrive NetworkDrive&lt;/code&gt;&lt;/pre&gt;  Please note that &lt;tt&gt;NetworkDrive&lt;/tt&gt; should be replaced with your drive's name. You will now see what looks like an alias on the root of your hard drive, but this is a symbolic link and you should have no problems previewing your sites.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2225240660429526236?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2225240660429526236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/fix-issue-with-dreameaver-and-networked.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2225240660429526236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2225240660429526236'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/fix-issue-with-dreameaver-and-networked.html' title='Fix an issue with Dreameaver and networked previews'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7971698761420600486</id><published>2009-06-12T15:49:00.000+05:30</published><updated>2009-06-12T15:50:42.663+05:30</updated><title type='text'>Change the default length of new iCal events</title><content type='html'>&lt;div style="text-align: justify;"&gt;The default new event time in iCal is set to 60 minutes. There is not a interface preference to change the default. Seeing a request the other week on the Apple Forums asking for a way to change this setting, I had then assumed that this behaviour was 'hard wired' into iCal. After reading 'How to find hidden preference settings' just now (thanks Rob) and playing around with the result of the strings command on iCal, I came across the string &lt;span style="color: rgb(255, 0, 0);"&gt;Default duration in minutes for new event'.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It turns out this sets the default duration of new events in iCal. The defaults command below sets it to 15 minutes. You should quit iCal before running this to see the result. Open Terminal, enter the following and press return:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(255, 102, 102);"&gt;defaults write com.apple.iCal 'Default duration in minutes for new event' 15&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then open iCal. New events entered by double clicking or pressing Command-N will have the default time of 15 minutes. Obviously, you can set different values. To remove this setting altogether, enter the following in the Terminal and re-start iCal:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(255, 102, 102);"&gt;defaults delete com.apple.iCal 'Default duration in minutes for new event'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I've not noticed this hidden iCal default mentioned anywhere else.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7971698761420600486?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7971698761420600486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-default-length-of-new-ical.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7971698761420600486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7971698761420600486'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-default-length-of-new-ical.html' title='Change the default length of new iCal events'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7963650624913199296</id><published>2009-06-12T15:47:00.001+05:30</published><updated>2009-06-12T15:51:18.246+05:30</updated><title type='text'>Show random desktop picture immediately on login</title><content type='html'>&lt;div style="text-align: justify;"&gt;You can select a folder or iPhoto album in the Desktop subpane of the Desktop &amp;amp; Screen Saver System Preferences panel and tick the Random Order checkbox. This works fine until you logout / login or restart -- then the image defaults back to the Lightning picture until the next 'change picture' interval occurs.&lt;br /&gt;&lt;br /&gt;For example, if you have Change Picture set to Every Day, on restart you won't see a picture from your chosen folder until up to 24 hours later. Meanwhile you're stuck with the default (IMHO, ugly!).&lt;br /&gt;&lt;br /&gt;Solution? Go into the preferences pane, untick and retick the Random Order box, and your desktop is refreshed with a new random image. You can automate with a short applescript and add it to Accounts » Login Items: &lt;pre style="font-weight: bold; font-style: italic; color: rgb(255, 0, 0);"&gt;&lt;code&gt;tell application "System Events"&lt;br /&gt;tell current desktop&lt;br /&gt;  set random order to false&lt;br /&gt;  set random order to true&lt;br /&gt;end tell&lt;br /&gt;end tell&lt;/code&gt;&lt;/pre&gt;  This bug has persisted on several of my machines through 10.5.7.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7963650624913199296?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7963650624913199296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/show-random-desktop-picture-immediately.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7963650624913199296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7963650624913199296'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/show-random-desktop-picture-immediately.html' title='Show random desktop picture immediately on login'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6467522902682921119</id><published>2009-06-10T15:53:00.000+05:30</published><updated>2009-06-10T15:54:25.282+05:30</updated><title type='text'>Change the Apple logo in Login Window</title><content type='html'>&lt;div style="text-align: justify;"&gt;You can replace the large Apple logo that appears at the top of the login window with any tiff image that is 90x90 pixels. In the Finder, choose Go to Folder from the Go menu or press Command-Shift-G. In the dialog box that appears, type the following line:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;/System/Library/CoreServices/SecurityAgent.app/Contents/Resources/&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;" class="image-right"&gt;&lt;img class="imageStyle" alt="Apple Logo" src="http://www.macosxtips.co.uk/index_files/200907-apple-logo.png" width="116" height="103" /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;A folder called Resources should appear. Here you will find an image called applelogo.tif. You will need to create a copy of this file, just in case you ever want to revert back to it. The easiest way to do this is to hold the Option key and drag it to a safe place (like your Documents folder). Now, rename you new image "applelogo.tif" and drag it to the Resources folder to replace the old file. You will be asked to type in an administrator password.&lt;br /&gt;&lt;br /&gt;To change back to the Apple Logo, just drag the copy that you made back to the Resources folder.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6467522902682921119?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6467522902682921119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-apple-logo-in-login-window.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6467522902682921119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6467522902682921119'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-apple-logo-in-login-window.html' title='Change the Apple logo in Login Window'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-9199932343926212364</id><published>2009-06-10T15:52:00.001+05:30</published><updated>2009-06-10T15:55:54.067+05:30</updated><title type='text'>Hide accounts in the Login Window</title><content type='html'>&lt;div style="text-align: justify;"&gt;If you find yourself with an overly long list of users in the login window or you just want to get rid of that annoying scroll bar down the side, you can stop accounts appearing in the login window.&lt;br /&gt;&lt;br /&gt;Start by go to the Accounts pane in System Preferences, and find the "short name" of each user you want to hide. Once you have these, open up Terminal and enter the following:&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add shortname1 shortname2 shortname3&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Replace shortname1 2 and 3 with the short names of the user accounts you wish to hide. You can hide as many as you like, just separate each with a space.&lt;br /&gt;&lt;br /&gt;To make a hidden name appear again, type the command with no names in it, therefore resetting the list of hidden users.&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow HiddenUsersList -array-add &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Notice that doing this adds an extra option to your login window - "Other..." When you select this, you will be presented with text boxes to enter a username and password.&lt;br /&gt;&lt;br /&gt;If you aren't running OS X 10.4, this doesn't work. Another option is to replace the list of users with username and password text boxes. Go to the Accounts pane in System Preferences and click on Login Options. There you will find an option to display the login window as name and password fields. This isn't as pretty, but saves time if you have lots of users, and is also more secure.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-9199932343926212364?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/9199932343926212364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/hide-accounts-in-login-window.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/9199932343926212364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/9199932343926212364'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/hide-accounts-in-login-window.html' title='Hide accounts in the Login Window'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8399898645434563380</id><published>2009-06-10T15:51:00.000+05:30</published><updated>2009-06-10T15:52:00.540+05:30</updated><title type='text'>Add a message to the login window</title><content type='html'>You can add a string of text above the list of users in the login window. To do this, start by opening up Terminal. This is located in the Utilities folder, inside the Applications folder. Once it has loaded, paste in the following line and press return:&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Hello There"&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Replace "Hello There" with your text. To remove the text, type the following line:&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold;"&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText ""&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8399898645434563380?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8399898645434563380/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-message-to-login-window_10.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8399898645434563380'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8399898645434563380'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-message-to-login-window_10.html' title='Add a message to the login window'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8401146699395221516</id><published>2009-06-10T15:46:00.006+05:30</published><updated>2009-06-10T15:49:33.429+05:30</updated><title type='text'>Batch rename multiple files using Automator</title><content type='html'>&lt;div style="text-align: justify;"&gt;Often you might find you have a folder containing hundreds of files, and you want to rename them all, for example to create a numbered list. In the Finder this would take ages, but luckily you can use Automator to make the process more efficient.&lt;br /&gt;&lt;br /&gt;Simple open up Automator and add the following actions into the workflow. First add "Get Specified Finder Items" followed by "Sort Finder Items" followed by "Rename Finder Items". Your workflow should look something like the screenshot below. When you add the "Rename Finder Items" action, you will be asked if you want to create a copy of the files. Generally you won't want to do this, so choose "Don't Copy".&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_aX5Er_TQrhs/Si-IDx8XbxI/AAAAAAAAAF4/wwWmoDl8PP8/s1600-h/automator-batch-rename.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 317px;" src="http://4.bp.blogspot.com/_aX5Er_TQrhs/Si-IDx8XbxI/AAAAAAAAAF4/wwWmoDl8PP8/s320/automator-batch-rename.png" alt="" id="BLOGGER_PHOTO_ID_5345640881239584530" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;What the workflow does is pretty straightforward. When you click Run in the top right, it gets the files you have added to the list in the first action. You can add the files by clicking the Add button below the list before you run the workflow. The second action then sorts the files by name, size, kind, or whatever you specify. The final action takes this list of files and modifies their file names.&lt;br /&gt;&lt;br /&gt;There are a huge amount of options in the "Rename Finder Items" action. The first drop-down menu allows you to choose between adding a date or time, adding text, changing uppercase/lowercase, making a sequential list or performing a find and replace for a string of text.&lt;br /&gt;&lt;br /&gt;The second action, "Sort Finder Items" is really optional and only makes a difference if you have the renaming action set to "Make Sequential". This takes the list in the order it's given and places sequential numbers before or after the file names depending on the files position in the list.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/Si-ITaTc_aI/AAAAAAAAAGA/Q0E8jApYcis/s1600-h/rename-action.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 122px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/Si-ITaTc_aI/AAAAAAAAAGA/Q0E8jApYcis/s320/rename-action.png" alt="" id="BLOGGER_PHOTO_ID_5345641149771873698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;Also, there are a couple of alternatives to the first action. One option is to use "Get Selected Finder Items" instead, which will perform the renaming on whatever the current selection is in the Finder. Another is "Ask for Finder Items", which will open up a dialog prompting you to choose the files each time you run the workflow. This is a good choice if you want to regularly perform the same renaming on different batches of files. You can then save the workflow as an application (File, Save As... and then choose Application from the File Format menu) that simply runs the workflow when you open it, instead of bring up Automator.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8401146699395221516?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8401146699395221516/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/batch-rename-multiple-files-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8401146699395221516'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8401146699395221516'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/batch-rename-multiple-files-using.html' title='Batch rename multiple files using Automator'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/Si-IDx8XbxI/AAAAAAAAAF4/wwWmoDl8PP8/s72-c/automator-batch-rename.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5336388424341030614</id><published>2009-06-10T15:43:00.001+05:30</published><updated>2009-06-10T15:56:20.907+05:30</updated><title type='text'>Mutihoming with one Ethernet interface</title><content type='html'>&lt;div style="text-align: justify;"&gt;Like many small businesses we have taken advantage of the 'free' DSL services offered as part of an existing mobile phone contract. In this case we use Orange for mobile service (we're based in the UK) and they offer 2 Mbit internet with a wireless router for no extra if you have at least one pay monthly account. I thought that it would be a useful addition to our network for testing and backup, especially as it is from a different ISP and delivered over a physically separate landline from our business internet.&lt;br /&gt;&lt;br /&gt;The wireless router arrived yesterday and the DSL activation happened on time so that the line came up first time when I plugged the line into the router. I'd heard a few horror stories about Orange's support for Macs so I was pleasantly surprised when I popped the install CD into my MacBook and it came with full OSX installation instructions. 5 minutes later I was surfing on the internet via my shiny new Orange broadband.&lt;br /&gt;&lt;br /&gt;Now that we had two internet accesses functioning, how to use them both?&lt;br /&gt;&lt;br /&gt;I originally thought that I would keep our 8 Mbit business broadband link and the new line on separate networks so that I would not have to change any server or client configurations, just point my test machines at the new default gateway.&lt;br /&gt;&lt;br /&gt;However, with a little thinking about how much work it would be to switch all clients over in the event of a line failure (it does happen), especially if no IT savvy people were available at the time of failure, I started Googling for suggestions on how to link all computers to both gateway routers.&lt;br /&gt;&lt;br /&gt;I investigated using a spare Linksys router with new firmware to act as a load balancer, but that would introduce a new single point of failure. After thinking a bit more about OSX's multihoming feature I decided to do the following: &lt;/div&gt;&lt;ul style="text-align: justify;"&gt;&lt;li&gt;At each Mac, clients and servers, add a new interface (System Preferences » Network » Show Network Port Configurations » New.) I called ours &lt;em&gt;orange internet&lt;/em&gt;, using port 'Built-in ethernet.'&lt;/li&gt;&lt;li&gt;Set up the new port with 'Configure IPv4: Manually,' giving it a 192.168.1.x address. (The original LAN address range is 192.168.0.1, mask 255.255.255.0, and default gateway is 192.168.0.1.)&lt;/li&gt;&lt;li&gt;On each machine, arrange the order of ports so that the default ethernet for each is first in the list.&lt;/li&gt;&lt;li&gt;On the server, setup a new DNS zone on 192.168.1.x with the same config as the original.&lt;/li&gt;&lt;li&gt;Optional: Use dyDNS or similar to assign a domain to the new external IP&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: justify;"&gt; Now, if the first interface is not available then it will fail-over to the other one and I can chose which gateway to use at each machine by re-arranging the port order.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5336388424341030614?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5336388424341030614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mutihoming-with-one-ethernet-interface.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5336388424341030614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5336388424341030614'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mutihoming-with-one-ethernet-interface.html' title='Mutihoming with one Ethernet interface'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5864615045925759756</id><published>2009-06-10T15:41:00.001+05:30</published><updated>2009-06-10T15:56:41.229+05:30</updated><title type='text'>One fix for an always-running laptop fan</title><content type='html'>&lt;div style="text-align: justify;"&gt;I found a solution to why my laptop fan was running constantly and running my battery out in an hour. This problem is common for MacBook users and many websites and forums suggest restarting, installing fan regulation software, resetting PRAM, etc. None of these really work, but the solution is very simple.&lt;br /&gt;&lt;br /&gt;Since laptop users are mobile, they're frequently using different printers. When sending a document to print sometimes my MacBook selects the wrong printer, when it doesn't print I select a new printer and print again. But I forgot to delete the print job sent to the first printer, so my Mac keeps looking to print at the other printer causing the processor to heat up and the fan runs constantly.&lt;br /&gt;&lt;br /&gt;Therefore, open System preferences go to Print &amp;amp; Fax, then select the printer that has a document in the queue, delete the print job and the fans shuts off within a minute -- and stays off.&lt;br /&gt;&lt;br /&gt;The laptop will stay quiet and cool, the battery will last the usual amount of time, and MacBook mobile life is good again.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5864615045925759756?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5864615045925759756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/one-fix-for-always-running-laptop-fan.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5864615045925759756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5864615045925759756'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/one-fix-for-always-running-laptop-fan.html' title='One fix for an always-running laptop fan'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4473737066341293258</id><published>2009-06-10T15:35:00.003+05:30</published><updated>2009-06-10T15:57:15.159+05:30</updated><title type='text'>Mac OS X 10.5: Delete users accounts from command line in 10.5</title><content type='html'>&lt;div style="text-align: justify;"&gt;Many times we need to do a new OS X install, create a (temporary) user account, run all the updates, then delete the user account and get the machine back to "new" condition, i.e. no user accounts and Setup Assistant runs at boot.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="text-align: justify;"&gt;The process in 10.4 is pretty well documented, but not so 10.5. Here's a process I've come up with and tested twice. It's not as elegant as just deleting the whole netinfo database, but it still seems to accomplish what I need. Hopefully someone more knowledgeable can improve it!&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;To delete a user from the command line in 10.5:&lt;br /&gt;&lt;br /&gt;  1. Boot into single user mode. Hold Command-s at startup.&lt;br /&gt;  2. Check the filesystem: &lt;span style="color: rgb(255, 0, 0);"&gt;/sbin/fsck -fy&lt;/span&gt;&lt;br /&gt;  3. If no remaining errors, mount the filesystem: &lt;span style="color: rgb(255, 0, 0);"&gt;/sbin/mount -uw /&lt;/span&gt;&lt;br /&gt;  4. Start up directory services:&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center; color: rgb(255, 0, 0);"&gt;&lt;div style="text-align: center;"&gt;launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Note that single user mode said to use &lt;span style="color: rgb(255, 0, 0);"&gt;com.apple.DirectoryServicesLocal.plist&lt;/span&gt;, but that didn't work -- this did.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;   5. Find what groups the user belongs to: &lt;span style="color: rgb(255, 0, 0);"&gt;dscl . -list /groups GroupMembership | grep username --&lt;/span&gt; repeat for each group except for the user's own group.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;   6. Remove the group corresponding to the username: dscl . delete /groups/username (this may not be necessary -- you may get an error that the group doesn't exist; you can ignore it and go on).&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;   7. Remove the user account: &lt;span style="color: rgb(255, 0, 0);"&gt;dscl . delete /users/username&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;   8. At this point, you may wish to remove or archive the user folder in /Users.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;   9. You may wish to remove the &lt;span style="color: rgb(255, 0, 0);"&gt;.AppleSetupDone&lt;/span&gt; file in &lt;span style="color: rgb(255, 0, 0);"&gt;/var/db&lt;/span&gt; to cause the Setup Assistant to run when next booted.&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;  10. All done? Type reboot to reboot the system or &lt;span style="color: rgb(255, 0, 0);"&gt;shutdown -h now&lt;/span&gt; to shut down the system.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Much of this was taken from this entry in Robert Daeley's blog at O'Reilly. Please know what you're doing before trying this -- the dscl command will let you wreak havoc on your system if you're not careful!&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4473737066341293258?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4473737066341293258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-delete-users-accounts-from.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4473737066341293258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4473737066341293258'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-delete-users-accounts-from.html' title='Mac OS X 10.5: Delete users accounts from command line in 10.5'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5266974526282982655</id><published>2009-06-09T12:35:00.003+05:30</published><updated>2009-06-10T19:36:48.418+05:30</updated><title type='text'>Apple Unveils Mac OS X Snow Leopard and Mac OS X Server Snow Leopard - SEPTEMBER 2009</title><content type='html'>&lt;div style="text-align: justify;"&gt;Apple today unveiled &lt;a href="http://www.apple.com/macosx/"&gt;Mac OS X Snow Leopard&lt;/a&gt;, an even more powerful and refined version of the world’s most advanced operating system that includes hundreds of refinements, new core technologies, out of the box support for Microsoft Exchange and new accessibility features. Snow Leopard will ship as an upgrade for Mac OS X Leopard users in September 2009 for $29. Apple also unveiled a Developer Preview of &lt;a href="http://www.apple.com/server/macosx/"&gt;Mac OS X Server Snow Leopard&lt;/a&gt;, a full 64-bit UNIX server operating system based on open standards that is up to twice as fast as its predecessor. &lt;span class="section"&gt;Filed under: &lt;a href="http://www.apple.com/hotnews/#section=mac"&gt;Mac&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In ways big and small, Mac OS X Snow Leopard makes your Mac faster, more reliable, and easier to use.&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;img src="file:///C:/DOCUME%7E1/ADMINI%7E1/LOCALS%7E1/Temp/moz-screenshot.jpg" alt="" /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/Si4KYyLDu9I/AAAAAAAAAFw/27ryteSoJh4/s1600-h/snowleopard.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 170px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/Si4KYyLDu9I/AAAAAAAAAFw/27ryteSoJh4/s320/snowleopard.jpg" alt="" id="BLOGGER_PHOTO_ID_5345221228636650450" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5266974526282982655?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5266974526282982655/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apple-unveils-mac-os-x-snow-leopard-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5266974526282982655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5266974526282982655'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apple-unveils-mac-os-x-snow-leopard-and.html' title='Apple Unveils Mac OS X Snow Leopard and Mac OS X Server Snow Leopard - SEPTEMBER 2009'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_aX5Er_TQrhs/Si4KYyLDu9I/AAAAAAAAAFw/27ryteSoJh4/s72-c/snowleopard.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-526368687758033096</id><published>2009-06-09T12:33:00.001+05:30</published><updated>2009-06-09T12:35:00.483+05:30</updated><title type='text'>Announcing the new iPhone 3G S —The Fastest, Most Powerful iPhone Yet</title><content type='html'>&lt;div style="text-align: justify;"&gt;Apple today introduced the new &lt;a href="http://www.apple.com/iphone/"&gt;iPhone 3G S&lt;/a&gt;, featuring improved speed and performance—up to twice as fast as iPhone 3G—longer battery life, a high-quality 3 megapixel autofocus camera, easy to use video recording and hands free voice control. iPhone 3G S includes the new iPhone OS 3.0, with over 100 new features such as Cut, Copy and Paste, MMS, Spotlight Search, landscape keyboard and a new Find My iPhone feature that works together with &lt;a href="http://www.apple.com/mobileme/"&gt;MobileMe&lt;/a&gt; to help you locate a lost iPhone.  &lt;span class="section"&gt;Filed under.&lt;br /&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/Si4Jj6S1HEI/AAAAAAAAAFo/TwJTuXMymBw/s1600-h/iphone.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 130px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/Si4Jj6S1HEI/AAAAAAAAAFo/TwJTuXMymBw/s320/iphone.jpg" alt="" id="BLOGGER_PHOTO_ID_5345220320283663426" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-526368687758033096?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/526368687758033096/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/announcing-new-iphone-3g-s-fastest-most.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/526368687758033096'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/526368687758033096'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/announcing-new-iphone-3g-s-fastest-most.html' title='Announcing the new iPhone 3G S —The Fastest, Most Powerful iPhone Yet'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/Si4Jj6S1HEI/AAAAAAAAAFo/TwJTuXMymBw/s72-c/iphone.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4310348945089580073</id><published>2009-06-09T12:26:00.002+05:30</published><updated>2009-06-09T12:31:49.838+05:30</updated><title type='text'>Apple Releases Safari 4</title><content type='html'>&lt;div style="text-align: justify;"&gt;Today Apple released &lt;a href="http://www.apple.com/safari/"&gt;Safari 4&lt;/a&gt;, the world’s fastest and most innovative web browser. Available for Mac and Windows PCs and introduced as a beta in February of this year, Safari 4 features the Nitro engine which runs JavaScript up to 4.5 times faster than Safari 3. Safari 4 makes browsing more intuitive and enjoyable with innovative features, such as Top Sites, Full History Search and Cover Flow, and support for modern web standards like HTML 5 and advanced CSS Effects. &lt;span class="section"&gt;Filed under&lt;/span&gt;&lt;br /&gt;It renders web pages at lightning speed. It works on the iPhone, iPod touch, Mac and PC. It shows you your favorite sites at a glance. And it’s so smart, it even checks your spelling and grammar. Meet Safari 4, the world’s most innovative browser.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="font-weight: bold; text-align: justify;"&gt;&lt;li&gt;Top Sites&lt;/li&gt;&lt;li&gt;Cover Flow&lt;/li&gt;&lt;li&gt;Full History Search&lt;/li&gt;&lt;li&gt;Nitro Engine&lt;/li&gt;&lt;li&gt;Windows Native look and Feel&lt;/li&gt;&lt;li&gt;Developer Tools&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4It20ytbI/AAAAAAAAAFg/ADvjzy7uB0k/s1600-h/safari.png"&gt;&lt;img style="cursor: pointer; width: 360px; height: 151px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4It20ytbI/AAAAAAAAAFg/ADvjzy7uB0k/s320/safari.png" alt="" id="BLOGGER_PHOTO_ID_5345219391639434674" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4310348945089580073?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4310348945089580073/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apple-releases-safari-4.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4310348945089580073'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4310348945089580073'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/apple-releases-safari-4.html' title='Apple Releases Safari 4'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4It20ytbI/AAAAAAAAAFg/ADvjzy7uB0k/s72-c/safari.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-976731151508344705</id><published>2009-06-09T12:06:00.005+05:30</published><updated>2009-06-09T12:24:33.155+05:30</updated><title type='text'>The new MacBook Pro family.(13-inch, 15-inch, and 17-inch.)</title><content type='html'>&lt;div style="text-align: justify;"&gt;High performance now comes in three sizes: 13-inch, 15-inch, and 17-inch.&lt;br /&gt;The new MacBook Pro brings precision engineering and advanced technology to everyone.&lt;br /&gt;Today Apple updated the aluminum unibody MacBook Pro line to include 13-inch, 15-inch and 17-inch models featuring Apple’s innovative built-in battery for up to 40 percent longer battery life. Each MacBook Pro includes an LED-backlit display with greater color intensity, the innovative glass Multi-Touch trackpad, an illuminated keyboard, an SD card or ExpressCard slot, a FireWire 800 port and state of the art NVIDIA graphics. Apple also updated the incredibly thin and light MacBook Air, making it more powerful and more affordable. Filed under: Mac. Read more: apple.com/macbookpro&lt;br /&gt;&lt;br /&gt;The Mac is designed to provide the best computer experience you can have. Everything just works. And everything works together. That’s because Apple makes both the hardware and the software. So whether you’re accessing a Wi-Fi network or organizing your photos by faces or video chatting with friends, it’s all amazingly simple. And that’s just the beginning. Here are a few more reasons why so many people choose a Mac.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul style="font-weight: bold; text-align: justify;"&gt;&lt;li&gt;Precision aluminum. The new gold standard&lt;/li&gt;&lt;li&gt;The longest-lasting Mac notebook battery ever.&lt;/li&gt;&lt;li&gt;Graphics in full force.&lt;/li&gt;&lt;li&gt;A display of brilliance.&lt;/li&gt;&lt;li&gt;Even the keyboard is advanced.&lt;/li&gt;&lt;li&gt;It all just clicks.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4FfkanAeI/AAAAAAAAAFY/YpDDRjV2YKs/s1600-h/overview-gallery1-20090608.png"&gt;&lt;img style="cursor: pointer; width: 642px; height: 200px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4FfkanAeI/AAAAAAAAAFY/YpDDRjV2YKs/s320/overview-gallery1-20090608.png" alt="" id="BLOGGER_PHOTO_ID_5345215847644725730" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-976731151508344705?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/976731151508344705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/new-macbook-pro-family.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/976731151508344705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/976731151508344705'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/new-macbook-pro-family.html' title='The new MacBook Pro family.(13-inch, 15-inch, and 17-inch.)'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/Si4FfkanAeI/AAAAAAAAAFY/YpDDRjV2YKs/s72-c/overview-gallery1-20090608.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5152572648381788542</id><published>2009-06-08T17:09:00.002+05:30</published><updated>2009-06-09T15:37:52.041+05:30</updated><title type='text'>ABGmerge -  Sync between Address Book and Gmail</title><content type='html'>&lt;p style="text-align: justify;"&gt;Never go without contact information again. With &lt;a href="http://homepage.mac.com/bharley/BenAppleScripts/FileSharing19.html"&gt;ABGmerge&lt;/a&gt; you can keep your Mac OS X Address Book and Gmail Contacts synchronized. This isn’t anything fancy, just an Applescript that can interface between a Gmail CSV file and your Mac Address Book. But if you use Gmail and your Address Book, you might like the convenience of having all your contact information in both places.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.freemacware.com/freemacware-downloads/1218"&gt;&lt;img src="http://www.freemacware.com/wp-content/images/abgmerge.png" alt="icon" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5152572648381788542?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5152572648381788542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/abgmerge-sync-between-address-book-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5152572648381788542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5152572648381788542'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/abgmerge-sync-between-address-book-and.html' title='ABGmerge -  Sync between Address Book and Gmail'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1490370809311564051</id><published>2009-06-08T17:05:00.001+05:30</published><updated>2009-06-08T17:08:09.210+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='icon'/><title type='text'>Arrow - Free e-mail Program</title><content type='html'>&lt;p style="text-align: justify;"&gt;&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=170490"&gt;&lt;strong&gt;Arrow&lt;/strong&gt;&lt;/a&gt; is a free e-mail program that was written to address the e-mail needs of users migrating from Mac and Windows to Linux. &lt;strong&gt;Arrow&lt;/strong&gt; currently supports viewing, composing, and organizing of e-mail, including secure e-mail via PGP, POP access, and a spell checker.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.freemacware.com/freemacware-downloads/2555"&gt;&lt;img src="http://www.freemacware.com/wp-content/images/email.png" alt="icon" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1490370809311564051?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1490370809311564051/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/arrow-free-e-mail-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1490370809311564051'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1490370809311564051'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/arrow-free-e-mail-program.html' title='Arrow - Free e-mail Program'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4756691172986287372</id><published>2009-06-08T16:59:00.001+05:30</published><updated>2009-06-08T17:02:37.699+05:30</updated><title type='text'>TraffiX - Bandwidth / Trafiic Monitor</title><content type='html'>&lt;p style="text-align: justify;"&gt;&lt;a href="http://www.thotzy.com/THOTZY/Thotz/Entries/2008/10/26_TraffiX_2.0_%E2%80%94_Watch_your_Gigs._Better._files/Traffix.dmg"&gt;TraffiX&lt;/a&gt; monitors the total amount of data transferred between your gateway router (the router that connects you to the internet) and the internet. This is sometimes referred to as “bandwidth” or “Traffic”.&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.freemacware.com/freemacware-downloads/2454"&gt;&lt;img src="http://www.freemacware.com/wp-content/images/traffix.png" alt="icon" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4756691172986287372?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4756691172986287372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/traffix-bandwidth-trafiic-monitor.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4756691172986287372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4756691172986287372'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/traffix-bandwidth-trafiic-monitor.html' title='TraffiX - Bandwidth / Trafiic Monitor'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2539785508096133324</id><published>2009-06-08T16:55:00.004+05:30</published><updated>2009-06-09T15:38:08.971+05:30</updated><title type='text'>Stainless - Free Web browser</title><content type='html'>&lt;a href="http://www.stainlessapp.com/"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/a&gt;&lt;a href="http://www.stainlessapp.com/"&gt;Stainless&lt;/a&gt; is a free web browser that comes with support for most of the features available in Google Chrome: unified address and search bar, tabs that one can drag between windows, and a private stealth browsing mode.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/Siz1lQue5aI/AAAAAAAAAFQ/56z9ei0uHlY/s1600-h/stainless.png"&gt;&lt;img style="cursor: pointer; width: 108px; height: 108px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/Siz1lQue5aI/AAAAAAAAAFQ/56z9ei0uHlY/s320/stainless.png" alt="" id="BLOGGER_PHOTO_ID_5344916878275831202" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2539785508096133324?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2539785508096133324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/stainless-free-web-browser.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2539785508096133324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2539785508096133324'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/stainless-free-web-browser.html' title='Stainless - Free Web browser'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/Siz1lQue5aI/AAAAAAAAAFQ/56z9ei0uHlY/s72-c/stainless.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1260252088537466978</id><published>2009-06-08T16:39:00.003+05:30</published><updated>2009-06-08T16:41:41.047+05:30</updated><title type='text'>Add Spacers to the Leopard Dock</title><content type='html'>&lt;p style="text-align: justify;"&gt;If you find your &lt;span class="kblinker"&gt;Leopard&lt;/span&gt; dock a little messy, Here’s a tip that’ll allow you to add spacers to the dock to seperate your apps/documents into groups on the dock.If you’d like a space on the left or application side of the dock, Open &lt;span class="kblinker"&gt;terminal&lt;/span&gt; (~/applications/utlities/terminal.app) and enter the following command:&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify; font-weight: bold; font-style: italic;"&gt;&lt;code&gt;defaults write com.apple.dock &lt;/code&gt;&lt;code&gt;persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' &lt;/code&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;If you’d like to add one to the right or document side of the dock enter this command:&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify; font-weight: bold; font-style: italic;"&gt;&lt;code&gt;defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}'&lt;/code&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;To see your changes you’ll also need to restart the dock by entering the command:&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify; font-weight: bold; font-style: italic;"&gt;&lt;code&gt;Killall Dock&lt;/code&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;Afteryou’ve done this once, you can drag the spacers where ever you’d like and even create more by simple entering the same commands into terminal over again.To remove the space, simply click and drag the space out of the dock like you would any other application or document and ” poof ” it’s gone.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SizxjpKwxNI/AAAAAAAAAFI/pc-xnnvvUnw/s1600-h/spaceoutthedock.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 106px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SizxjpKwxNI/AAAAAAAAAFI/pc-xnnvvUnw/s320/spaceoutthedock.jpg" alt="" id="BLOGGER_PHOTO_ID_5344912452430644434" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1260252088537466978?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1260252088537466978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-spacers-to-leopard-dock.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1260252088537466978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1260252088537466978'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-spacers-to-leopard-dock.html' title='Add Spacers to the Leopard Dock'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SizxjpKwxNI/AAAAAAAAAFI/pc-xnnvvUnw/s72-c/spaceoutthedock.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-104270401645171099</id><published>2009-06-08T16:35:00.002+05:30</published><updated>2009-06-11T11:44:26.187+05:30</updated><title type='text'>Safari Widget</title><content type='html'>&lt;p&gt;Leopards new version of Safari comes packed with new features, my favorite being the new webclip feature. WebClip basically allows you to create a custom widget on the go from any part of any webpage.&lt;/p&gt; &lt;p&gt;This can come in super handy, and recently I discovered a little trick that brought my favorite radio station to my dashboard so it’s always ready, and not taking up a browser window.&lt;/p&gt; &lt;p&gt;Here’s what you do, Browse to your favorite radio station that allows you to listen live online,browse to the player and click File/Open in dashboard, You will be prompted to select the area of the web page you want to make into a widget, Select the radio player and hit okay, your new custom radio widget will now open in dashboard.&lt;/p&gt; &lt;p&gt;You can change the style and size of the widget by clicking on the  little i icon just like any widget, While you’re there uncheck the ” only play audio in dashboard ” option and it’ll play while you work!&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/SizwzP17HXI/AAAAAAAAAFA/QVIhlaP6dfk/s1600-h/radiowidget.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 162px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/SizwzP17HXI/AAAAAAAAAFA/QVIhlaP6dfk/s320/radiowidget.png" alt="" id="BLOGGER_PHOTO_ID_5344911620998634866" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-104270401645171099?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/104270401645171099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/leopards-new-version-of-safari-comes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/104270401645171099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/104270401645171099'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/leopards-new-version-of-safari-comes.html' title='Safari Widget'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/SizwzP17HXI/AAAAAAAAAFA/QVIhlaP6dfk/s72-c/radiowidget.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1259549854136413058</id><published>2009-06-08T16:34:00.002+05:30</published><updated>2009-06-08T16:35:14.051+05:30</updated><title type='text'>Free Alarm Clock for your Mac using iCal</title><content type='html'>&lt;p&gt;There’s a lot of good alarm clock software out there, but there’s also a way to turn your Imac or Macbook into an alarm clock totally free using iCal and iTunes.&lt;br /&gt;First you open iCal and set up a new event for the time you want the alarm to go off, then set up an action  by editing your event and setting the alarm to “Open File” then attach a song from your iTunes.&lt;/p&gt; &lt;p&gt;Make sure you’re volume is up and you’re all set with your own free alarm clock for OS X&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_aX5Er_TQrhs/SizwWzgaaYI/AAAAAAAAAE4/V5RIPT70l4k/s1600-h/osxalarmclock.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 236px;" src="http://4.bp.blogspot.com/_aX5Er_TQrhs/SizwWzgaaYI/AAAAAAAAAE4/V5RIPT70l4k/s320/osxalarmclock.png" alt="" id="BLOGGER_PHOTO_ID_5344911132355881346" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1259549854136413058?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1259549854136413058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/free-alarm-clock-for-your-mac-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1259549854136413058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1259549854136413058'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/free-alarm-clock-for-your-mac-using.html' title='Free Alarm Clock for your Mac using iCal'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/SizwWzgaaYI/AAAAAAAAAE4/V5RIPT70l4k/s72-c/osxalarmclock.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-994589334370798245</id><published>2009-06-05T22:01:00.001+05:30</published><updated>2009-06-05T22:01:25.926+05:30</updated><title type='text'>How to save a YouTube video</title><content type='html'>Here’s how to save a YouTube video if you’re using Safari. If you use other web browsers, the process is the same, but you may have to look around in the menus to find the right items.  &lt;ol&gt;&lt;li&gt;View the YouTube video you wish to download and save. &lt;/li&gt;&lt;li&gt;Open Safari’s Activity window (from the Window menu). &lt;/li&gt;&lt;li&gt;In the Activity window click the disclosure triangle beside the correct Safari Tab or Window. A list appears showing all the activity for that Tab. In my screenshot you can see a long list of items that are part of the Queen Rania YouTube page I have open. Beside each item is a size in Kb or Mb. &lt;/li&gt;&lt;li&gt;Identify the biggest item  —  it’s likely to be several megabytes. In my screenshot it’s a 3.4Mb item at the top of the list. &lt;/li&gt;&lt;li&gt;Watch that item as the size may be constantly increasing. If it is that means the video is still loading. &lt;/li&gt;&lt;li&gt;Wait until the size of the biggest item stops increasing then hold down the Option key (⌥) and double click on that line. The movie file downloads to your Downloads folder. It may be named something like &lt;code&gt;video.flv&lt;/code&gt;. &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-994589334370798245?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/994589334370798245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/how-to-save-youtube-video.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/994589334370798245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/994589334370798245'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/how-to-save-youtube-video.html' title='How to save a YouTube video'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8548114628976020733</id><published>2009-06-05T21:59:00.001+05:30</published><updated>2009-06-05T21:59:56.167+05:30</updated><title type='text'>Set The Screen Saver As The Wallpaper</title><content type='html'>&lt;div style="text-align: justify;"&gt;This command sets the currently selected screen saver as the desktop background. Use command + c or . to stop while in Terminal. Alternatively you can use &lt;a href="http://www.nwwnetwork.net/software.php?app=wallsaver"&gt;wallsaver&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold; font-style: italic;"&gt;/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background &lt;/code&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8548114628976020733?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8548114628976020733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/set-screen-saver-as-wallpaper.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8548114628976020733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8548114628976020733'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/set-screen-saver-as-wallpaper.html' title='Set The Screen Saver As The Wallpaper'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5191011209175881177</id><published>2009-06-05T21:57:00.001+05:30</published><updated>2009-06-05T21:58:42.546+05:30</updated><title type='text'>Enable The Path View In Finder</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="text-align: justify;"&gt;One of may favourite hacks as it lets you see the current path of the Finder window you are in. Its great if you work with a lot of windows.&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;code style="font-weight: bold; font-style: italic;"&gt;defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES &lt;/code&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_aX5Er_TQrhs/SilHr6bLMBI/AAAAAAAAAEw/PHu2QR-GLto/s1600-h/Picture%2B4.png"&gt;&lt;img style="cursor: pointer; width: 200px; height: 31px;" src="http://2.bp.blogspot.com/_aX5Er_TQrhs/SilHr6bLMBI/AAAAAAAAAEw/PHu2QR-GLto/s320/Picture%2B4.png" alt="" id="BLOGGER_PHOTO_ID_5343881252594987026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5191011209175881177?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5191011209175881177/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/enable-path-view-in-finder.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5191011209175881177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5191011209175881177'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/enable-path-view-in-finder.html' title='Enable The Path View In Finder'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/SilHr6bLMBI/AAAAAAAAAEw/PHu2QR-GLto/s72-c/Picture%2B4.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-71572733433962514</id><published>2009-06-05T21:55:00.001+05:30</published><updated>2009-06-05T21:56:48.162+05:30</updated><title type='text'>Drag A Widget Onto The Desktop</title><content type='html'>Probably one of the coolest hacks. This command enables widgets to be placed onto the desktop. Drag a widget around and press F12 to drag it onto the desktop. Repeat the process again to drag a widget back onto the dashboard. This may need you to log off or restart for it to take effect.&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold; font-style: italic;"&gt;defaults write com.apple.dashboard devmode YES &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SilHKQSM4sI/AAAAAAAAAEo/HUkIoRQICSY/s1600-h/Picture%2B3.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 243px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SilHKQSM4sI/AAAAAAAAAEo/HUkIoRQICSY/s320/Picture%2B3.png" alt="" id="BLOGGER_PHOTO_ID_5343880674347377346" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-71572733433962514?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/71572733433962514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-widget-onto-desktop.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/71572733433962514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/71572733433962514'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-widget-onto-desktop.html' title='Drag A Widget Onto The Desktop'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SilHKQSM4sI/AAAAAAAAAEo/HUkIoRQICSY/s72-c/Picture%2B3.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2069870041433391982</id><published>2009-06-05T21:53:00.000+05:30</published><updated>2009-06-05T21:55:02.863+05:30</updated><title type='text'>Add A Message To The Login Window</title><content type='html'>This little Terminal command enables you to add a message of your choice to the Login window. Pretty cool and deserved a screenshot if I new how to take on while not logged in.&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold; font-style: italic;"&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Your Message"&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2069870041433391982?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2069870041433391982/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-message-to-login-window.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2069870041433391982'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2069870041433391982'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-message-to-login-window.html' title='Add A Message To The Login Window'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2292749108317946394</id><published>2009-06-05T19:13:00.001+05:30</published><updated>2009-06-10T15:58:21.346+05:30</updated><title type='text'>Enable third button options for generic third-party mice</title><content type='html'>&lt;div style="text-align: justify;"&gt;I won't discuss the pros or cons of Apple's Mighty Mouse here, as mine just broke. Or more to the point, I broke it -- the sticking little ball just drove me round the bend. Anyhow, I ended buying myself a simple, cheap and quite nice USB optical mouse. Nothing fancy. Two main buttons plus a scroll/button wheel (ie: a scroll wheel that you can also click). So far so good. Until I re-installed my System.&lt;br /&gt;&lt;br /&gt;Once in I started setting the system up like I wanted it, to my horror, the Mouse preferences didn't show me the third button on my mouse! Now what? Well it turns out that the System treats the Mighty Mouse special. That is, it recognizes it as such and brings up the corresponding preferences. Great, what about the rest of us?&lt;br /&gt;&lt;br /&gt;I scoured the net for several days trying to find out if someone had worked it out. I did find one solution. Just plug in a Mighty Mouse, set the preferences, plug it out, use you other mouse -- the preferences will 'stick.' Fine, what if you don't happen to have a Mighty Mouse just lying aroud?&lt;br /&gt;&lt;br /&gt;Most people replace their mouse with fancy Logitech, Microsoft or MacAlly mice that bundle their own drivers that allow all kind of wonders to be done. But what about us simple folk that want a no-frills but functional mouse (not to mention five times cheaper)?&lt;br /&gt;&lt;br /&gt;Caution: Terminal and root access required.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2292749108317946394?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2292749108317946394/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/enable-third-button-options-for-generic.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2292749108317946394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2292749108317946394'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/enable-third-button-options-for-generic.html' title='Enable third button options for generic third-party mice'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5579100202047609200</id><published>2009-06-05T19:12:00.001+05:30</published><updated>2009-06-10T15:58:55.190+05:30</updated><title type='text'>Mac OS X 10.5: A possible fix for Mail problems after 10.5 upgrade</title><content type='html'>&lt;div style="text-align: justify;"&gt;When upgrading a Tiger machine to Leopard, there seems to be some circumstances that prevent the upgrade of Mail data from completing. You can recognize this condition by these symptoms:&lt;br /&gt;&lt;br /&gt;   * Message viewer window doesn't automatically appear&lt;br /&gt;   * All mailboxes are present but empty&lt;br /&gt;   * Activity Viewer shows connection attempt not proceeding&lt;br /&gt;&lt;br /&gt;The Console logs can give some clues to the cause. Sometimes this is caused by conflicting or corrupt Junk Mail settings in the com.apple.mail.plist file.&lt;br /&gt;&lt;br /&gt;The various values have changed in some version updates to Mac OS X. For some, it's the JunkMailInfoPanelHasBeenShown attribute. For me, it was changing JunkMailBehaviorHasBeenConfigured to false. Also, removing the JunkViewerAttributes setting seemed to be necessary. These can be changed using Property List Editor (installed with XCode developer tools), or it's possible it could be done in the Terminal with these commands:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;$ defaults write com.apple.mail JunkMailBehaviorHasBeenConfigured false&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;$ defaults write com.apple.mail JunkMailInfoPanelHasBeenShown false&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;$ defaults delete com.apple.mail JunkViewerAttributes&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5579100202047609200?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5579100202047609200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-possible-fix-for-mail.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5579100202047609200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5579100202047609200'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-possible-fix-for-mail.html' title='Mac OS X 10.5: A possible fix for Mail problems after 10.5 upgrade'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2025218556489146034</id><published>2009-06-05T19:10:00.001+05:30</published><updated>2009-06-10T15:59:31.226+05:30</updated><title type='text'>Use MobileMe with Firefox and NoScript</title><content type='html'>&lt;div style="text-align: justify;"&gt;Today I found that Apple's &lt;a href="http://www.me.com/"&gt;MobileMe&lt;/a&gt; login page redirects so quickly that I can't even see what domain I should add to NoScript's whitelist so that I can login.&lt;br /&gt;&lt;br /&gt;Trial and error led me to a solution: Add auth.apple.com to NoScript's whitelist. To save you the time of testing others, I'll tell you here that I had already tried both me.com and mobileme.com, with and without a leading http://www. or www., but neither worked.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2025218556489146034?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2025218556489146034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/use-mobileme-with-firefox-and-noscript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2025218556489146034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2025218556489146034'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/use-mobileme-with-firefox-and-noscript.html' title='Use MobileMe with Firefox and NoScript'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2933149260669953630</id><published>2009-06-05T19:08:00.002+05:30</published><updated>2009-06-10T15:59:45.907+05:30</updated><title type='text'>Mac OS X 10.5: Share any files between users on the same Mac</title><content type='html'>&lt;div style="text-align: justify;"&gt;For a long time now, I've wished that there was a way in OS X to create a shared folder which disregarded file permissions. In particular, I want all the users to be able to read and write to all the files in the shared folder. This is very useful to me, because I want to have only library for each of iTunes, iPhoto and Aperture, and share those libraries between all the users on my Mac.&lt;br /&gt;&lt;br /&gt;I've tried many different things, but they were either too hacky or they just didn't work as advertised. I've come up with the following method which works, is safe, is not a hack, and is easy to implement. The secret to this technique is to use Access Control Lists (ACLs). The procedure is as follows:&lt;br /&gt;&lt;br /&gt;  1. Create a new group. The easiest way to do this is through the Accounts pane in System Preferences. Just click on the Plus sign to add a new account and then select Group from the New Account drop-down menu. Call this group anything you want; I called mine friday. Add all the users who you want to participate in the file sharing to your newly-created group.&lt;br /&gt;  2. Do the following steps in Terminal, in Applications -&gt; Utilities:&lt;br /&gt;        1. cd into the /Users/Shared directory: cd /Users/Shared.&lt;br /&gt;        2. Create a new folder where the users will be able to share their files. I created a folder named Friday by typing mkdir Friday.&lt;br /&gt;        3. Change the group of the new folder to your newly-created group: sudo chown admin:friday Friday.&lt;br /&gt;        4. Change the default permissions, if you wish: sudo chmod 770 Friday (this is optional if you're happy with the default permissions).&lt;br /&gt;        5. Create the ACL entry for the new folder:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;sudo chmod +a "group:friday allow delete,readattr,writeattr,readextattr,writeextattr,list,search,add_file,add_subdirectory,delete_child,file_inherit,directory_inherit" Friday&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You now have a folder where all members of the group friday can read, write and delete files, as well as read, write to and create new sub folders. The ACL rule takes precedence over standard UNIX file permissions and is automatically inherited. It's this automatic inheritance that is really important.&lt;br /&gt;&lt;br /&gt;Now you are ready to copy your iTunes, Aperture, iPhoto libraries, plus anything else you want to share, into the shared folder. IMPORTANT: You must copy (hold down Option in Finder prior to dragging), and not merely move, items. This is particularly important with bundles, such as the Aperture library bundle for example. Moving items doesn't seem to always inherit the correct ACL rules. Copying ensures that the files are actually created in the shared folder, thereby forcing the ACL rules to be inherited.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2933149260669953630?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2933149260669953630/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-share-any-files-between.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2933149260669953630'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2933149260669953630'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-share-any-files-between.html' title='Mac OS X 10.5: Share any files between users on the same Mac'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1212547457887609800</id><published>2009-06-05T18:51:00.001+05:30</published><updated>2009-06-10T16:00:05.035+05:30</updated><title type='text'>Mac OS X 10.5: Use multiple Time Machine disks for redundancy</title><content type='html'>&lt;div style="text-align: justify;"&gt;Time machine, at least as of 10.5.6, will gladly maintain multiple Time Machine disks. This way, you can periodically rotate your Time Machine backup disks to keep one safely off line and off site. The trick is that there is no trick. I say this because there are some dangerous methods posted on the internet involving complex setups like copying the hidden disk ID number, that while appearing to work, actually slowly corrupt your backups.&lt;br /&gt;&lt;br /&gt;All you need to do is attach the disk and tell Time Machine to use it. When you are ready to swap drives, attach the other and tell Time Machine to use it instead. The very first time you do this, there is (of course) a big time consuming backup. After that, the swap is pretty fast. A bit longer than a typical backup session (but a lot shorter than say an rsync by comparison).&lt;br /&gt;&lt;br /&gt;Time Machine correctly finds the files that were changed since the last time that disk was mounted and backs these up, making a perfectly synced new backup in the older disk's time lineage. And then it proceedes normally. If you are alternating disks weekly, then of course each disk is missing the disk state from the previous week. It still has all the files, it just can't restore to an epoch during which it was not connected -- that time period state is on the other disk.&lt;br /&gt;&lt;br /&gt;Other than that, this approach seems to be significantly better than the alternative of keeping an rsynced copy of the Time Machine disk. That's an ugly process, due to all the hard links, that is fraught with many small perils.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1212547457887609800?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1212547457887609800/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-use-multiple-time-machine.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1212547457887609800'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1212547457887609800'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-use-multiple-time-machine.html' title='Mac OS X 10.5: Use multiple Time Machine disks for redundancy'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5902622531632623685</id><published>2009-06-04T19:12:00.003+05:30</published><updated>2009-06-04T19:16:18.849+05:30</updated><title type='text'>Widescreen Mail.app Plugin: Letterbox (3 Column View)</title><content type='html'>&lt;p style="text-align: justify;"&gt;Now that every Mac laptop has a widescreen display and the present/future is widescreen displays it seems only logical to use that extra space we have. &lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;One great plugin is Letterbox; it takes advantage of your widescreen monitor by changing Mail.app into a 3 column view similar to NetNewsWire’s Widescreen View or Vienna’s Condensed Layout. &lt;/p&gt;&lt;a href="http://harnly.net/software/letterbox/"&gt;Download here, for free!&lt;/a&gt;&lt;a href="http://harnly.net/software/letterbox/" title="aaron.harnly.net   » letterbox"&gt;&lt;br /&gt;&lt;/a&gt;&lt;p style="text-align: justify;"&gt;Here’s a screenshot:&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_aX5Er_TQrhs/SifPVjHY56I/AAAAAAAAAD4/IWToVtcrMSI/s1600-h/picture-1-1.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 213px;" src="http://4.bp.blogspot.com/_aX5Er_TQrhs/SifPVjHY56I/AAAAAAAAAD4/IWToVtcrMSI/s320/picture-1-1.png" alt="" id="BLOGGER_PHOTO_ID_5343467452008818594" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5902622531632623685?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5902622531632623685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/widescreen-mailapp-plugin-letterbox-3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5902622531632623685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5902622531632623685'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/widescreen-mailapp-plugin-letterbox-3.html' title='Widescreen Mail.app Plugin: Letterbox (3 Column View)'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/SifPVjHY56I/AAAAAAAAAD4/IWToVtcrMSI/s72-c/picture-1-1.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2722260463354949653</id><published>2009-06-04T19:02:00.003+05:30</published><updated>2009-06-10T16:00:22.468+05:30</updated><title type='text'>Recording Sound on a Mac</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SifNurIRtrI/AAAAAAAAADw/NhL-ErvqU5A/s1600-h/Audacity-tm.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 177px; height: 125px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SifNurIRtrI/AAAAAAAAADw/NhL-ErvqU5A/s320/Audacity-tm.jpg" alt="" id="BLOGGER_PHOTO_ID_5343465684633499314" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;To record sound on a Mac, Download &lt;a href="http://audacity.sourceforge.net/"&gt;Audacity&lt;/a&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;p&gt;Audacity is a free, easy-to-use audio editor and recorder for Windows, Mac OS X, GNU/Linux, and other operating systems.&lt;/p&gt;&lt;/blockquote&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;Once it was downloaded and installed, it was as easy as hitting the big red record button to begin recording sound.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2722260463354949653?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2722260463354949653/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/recording-sound-on-mac.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2722260463354949653'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2722260463354949653'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/recording-sound-on-mac.html' title='Recording Sound on a Mac'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SifNurIRtrI/AAAAAAAAADw/NhL-ErvqU5A/s72-c/Audacity-tm.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5676539068599804364</id><published>2009-06-04T15:53:00.005+05:30</published><updated>2009-06-04T17:17:01.095+05:30</updated><title type='text'>The world's thinnest and lightest 17-inch notebook</title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(102, 102, 102); font-weight: bold;"&gt;MacBook Pro&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For details &lt;a href="http://www.apple.com/macbookpro/"&gt;Click here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/SiehHA2F6sI/AAAAAAAAADQ/kimVBdP5J74/s1600-h/overview-gallery1-20090106.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 174px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/SiehHA2F6sI/AAAAAAAAADQ/kimVBdP5J74/s320/overview-gallery1-20090106.png" alt="" id="BLOGGER_PHOTO_ID_5343416624756419266" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_aX5Er_TQrhs/SiehicaY0AI/AAAAAAAAADY/anYdZijtloA/s1600-h/hero.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 165px;" src="http://3.bp.blogspot.com/_aX5Er_TQrhs/SiehicaY0AI/AAAAAAAAADY/anYdZijtloA/s320/hero.png" alt="" id="BLOGGER_PHOTO_ID_5343417096012877826" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5676539068599804364?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5676539068599804364/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/worlds-thinnest-and-lightest-17-inch.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5676539068599804364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5676539068599804364'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/worlds-thinnest-and-lightest-17-inch.html' title='The world&apos;s thinnest and lightest 17-inch notebook'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_aX5Er_TQrhs/SiehHA2F6sI/AAAAAAAAADQ/kimVBdP5J74/s72-c/overview-gallery1-20090106.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6748465007181327225</id><published>2009-06-04T15:36:00.002+05:30</published><updated>2009-06-10T16:00:36.321+05:30</updated><title type='text'>Disable Dock Bouncing</title><content type='html'>&lt;p style="text-align: justify;"&gt;I like my Terminal tricks, they are really handy. I don’t think I have mentioned this quick tip before. I have searched my database and no tips have turned up. This little Terminal tip will disable any icons in you dock from bouncing. If you find them annoying there is a simple command which enables you to turn the animation off.&lt;/p&gt;&lt;div style="text-align: justify;"&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;As with any Terminal command open up this little app from Utilities. Type or copy and paste the following&lt;/p&gt;&lt;p style="font-weight: bold; text-align: justify;"&gt;&lt;code&gt;defaults write com.apple.dock no-bouncing -bool TRUE&lt;br /&gt;killall Dock&lt;/code&gt;&lt;/p&gt;&lt;p style="font-weight: bold; text-align: justify;"&gt;&lt;span style="font-weight: normal;"&gt;This will disable any dock bouncing. If you want to reverse the process replace TRUE in the command above with FALSE, and any bouncing icons should come bouncing back to see you&lt;/span&gt;.&lt;br /&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;&lt;p style="font-weight: bold; text-align: justify;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6748465007181327225?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6748465007181327225/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/disable-dock-bouncing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6748465007181327225'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6748465007181327225'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/disable-dock-bouncing.html' title='Disable Dock Bouncing'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-5425228230349115895</id><published>2009-06-04T14:31:00.001+05:30</published><updated>2009-06-04T14:33:04.872+05:30</updated><title type='text'>Drag Items to Finder Toolbar</title><content type='html'>You can do it by drag-hold-release item on the toolbar of Finder. To drag them out again, use modifier key &lt;b&gt;Command&lt;/b&gt; before dragging the item.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_aX5Er_TQrhs/SieNuofMkmI/AAAAAAAAADI/x2-nYmzWSDg/s1600-h/123.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 146px;" src="http://4.bp.blogspot.com/_aX5Er_TQrhs/SieNuofMkmI/AAAAAAAAADI/x2-nYmzWSDg/s320/123.jpg" alt="" id="BLOGGER_PHOTO_ID_5343395315180147298" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-5425228230349115895?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/5425228230349115895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-items-to-finder-toolbar.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5425228230349115895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/5425228230349115895'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-items-to-finder-toolbar.html' title='Drag Items to Finder Toolbar'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/SieNuofMkmI/AAAAAAAAADI/x2-nYmzWSDg/s72-c/123.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-453144136342455826</id><published>2009-06-03T21:33:00.001+05:30</published><updated>2009-06-03T21:33:57.200+05:30</updated><title type='text'>Installing RAM in MacBook Pro</title><content type='html'>&lt;object width="340" height="285"&gt;&lt;param name="movie" value="http://www.youtube.com/v/4gFPEZGuK2U&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/4gFPEZGuK2U&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="340" height="285"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-453144136342455826?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/453144136342455826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/installing-ram-in-macbook-pro.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/453144136342455826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/453144136342455826'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/installing-ram-in-macbook-pro.html' title='Installing RAM in MacBook Pro'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4892162589081894227</id><published>2009-06-03T21:28:00.000+05:30</published><updated>2009-06-03T21:29:27.303+05:30</updated><title type='text'>15 short Ads Mac vs PC</title><content type='html'>&lt;object width="340" height="285"&gt;&lt;param name="movie" value="http://www.youtube.com/v/lgzbhEc6VVo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/lgzbhEc6VVo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="340" height="285"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4892162589081894227?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4892162589081894227/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/15-short-ads-mac-vs-pc.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4892162589081894227'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4892162589081894227'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/15-short-ads-mac-vs-pc.html' title='15 short Ads Mac vs PC'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6812885992097544408</id><published>2009-06-03T21:27:00.003+05:30</published><updated>2009-06-03T21:32:24.023+05:30</updated><title type='text'>Windows vs Mac vs Linux</title><content type='html'>&lt;object width="340" height="285"&gt;&lt;param name="movie" value="http://www.youtube.com/v/-d50LfiPWWM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/-d50LfiPWWM&amp;amp;hl=en&amp;amp;fs=1&amp;amp;color1=0xcc2550&amp;amp;color2=0xe87a9f&amp;amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="340" height="285"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6812885992097544408?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6812885992097544408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/windows-vs-mac-vs-linux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6812885992097544408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6812885992097544408'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/windows-vs-mac-vs-linux.html' title='Windows vs Mac vs Linux'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1729902543305271009</id><published>2009-06-03T16:41:00.002+05:30</published><updated>2009-06-10T16:03:20.128+05:30</updated><title type='text'>Drag and drop files directly to print queue windows</title><content type='html'>&lt;div style="text-align: justify;"&gt;Have a PDF to print but hate to open Acrobat and wait? Go top System Preferences » Print &amp;amp; Fax, and click Open Print Queue for the printer you want to use. Drag the PDF into the window and it starts to print.&lt;br /&gt;&lt;br /&gt;This should work with other files (Word, etc.). Some apps may start up to access their unique data, but for some files, this is a fast way to print and not have to run the app. Desktop printer? We don't need no stinking desktop printer!&lt;br /&gt;&lt;br /&gt;A quicker way to do this is to simply drag-and-drop the PDF onto the desired printer in your user's Library -&gt; Printers folder. This will open the queue and start printing directly (assuming the parent app doesn't need to launch to print)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1729902543305271009?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1729902543305271009/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-and-drop-files-directly-to-print.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1729902543305271009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1729902543305271009'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/drag-and-drop-files-directly-to-print.html' title='Drag and drop files directly to print queue windows'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-3011469957466352540</id><published>2009-06-01T19:11:00.002+05:30</published><updated>2009-06-10T16:03:37.239+05:30</updated><title type='text'>A basic guide on setting up a home-based web server</title><content type='html'>&lt;div style="text-align: justify;"&gt;If you've got any interest in setting up a Mac mini (or other Mac) as a web server in your home, I wrote up my experiences doing just that. I cover how to use:&lt;br /&gt;&lt;br /&gt;   * &lt;a href="http://www.dyndns.com/"&gt;dyndns.com&lt;/a&gt; to set up a domain name.&lt;br /&gt;   * The built-in OS X web server to serve pages.&lt;br /&gt;   * &lt;a href="http://jeanmatthieu.free.fr/pureftpd/index.html"&gt;PureFTP &lt;/a&gt;to set up an FTP server.&lt;br /&gt;   * &lt;a href="http://www.squirrelmail.org/"&gt;SquirrelMail &lt;/a&gt;to read my Gmail, which is blocked at work.&lt;br /&gt;   * WebMon (Leopard, Tiger) to set up a WebDAV server to sync iCal and Outlook calendars between home and work.&lt;br /&gt;&lt;br /&gt;Read the blog entry for more detail on each of these solutions.&lt;br /&gt;&lt;br /&gt;[robg adds: While the above guide is a good 'getting started' primer on setting up a home-based web server, note that many ISPs won't allow you to run a web server on a home connection plan. Even if it's not prohibited, many home connections lack the upload bandwidth to effectively serve pages to more than a handful of users at one time.&lt;br /&gt;&lt;br /&gt;So as technically cool as it is to run a server from your own home (and I keep one running, but restrict access to my own use via password protection), there are many free and low cost hosting companies that offer better connectivity along with all (and usually more) of the above features. I host our family's site and my personal blog using 1and1.com, for instance, but there are literally thousands of companies to pick from. Sites such as Web Hosting Geeks and Upper Host list some of the best-rated providers, and I'm sure the readers here have lots of suggestions for those looking to start hosting a site.]&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-3011469957466352540?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/3011469957466352540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/basic-guide-on-setting-up-home-based.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3011469957466352540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3011469957466352540'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/basic-guide-on-setting-up-home-based.html' title='A basic guide on setting up a home-based web server'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2095166401754463825</id><published>2009-06-01T19:10:00.001+05:30</published><updated>2009-06-10T16:03:53.862+05:30</updated><title type='text'>Mac OS X 10.5: Set CPU usage limit per Parallels virtual machine</title><content type='html'>&lt;div style="text-align: justify;"&gt;I wrote a small free application called &lt;a href="http://sites.google.com/site/gakhokidzeproject/Home/"&gt;CpuLimiter&lt;/a&gt; which allows you to limit the CPU usage for a selected virtual machine running in Parallels Desktop or Parallels Server. The download file contains two programs:&lt;br /&gt;&lt;br /&gt;   * cpu-limit which may be used in Terminal as a standalone app to limit any process, not just Parallels' virtual machines.&lt;br /&gt;   * GUI, which wraps the cpu-limit in a traditional GUI application, and is suitable for most Mac OS users.&lt;br /&gt;&lt;br /&gt;Installation is very simple -- just double-click the CpuLimiter-0.1.zip file, and drag the application to the Applications folder, or any other desired location. To start the program, just double-click it then select a running virtual machine from list and set the CPU limit in percentage. That is, to limit a VM's CPU usage to 20%, you'd enter 20. You can start as many instances of applications as you want to handle more than one virtual machine.&lt;br /&gt;&lt;br /&gt;Please note that at least one VM should be running, so that the application can detect it. This works in Leopard with either Parallels Desktop 4 (build 3522 or higher) and Parallels Server 3 (build 2251 or higher). This is beta version 0.1, and I welcome any bug reports.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2095166401754463825?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2095166401754463825/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-set-cpu-usage-limit-per.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2095166401754463825'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2095166401754463825'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-set-cpu-usage-limit-per.html' title='Mac OS X 10.5: Set CPU usage limit per Parallels virtual machine'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-49472973118450797</id><published>2009-06-01T19:09:00.001+05:30</published><updated>2009-06-10T16:04:37.673+05:30</updated><title type='text'>Log in to a single SMB share with multiple user names</title><content type='html'>&lt;div style="text-align: justify;"&gt;I was having trouble connecting to multiple directories on a single SMB share in Leopard, where the directories had different logins. If I was logged into one directory as one user, then the "Connect to Server..." option in the Finder would default to that user for all directories on the same share and error out. I found a workaround for this.&lt;br /&gt;&lt;br /&gt;With one directory already mounted under the first user login, select Go » Connect to Server. Type in your share name with the user before the drive name: &lt;pre style="font-weight: bold;"&gt;&lt;code&gt;smb://2ndusername@drivename/2ndDirectory&lt;/code&gt;&lt;/pre&gt;Finder will then prompt you for a password, and mount the directory as a separate network drive. This should also work for AFP shares, though I haven't tried it.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-49472973118450797?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/49472973118450797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/log-in-to-single-smb-share-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/49472973118450797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/49472973118450797'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/log-in-to-single-smb-share-with.html' title='Log in to a single SMB share with multiple user names'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1638005563049521074</id><published>2009-06-01T19:03:00.003+05:30</published><updated>2009-06-10T16:04:53.819+05:30</updated><title type='text'>Create symbolic links for all items in a folder</title><content type='html'>&lt;div style="text-align: justify;"&gt;If, for some reason (space in my case), you want your applications to reside somewhere other than /Applications, you will still want to have links to those relocated programs in /Applications. For Apple applications, updates are likely to fail if the applications aren't located there, and tools like AppFresh only search that location.&lt;br /&gt;&lt;br /&gt;Creating a bunch of aliases is tedious, so here's a quick Terminal trick (that I didn't think would work, as it doesn't under Linux):&lt;br /&gt;&lt;br /&gt;$ cd /Applications&lt;br /&gt;$ ln -s /path/to/apps/* .&lt;br /&gt;&lt;br /&gt;Change /path/to/apps to the path to your replacement Applications folder, and then run those two Terminal commands (don't overlook the very-important . at the end of the second one), and you're done.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1638005563049521074?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1638005563049521074/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/create-symbolic-links-for-all-items-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1638005563049521074'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1638005563049521074'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/create-symbolic-links-for-all-items-in.html' title='Create symbolic links for all items in a folder'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7226451600472533887</id><published>2009-06-01T18:53:00.002+05:30</published><updated>2009-06-10T16:05:02.064+05:30</updated><title type='text'>Mac OS X 10.5: Make the DiskImageMounter icon appear in the Dock</title><content type='html'>&lt;div style="text-align: justify;"&gt;Personally, I can't stand double clicking a disk image file (.dmg) on the Desktop and not getting instant notification that the disk is being mounted. This is probably not as much of a problem on newer, faster Macs. However, depending on how many processes I have running at the time, it can take my iBook G4 a while before it displays the disk mounting progress dialog.&lt;br /&gt;&lt;br /&gt;As a result, I often end up double-clicking a disk image more than once, thinking I may not have properly double-clicked it the first time. Often times, I've just resorted to highlighting the file and using Command+O to insure that the disk will mount soon.&lt;br /&gt;&lt;br /&gt;Here's one way to make the DiskImageMounter application icon appear in the Dock while mounting a disk image. This will provide you with almost instantaneous notification that the disk mounting process has been successfully initiated, even if the dialog box is missing in action.&lt;br /&gt;&lt;br /&gt; 1. Launch Terminal (in Applications » Utilities).&lt;br /&gt; 2. Make a backup of DiskImageMounter.app's Info.plist file first:&lt;br /&gt;&lt;br /&gt;      $ cd /System/Library/CoreServices/DiskImageMounter.app/Contents&lt;br /&gt;      $ sudo cp Info.plist Info.BU.plist&lt;br /&gt;&lt;br /&gt;    Provide your admin password at the Password: prompt.&lt;br /&gt; 3. Use the defaults command to change the LSUIElement setting:&lt;br /&gt;      $ sudo defaults write /System/Library/CoreServices/DiskImageMounter.app/Contents/Info LSUIElement 0&lt;br /&gt; 4. Re-set the permissions on the Info.plist file:&lt;br /&gt;      $ sudo chmod 644 /System/Library/CoreServices/DiskImageMounter.app/Contents/Info.plist&lt;br /&gt;&lt;br /&gt;This hint may not be for everyone. It's just been something that has bothered me personally for some time now. The progress dialog doesn't take all that long to appear on my iBook. But, at times, it does take long enough for me to wonder what's going on. Having the icon appear in the Dock just gives me a little extra peace of mind. Plus, the icon immediately goes away once the disk mounting process has completed.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7226451600472533887?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7226451600472533887/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/105-make-diskimagemounter-icon-appear.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7226451600472533887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7226451600472533887'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/105-make-diskimagemounter-icon-appear.html' title='Mac OS X 10.5: Make the DiskImageMounter icon appear in the Dock'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-6948352443202215517</id><published>2009-06-01T18:51:00.001+05:30</published><updated>2009-06-10T16:05:14.394+05:30</updated><title type='text'>Add linked text and/or graphics to Mail.app signatures</title><content type='html'>&lt;div style="text-align: justify;"&gt;This is a simple enough trick, I think it must have been suggested previously, but it was new to me. I don't know if this hint applies to systems prior to 10.5.6.&lt;br /&gt;&lt;br /&gt;Mail.app's preferences do not allow attaching links to signatures on the Signatures preferences tab, but will accept pastes containing linked text and graphics. I wanted a graphic in my signature that when clicked would open a new mail window with my address in the To header.&lt;br /&gt;&lt;br /&gt;Instead of creating a signature in Mail.app's preference pane, I used a new message composition window (File » New Message), dragged in a graphic file, and added a mailto:myemail@mywork.com link to the graphic with Edit » Link » Add. I then selected and copied the linked graphic, and pasted it into a new signature on the Signature tab of Mail's preferences panel. The new signature retained the graphic and its link.&lt;br /&gt;&lt;br /&gt;I suggest using a png or jpg image, rather than a tiff (which is the default for the OS X clipboard), so your message isn't excessively large -- tiff files are sizable. If you create your graphic and save it in a compressed format, you can drag the file containing the graphic to the new message window in Mail.app; Mail will retain the image's compressed format.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-6948352443202215517?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/6948352443202215517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-linked-text-andor-graphics-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6948352443202215517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/6948352443202215517'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/add-linked-text-andor-graphics-to.html' title='Add linked text and/or graphics to Mail.app signatures'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-3632430493360791643</id><published>2009-06-01T18:40:00.001+05:30</published><updated>2009-06-10T16:05:21.817+05:30</updated><title type='text'>Get Windows Live Hotmail in Mail.app</title><content type='html'>&lt;div style="text-align: justify;"&gt;I get a lot of people sending in questions asking how to set up Hotmail with the Mail application in Mac OS X, and until recently it has been a real pain to do. Now, however, it is a lot easier to set up and doesn’t require any third party software.&lt;br /&gt;&lt;br /&gt;Start by opening up Mail and going to the Preferences. Click on the Accounts tab and create a new account by clicking on the plus (+) at the bottom. Enter your name, email address and password, then click continue to set the incoming mail settings. Enter the following:&lt;br /&gt;&lt;br /&gt;Account Type: &lt;span style="font-weight: bold;"&gt;POP&lt;/span&gt;&lt;br /&gt;Description: &lt;span style="font-weight: bold;"&gt;Hotmail (or whatever you like)&lt;/span&gt;&lt;br /&gt;Incoming Mail Server: &lt;span style="font-weight: bold;"&gt;pop3.live.com&lt;/span&gt;&lt;br /&gt;Username: &lt;span style="font-weight: bold;"&gt;Your email address&lt;/span&gt;&lt;br /&gt;Password: &lt;span style="font-weight: bold;"&gt;Your password&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In the next section, you should leave the Use SSL checkbox checked and Authentication as Password. For the outgoing mail settings, enter the following:&lt;br /&gt;&lt;br /&gt;Description: &lt;span style="font-weight: bold;"&gt;Hotmail (or whatever you like)&lt;/span&gt;&lt;br /&gt;Outgoing Mail Server: &lt;span style="font-weight: bold;"&gt;smtp.live.com&lt;/span&gt;&lt;br /&gt;Check “Use only this server”&lt;br /&gt;Check “Use Authentication”&lt;br /&gt;Username: &lt;span style="font-weight: bold;"&gt;Your email address&lt;/span&gt;&lt;br /&gt;Password: &lt;span style="font-weight: bold;"&gt;Your password&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;As before, leave Use SSL checkbox check and Authentication as Password.&lt;br /&gt;&lt;br /&gt;Now you should be able to both send and receive email from the Mac OS X Mail app.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-3632430493360791643?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/3632430493360791643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/get-windows-live-hotmail-in-mailapp.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3632430493360791643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3632430493360791643'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/get-windows-live-hotmail-in-mailapp.html' title='Get Windows Live Hotmail in Mail.app'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-2980365837024034681</id><published>2009-06-01T18:39:00.002+05:30</published><updated>2009-06-10T16:05:29.550+05:30</updated><title type='text'>Change hidden settings with Terminal commands</title><content type='html'>&lt;div style="text-align: justify;"&gt;Often developers choose not to include some settings in the preferences of an application in order keep things nice and simple for the user. Luckily, they often leave these hidden settings accessible via the Terminal. Although this will scare off a lot of people, being comfortable with the Terminal is really useful and it's the best way to get a higher level of customisation and enable hidden features on your Mac. Luckily, modifying preference files is one of the easiest things you can do in the Terminal - just paste in a line of code and hit return. Simple! Here are a list of Terminal commands that will work with every version of Mac OS X, and here are some ones just for Leopard.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-2980365837024034681?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/2980365837024034681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-hidden-settings-with-terminal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2980365837024034681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/2980365837024034681'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/change-hidden-settings-with-terminal.html' title='Change hidden settings with Terminal commands'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7190210746591170329</id><published>2009-06-01T18:35:00.002+05:30</published><updated>2009-06-10T16:05:37.086+05:30</updated><title type='text'>Force Eject a CD or DVD that is stuck in your Mac</title><content type='html'>&lt;div style="text-align: justify;"&gt;Every once in a while you may find that you have a CD or DVD stuck in your Mac that just refuses to eject. If it happens - it’s frustrating. There are a few things that you can do to force you Mac to eject the disk.&lt;br /&gt;&lt;br /&gt;1) First, try iTunes. Sometimes the iTunes eject button will work, even if your Finder eject button, or keyboard eject button won’t.&lt;br /&gt;&lt;br /&gt;2) Open Terminal.app and type “drutil tray eject” - this will eject the disk tray most of the time.&lt;br /&gt;&lt;br /&gt;3) If you’re still having no luck, you can restart your Mac and hold down the mouse button. Keep your finger pressed down until the disk ejects, or the login screen appears.&lt;br /&gt;&lt;br /&gt;If you’ve tried all three of these, and you’re still having trouble - you may want to call Apple Support.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7190210746591170329?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7190210746591170329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/force-eject-cd-or-dvd-that-is-stuck-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7190210746591170329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7190210746591170329'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/force-eject-cd-or-dvd-that-is-stuck-in.html' title='Force Eject a CD or DVD that is stuck in your Mac'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-31703488516894914</id><published>2009-06-01T12:10:00.001+05:30</published><updated>2009-06-10T16:05:44.892+05:30</updated><title type='text'>Auto-record iChat A/V chats</title><content type='html'>&lt;div style="text-align: justify;"&gt;On my last project, we made extensive use of iChat's video, audio and screen conferencing features. I found myself wishing I could record our sessions, as some of our discussions were extremely complex.&lt;br /&gt;&lt;br /&gt;It took me a surprisingly long time to realise that there is a Record Chat item in the Video menu of iChat. Activate this, and the other party is asked if they mind if a recording is made. If they accept, each party then ends up with their own recording, copied to iTunes.&lt;br /&gt;&lt;br /&gt;If, however, you are as lazy and forgetful etc. as I am, you may find this simple AppleScript handy:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;-- automatically turn on AV Recording in iChat&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;using terms from application "iChat" -- enable iChat's on event handlers&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;  on av chat started theChat -- activated when the chat starts (iChat's "A/V Chat Started" Event)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;    tell application "iChat"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;      request recording theChat -- ask the other parties if they'll allow recording&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;    end tell&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;  end av chat started&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;  on av chat ended theChat -- activated when the chat ends (iChat's "A/V Chat Ended" Event)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;    stop recording theChat -- turn off recording&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;  end av chat ended&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 51);"&gt;end using terms from&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;That script will automatically turn on recording in iChat for AV Chats (audio, video, document share). To make it work, copy the above into a new document in Script Editor.app, and save it as AVRecorder.scpt in your user's Library » Scripts » iChat folder. You now need to attach the script for it to work.&lt;br /&gt;&lt;br /&gt;If you want it activated for all buddies, attach the script in iChat Preferences; if you only want this for specific buddies, attach the script for just those Buddies, in their Info window. To attach the script, open the relevant window (Preferences or a specific buddy's Info window), and then choose the Alerts tab in that window.&lt;br /&gt;&lt;br /&gt;Click the Event pop-up menu and select A/V Chat Started. Check the Run AppleScript box, then choose the script you just created in the adjacent pop-up menu. Now repeat the process for the "A/V Ended" event.&lt;br /&gt;&lt;br /&gt;Now whenever an AV Chat commences, the other parties will be asked if it's OK to record the chat; if they accept, recording will automatically start. Unfortunately, I was unable to make this work for Screen Sharing sessions.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-31703488516894914?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/31703488516894914/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/auto-record-ichat-av-chats.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/31703488516894914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/31703488516894914'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/auto-record-ichat-av-chats.html' title='Auto-record iChat A/V chats'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-4819974239796073797</id><published>2009-06-01T11:29:00.002+05:30</published><updated>2009-06-10T16:05:51.646+05:30</updated><title type='text'>Turn Mail’s “new message” sound on for every message in Leopard</title><content type='html'>&lt;div style="text-align: justify;"&gt;You may have noticed that Apple Mail does not play the “new mail alert” message every time you get a new email. This is an issue that has been present since the first release of OSX 10.5, but it has never been fixed by Apple.&lt;br /&gt;&lt;br /&gt;Thankfully someone over at MacOSXhints has solved the problem. All you have to do is turn off the IDLE command (which is what Mail’s IMAP is using sometimes to discover a new message). In Mail open Preferences, then go to Accounts&gt;Advanced. In all your mail accounts turn off the “Use IDLE command” feature. Now go to Preferences&gt;General, and set “Check for new Mail every minute”.&lt;br /&gt;&lt;br /&gt;Now you should get the new mail alert sound every time you receive a message.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-4819974239796073797?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/4819974239796073797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/turn-mails-new-message-sound-on-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4819974239796073797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/4819974239796073797'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/06/turn-mails-new-message-sound-on-for.html' title='Turn Mail’s “new message” sound on for every message in Leopard'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-296076535838725567</id><published>2009-05-31T00:10:00.002+05:30</published><updated>2009-05-31T00:10:53.703+05:30</updated><title type='text'>Add Functionality to Quicklook</title><content type='html'>&lt;div class="Section1"&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;Quicklook is the one reason I’ll never be satisfied on a non 10.5 computer ever again. The way it lets you look at any file with just a pop of the spacebar is something you just can’t imagine getting any better.. but then along comes The &lt;a href="http://d.hatena.ne.jp/t_trace/20071124/p3"&gt;Folder Quick Look Plugin&lt;/a&gt; which you can find here.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;Basically what it does is add a holy dose of extra goodies to Quicklook, including allowing you to view the contents of a folder without browsing into it at all.  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;p class="mobile-photo"&gt;&lt;a href="http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF9mhve7aI/AAAAAAAAADA/Sl0crPGG2do/s1600-h/quicklook_folder_plugin-726357.jpg"&gt;&lt;img src="http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF9mhve7aI/AAAAAAAAADA/Sl0crPGG2do/s320/quicklook_folder_plugin-726357.jpg" alt="" id="BLOGGER_PHOTO_ID_5341688733884149154" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-296076535838725567?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/296076535838725567/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/add-functionality-to-quicklook.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/296076535838725567'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/296076535838725567'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/add-functionality-to-quicklook.html' title='Add Functionality to Quicklook'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF9mhve7aI/AAAAAAAAADA/Sl0crPGG2do/s72-c/quicklook_folder_plugin-726357.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-8178641897963906121</id><published>2009-05-30T23:58:00.001+05:30</published><updated>2009-05-30T23:59:58.802+05:30</updated><title type='text'>Modify Your Leopard Dock With DockDr</title><content type='html'>&lt;div class="Section1"&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;A lot of People don’t seem to like the new dock in OS X leopard, I however think it’s great, but needed a few changes, or at least a way to change it around and modify it.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;I created this neat little piece of software called DockDR that enables you to do just that.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;With a few clicks you can change the docks dimensions and even swap between 8 different dock skins without having to mess around in system folders or settings.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;You can also Disable Dashboard and adjust Icons settings, Check it out at &lt;a href="http://www.innermindmedia.com/"&gt;Innermindmedia&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="mobile-photo"&gt;&lt;a href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiF7CDe5SdI/AAAAAAAAAC4/cJav5nI0JmU/s1600-h/dockdoctor-768397.png"&gt;&lt;img src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiF7CDe5SdI/AAAAAAAAAC4/cJav5nI0JmU/s320/dockdoctor-768397.png" alt="" id="BLOGGER_PHOTO_ID_5341685908262963666" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-8178641897963906121?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/8178641897963906121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/modify-your-leopard-dock-with-dockdr.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8178641897963906121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/8178641897963906121'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/modify-your-leopard-dock-with-dockdr.html' title='Modify Your Leopard Dock With DockDr'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SiF7CDe5SdI/AAAAAAAAAC4/cJav5nI0JmU/s72-c/dockdoctor-768397.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-9115934452940329043</id><published>2009-05-30T23:38:00.000+05:30</published><updated>2009-05-30T23:39:05.683+05:30</updated><title type='text'>Mac OS X Keyboard Shortcuts</title><content type='html'>&lt;div class=Section1&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;Learn about common Mac OS X keyboard shortcuts. A keyboard shortcut is a way to invoke a function in Mac OS X by pressing a combination of keys on your keyboard.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class=MsoNormal&gt;&lt;a href="http://support.apple.com/kb/HT1343"&gt;Mac OS X Keyboard Shortcuts&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-9115934452940329043?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/9115934452940329043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/mac-os-x-keyboard-shortcuts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/9115934452940329043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/9115934452940329043'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/mac-os-x-keyboard-shortcuts.html' title='Mac OS X Keyboard Shortcuts'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7706303102998881958</id><published>2009-05-30T23:27:00.001+05:30</published><updated>2009-05-30T23:27:54.840+05:30</updated><title type='text'>Speed up Mac Mouse tracking via terminal</title><content type='html'>&lt;div class=Section1&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;Here&amp;#8217;s a great Mac OS X terminal trick to change your mouse tracking speeds via terminal.If the available settings in the mouse preference panel aren&amp;#8217;t good enough for you, You can adjust the rate via terminal using the following command:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;defaults write -g com.apple.mouse.scaling *.*&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;Replace the *&amp;#8217;s with a number between 1 and 5 ie:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;defaults write -g com.apple.mouse.scaling 5.0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;for fast tracking or&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;span style='font-size:10.0pt; font-family:"Arial","sans-serif"'&gt;defaults write -g com.apple.mouse.scaling 1.0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:"Arial","sans-serif"'&gt;for slow tracking&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7706303102998881958?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7706303102998881958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/speed-up-mac-mouse-tracking-via.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7706303102998881958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7706303102998881958'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/speed-up-mac-mouse-tracking-via.html' title='Speed up Mac Mouse tracking via terminal'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7362977295862813795</id><published>2009-05-30T23:23:00.002+05:30</published><updated>2009-05-30T23:24:37.584+05:30</updated><title type='text'>Customize stacks icons</title><content type='html'>&lt;div class="Section1"&gt;  &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;If you would like to set a &lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;specific icon for ea&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;ch stack instead of the default stack pile of ic&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;ons, Stacks in Da Place from Eagle-of-liberty was developed with you in &lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;mind, It’s a&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt; great little piece of donationware that lets you use any icon you &lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:&amp;quot;;font-size:10;"  &gt;want for any stack, easy as dragging and dropping the icon you want.&lt;/span&gt;&lt;/p&gt;&lt;p class="mobile-photo"&gt;&lt;a href="http://2.bp.blogspot.com/_aX5Er_TQrhs/SiFym3HH2OI/AAAAAAAAACM/uFklT6bv_Fg/s1600-h/stacks_mod-710878.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_aX5Er_TQrhs/SiFym3HH2OI/AAAAAAAAACM/uFklT6bv_Fg/s320/stacks_mod-710878.jpg" alt="" id="BLOGGER_PHOTO_ID_5341676644992538850" border="0" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7362977295862813795?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7362977295862813795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/customize-stacks-icons_30.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7362977295862813795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7362977295862813795'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/customize-stacks-icons_30.html' title='Customize stacks icons'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_aX5Er_TQrhs/SiFym3HH2OI/AAAAAAAAACM/uFklT6bv_Fg/s72-c/stacks_mod-710878.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-766779527709155011</id><published>2009-05-30T22:08:00.002+05:30</published><updated>2009-05-30T22:10:02.704+05:30</updated><title type='text'>Add Hover Effect to Stacks</title><content type='html'>&lt;div class="Section1"&gt;  &lt;p&gt;To add a nice hover effect to the icons in the stacks pop up enter the following code into your terminal ( applications/utilities/terminal.app)  &lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p&gt;defaults write com.apple.dock mouse-over-hilte-stack -boolean YES killall Dock&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p&gt;To Remove this Stacks hover effect enter the following terminal command:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p&gt;defaults write com.apple.dock mouse-over-hilte-stack -boolean NO killall Dock&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p&gt;Here’s a preview of the magic at work.It’s also important to note that this only shows when you navigate your stack pop up by keyboard.&lt;/p&gt;  &lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFhTch0kvI/AAAAAAAAACE/U72KKU1Ql4g/s1600-h/stacks_hover_effect.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 320px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFhTch0kvI/AAAAAAAAACE/U72KKU1Ql4g/s320/stacks_hover_effect.jpg" alt="" id="BLOGGER_PHOTO_ID_5341657619741577970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-766779527709155011?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/766779527709155011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/add-hover-effect-to-stacks.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/766779527709155011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/766779527709155011'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/add-hover-effect-to-stacks.html' title='Add Hover Effect to Stacks'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFhTch0kvI/AAAAAAAAACE/U72KKU1Ql4g/s72-c/stacks_hover_effect.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-3022167606993961960</id><published>2009-05-30T21:53:00.002+05:30</published><updated>2009-05-30T21:56:13.844+05:30</updated><title type='text'>Remove Leopard 3D Dock</title><content type='html'>If you’re looking for a way to remove the 3d styled dock from leopard, Here’s how you do it&lt;br /&gt;First open terminal and enter this command:&lt;br /&gt;&lt;br /&gt;$ defaults write com.apple.dock no-glass -boolean YES&lt;br /&gt;&lt;br /&gt;To change it back simply enter :&lt;br /&gt;&lt;br /&gt;$ defaults write com.apple.dock no-glass -boolean YES&lt;br /&gt;&lt;br /&gt;Then Type:&lt;br /&gt;&lt;br /&gt;killall Dock&lt;br /&gt;&lt;br /&gt;The dock will then restart with a new 2D style dock similar to that of Tiger, but slightly better looking in my opinion.&lt;br /&gt;If you’re not up for entering terminal commands and would like to achieve the same thing you can also download the &lt;a href="http://www.innermindmedia.com/dock_doctor_widget.html"&gt;DockDoctor widget&lt;/a&gt; from inner mind media and it’ll let you toggle back and forth with 0 effort right from your dashboard.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFd41BKEOI/AAAAAAAAAB8/V1aoDjyW0BY/s1600-h/2ddock.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 106px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFd41BKEOI/AAAAAAAAAB8/V1aoDjyW0BY/s320/2ddock.jpg" alt="" id="BLOGGER_PHOTO_ID_5341653863924109538" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-3022167606993961960?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/3022167606993961960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/remove-leopard-3d-dock.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3022167606993961960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/3022167606993961960'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/remove-leopard-3d-dock.html' title='Remove Leopard 3D Dock'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFd41BKEOI/AAAAAAAAAB8/V1aoDjyW0BY/s72-c/2ddock.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-7612208079130215764</id><published>2009-05-30T21:27:00.003+05:30</published><updated>2009-05-30T21:31:12.978+05:30</updated><title type='text'>Bulk Edit Address Book Contacts</title><content type='html'>The first major step is to export the contacts you want to change. We are going edit directly the .vcf file which is used to store all of the address book data. Select all of the contacts you want to change, either the group of contacts or individually using the command key and click on each one. Then drag these contacts onto the desktop. Your Mac will work its magic and create one big .vcf file (which is actually all of your contacts as one file). This file in essence if a big text file which we can change.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFX4J9RDYI/AAAAAAAAAB0/vW-4EggpqwI/s1600-h/address-book.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 246px;" src="http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFX4J9RDYI/AAAAAAAAAB0/vW-4EggpqwI/s320/address-book.png" alt="" id="BLOGGER_PHOTO_ID_5341647255295298946" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;The next step is to right click on the file and select “Open With” select your favourite text editor. TextEdit will do. Inside the file you will see lots of text that looks like a mess. The next step is to simply do a search and replace. Most items will be separated by a semi-colon ( ; ) so bare this in mind if you are changing multi line addresses. If you do a search and replace I recommend going through the items one at a time. Hitting change all could change things you don’t want to.&lt;/p&gt; &lt;p&gt;The final step is to save and drag the vcf file back into Address Book. It will ask if you want to review the differences, hit Import and it will override all of the files.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-7612208079130215764?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/7612208079130215764/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/bulk-edit-address-book-contacts.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7612208079130215764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/7612208079130215764'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/bulk-edit-address-book-contacts.html' title='Bulk Edit Address Book Contacts'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_aX5Er_TQrhs/SiFX4J9RDYI/AAAAAAAAAB0/vW-4EggpqwI/s72-c/address-book.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2242142962168977137.post-1747949632158453835</id><published>2009-05-30T21:10:00.001+05:30</published><updated>2009-05-30T21:12:42.901+05:30</updated><title type='text'>Welcome to Tips for Mac OS X</title><content type='html'>Hi All,&lt;br /&gt;&lt;br /&gt;Welcome to Tips for Mac OS X Blog. &lt;span&gt;The blog is all about Tricks and Tips for Apple Mac, updated daily to help you get the most out of your Mac.&lt;br /&gt;&lt;br /&gt;Comment the feedback on the blog.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Karthikeyan M&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2242142962168977137-1747949632158453835?l=tips4macosx.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tips4macosx.blogspot.com/feeds/1747949632158453835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/welcome-to-tips-for-mac-os-x.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1747949632158453835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2242142962168977137/posts/default/1747949632158453835'/><link rel='alternate' type='text/html' href='http://tips4macosx.blogspot.com/2009/05/welcome-to-tips-for-mac-os-x.html' title='Welcome to Tips for Mac OS X'/><author><name>Karthikeyan M</name><uri>http://www.blogger.com/profile/02993785354607500302</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://4.bp.blogspot.com/_aX5Er_TQrhs/SiF4cdEjcQI/AAAAAAAAACY/mIvjDaXXdZg/S220/100_3017.JPG'/></author><thr:total>0</thr:total></entry></feed>
