<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-2405929286519266734</atom:id><lastBuildDate>Thu, 24 Oct 2024 22:42:48 +0000</lastBuildDate><category>icon</category><title>Mac OS X Tips &amp;amp; Tricks</title><description>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.</description><link>http://tips4macosx.blogspot.com/</link><managingEditor>noreply@blogger.com (Karthikeyan M)</managingEditor><generator>Blogger</generator><openSearch:totalResults>78</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-4330977843175368449</guid><pubDate>Fri, 28 Aug 2009 09:53:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.290-07:00</atom:updated><title>Download, back up, and upload Google Docs files</title><description>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&#39;s folder, and locate line 555. On that line, change this...  &lt;pre&gt;&lt;code&gt;item_list.append({&#39;title&#39;: entry.title.text.encode(&#39;UTF-8&#39;),&lt;/code&gt;&lt;/pre&gt;   ...to this...  &lt;pre&gt;&lt;code&gt;item_list.append({&#39;title&#39;: 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&#39;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 &quot;$GOOGLEID&quot; --local &quot;OUTPUT_FILENAME.rtf&quot;&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 &quot;$GOOGLEID&quot; --local &quot;OUTPUT_FILENAME.xls&quot;&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 &quot;$GOOGLEID&quot; --local &quot;OUTPUT_FILENAME.pdf&quot;&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 &quot;INPUT_FILENAME&quot; --title &quot;OPTIONAL_TITLE&quot;&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&#39;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;</description><link>http://tips4macosx.blogspot.com/2009/08/download-back-up-and-upload-google-docs.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1027567237946555156</guid><pubDate>Fri, 28 Aug 2009 09:43:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.331-07:00</atom:updated><title>Apple to release Mac OS X Snow Leopard on August 28</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsC4Y-aA43Pqy_IROdBoE3Zeo8GDbYEusS3b2AV_ienhlK38XAqTXPABFAO5PRH-LOphk3Nwh75FNb7dA45ef-hQFcmlmTGRjscaooNXqUFAEnURu-uUnyrsc-tmYs3etNWUeCCsZHP78/s1600-h/overview_hero_20090824.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 212px; height: 138px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsC4Y-aA43Pqy_IROdBoE3Zeo8GDbYEusS3b2AV_ienhlK38XAqTXPABFAO5PRH-LOphk3Nwh75FNb7dA45ef-hQFcmlmTGRjscaooNXqUFAEnURu-uUnyrsc-tmYs3etNWUeCCsZHP78/s320/overview_hero_20090824.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5374949424425867346&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div  style=&quot;font-weight: bold; text-align: center;font-family:verdana;&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;&lt;strong  style=&quot;font-weight: bold;font-family:georgia;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&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=&quot;font-size:130%;&quot;&gt;&lt;strong style=&quot;font-weight: normal;&quot;&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;strong style=&quot;font-weight: bold; font-family: verdana;&quot;&gt;The world&#39;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=&quot;font-weight: normal;&quot;&gt;&lt;/strong&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;strong style=&quot;font-weight: normal;&quot;&gt;&lt;/strong&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;strong style=&quot;font-weight: normal;&quot;&gt;Apple announced Monday that Mac OS X 10.6 Snow Leopard will go on sale Friday, August 28 at Apple&#39;s retail stores and Apple authorized resellers, and that Apple&#39;s online store is now accepting pre-orders.&lt;/strong&gt;&lt;br /&gt;&lt;strong style=&quot;font-weight: normal;&quot;&gt;&lt;/strong&gt;&lt;/div&gt;&lt;strong style=&quot;font-weight: normal;&quot;&gt;&lt;br /&gt;&lt;/strong&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJC-nA8dEYJYa7bY2StGWmMpZGq99RzD1moJyxQS-P7RANf-OiB9yENXC5ZRXPDU4oxsJ8AUhpekxD6AqU2-JhzoNBpP-9ZRTC5GNMkByEksORvGdMI2yaDCFJQNegoafL6233JlmTpfY/s1600-h/snowleo-090824-0.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 320px; height: 278px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJC-nA8dEYJYa7bY2StGWmMpZGq99RzD1moJyxQS-P7RANf-OiB9yENXC5ZRXPDU4oxsJ8AUhpekxD6AqU2-JhzoNBpP-9ZRTC5GNMkByEksORvGdMI2yaDCFJQNegoafL6233JlmTpfY/s320/snowleo-090824-0.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5374949916082996210&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/08/apple-to-release-mac-os-x-snow-leopard.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsC4Y-aA43Pqy_IROdBoE3Zeo8GDbYEusS3b2AV_ienhlK38XAqTXPABFAO5PRH-LOphk3Nwh75FNb7dA45ef-hQFcmlmTGRjscaooNXqUFAEnURu-uUnyrsc-tmYs3etNWUeCCsZHP78/s72-c/overview_hero_20090824.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1512724545072800286</guid><pubDate>Wed, 15 Jul 2009 11:35:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.411-07:00</atom:updated><title>Firefox 3.5&amp;#39;s Three-Finger Swipes</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;In addition to the previous &lt;a href=&quot;http://www.macosxhints.com/article.php?story=20090630172400412&quot;&gt;&quot;twist&quot; 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=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&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;</description><link>http://tips4macosx.blogspot.com/2009/07/firefox-35-three-finger-swipes.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1734281583817228535</guid><pubDate>Wed, 15 Jul 2009 11:35:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.343-07:00</atom:updated><title>Use web proxy auto-discovery in Safari</title><description>Unlike most browsers, Safari doesn&#39;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&#39;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 &quot;wpad&quot; and if it exists, loads its settings by accessing a file named &quot;wpad.dat&quot; via HTTP. To use DNS-based WPAD with Safari on OS X, follow these steps: &lt;ul style=&quot;text-align: justify;&quot;&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&#39;re on a network that doesn&#39;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=&quot;http://wpad/wpad.dat&quot;&gt;http://wpad/wpad.dat&lt;/a&gt; in your web browser. If your network supports WPAD, then your browser will download the file &quot;wpad.dat&quot; (which you can just delete). If it&#39;s not supported, you&#39;ll get an error message.</description><link>http://tips4macosx.blogspot.com/2009/07/use-web-proxy-auto-discovery-in-safari.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-5868914653278807099</guid><pubDate>Tue, 07 Jul 2009 13:28:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.421-07:00</atom:updated><title>Remove Safari history files on logout via shell script</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;If you&#39;d like to remove your Safari history files when you log out, first create the following shell script:  &lt;/div&gt;&lt;div style=&quot;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;&quot;&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=&quot;text-align: justify;&quot;&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 &quot;/Users/your_user/scripts/privacy.sh&quot;&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;To be complete, you should also visit Safari&#39;s Preferences, open the AutoFill tab, and clear all of the checkmarks (Safari then won&#39;t remember passwords and forms). &lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/07/remove-safari-history-files-on-logout.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-8857027065377536452</guid><pubDate>Tue, 07 Jul 2009 13:27:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.489-07:00</atom:updated><title>Make SMB shares appear in Devices section of Finder sidebar</title><description>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=&quot;text-align: justify;&quot;&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 &#39;+&#39; 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&#39;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.</description><link>http://tips4macosx.blogspot.com/2009/07/make-smb-shares-appear-in-devices.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-4404381353743952554</guid><pubDate>Tue, 07 Jul 2009 13:00:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.502-07:00</atom:updated><title>Mac OS X 10.5: Wake a sleeping Mac with via Automator</title><description>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&#39;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&#39;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=&quot;http://forums.dealmac.com/read.php?4,2751523&quot;&gt;this nifty Applescript from Mark Muir&lt;/a&gt; that I adapted to solve my problem. Here&#39;s my modified code:  &lt;div style=&quot;border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap;&quot;&gt;&lt;a title=&quot;Drag-select from top-to-bottom, then copy, and paste into Script Editor&quot;&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 : &quot;00:25:4b:9f:63:c8&quot;&lt;br /&gt;property WAN_IP_address : &quot;255.255.255.255&quot;&lt;br /&gt;&lt;br /&gt;on run&lt;br /&gt; set command to &quot;/usr/bin/php -r &quot; &amp;amp; quoted form of (&quot;$mac = &quot; &amp;amp; quoted form of MAC_address &amp;amp; &quot;; $ip = &quot; &amp;amp; quoted form of WAN_IP_address &amp;amp; &quot;; &quot; &amp;amp; &quot;&lt;br /&gt;$mac_bytes = explode(\&quot;:\&quot;, $mac);&lt;br /&gt;$mac_addr = \&quot;\&quot;;&lt;br /&gt;for ($i=0; $i&lt;6; $i++)&lt;br /&gt;$mac_addr .= chr(hexdec($mac_bytes[$i]));&lt;br /&gt;$packet = \&quot;\&quot;;&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;&quot;)&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&#39;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&#39;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=&quot;http://joegolike.com/wake-sleeping-mac-with-applescript-and-automator/&quot;&gt;this entry&lt;/a&gt; in my blog.&lt;br /&gt;&lt;br /&gt;I&#39;ve &lt;a href=&quot;http://www.macosxhints.com/dlfiles/wake-and-share-mac-mini.zip&quot;&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&#39;t tested this one, I&#39;m pretty sure you could replace the full script shown above with a call to the free &lt;a href=&quot;http://gsd.di.uminho.pt/jpo/software/wakeonlan/&quot;&gt;Wakeonlan&lt;/a&gt; perl script, which was described in &lt;a href=&quot;http://www.macosxhints.com/article.php?story=2002061709450594&quot;&gt;this older hint&lt;/a&gt;.</description><link>http://tips4macosx.blogspot.com/2009/07/mac-os-x-105-wake-sleeping-mac-with-via.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-3224586502921764822</guid><pubDate>Wed, 01 Jul 2009 07:10:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.556-07:00</atom:updated><title>SSH’ing Into Your Mac</title><description>&lt;p style=&quot;text-align: justify;&quot;&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=&quot;http://en.wikipedia.org/wiki/Ssh&quot; target=&quot;_blank&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjR0Zworwh0r6azOgAkg_sKhIHQCIXtVR8qq57zmTt4GC6TC3tnlUncjc43RDJDubBlCuoMb6BJvACBjSW7l4dmIqnbH716EAhIV7Vr6g3uCUCammGjNMWN7YXkM7FapPMRMpWxJGQXKiw/s1600-h/SSH-on-a-Mac-300x245.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 300px; height: 245px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjR0Zworwh0r6azOgAkg_sKhIHQCIXtVR8qq57zmTt4GC6TC3tnlUncjc43RDJDubBlCuoMb6BJvACBjSW7l4dmIqnbH716EAhIV7Vr6g3uCUCammGjNMWN7YXkM7FapPMRMpWxJGQXKiw/s320/SSH-on-a-Mac-300x245.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5353385881283096898&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;You can now log into the remote (or your Mac). Open terminal and type:&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;code&gt;ssh user@ISP.address.com&lt;/code&gt;&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;code&gt;shh -p22 user@ISP.address.com&lt;/code&gt;&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;http://unixwiz.net/techtips/ssh-agent-forwarding.html&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&gt;When you have finished your session, type exit and the SSH session will finish.&lt;/p&gt;&lt;div style=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt; &lt;/div&gt;&lt;p style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://tips4macosx.blogspot.com/2009/07/sshing-into-your-mac.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjR0Zworwh0r6azOgAkg_sKhIHQCIXtVR8qq57zmTt4GC6TC3tnlUncjc43RDJDubBlCuoMb6BJvACBjSW7l4dmIqnbH716EAhIV7Vr6g3uCUCammGjNMWN7YXkM7FapPMRMpWxJGQXKiw/s72-c/SSH-on-a-Mac-300x245.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1451105112755011692</guid><pubDate>Fri, 19 Jun 2009 11:16:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.567-07:00</atom:updated><title>MacBook Pro 13-inch teardown reveals &amp;quot;unimaginative&amp;quot; SD Card slot</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;strong&gt;A dissection of Apple&#39;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=&quot;http://www.ifixit.com/Teardown/MacBook-Pro-13-Inch-Unibody/814/1&quot;&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&#39;s new SD card slot &quot;is rather unimaginative&quot; given that &quot;half the card hangs out of the side of the computer.&quot;&lt;br /&gt;&lt;br /&gt;&quot;Apple couldn&#39;t free up enough space for a slot that would make the card completely captive,&quot; 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&#39;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&#39;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&#39;s part to help out its do-it-yourself customers.&lt;br /&gt;&lt;br /&gt;&quot;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,&quot; the firm added. &quot;Most screw layouts and brackets are identical to the old [unibody] MacBook.&quot;&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&#39;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&#39;t interchangeable with last year&#39;s models.&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtpjDxfa0o_5XyTa7Yc6SqVcXsh7fw9n9qqPsvw4zIMHBWSt3-hTiX1kl6XNyIzvQ5GFvH0fZ-fav3Q00gRIH2ZaM5_CgJ_q2BwS1jvKus0l97bb8AOT4Vae1X7lyLL2gd9IZtwo-4s1s/s1600-h/1.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 320px; height: 240px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtpjDxfa0o_5XyTa7Yc6SqVcXsh7fw9n9qqPsvw4zIMHBWSt3-hTiX1kl6XNyIzvQ5GFvH0fZ-fav3Q00gRIH2ZaM5_CgJ_q2BwS1jvKus0l97bb8AOT4Vae1X7lyLL2gd9IZtwo-4s1s/s320/1.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5348996732958916578&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwotoyaTrUL2suKZ-rMd2RgxpTOTj8IL5YHjHkOWPqAyaoISTOwfu5nWX4_IRTIs8pKRmxh57eE09BIs7FSMcOQ1uIpFQUlfpHsLyMxPeAcP7bvxXPjnA6Csujf5E7wUVqOVJRPbslup8/s1600-h/2.jpg&quot;&gt;&lt;br /&gt;&lt;/a&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/macbook-pro-13-inch-teardown-reveals-sd.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtpjDxfa0o_5XyTa7Yc6SqVcXsh7fw9n9qqPsvw4zIMHBWSt3-hTiX1kl6XNyIzvQ5GFvH0fZ-fav3Q00gRIH2ZaM5_CgJ_q2BwS1jvKus0l97bb8AOT4Vae1X7lyLL2gd9IZtwo-4s1s/s72-c/1.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1163405434809855462</guid><pubDate>Fri, 19 Jun 2009 11:11:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.636-07:00</atom:updated><title>Apple&amp;#39;s Mac OS X 10.5.8 to fine tune service technologies</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;strong&gt;The next, and potentially final, upgrade to Apple&#39;s Mac OS X 10.5 Leopard operating system will address loose ends in the software&#39;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&#39; hands thus far, the first of which was labeled &lt;a href=&quot;http://www.appleinsider.com/articles/09/06/09/apple_quietly_testing_first_betas_of_mac_os_x_10_5_8.html&quot;&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&#39;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=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;file:///C:/DOCUME%7E1/KARTHI%7E1/LOCALS%7E1/Temp/moz-screenshot-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3vTJP4o4wjg3CBfWE_uyaoMm7iCinPs2vTJvOWx9ojF0TKBn17Gua0jHuW4HbVq7tLLDRVC6KJ5dxDJ1hUK3_a5GSZXp0VaNP1FkA1YMTstw4VEhyH43vXyl-WGKjz-y8a5Fe6xSBZ1c/s1600-h/macosx1058-090616.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 512px; height: 33px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3vTJP4o4wjg3CBfWE_uyaoMm7iCinPs2vTJvOWx9ojF0TKBn17Gua0jHuW4HbVq7tLLDRVC6KJ5dxDJ1hUK3_a5GSZXp0VaNP1FkA1YMTstw4VEhyH43vXyl-WGKjz-y8a5Fe6xSBZ1c/s320/macosx1058-090616.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5348995021230071202&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&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;</description><link>http://tips4macosx.blogspot.com/2009/06/apple-mac-os-x-1058-to-fine-tune.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3vTJP4o4wjg3CBfWE_uyaoMm7iCinPs2vTJvOWx9ojF0TKBn17Gua0jHuW4HbVq7tLLDRVC6KJ5dxDJ1hUK3_a5GSZXp0VaNP1FkA1YMTstw4VEhyH43vXyl-WGKjz-y8a5Fe6xSBZ1c/s72-c/macosx1058-090616.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-5055111068173980796</guid><pubDate>Fri, 19 Jun 2009 11:00:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.647-07:00</atom:updated><title>Mac OS X Snow Leopard gives heads-up for near-death MacBook batteries</title><description>While the immediate charge on a Mac notebook&#39;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=&quot;text-align: justify;&quot;&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 &quot;battery condition&quot; 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 &#39;s losing capacity, the icon is overlaid with an exclamation mark warning and the battery condition changes to &quot;poor&quot; -- 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&#39;t documented the reasons behind the change, but the most logical explanation is simply that the company&#39;s decision to &lt;a href=&quot;http://www.appleinsider.com/articles/09/06/08/apple_unveils_faster_more_affordable_macbook_pros.html&quot;&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=&quot;http://www.appleinsider.com/articles/09/06/10/13_inch_macbook_pro_teardown_reveals_unimaginative_sd_card_slot.html&quot;&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=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLSgLXzidBW1nlS6tsEs62lc2E507ZpmbiBn27Vr0eQbB7nqtiFs_bBcnes8YEZwmpsYykJFC8wwtoJ8TmuPGrzqoNmQv24yk3sTDVGVQ9_8hr8v30bZM8DFXWDcnSioh0J2oiBafewog/s1600-h/snowleopardbatteryalert.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 245px; height: 152px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLSgLXzidBW1nlS6tsEs62lc2E507ZpmbiBn27Vr0eQbB7nqtiFs_bBcnes8YEZwmpsYykJFC8wwtoJ8TmuPGrzqoNmQv24yk3sTDVGVQ9_8hr8v30bZM8DFXWDcnSioh0J2oiBafewog/s320/snowleopardbatteryalert.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5348993124408722274&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&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&#39;s previously icon-only battery indicator.&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/mac-os-x-snow-leopard-gives-heads-up.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLSgLXzidBW1nlS6tsEs62lc2E507ZpmbiBn27Vr0eQbB7nqtiFs_bBcnes8YEZwmpsYykJFC8wwtoJ8TmuPGrzqoNmQv24yk3sTDVGVQ9_8hr8v30bZM8DFXWDcnSioh0J2oiBafewog/s72-c/snowleopardbatteryalert.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-8554161138852562806</guid><pubDate>Wed, 17 Jun 2009 13:10:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.722-07:00</atom:updated><title>Save non-savable PDF files</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Occasionally one has to use an annoying PDF that one can&#39;t re-save, but can only print. My sister had this situation dealing with some obnoxious state-run Microsoft system that didn&#39;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&#39;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&#39;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&#39;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&#39;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&#39;t move) that file out of the spool folder: cp filename ~/Desktop. I don&#39;t know what a move (mv) will do to the print system.&lt;br /&gt;  6. Type cd ~/Desktop to move to your user&#39;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&#39;s a postscript or PDF file -- you can drop it on TextEdit to see its contents. If it&#39;s a postscript file, rename the file to filename.ps. If it&#39;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;</description><link>http://tips4macosx.blogspot.com/2009/06/save-non-savable-pdf-files.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-2169037670189524563</guid><pubDate>Wed, 17 Jun 2009 13:09:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.810-07:00</atom:updated><title>Mac OS X 10.5: Take and upload screenshots via Automator</title><description>&lt;div style=&quot;text-align: justify;&quot;&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=&quot;text-align: justify;&quot;&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=&quot;border: 1px solid ; padding: 5px; overflow: scroll; margin-left: 20px; margin-top: 10px; margin-bottom: 10px; width: 520px; height: 120px; white-space: nowrap;&quot;&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=&#39;yourftphost&#39;&lt;br /&gt;USER=&#39;yourusername&#39;&lt;br /&gt;PASSWD=&#39;yourpassword&#39;&lt;br /&gt;REMOTEFILE=&#39;pathtoremotefile(including filename)&#39;&lt;br /&gt;URL=&#39;http://yourdomain.com/screens/screenshot.png&#39;&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&#39;m new at this) I couldn&#39;t get the file&lt;br /&gt;# to disappear when using the variable...&lt;br /&gt;LOCALFILE=&#39;~/Desktop/tmpScreen.png&#39;&lt;br /&gt;&lt;br /&gt;ftp -n $HOST &lt;&lt;end_script user=&quot;&quot; quote=&quot;&quot; pass=&quot;&quot; passwd=&quot;&quot; binary=&quot;&quot; put=&quot;&quot; localfile=&quot;&quot; remotefile=&quot;&quot; bye=&quot;&quot; end_script=&quot;&quot; rm=&quot;&quot; desktop=&quot;&quot; png=&quot;&quot; echo=&quot;&quot; url=&quot;&quot; pbcopy=&quot;&quot;&gt;&lt;/end_script&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;If you have Growl installed, add Utilities » Show Growl Notification. Give it a Title (&quot;Done!&quot;) and Description (&quot;Your screenshot has been uploaded&quot;) so you&#39;ll see a message after the upload is completed.&lt;/li&gt;&lt;/ol&gt; Alternatively, you could &lt;a href=&quot;http://www.nimnim.se/UploadScreen.zip&quot;&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!</description><link>http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-take-and-upload.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-2337766186043280743</guid><pubDate>Wed, 17 Jun 2009 13:09:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.732-07:00</atom:updated><title>Bulk convert Safari&amp;#39;s Web Archives to PDFs</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;I&#39;ve been archiving web pages using Safari&#39;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&#39;s &lt;a href=&quot;http://automatorworld.com/archives/download-urls-as-pdfs/&quot;&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&#39;s action, and you&#39;re all set. The action has some options, including whether or not the PDF should be split into pages.&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/bulk-convert-safari-web-archives-to-pdfs.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-8619529461480736339</guid><pubDate>Wed, 17 Jun 2009 13:08:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.821-07:00</atom:updated><title>Create a Numbers document listing all Safari bookmarks</title><description>&lt;div style=&quot;text-align: justify;&quot;&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=&quot;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;&quot;&gt;&lt;a title=&quot;Drag-select from top-to-bottom, then copy, and paste into Script Editor&quot;&gt;&lt;pre&gt;&lt;code&gt;set the bookmarks_folderpath to the POSIX path of (path to &quot;cach&quot; from user domain) &amp;amp; &quot;Metadata/Safari/Bookmarks/&quot;&lt;br /&gt;&lt;br /&gt;tell application &quot;System Events&quot;&lt;br /&gt;set these_bookmark_filepaths to the POSIX path of every disk item of folder bookmarks_folderpath whose name extension is &quot;webbookmark&quot;&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 &quot;Name&quot;, value of property list item &quot;URL&quot;}&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; &quot;Safari Bookmarks.cvs&quot;&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 &quot;Numbers&quot;&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=&quot;text-align: justify;&quot;&gt; For the AppleScript wizards out there, I didn&#39;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;</description><link>http://tips4macosx.blogspot.com/2009/06/create-numbers-document-listing-all.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-4274264519303927874</guid><pubDate>Wed, 17 Jun 2009 13:07:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.889-07:00</atom:updated><title>Mac OS X 10.5: Find which items weren&amp;#39;t modified by Time Machine</title><description>&lt;div style=&quot;text-align: justify;&quot;&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&#39;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;</description><link>http://tips4macosx.blogspot.com/2009/06/mac-os-x-105-find-which-items-weren.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-2250843191592773947</guid><pubDate>Wed, 17 Jun 2009 13:07:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.880-07:00</atom:updated><title>Add URLs to Address Book contacts for use in Safari</title><description>&lt;div style=&quot;text-align: justify;&quot;&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&#39;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&#39;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&#39;s Address Book bookmarks.&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/add-urls-to-address-book-contacts-for.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-1666343169417622424</guid><pubDate>Wed, 17 Jun 2009 13:06:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.975-07:00</atom:updated><title>Fix an issue with Dreameaver and networked previews</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;When using Dreamweaver&#39;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 &#39;site&#39; 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&#39;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;</description><link>http://tips4macosx.blogspot.com/2009/06/fix-issue-with-dreameaver-and-networked.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-5079145977503344837</guid><pubDate>Wed, 17 Jun 2009 13:06:00 +0000</pubDate><atom:updated>2015-04-06T23:10:01.964-07:00</atom:updated><title>Mix Safari 4 Beta and Final to get tabs on top</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Just a quick note to those who, like me, greatly miss the &#39;tabs in the title bar&#39; feature of Safari 4 Beta in the final release of Safari:&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;After installing Safari 4.0 Final, I was quite disappointed to no longer have the &#39;tabs in title bar,&#39; 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&#39;m sure it&#39;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&#39;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&#39;ll be able to use the tabs in the title bar again, as well as any of the customization tricks &lt;a href=&quot;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&quot;&gt;found here&lt;/a&gt; and elsewhere.&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/mix-safari-4-beta-and-final-to-get-tabs.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-8170435735756805762</guid><pubDate>Fri, 12 Jun 2009 10:19:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.035-07:00</atom:updated><title>Change the default length of new iCal events</title><description>&lt;div style=&quot;text-align: justify;&quot;&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 &#39;hard wired&#39; into iCal. After reading &#39;How to find hidden preference settings&#39; just now (thanks Rob) and playing around with the result of the strings command on iCal, I came across the string &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;Default duration in minutes for new event&#39;.&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=&quot;font-weight: bold; font-style: italic; color: rgb(255, 102, 102);&quot;&gt;defaults write com.apple.iCal &#39;Default duration in minutes for new event&#39; 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=&quot;font-weight: bold; font-style: italic; color: rgb(255, 102, 102);&quot;&gt;defaults delete com.apple.iCal &#39;Default duration in minutes for new event&#39;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I&#39;ve not noticed this hidden iCal default mentioned anywhere else.&lt;br /&gt;&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/change-default-length-of-new-ical-events.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-2344100682938387930</guid><pubDate>Fri, 12 Jun 2009 10:17:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.045-07:00</atom:updated><title>Show random desktop picture immediately on login</title><description>&lt;div style=&quot;text-align: justify;&quot;&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 &#39;change picture&#39; interval occurs.&lt;br /&gt;&lt;br /&gt;For example, if you have Change Picture set to Every Day, on restart you won&#39;t see a picture from your chosen folder until up to 24 hours later. Meanwhile you&#39;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=&quot;font-weight: bold; font-style: italic; color: rgb(255, 0, 0);&quot;&gt;&lt;code&gt;tell application &quot;System Events&quot;&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;</description><link>http://tips4macosx.blogspot.com/2009/06/show-random-desktop-picture-immediately.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-4312706148065864286</guid><pubDate>Wed, 10 Jun 2009 10:23:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.111-07:00</atom:updated><title>Change the Apple logo in Login Window</title><description>&lt;div style=&quot;text-align: justify;&quot;&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=&quot;text-align: center;&quot; class=&quot;image-right&quot;&gt;&lt;img class=&quot;imageStyle&quot; alt=&quot;Apple Logo&quot; src=&quot;http://www.macosxtips.co.uk/index_files/200907-apple-logo.png&quot; width=&quot;116&quot; height=&quot;103&quot; /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&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 &quot;applelogo.tif&quot; 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;</description><link>http://tips4macosx.blogspot.com/2009/06/change-apple-logo-in-login-window.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-4583201936495781816</guid><pubDate>Wed, 10 Jun 2009 10:22:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.122-07:00</atom:updated><title>Hide accounts in the Login Window</title><description>&lt;div style=&quot;text-align: justify;&quot;&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 &quot;short name&quot; 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=&quot;font-weight: bold;&quot;&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=&quot;font-weight: bold;&quot;&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 - &quot;Other...&quot; 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&#39;t running OS X 10.4, this doesn&#39;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&#39;t as pretty, but saves time if you have lots of users, and is also more secure.&lt;/div&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/hide-accounts-in-login-window.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-3590000695754129996</guid><pubDate>Wed, 10 Jun 2009 10:21:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.217-07:00</atom:updated><title>Add a message to the login window</title><description>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=&quot;font-weight: bold;&quot;&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText &quot;Hello There&quot;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Replace &quot;Hello There&quot; with your text. To remove the text, type the following line:&lt;br /&gt;&lt;br /&gt;&lt;code style=&quot;font-weight: bold;&quot;&gt;sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText &quot;&quot;&lt;/code&gt;</description><link>http://tips4macosx.blogspot.com/2009/06/add-message-to-login-window.html</link><author>noreply@blogger.com (Karthikeyan M)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2405929286519266734.post-360803940367609676</guid><pubDate>Wed, 10 Jun 2009 10:16:00 +0000</pubDate><atom:updated>2015-04-06T23:10:02.225-07:00</atom:updated><title>Batch rename multiple files using Automator</title><description>&lt;div style=&quot;text-align: justify;&quot;&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 &quot;Get Specified Finder Items&quot; followed by &quot;Sort Finder Items&quot; followed by &quot;Rename Finder Items&quot;. Your workflow should look something like the screenshot below. When you add the &quot;Rename Finder Items&quot; action, you will be asked if you want to create a copy of the files. Generally you won&#39;t want to do this, so choose &quot;Don&#39;t Copy&quot;.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBGMFtgCwNVf-6DTw2YxIJ9PMn6U6LNBUhKCvUTO5MpDtXJ1QOCy_yDMXjw5XzRPrPS_yfWs2jHfIk3nD4N23fCqNulOC5SAYS1o-GcqV1m17eAFWxVxhsTR0V3pmu0PAs5DCwzc7wlIQ/s1600-h/automator-batch-rename.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 320px; height: 317px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBGMFtgCwNVf-6DTw2YxIJ9PMn6U6LNBUhKCvUTO5MpDtXJ1QOCy_yDMXjw5XzRPrPS_yfWs2jHfIk3nD4N23fCqNulOC5SAYS1o-GcqV1m17eAFWxVxhsTR0V3pmu0PAs5DCwzc7wlIQ/s320/automator-batch-rename.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5345640881239584530&quot; border=&quot;0&quot; /&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 &quot;Rename Finder Items&quot; 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, &quot;Sort Finder Items&quot; is really optional and only makes a difference if you have the renaming action set to &quot;Make Sequential&quot;. This takes the list in the order it&#39;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=&quot;text-align: center;&quot;&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8HtI-Vo73o9qrTNg7Guo6Hir7cgSsK1DMNasbbxCuoxwv0qJG74xlloIsngi9CH8pcnRYjDh8DSN6JZIf5bHgYMaOcedVSbwvo_3EmD8J09PFMlqHoqIXdf1S9SwKdbyE_V6qDTzv_mI/s1600-h/rename-action.png&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 320px; height: 122px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8HtI-Vo73o9qrTNg7Guo6Hir7cgSsK1DMNasbbxCuoxwv0qJG74xlloIsngi9CH8pcnRYjDh8DSN6JZIf5bHgYMaOcedVSbwvo_3EmD8J09PFMlqHoqIXdf1S9SwKdbyE_V6qDTzv_mI/s320/rename-action.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5345641149771873698&quot; border=&quot;0&quot; /&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 &quot;Get Selected Finder Items&quot; instead, which will perform the renaming on whatever the current selection is in the Finder. Another is &quot;Ask for Finder Items&quot;, 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;</description><link>http://tips4macosx.blogspot.com/2009/06/batch-rename-multiple-files-using.html</link><author>noreply@blogger.com (Karthikeyan M)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBGMFtgCwNVf-6DTw2YxIJ9PMn6U6LNBUhKCvUTO5MpDtXJ1QOCy_yDMXjw5XzRPrPS_yfWs2jHfIk3nD4N23fCqNulOC5SAYS1o-GcqV1m17eAFWxVxhsTR0V3pmu0PAs5DCwzc7wlIQ/s72-c/automator-batch-rename.png" height="72" width="72"/><thr:total>0</thr:total></item></channel></rss>