<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hack the Daymac&#187;Hack the Day</title>
	<atom:link href="http://www.hacktheday.com/topic/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hacktheday.com</link>
	<description>Software and productivity tips &#38; lifestyle design</description>
	<lastBuildDate>Wed, 30 Nov 2011 12:29:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Forced reinstall of application downloaded from Mac App Store</title>
		<link>http://www.hacktheday.com/force-reinstall-application-downloaded-from-mac-app-store/</link>
		<comments>http://www.hacktheday.com/force-reinstall-application-downloaded-from-mac-app-store/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 12:27:33 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=224</guid>
		<description><![CDATA[Context: In Mac OSX Lion, I opened Launchboard and deleted an app that I had previously downloaded from the Mac App Store Problem: I was no longer able to download it, always getting the same annoying message from the Mac App Store software: &#8220;A newer version of this app is already installed on this computer&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Context:</strong><br />
In Mac OSX Lion, I opened Launchboard and deleted an app that I had previously downloaded from the Mac App Store<br />
<strong>Problem:</strong><br />
I was no longer able to download it, always getting the same annoying message from the Mac App Store software:<br />
&#8220;<em>A newer version of this app is already installed on this computer</em>&#8221;</p>
<p>After spending hours trying to find the fix that does the trick (and, man, did I try them all: removed spotlight indexing from my <a href="http://reverttosaved.com/2011/06/09/mac-app-store-a-newer-version-of-this-app-is-already-installed-on-this-computer/">HDD</a>, removed <a href="http://www.tuaw.com/2011/07/21/how-to-refresh-os-x-lions-launchpad-contents/">launchpad db files</a>, removed various <a href="http://apple.stackexchange.com/questions/7459/mac-app-store-works-like-trying-to-open-itunes-via-browser">folders and files</a>), countless Trash emptied and reboots, I finally found the fix. </p>
<p>Here&#8217;s what worked for me (via <a href="http://apple.stackexchange.com/questions/7075/how-can-i-reinstall-an-application-that-the-mac-app-store-thinks-is-installed-al">stackexchange</a>):<br />
I opened up Terminal.app, pasted the line below, then pressed Enter:</p>
<div style="overflow:auto;">
<code>/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user</code></div>
<p>A few minutes of waiting, and when it was done I launched the Mac App Store app and.. miracle: I was able to, once again, download my favorite app from the store. </p>
<p>I hope this will save a few hours for you as well</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/force-reinstall-application-downloaded-from-mac-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Terminal Hacker tips for the Mac</title>
		<link>http://www.hacktheday.com/5-terminal-tips-for-the-mac/</link>
		<comments>http://www.hacktheday.com/5-terminal-tips-for-the-mac/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 16:53:12 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[life hacks]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=192</guid>
		<description><![CDATA[You don&#8217;t really need a reason to try out these Mac OSX tips and hacks. But they are fun, probably useful and definitely will get a nice reaction from your friends. They all involve typing some commands in the Terminal.app(each command is followed by the Enter key); if commands start with sudo, you might be [...]]]></description>
			<content:encoded><![CDATA[<p>You don&#8217;t really need a reason to try out these Mac OSX tips and hacks. But they are fun, probably useful and definitely will get a nice reaction from your friends. They all involve typing some commands in the Terminal.app(each command is followed by the Enter key); if commands start with <strong>sudo</strong>, you might be asked to also type down your Mac administrator password(which you ought to have set when you first logged to your computer). For instructions on finding Terminal.app and tips on using it, see our great <a href="http://www.hacktheday.com/beginners-guide-to-apple-terminal-part-1/">Terminal.app tutorial</a>.</p>
<h4>Tip #1. Quickly prevent your Mac from going to sleep</h4>
<p>If you are doing something important but not interactive enough(reading an ebook/article or demoing a slideshow to your boss for instance) and get frustrated by your computer repeated attempts to go to sleep, there&#8217;s a quick and simple way to prevent this temporarily and without messing anything up: in Terminal, type down<br />
<code>pmset noidle</code><br />
Just remember to type Ctrl+C (^C) in the same window when you&#8217;re done.</p>
<p><span id="more-192"></span></p>
<h4>Tip #2. Organize your Dock with invisible spacers</h4>
<p>To add a spacer to the applications (left) side of the Dock, run the following in the terminal:</p>
<div style="margin-left: 20px; margin-top:10px; margin-bottom: 10px; padding: 5px; border:1px solid; overflow:scroll;white-space:nowrap"><code>defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}'</code></div>
<p>You&#8217;ll need to run <code>killall Dock</code> afterwards in the terminal, to restart the Dock and see the changes.<br />
The above spacer only gets inserted in the Icons section of the Dock. If you want to insert one in the Documents section on the right, you&#8217;ll need to run this command instead:</p>
<div style="margin-left: 20px; margin-top:10px; margin-bottom: 10px; padding: 5px; border:1px solid; overflow:scroll;white-space:nowrap">
<code>defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}'</code></div>
<p>To get more spacers, you call the commands several times. To move the spacers around the Dock, just drag them like you would for any app icon. Same in order to remove them, (drag them out of the Dock).<br />
(via <a href="http://hints.macworld.com/article.php?story=20071115133729552">macworld</a>)</p>
<h4>Tip #3. Get Dashboard widgets on your normal screen</h4>
<p>Your favorite Dashboard widgets are usually one keypress away(which you can chose from Settings->Keyboard->Dashboard and Dock) but, if you want to have them on your screen at all times (like they do on Windows), you need to follow these two easy steps:<br />
First, in Terminal.app, type down</p>
<div style="margin-left: 20px; margin-top:10px; margin-bottom: 10px; padding: 5px; border:1px solid; overflow:scroll;white-space:nowrap"><code>defaults write com.apple.dashboard devmode YES</code></div>
<p>after this, enter the <code>killall Dock</code> command, in order to restart your Dock and acknowledge the changes.<br />
Second, when in Dashboard (mine opens when I press F12), click on your favorite widget and, while dragging it slightly, exit the Dashboard(by pressing the same Dashboard key). Your widget should now appear on the main screen, on top of your usual app windows. In order to hide it, you&#8217;ll need to do the same things, but in reverse(that is, keep holding your mouse pressed on the widget, then fire up Dashboard and release the mouse). To disable this neat feature(but why would you?), you&#8217;ll run the same command only with <code>devmode NO</code> instead of <code>YES</code>.<br />
(via <a href="http://lifehacker.com/#!198498/pull-dashboard-widgets-to-your-desktop">Lifehacker</a>)</p>
<h4>Tip #4. Clean up the contextual menu</h4>
<p>After a long time of installing and removing apps, you might get a messed up &#8220;Open with..&#8221; menu when you right click on a given file; this is because removing an app doesn&#8217;t usually clean up the app&#8217;s settings, the contextual menu ones in particular. From the same all-mighty Terminal.app you&#8217;ll need to run </p>
<div style="margin-left: 20px; margin-top:10px; margin-bottom: 10px; padding: 5px; border:1px solid; overflow:scroll;white-space:nowrap"><code>/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user</code></div>
<p>, press Enter and wait until the command gets finished(might take a while).<br />
On older versions of OSX &#8211; 10.3 Panther or 10.4 Tiger, you&#8217;ll need to run this one instead</p>
<div style="margin-left: 20px; margin-top:10px; margin-bottom: 10px; padding: 5px; border:1px solid; overflow:scroll;white-space:nowrap"><code>/System/Library/Frameworks/ApplicationServices.framework/\Frameworks/LaunchServices.framework/Support/lsregister \-kill -r -domain local -domain system -domain user</code></div>
<p>Afterwards, the context  menu that you get when you right click(Cmd+click) on those files should be slimmer and more accurate.<br />
(via <a href="http://www.maclife.com/article/howtos/how_rebuild_launchservices_remove_duplicates_open_menu">Maclife</a>).</p>
<h4>Tip #5. Boot your Mac the way real hackers do</h4>
<p>You can see all the console messages thrown out when your mac is booting up with this simple command, to be typed into the Terminal.app<br />
<code>sudo nvram boot-args="-v"</code><br />
From now on, when you&#8217;re booting your computer, it will write down everything it does, and your user friendly computer will start looking like a Unix hacker&#8217;s piece of hardware straight from the Matrix. Guaranteed to get you all kinds of shocked looks from coworkers and classmates. You can also access these messages later by running <code>sudo dmesg</code> in the Terminal.app. To reset it to the default user friendly behavior, all you need to do is run <code>sudo nvram boot-args=</code> in the same Terminal.app.<br />
(via <a href="http://apple.stackexchange.com/questions/4232/how-can-i-see-the-system-status-during-boot">stackexchange</a>)</p>
<p>If you like these tips, stay tuned, as there are many more to come in the future. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/5-terminal-tips-for-the-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Secure your Mac &#8211; Password protected screen lock</title>
		<link>http://www.hacktheday.com/secure-your-mac-lock-screen/</link>
		<comments>http://www.hacktheday.com/secure-your-mac-lock-screen/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 16:46:50 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=187</guid>
		<description><![CDATA[When your nosey coworkers enjoy peeking on other people&#8217;s desktops when they are gone, or you simply don&#8217;t want your kids to accidentally erase your soon-to-be-complete Pulitzer story while you were in the kitchen, your mac has the quick and simple solution, one that few people know exists: the screen lock Enabling screen locking is [...]]]></description>
			<content:encoded><![CDATA[<p>When your nosey coworkers enjoy peeking on other people&#8217;s desktops when they are gone, or you simply don&#8217;t want your kids to accidentally erase your soon-to-be-complete Pulitzer story while you were in the kitchen, your mac has the quick and simple solution, one that few people know exists: the screen lock</p>
<p>Enabling screen locking is pretty easy, although hidden where you leaste expected it. Here&#8217;s how it&#8217;s done:</p>
<p>You&#8217;ll need to open up <strong>Keychain Access</strong>, a utility app that comes preinstalled on your Mac and can be found inside the /Applications/Utilities/ folder. Once there, you&#8217;ll open up the Preferences menu (press <strong>⌘,</strong> or as the submenu of  <strong>Keychain Access</strong> menu). In the <strong>General</strong> tab, make sure the checkbox &#8216;Show Status in Menu Bar&#8217; is checked. A tiny lock icon will appear in the menu, somewhere on the right. Clicking on it will reveal the long awaited option: <strong>Lock Screen</strong>.<br />
<a href="http://www.hacktheday.com/wp-content/uploads/2011/01/Screen-shot-2011-01-23-at-6.43.50-PM.png"><img src="http://www.hacktheday.com/wp-content/uploads/2011/01/Screen-shot-2011-01-23-at-6.43.50-PM.png" alt="" title="lock screen" width="258" height="123" class="alignright size-full wp-image-188" /></a></p>
<p>PS. Make sure you know your mac password before clicking on it, because only those who know it will be able to unlock the computer. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/secure-your-mac-lock-screen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Powertool for your Mac &#8211; Hyperdock</title>
		<link>http://www.hacktheday.com/powertool-for-your-mac-hyperdock/</link>
		<comments>http://www.hacktheday.com/powertool-for-your-mac-hyperdock/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 13:54:31 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=111</guid>
		<description><![CDATA[I&#8217;m not the kind to praise apps, but once in a while a recently downloaded app makes me so happy I need to share it with the world. Today I feel this way about Hyperdock, a currently free beta app (the developer warns us that once it gets final it will cost a small fee [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not the kind to praise apps, but once in a while a recently downloaded app makes me so happy I need to share it with the world. Today I feel this way about <a href="http://hyperdock.bahoom.de/">Hyperdock</a>, a currently free beta app (the developer warns us that once it gets final it will cost a small fee &#8211; although if you want to keep it free you can probably just disable the automatic updates). To be noted that there&#8217;s no hidden reward for me for this tiny review &#8211; the developer didn&#8217;t contact me about the app(as a general rule I tend to ignore all email I get that promotes web services or apps), I&#8217;ve hard about it from a Tweet and decided to give it a try. </p>
<p>Hyperdock installs itself as a System Preferences pane, and replaces the OSX standard Dock with a much more powerful version of it, kind of like a swiss knife of system goodies:</p>
<ul>
<li><strong>Window previews</strong> &#8211;  when you hover over the icon of an opened app in the Dock, you get to see a small bubble with live preview of the app&#8217;s opened windows.</li>
<li><strong>Powerful shortcuts</strong> &#8211; for all the apps in the Dock, you can configure particular or general shortcuts. Take the default shortcuts for instance &#8211; Option+Left click on any of the Dock apps will trigger Expose to show the windows opened by that app. Shift+Left Click will hide it, etc.</li>
<li><strong>Window Management</strong> &#8211; by far the best feature, allowing to quickly snap and resize windows(Windows 7 style) by simply dragging them to the screen edges, etc. It successfully replaces the $14 <a href="www.mizage.com/divvy/">Divvy app</a> and adds, on top of that, quick shortcuts for moving and resizing windows.</li>
</ul>
<p>There are other features listed on the app&#8217;s page, but I stop at this for now. I can only hope that the developer will chose a small enough price for the app(I&#8217;d expect less than $10, but I&#8217;d really hope something like $5) to encourage wide adoption of this pretty great all-in-one app.<br />
<a href="http://hyperdock.bahoom.de/">Give it a try</a> and let me know what you think of it in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/powertool-for-your-mac-hyperdock/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do it yourself &#8211; Fullscreen mode for your Mac apps</title>
		<link>http://www.hacktheday.com/do-it-yourself-fullscreen-mode-for-your-mac-apps/</link>
		<comments>http://www.hacktheday.com/do-it-yourself-fullscreen-mode-for-your-mac-apps/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 07:06:23 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=103</guid>
		<description><![CDATA[Everyone knows that multitasking is usually bad for your productivity, and that in order to get &#8216;in the flow&#8217; one would need to focus on the task at hand and nothing more. Having your app maximized to your screen size might be enough most of the times, but a real full-screen mode(that is, covering also [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone knows that multitasking is usually bad for your productivity, and that in order to get &#8216;in the flow&#8217; one would need to focus on the task at hand and nothing more. Having your app maximized to your screen size might be enough most of the times, but a real full-screen mode(that is, covering also the Dock and the MenuBar) would be even better.<br />
Apparently the next operating system version for your Mac(OSX Lion) will add native support for full-screen apps. But until then, neither of these two options are made easy by the current Mac OSX version.</p>
<p>If you&#8217;re in the same place as I am and too impatient to wait for your full-screen productivity boost, I found a temporary solution. An awesome one which, best of all, is completely free(although donations to their developers are welcome)!<br />
<span id="more-103"></span><br />
First of all, download <a href="http://culater.net/software/SIMBL/SIMBL.php">SIMBL</a> &#8211; SIMBL (SIMple Bundle Loader) &#8211; pronounced like &#8220;symbol&#8221; or &#8220;cymbal&#8221; &#8211; is a nifty app that enables hacks and plugins into OSX apps that don&#8217;t normally support them. The latest (Leopard and Snow Leopard version) can be downloaded directly from <a href="http://culater.net/dl/files/SIMBL-0.9.8c.zip">this link</a>. A list of the most popular popular SIMBL plugins is available <a href="http://code.google.com/p/simbl/wiki/SIMBLPlugins">here</a>.<br />
Like you already guessed, we&#8217;ll get ourselves a couple of SIMBL plugins. </p>
<ul>
<li>
My favorite is called <a href="http://www.randomapplications.com/extras/sizewell/">SizeWell</a>. It&#8217;s free, easy to download, install and setup, and adds a simple to use System Preferences pane. What it does? It allows you to configure how you&#8217;ll resize and zoom the windows on your Mac. For instance, by holding down CMD when maximizing the window, it will grow to the maximum screen size(except for the MenuBar and the Dock), which is probably what you want like 90% of the time and the default behavior that Windows has for maximizing windows(<em>a lame pun, sorry</em>).  You can also configure maximizing on just half of the screen(left or right or top or bottom), which is a dream come true for most multitaskers who don&#8217;t want to spend $14 on the <a href="http://www.mizage.com/divvy/">nice Divvy utility</a>.<br />
<img src="http://img.skitch.com/20101025-fgtbdnr6xxsty4png2fe7wstwp.png" alt="SizeWell" />
</li>
<li>If you&#8217;re really craving for fullscreen, SizeWell won&#8217;t be enough for you. Instead (or, better yet, in addition to it), you&#8217;ll need <a href="http://ianhenderson.org/megazoomer.html">Megazoomer</a>, the latest version of which can be downloaded from <a href="http://ianhenderson.org/download/megazoomer.zip">here</a>. After unzipping the downloaded archive, you&#8217;ll need to copy the included megazoomer.bundle to the <em>/Library/Application Support/SIMBL/Plugins/</em> folder so that SIMBL can use it. Once you do this, you can start toggling full-screen mode for your current windows by simply pressing CMD+Enter (or look in the Menu at the Window submenu for the newly-added Mega Zoom menu entry). Really awesome stuff in my opinion, wouldn&#8217;t you agree?<br />
<img src="http://img.skitch.com/20101025-j4k9ckdtx11emm3u3aj2gdhent.png" alt="Fullscreen Finder and my SIMBL plugins" />
</li>
</ul>
<p>That&#8217;s it. One simple app and two plugins to install, and your operating system just got 50% better. My regret? That I spent 4 years on the Mac not knowing about them. </p>
<p><small><strong><em>[Disclaimer/warning/footprint:<br />
Like all OSX hacks, SIMBL and its plugins are not supported by Apple(obviously, since they only support their own apps) and might stop working at some point in the future. Also, we don't make any guarantees that they will work for your system. They should, but just don't sue me if they fail for your particular machine.] </em><strong></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/do-it-yourself-fullscreen-mode-for-your-mac-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Essential tips to make your Mac the king of USER FRIENDLINESS</title>
		<link>http://www.hacktheday.com/essential-tips-to-make-your-mac-the-king-of-user-friendliness/</link>
		<comments>http://www.hacktheday.com/essential-tips-to-make-your-mac-the-king-of-user-friendliness/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 08:56:23 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[Mac Book]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/5-tips-to-make-your-mac-the-king-of-user-friendliness/</guid>
		<description><![CDATA[It&#8217;s a common symptom among new Mac users to be really ecstatic about their new MacBook, praise the speed and functionality, then after a month or so start seeing some flaws; much like in any relationship, where your passionate blind love from the first weeks starts to fade, giving way to more realistic assessments. Some [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.skitch.com/20081211-beewmgqeqhs27u9n6urjmehi4m.png" alt="Dock" /></p>
<p>It&#8217;s a common symptom among new Mac users to be really ecstatic about their new MacBook, praise the speed and functionality, then after a month or so start seeing some flaws; much like in any relationship, where your passionate blind love from the first weeks starts to fade, giving way to more realistic assessments.<br />
Some hard-core Linux geeks will probably miss their configuration files, kernel hacking and source code install. Windows users might miss their favorite software(Picasa, Winamp or Total Commander). I didn&#8217;t miss my Windows machine one bit, partly because I got used to other essential Mac software, partly because I use my Windows software from within Windows virtual machines, and mostly because I realized the Mac offers me all the productivity tools I ever wished for, out of the box or <strong>for free</strong>.</p>
<p>This article lists several essential but frequently forgotten configuration tips that make the most of your Mac. A future article will cover some vitally important FREE (or really inexpensive) Mac OSX software for your daily chores.</p>
<p>Faithful readers might have already read these tips here, on HackTheDay, but I do hope they&#8217;ll learn a few new things as well.</p>
<p><span id="more-71"></span></p>
<h3>Use the <a title="7 geek tricks for a fresh OSX Tiger install | Hack the Day" href="http://www.hacktheday.com/7-geek-tricks-for-a-fresh-osx-tiger-install/">7 geek tricks</a> for a fresh OSX install</h3>
<p>The most important of them are:</p>
<ol>
<li>Always download your latest updates</li>
<li>activate the keyboard shortcuts, Enable Full Keyboard Access, and try to learn the most important shortcuts: don&#8217;t miss the complex Screenshot shortcuts, the Keyboard Navigation ones (you&#8217;ll want to remember Ctrl+F2 to access the menubar, Command+comma to invoke the preferences screen for the current app, Command+Q to quit the current app) or Command+` to tab through the current&#8217;s application opened windows</li>
<li>activate &#8220;Use F1-F12 keys to control software features.&#8221;</li>
<li>activate the two-fingers secondary click</li>
</ol>
<h3><a title="Mac tips - Turn off your Mac’s startup sound | Hack the Day" href="http://www.hacktheday.com/mac-tips-turn-off-your-macs-startup-sound/">Deactivate the Mac startup chime</a> by using the free <strong>StartupSound.prefPane</strong> application</h3>
<p>I know, this falls into the category of vital OSX apps, but it&#8217;s so darn important that you&#8217;ll want to use it right ahead.</p>
<h3>Open folders in a new Finder window</h3>
<p>One of the many things novice Mac users don&#8217;t know is that in Finder, all it takes is to keep Option key pressed while double-clicking on a folder. Also, in case you didn&#8217;t know, the Undo command (Command+Z) also works in Finder, when deleting, undeleting or renaming files. Now.. does Windows know how to do this? Yeah, I thought so&#8230;</p>
<h3>Activate your Expose Active Corners and shortcut keys</h3>
<p>Here&#8217;s my setup: I rarely use Command+Tab to switch apps, the reflex of moving my mouse to the corner got under my skin. It&#8217;s way faster and gives you the full overview of what happens on your screen.<br />
<img src="http://img.skitch.com/20081211-p6a435yxts22pf14qxb34br1n7.png" alt="Expose Spaces" /></p>
<h3>In Expose, quickly see the names of the opened windows</h3>
<p>Just press Alt(Option) key while in Expose mode. See any change?</p>
<h3>Use Spotlight to launch Apps</h3>
<p>Spotlight comes included by default, as opposed to Quicksilver, Butler or other <a title="Power Tools - introduction to Application Software Launchers | Hack the Day" href="http://www.hacktheday.com/power-tools-introduction-to-application-software-launchers/">application launchers</a>. You do need a bit of tweaking to successfully use it as such: first of all, change the order the results are displayed, unchecking as many file types as possible(the fewer, the more responsive Spotlight is) and changing the order to match your behavior.<br />
Here&#8217;s my Spotlight settings:<br />
<img src="http://img.skitch.com/20081211-pgin4xfn7a4y9qr2ncjwymrj7d.png" alt="Spotlight" /></p>
<h3>Customize the <a title="How to display the date in OSX Leopard Menu Bar | Hack the Day" href="http://www.hacktheday.com/how-to-display-the-date-in-osx-leopard-menu-bar/">time display in the menu bar</a></h3>
<p><a title="How to display the date in OSX Leopard Menu Bar | Hack the Day" href="http://www.hacktheday.com/how-to-display-the-date-in-osx-leopard-menu-bar/"><img src="http://img.skitch.com/20081109-exq9f23qph91uhc1x5qh1753ma.png" alt="" /></a> The above link show you how.<br />
While you&#8217;re at the menu bar, feel free to <a title="Get rid of the MobileMe sync icon in Leopard’s menu bar | Hack the Day" href="http://www.hacktheday.com/get-rid-of-the-mobileme-sync-icon-in-leopards-menu-bar-3/">remove any unwanted icons by</a> pressing Alt(Option) while dragging them out.</p>
<h3>Get comfortable with Automator and Terminal</h3>
<p>If you&#8217;re a Linux geek, Terminal will rise to your expectations.. if only you know how to properly set it up to make it look as cool as you need.<br />
I configured it to have a transparent background so I can see what happens in my other apps, to display ANSI colors and, off course, to use these settings as default for every new window. The fact that it allows for multi tabs is a welcomed addition. Here&#8217;s my Matrix-like setup:<br />
<img src="http://img.skitch.com/20081211-njc5ema2nc5srnmrnh6bbgpn5g.png" alt="Terminal 2014 bash 2014 159յ0" /></p>
<p>As for Automator&#8230; this is one of the most powerful tools on your mac, and probably the most underrated one. Most Mac users never even opened it. I, for one, have used it to define a Multiple file rename Finder plugin, that I use now and then to rename, in 3 seconds, hundreds of selected files &#8211; a task that would have taken many annoying minutes, otherwise. Curious on how I did this? Keep tuned for a future episode.</p>
<p>In the meantime, you might want to take a peek under your OSX hood &#8211; there might be more amazing gems you didn&#8217;t know it has&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/essential-tips-to-make-your-mac-the-king-of-user-friendliness/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to seamlessly sync your iCal with Google Calendar</title>
		<link>http://www.hacktheday.com/how-to-seamlessly-sync-your-ical-with-google-calendar/</link>
		<comments>http://www.hacktheday.com/how-to-seamlessly-sync-your-ical-with-google-calendar/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 15:33:35 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/how-to-seamlessly-sync-your-ical-with-google-calendar/</guid>
		<description><![CDATA[Quick question: what is the One and only most essential tool for any productivity fan? You guessed it &#8211; the calendar. There are many reasons why you&#8217;d want to use Google Calendar for your time management: first of all, it&#8217;s free; second, it&#8217;s online(you can access it from everywhere). Third, it has SMS alerts, which [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Quick question: what is the One and only most essential tool for any productivity fan?<br />
<br/>You guessed it &#8211; the calendar.</p></blockquote>
<p>There are many reasons why you&#8217;d want to use Google Calendar for your time management: first of all, it&#8217;s free; second, it&#8217;s online(you can access it from everywhere). Third, it has SMS alerts, which is probably the single feature I use most. The one major downside of Google Calendar has is&#8230; being an online tool; a less than perfect user interface, less than instantaneous responsiveness. Luckily, this all is in the past as of <a href="http://gmailblog.blogspot.com/2008/11/syncing-your-google-calendar.html" title="Official Gmail Blog: Syncing your Google Calendar">today</a>:</p>
<p>Google announced CalDAV support for Google Calendar in Apple&#8217;s iCal(version 3.x  &#8211; on Mac OS X v10.5+ ). In layman&#8217;s terms, this means seamless bidirectional synchronization of calendar events. No more awkward emails, no more missed meetings(actually.. this isn&#8217;t such a good news, as we all know it &#8211; meetings are productivity killers).</p>
<p>Here&#8217;s a step by step <a href="http://www.google.com/support/calendar/bin/answer.py?answer=99358" title="Get Started with CalDAV - Calendar Help Center">walkthrough</a> in setting up Google Calendar synchronization:</p>
<p>1. First, you download on your OSX 10.5 mac <a href="http://code.google.com/p/calaboration/downloads/list" title="calaboration - Google Code">the setup tool, called Calaboration</a>. It&#8217;s in zip format, so you&#8217;ll want to unarchive it. Go ahead and run it, entering your Google login credentials, then click Sign In.</p>
<p><span id="more-70"></span><br />
<img src="http://img.skitch.com/20081202-mxw6qwf8bi8tgn8raj441rnn81.png" alt="Calaboration1"/></p>
<p>2. Select which of the Google Calendars you want to add to your iCal.<br />
3. If you haven&#8217;t already added your Google email(login) to Address Book, you&#8217;ll want to do this, or else &#8220;<em>You won&#8217;t be able to invite or email guests to Google Calendar events within iCal if your address is not in your Address Book.</em>&#8221;</p>
<p>4. Your Google Calendar will now appear in iCal&#8217;s list of calendars, and iCal will sync any changes to and from Google Calendar. </p>
<p>Event information will refresh every 5 minutes; if you want to change this interval, you can do it in the iCal > Preferences > Accounts menu, from the &#8216;Refresh calendars&#8217; drop-down. You can also refresh calendars manually, by pressing the Apple and R keys at the same time.</p>
<p>This is it. Easy and efficient, much like most of Google&#8217;s online tools.<br />
Happy productivity everyone. And remember to keep yourselves out of meetings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/how-to-seamlessly-sync-your-ical-with-google-calendar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to display the date in OSX Leopard Menu Bar</title>
		<link>http://www.hacktheday.com/how-to-display-the-date-in-osx-leopard-menu-bar/</link>
		<comments>http://www.hacktheday.com/how-to-display-the-date-in-osx-leopard-menu-bar/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 12:32:57 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[date time]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/?p=66</guid>
		<description><![CDATA[If you don&#8217;t want to fumble around just to learn the current date, you can display it in Leopard&#8217;s Menu Bar, right by the clock, to always have under your eyes. What I did was to follow TUAW&#8217;s tutorial, but here&#8217;s a quick summary, just in case you&#8217;re in a hurry: 1. in System Preferences, [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t want to fumble around just to learn the current date, you can display it in Leopard&#8217;s Menu Bar, right by the clock, to always have under your eyes.</p>
<p>What I did was to follow <a href="http://www.tuaw.com/2008/08/18/tuaw-tip-add-date-to-the-menu-bar-clock/">TUAW&#8217;s tutorial</a>, but here&#8217;s a quick summary, just in case you&#8217;re in a hurry:<br />
1. in System Preferences, International, Formats submenu. Select Customize date, then chose the format you want, and COPY it (select all, Cmd+C).<br />
<img src="http://img.skitch.com/20081109-psbg9sw75qfugy8erbpeku5c7q.png" alt="copy_date_format"/><br />
2. Press Ok, then from the same window, Customize for the Times part. Move the cursor before the time format, press Cmd+V(Paste). Press OK.</p>
<p><img src="http://img.skitch.com/20081109-exq9f23qph91uhc1x5qh1753ma.png" alt="leoparddatemenu"/></p>
<p>Easy peasy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/how-to-display-the-date-in-osx-leopard-menu-bar/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Usability on the Mac &#8211; tricks for Mobility Impaired Programmers</title>
		<link>http://www.hacktheday.com/usability-on-the-mac-tricks-for-mobility-impaired-programmers/</link>
		<comments>http://www.hacktheday.com/usability-on-the-mac-tricks-for-mobility-impaired-programmers/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 22:35:36 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[hack the day]]></category>
		<category><![CDATA[life hacks]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/usability-on-the-mac-tricks-for-mobility-impaired-programmers/</guid>
		<description><![CDATA[On the 1st of January I had a skiing accident resulting in the injury my right arm &#8211; actually my right shoulder. After about two weeks of waiting for the pain to go away, I got the guts and visited a doctor who didn&#8217;t think twice before putting my entire right arm into a tight [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm2.static.flickr.com/1141/1096841266_d1d9b2ad85.jpg" align="right" width="300" /></p>
<p>On the 1st of January I had a skiing accident resulting in the injury my right arm &#8211; actually my right shoulder. After about two weeks of waiting for the pain to go away, I got the guts and visited a doctor who didn&#8217;t think twice before putting my entire right arm into a tight bandage and forbidding me to use my right arm for the upcoming 10 days.</p>
<p>Easier said then done &#8211; after all, I&#8217;m a work-from-home software developer, right-handed on top of that. Medical leave being out of the question, how am I supposed to get my job done by typing with only my left hand?</p>
<p>Luckily, I managed to work something out, and here&#8217;s a couple of the tricks I did for it, just in case they might help other imprudent skiers out there:<br />
<span id="more-40"></span></p>
<ol>
<li><strong>System Preferences -&gt; Universal Access -&gt; Keyboard -&gt; Sticky Keys</strong> &#8211; this is the single greatest mobility impaired aid on the Mac: all special keys become sticky and appear on the screen as you type them, thus allowing you to single-handedly type complex, 2, 3 or more &#8220;simultaneous&#8221; keys combinations. Option+Backspace, Fn+Backspace, Cmd+Option+Escape and many more contorted keys combinations become now available to anyone</li>
<li><a href="http://www.blacktree.com/projects/quicksilver.html">Quicksilver</a> &#8211; I never really understood the full impact Quicksilver has on my productivity until now &#8211; launching an application without a mouse becomes really a life saver when you can only type with your left hand&#8230;</li>
<li><a href="http://macromates.com/">Textmate</a> &#8211; luckily for me, I&#8217;m a Ruby(on Rails) programmer using Textmate on a daily basis. Although no longer being able to use the complex keyboard shortcuts that trigger all kinds of snippet generations, I was still able to remain productive using its built-in code completion and the tab-triggered snippets.</li>
<li>Terminal &#8211; a ROR programmer can&#8217;t get any kind of work done without the command line &#8211; be it just to change the working dir to the project&#8217;s one, or to start a server or.. many more. But typing in Terminal becomes an annoying pain when you need to run the same commands on and on. So I edited the .bash_profile and added a couple of alias for the most common commands I use on a daily basis. The <strong>.bash_profile</strong> is to be created(if not already existent) in the User&#8217;s home directory (just run<strong> cd ~</strong> in Terminal and you&#8217;re there); here&#8217;s a couple of the aliases I defined for my daily use:<br />
<code><br />
alias pr='cd ~/Work/MyProject/'<br />
alias prr='cd ~/Work/Projects/MySecondProject/'<br />
alias matem='mate .'<br />
alias ss='./script/server'<br />
</code></li>
</ol>
<p>There are more to say about tricks that made my programmer life better these last days, but I&#8217;ll take a little break for now; hopefully I&#8217;ll get back some day with more cool <em>Tricks for the Mobility Impaired Programmers</em></p>
<p>(image by<a href="http://flickr.com/photos/thepack/1096841266/" title="4 Stitches on Flickr - Photo Sharing!"> The Pack</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/usability-on-the-mac-tricks-for-mobility-impaired-programmers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 geek tricks for a fresh OSX Tiger install</title>
		<link>http://www.hacktheday.com/7-geek-tricks-for-a-fresh-osx-tiger-install/</link>
		<comments>http://www.hacktheday.com/7-geek-tricks-for-a-fresh-osx-tiger-install/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 22:15:59 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.hacktheday.com/7-geek-tricks-for-a-fresh-osx-tiger-install/</guid>
		<description><![CDATA[I spent the day before yesterday cleaning up my MacBook hard drive and reinstalling anew my Tiger operating system. Sure, OSX is a very powerful system, but even it gets cluttered after months of intense usage and hundreds of apps installed. So.. nothing like a fresh new install to get rid of all unwanted apps, [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the day before yesterday cleaning up my MacBook hard drive and reinstalling anew my Tiger operating system.<br />
Sure, OSX is a very powerful system, but even it gets cluttered after months of intense usage and hundreds of apps installed. So.. nothing like a fresh new install to get rid of all unwanted apps, documents, archives or garbage.</p>
<p>So, if you are a new Apple owner, here&#8217;s my list of 9 tips for you to do on a fresh OSX install:</p>
<p><span id="more-38"></span></p>
<p><img src="http://images.apple.com/macbook/images/index_frontrow20071026.jpg" alt="apple MacBook" /></p>
<ul>
<li>First of all, <strong>download the updates.</strong> Look carefully for the available updates and only install those for the apps you actually use. If, for instance, you&#8217;re not a music composer, then perhaps you might not need the latest updates for <em>Garage Band</em>. Similar, if you&#8217;re not into video editing, then the latest updates for iMovie might not be for you. Updating apps you never use will only add garbage on your system.</li>
<li>Declutter your Dashboard. Press F12(by default) or the dashboard icon in the doc, and you&#8217;ll get to see the nice list of preinstalled and preactivated widgets. You&#8217;ll be surprised, but a Dashboard widget takes out about 4-10 MB of your RAM. So, 10 opened widgets will take A LOT of memory. Simply close all those that you don&#8217;t use, and your computer will be happier &#8211; more RAM available for apps you actually use.</li>
<li><strong>F1-F12 Keys</strong>. First thing is first &#8211; I am a geek and, especially on my MacBook, use the shortcuts intensively. No wonder I trigger up System Preferences, the <em>Keyboard &amp; Mouse</em> menu, and activate the &#8220;Use F1-F12 keys to control software features.&#8221;</li>
<li><strong>Keyboard Shortcuts</strong> Still in the same window, in the Keyboard Shortcuts tab, I activate most of the available shortcuts. I&#8217;ll never use most of them, but there are some I couldn&#8217;t live without: For instance, Ctrl+F2 to access the menubar, or ⌘+Shift+4 to take snapshots of the selected screen area.</li>
<li>Enable the <strong>Full Keyboard Access</strong> I got so used to having, in most dialog boxes, a blue hallo around some buttons(usually the &#8220;Cancel&#8221; one), that I never quite remembered how I got it in the first place. The blue halo around a control makes it accessible by pressing the Space key. So, for instance, in an OK/Cancel dialog, the OK would be blue and Cancel would be gray, but with a blue halo. Pressing the Enter key would then press OK, while the Space key would mean Cancel. It&#8217;s a neat and addicting shortcut.<br />
In order to activate this, in the same Keyboard Shortcuts window, you&#8217;ll have to select the &#8220;All controls&#8221; checkbox.</li>
<li><strong>Two fingers Right Click (Seconday Click)</strong> I mentioned this before as well &#8211; Apple laptops only have one mouse button; in order to do &#8220;the right click&#8221;, you usually need to press &#8220;Ctrl&#8221; while clicking. The alternative is to select, in the Trackpad tab of the same <em>Keyboard &amp; Mouse</em> System Preference, the checkbox saying &#8220;Tap trackpad with two fingers for secondary click&#8221;</li>
<li><strong>Ignore accidental trackpad input</strong> &#8211; If you have an Apple laptop and you don&#8217;t select this option (in the same window as above), you&#8217;ll be deeply sorry: every time you type something, the slightest touch of the trackpad will make the cursor jump to some other place. So.. it&#8217;s a great thing to prevent this.</li>
</ul>
<p>For a more geek insight into Apple&#8217;s OSX shortcuts (some of them <strong>extremely</strong> important), <a href="http://docs.info.apple.com/article.html?artnum=75459" title="Mac OS X keyboard shortcuts">this is the page you want to go to</a>. I&#8217;ll only quote a couple of them:<br />
&lt;</p>
<blockquote><p><strong>Press X during startup</strong> Force Mac OS X startup<br />
<strong>Press Option-Command-Shift-Delete during startup </strong>	Bypass primary startup volume and seek a different startup volume (such as a CD or external disk)<br />
<strong>Press C during startup </strong>	Start up from a CD that has a system folder<br />
<strong>Press Shift during startup </strong>	start up in Safe Boot mode and temporarily disable login items and non-essential kernel extension files (Mac OS X 10.2 and later)<br />
<strong>Press Command-V during startup </strong>	Start up in Verbose mode.<strong>Option-Command-esc </strong>	Force Quit<br />
<strong>Control-Eject</strong> 	Restart, Sleep, Shutdown dialog box<br />
<strong>Control-Command-Eject</strong> 	Quit all applications and restart<br />
<strong>Option-Command-Eject</strong> or <strong>Option-Command-Power</strong> 	Sleep<br />
<strong>Command-`</strong> 	Cycle through windows in application or Finder (if more than one window is open)</p></blockquote>
<p>Happy Mac geeking!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hacktheday.com/7-geek-tricks-for-a-fresh-osx-tiger-install/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>

