<?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/"
	 xmlns:slash="http://purl.org/rss/1.0/modules/slash/" 
>

<channel>
	<title>Daniel Bergey &#187; Mac</title>
	<atom:link href="http://danielbergey.com/motion/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielbergey.com/motion</link>
	<description>Commotion</description>
	<lastBuildDate>Mon, 02 Nov 2009 02:45:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Seriously, go plug in your computer.</title>
		<link>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/</link>
		<comments>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 13:24:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[launchd]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://danielbergey.com/motion/?p=662</guid>
		<description><![CDATA[This happens a lot: I&#8217;ll be programming along, in the zone, so much that even the low-power alert doesn&#8217;t dissuade me from my task: That&#8217;s bad. Because inevitably, I&#8217;ll be just in the middle of a thought when the computer shuts off, ten minutes later. I don&#8217;t actually lose anything, of course, because MacBooks are [...]]]></description>
			<content:encoded><![CDATA[<p>This happens a lot: I&#8217;ll be programming along, in the zone, so much that even the low-power alert doesn&#8217;t dissuade me from my task:</p>

<div align="center" style="margin: -25px -45px;"><img src="http://danielbergey.com/motion/wp-content/uploads/2009/11/reservepower.png" alt="reservepower.png" border="0" width="555" height="243" style="border-width: 0;" /></div>

<p>That&#8217;s bad. Because inevitably, I&#8217;ll be just in the middle of a thought when the computer shuts off, ten minutes later. I don&#8217;t actually <em>lose</em> anything, of course, because MacBooks are usually smart about keeping enough power to stay alive. <em>(Note: haven&#8217;t used anything else for a while; other platforms may do just as well. <acronym title="Your Mileage May Vary">YMMV</a>.)</em></p>

<p>Still. It happened so much that I decided to do something about it:</p>

<div align="center" style="margin: -25px -45px;"><img src="http://danielbergey.com/motion/wp-content/uploads/2009/11/seriouslyplugin.png" alt="seriouslyplugin.png" border="0" width="500" height="233" style="border-width: 0;" /></div>

<p>I made a new text file, named it <code>"batterywarning"</code> and threw it in <code>/Applications/Scripts/</code> with the following contents:</p>

<pre><code>#!/usr/bin/env ruby

`pmset -g batt` =~ /discharging; (\d+:(\d+)) remaining/;
if $1 &amp;&amp; $1 &lt; '0:10' then
  nums = %w{ zero one two three four five six seven eight nine ten }
  mins = nums[$2.to_i] ? (nums[$2.to_i] +" minute"+ ($2=='01' ? '' : 's')) : $1
  exec "osascript -e 'tell application \"AppleScript Runner\" to "+
    "display alert \"Seriously, go plug in your computer.\" "+
    "message \"There&amp;rsquo;s only about "+ mins + " left! "+
    "How many times do you need to be told?\" as warning'"
end
</code></pre>

<p>The gist: when run, the script checks the current estimated remaining time on the battery. If it&#8217;s below 10 minutes (the point at which the native warning appears), it displays its own alert box warning the user of their procrastinatory folly. If there is more than 10 minutes remaining, it does nothing.</p>

<p>I made the script executable (<code>chmod +x /path/to/script</code>), and configured <code>launchd</code> to run it every minute by creating a plist named <code>"com.dbergey.batterywarning.plist"</code> in <code>~/Library/LaunchAgents/</code> thusly:</p>

<pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
&lt;dict&gt;
    &lt;key&gt;Label&lt;/key&gt;
    &lt;string&gt;com.dbergey.batterywarning&lt;/string&gt;
    &lt;key&gt;ProgramArguments&lt;/key&gt;
    &lt;array&gt;
        &lt;string&gt;/Applications/Scripts/batterywarning&lt;/string&gt;
    &lt;/array&gt;
    &lt;key&gt;LowPriorityIO&lt;/key&gt;
    &lt;true/&gt;
    &lt;key&gt;StartInterval&lt;/key&gt;
    &lt;integer&gt;60&lt;/integer&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</code></pre>

<p>Then, from the command line, I did this to tell <code>launchd</code> about it:</p>

<pre><code>launchctl load ~/Library/LaunchAgents/com.dbergey.batterywarning.plist 
</code></pre>

<p>And it worked! Hopefully I will be more proactive about plugging in when warned up to 10 times before shutoff. <img src='http://danielbergey.com/motion/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<slash:comments>2</slash:comments>
	</item>
		<item>
		<title>Desktop Pictures for Stacked Displays</title>
		<link>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/</link>
		<comments>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:45:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[desktop pictures]]></category>
		<category><![CDATA[stacked displays]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=645</guid>
		<description><![CDATA[These days I set my laptop directly below my 20&#8221; display, which is set up on some books. I really like the setup, as I don&#8217;t have to move my head around to interact with the second display; I can just glance down or straight ahead. I can&#8217;t find any nice desktop pictures, though &#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>These days I set my laptop directly below my 20&#8221; display, which is set up on some books. I really like the setup, as I don&#8217;t have to move my head around to interact with the second display; I can just glance down or straight ahead.</p>

<p>I can&#8217;t find any nice desktop pictures, though &#8230; all the dual-display desktops are for side-by-side configurations. There are &#8220;vertical&#8221; desktop pictures, too, but they are designed for when you have your display turned 90&deg;.</p>

<p>Has anyone ever seen desktop pictures designed for stacked displays?</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Reggy on Bodega</title>
		<link>http://danielbergey.com/motion/2009/08/reggy-on-bodega/</link>
		<comments>http://danielbergey.com/motion/2009/08/reggy-on-bodega/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:01:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[bodega]]></category>
		<category><![CDATA[reggy]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=641</guid>
		<description><![CDATA[My friend Sam made something helpful a couple of years ago. I still use it from time to time to test regular expression matching. Now Reggy is on Bodega, your new corner store for Mac apps. Check &#8216;em both out.]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://samsouder.com/">Sam</a> made <a href="http://reggyapp.com/">something helpful</a> a couple of years ago. I still use it from time to time to test regular expression matching.</p>

<p><img src="http://www.danielbergey.com/weblog/wp-content/uploads/2009/08/reggy_on_bodega.png" alt="reggy_on_bodega.png" border="0" width="455" height="375" /></p>

<p>Now <a href="http://reggyapp.com/">Reggy</a> is on <a href="http://appbodega.com/">Bodega</a>, your new corner store for Mac apps. Check &#8216;em both out.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/reggy-on-bodega/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Three-way Computer Surgery</title>
		<link>http://danielbergey.com/motion/2009/08/three-way-computer-surgery/</link>
		<comments>http://danielbergey.com/motion/2009/08/three-way-computer-surgery/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 01:14:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[everymac]]></category>
		<category><![CDATA[ibook]]></category>
		<category><![CDATA[istat pro]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[powerbook]]></category>
		<category><![CDATA[superduper]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=621</guid>
		<description><![CDATA[Spent most of today replacing the Power/Sound board in an old PowerBook for my brother Tim. As it happens, that&#8217;s the most involved sort of repair one can make on an Aluminum 1.5 Ghz, since you have to remove almost every other piece from the case before you can get to it. Tim&#8217;s previous Mac, [...]]]></description>
			<content:encoded><![CDATA[<p>Spent most of today replacing the Power/Sound board in an old PowerBook for my brother Tim. As it happens, that&#8217;s the most involved sort of repair one can make on an Aluminum 1.5 Ghz, since you have to remove almost every other piece from the case before you can get to it.</p>

<p>Tim&#8217;s previous Mac, an iBook G4, had an unpleasant habit of exhibiting display anomalies and freezing about 5 minutes after booting, and the conclusion <a href="http://twitter.com/smbergey">Steve</a> and I came to was that the fan had stopped spinning (confirmed by <a href="http://www.islayer.com/apps/istatpro/">iStat Pro</a>, very quickly before it froze again).</p>

<p>Unsure of whether the fan or the logic board was the problem, I decided to fix up the old PowerBook for Tim instead of repairing the iBook just now. I also got my first experience putting thermal paste on a heat sink. Kinda weird.</p>

<p>After the PowerBook was all back together, I had to figure a way to get Tim&#8217;s data off the iBook&mdash;difficult, since it wouldn&#8217;t run for more than 5 minutes at a time. I would have to at least remove the hard drive from the iBook (a host upon which to be decided later).</p>

<p>I had <em>no idea</em> how hard it was to get a hard drive out of an iBook. NOT USER SERVICEABLE. I had to take a million screws out, and remove both sides of the case (front and back). <em>Much</em> more difficult than a PowerBook (and, I assume, a pre-unibody MacBook Pro).</p>

<p>Once the hard drive was out (and the various innards of the iBook spread all over the kitchen table), my first idea was to just stick it in my MacBook temporarily, since it&#8217;s INSANELY easy to swap the hard drive in a MacBook. Turns out Ultra ATA drives don&#8217;t work in a Serial ATA MacBook.</p>

<p>The second idea (after verifying it on <a href="http://everymac.com/">EveryMac.com</a>) was to put the drive in my old Power Mac G4. For some reason that didn&#8217;t work, even though it&#8217;s also Ultra ATA. Different spacing on the pins or something (puzzling). By this point Tim and Dani were fidgeting about, wanting to get on the road, since they had a 3-hour drive to Mt. Vernon.</p>

<p>I explored various other solutions, such as booting the iBook with exposed logic board and hoping the improved air circulation kept it going sans fans long enough to copy stuff off. I also suggested to myself that I could connect various computers (and/or external hard drives) together in FireWire Target Disk Mode, but only the Power Mac had enough FireWire ports to handle it, and all my FireWire cables were in the closet in the bedroom, in front of which <a href="http://twitter.com/drewbergey/">Drew</a> was sleeping, on a cot (since Company had taken over his room for the weekend).</p>

<p>Also briefly reflected upon the fact that either a) a working FireWire hub, or b) <a href="http://amzn.com/B000J01I1G">one of these</a> would have solved everything.</p>

<p>Anyway, the final solution (which worked) was to throw the drive in <a href="http://fairlyordinary.com/">Jennifer&#8217;s</a> PowerBook for a bit while <a href="http://www.shirt-pocket.com/SuperDuper/">SuperDuper</a> copied everything perfectly over to the new computer, impressing Tim.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/three-way-computer-surgery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Disappointed</title>
		<link>http://danielbergey.com/motion/2008/09/disappointed/</link>
		<comments>http://danielbergey.com/motion/2008/09/disappointed/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 01:37:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=517</guid>
		<description><![CDATA[Update: I should make a clarification: I haven&#8217;t written anything for the iPhone yet, nor have I had a rejection letter (though after a re-read, it does sound like I&#8217;m a little bitter that way). I&#8217;m just disappointed at the whole situation, and frustrated for the victims. I&#8217;ve been an Apple fan for twenty years, [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Update:</strong> I should make a clarification: I haven&#8217;t written anything for the iPhone yet, nor have I had a rejection letter (though after a re-read, it does sound like I&#8217;m a little bitter that way). I&#8217;m just disappointed at the whole situation, and frustrated for the victims. I&#8217;ve been an Apple fan for twenty years, and I don&#8217;t ever remember such blatant Microsoft-like behavior.</em></p>

<p>I&#8217;ll finally say it: I&#8217;m disappointed with Apple.</p>

<p>Since before it was cool, I&#8217;ve wanted a device that consolidated all my pocket gadgets: iPod, phone, PDA, etc. More than a year and a half ago, Apple finally introduced the long-rumored iPhone: everyone&#8217;s dream device, promising convergence, productivity, and the sheer joy users and developers have come to expect from using an Apple-designed user interface.</p>

<p>I didn&#8217;t buy one when they were first announced, in large part because of the wallet-busting $600 price tag, and in small part because there was no official way to develop or install my own applications and games on it. When I had my Palm, I&#8217;d become rather attached to SimCity and Pocket Quicken, and the thought of being able to carry Real Software with me wherever I went was very exciting.</p>

<p>When the SDK was announced nearly a year ago, the stage was set, and with the 3G iPhone came subsidization. Finally, an iPhone was nearly within my financial grasp.</p>

<p>Then this mess happened. First, Apple inexplicably kept all developers under an NDA, which had the (however unintended) effect of stifling collaboration and developer assistance, traditionally very important processes when writing software for a new platform.</p>

<p>Second, Apple has now decided that not only will their App Store be the sole source of iPhone software, but that they reserve the right to bar any software from the store they see fit. The gist of it is that a prospective developer (let&#8217;s call him, oh, I don&#8217;t know, <em>Daniel</em>) can conceive an idea, spend six months of his free time pouring his creative energy into it, submit his software for distribution, and be denied the fruit of his labors without any warning or real explanation.</p>

<p>I usually try to give Apple the the benefit of the doubt. But I was excited about using and possibly developing for (should I find any holes to fill) the iPhone. This doesn&#8217;t exactly make it sound like fun.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2008/09/disappointed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<slash:comments>3</slash:comments>
	</item>
		<item>
		<title>Quirks</title>
		<link>http://danielbergey.com/motion/2008/07/quirks/</link>
		<comments>http://danielbergey.com/motion/2008/07/quirks/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 02:41:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[ocd]]></category>
		<category><![CDATA[personality]]></category>
		<category><![CDATA[quirks]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=515</guid>
		<description><![CDATA[Rands In Repose posts a list of peoples&#8217; personal quirks that he gathered via Twitter. I share a bunch of them, but I&#8217;ve got a whole pile of unique ones, too: I always make sure the paper coffee cup&#8217;s seam (and sleeve fold if there is one) is directly below the sipping hole so I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.randsinrepose.com/">Rands In Repose</a> posts <a href="http://www.randsinrepose.com/archives/2008/07/18/the_quirkbook.html">a list of peoples&#8217; personal quirks</a> that he gathered via Twitter. I share a bunch of them, but I&#8217;ve got a whole pile of unique ones, too:</p>

<ul>
<li>I always make sure the paper coffee cup&#8217;s seam (and sleeve fold if there is one) is directly below the sipping hole so I can drink it without looking. This produces a helpless feeling if the cup is made without a seam.</li>
<li>I always wet my toothbrush <s>before</s> after applying toothpaste. Sometimes that makes the toothpaste fall off.</li>
<li>When I was a kid, I kept track of how many clockwise and counter-clockwise rotations accumulated while moving around in a room, and always made sure to unwind them by spinning that number of times in the proper direction when leaving. Or, I tried NOT to accumulate any rotations.</li>
<li>I can&#8217;t step on sidewalk cracks. If I do, I have to step on another one, with the opposite foot.</li>
<li>When I didn&#8217;t have a rotary volume dial on my car radio, I always made sure to press the volume up and down buttons in multiples of five. Now I just make sure the digital marker is perfectly centered between digital ticks on the display.</li>
<li>It bugs me if my Mac&#8217;s application windows aren&#8217;t all tiled or lined up, with no overlaps and no spaces (or a 1 pixel space, but it depends).</li>
<li>I always use my turn signal, even when I&#8217;m pulling into a parking space or the driveway off our shared driveway. My reasoning is that if I neglect it even once, it could destroy my habit forever and I won&#8217;t be able to rely on it. Only <em>slightly</em> tongue-in-cheek.</li>
</ul>

<p>I think there may be others that I&#8217;ve grown out of, or can&#8217;t think of right now. <a href="http://fairlyordinary.com/">Outside</a> <a href="http://samsouder.com/">observers</a> may know of more.</p>

<p><strong>Update:</strong> Today Jennifer caught me using my turn signal in the Wendy&#8217;s drive-thru. Yes, I was just following the the drive-thru around the building.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2008/07/quirks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<slash:comments>5</slash:comments>
	</item>
		<item>
		<title>Safari 3.1</title>
		<link>http://danielbergey.com/motion/2008/03/safari-31/</link>
		<comments>http://danielbergey.com/motion/2008/03/safari-31/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 20:29:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/2008/03/18/safari-31/</guid>
		<description><![CDATA[Safari 3.1 is finally out, and it&#8217;s fast. There&#8217;s a new Develop menu, and the Web Inspector has received some welcome polish. But there is one expected feature that is missing in action, described in the post &#8220;Web Inspector Update&#8221; on the WebKit blog: Inline CSS EditingThis is the biggest new feature of the Inspector. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/safari/">Safari 3.1</a> is finally out, and it&#8217;s fast. There&#8217;s a new Develop menu, and the Web Inspector has received some welcome polish. But there is one expected feature that is missing in action, described in the post &#8220;<a href="http://webkit.org/blog/148/web-inspector-update/">Web Inspector Update</a>&#8221; on the <a href="http://webkit.org/blog/">WebKit blog</a>:</p>

<blockquote><h4>Inline CSS Editing</h4><img src="http://www.danielbergey.com/weblog/wp-content/uploads/2008/03/fe9f9041-a6db-4ce5-81b4-da696808ba43.jpg" align="right" style="margin-left: 10px; border-width: 0;" border="0" width="218" height="80" />This is the biggest new feature of the Inspector. You can now edit CSS styles simply by double-clicking them in the Inspector&rsquo;s Styles sidebar. This is really handy for tweaking the look of your site live in the browser.</blockquote>

<p>It&#8217;s referred to again in the <a href="http://tinyurl.com/2zlkf3">Safari 3.1 release notes</a>, but I can&#8217;t get it to work in the final downloaded version, though it still works in the <a href="http://nightly.webkit.org/">WebKit nightlies</a>. Perhaps the feature was deemed yet too unpolished for official release &#8212; there are still a lot of bugs reported on it, and <a href="http://www.getfirebug.com/css.html">FireBug&#8217;s CSS editor</a> is arguably better (and <a href="http://www.macrabbit.com/cssedit/">MacRabbit&#8217;s CSSEdit</a> even more so!).</p>

<p>P.S.: The future of the Web Inspector <a href="http://trac.webkit.org/projects/webkit/wiki/ProposedWebInspectorUIRefresh">looks even better</a>.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2008/03/safari-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>When Stacks Go Bad</title>
		<link>http://danielbergey.com/motion/2007/11/when-stacks-go-bad/</link>
		<comments>http://danielbergey.com/motion/2007/11/when-stacks-go-bad/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 16:45:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/2007/11/12/when-stacks-go-bad/</guid>
		<description><![CDATA[Not sure what happened here, but my Dock is still like this: Closed: Open:]]></description>
			<content:encoded><![CDATA[<p>Not sure what happened here, but my Dock is still like this:</p>

<p align="center"><b>Closed:</b><br /><img src="http://www.danielbergey.com/weblog/wp-content/uploads/2007/11/bad-stack-closed.png" alt="bad_stack_closed.png" border="0" width="99" height="126" /></p>

<p align="center"><b>Open:</b><br /><img src="http://www.danielbergey.com/weblog/wp-content/uploads/2007/11/bad-stack-open.png" alt="bad_stack_open.png" border="0" width="258" height="385" /></p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2007/11/when-stacks-go-bad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<slash:comments>1</slash:comments>
	</item>
		<item>
		<title>Notes on Leopard</title>
		<link>http://danielbergey.com/motion/2007/11/notes-on-leopard/</link>
		<comments>http://danielbergey.com/motion/2007/11/notes-on-leopard/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 19:24:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/2007/11/08/notes-on-leopard/</guid>
		<description><![CDATA[These are just a bunch of small things that either I&#8217;ve noticed or have been pointed out to me about Leopard: iChat supports IRC-style status updates. You can type &#8220;/me is installing Leopard&#8221; into an IM window, and it will display it in a style similar to iTunes track notification messages, or away message changes, [...]]]></description>
			<content:encoded><![CDATA[<p>These are just a bunch of small things that either I&#8217;ve noticed or have been pointed out to me about Leopard:</p>

<ul>
<li><p>iChat supports IRC-style status updates. You can type &#8220;/me is installing Leopard&#8221; into an IM window, and it will display it in a style similar to iTunes track notification messages, or away message changes, substituting your name for &#8220;/me&#8221;. <cite>(thanks, <a href="http://andyfowler.com/">Andy</a>)</cite></p></li>
<li><p>GOOD: iChat now has a profile editor, catching up with the official AIM client. From 1998. BAD: Lime green and/or white italic underlined text on hot pink backgrounds.</p></li>
<li><p>Because iChat officially supports invisibility now, it no longer displays the &#8216;This person is not online.&#8217; alert when you try to message an offline contact (since it has no way of knowing if they&#8217;re offline or just invisible). Instead, AOL seems to be queueing messages for the next time they log on. That&#8217;s cool, because now you can leave a message for someone, instead of setting up an alert to notify you when they do log on, in hopes that you&#8217;ll still remember whatever it was you wanted to say.</p></li>
<li><p>GOOD: iChat can log into multiple AIM/Jabber accounts simultaneously. BAD: Five simultaneous accounts means five separate buddy lists. Still, slowly catching up to Adium.</p></li>
<li><p>Spaces is awesome, especially on an untethered laptop (meaning: away from additional 20&#8221; display). I never &#8220;got&#8221; virtual desktops before I used this implementation.</p></li>
<li><p>Screen Sharing is nice to have in the OS, but I was very disappointed that it doesn&#8217;t go all <a href="http://www.youtube.com/watch?v=wf_NPeO3As8">full screen and swoopy</a> when used outside of iChat. It also doesn&#8217;t work out-of-the-box with Ubuntu&#8217;s built-in VNC server (Gutsy Gibbon). <i>(<strong>Update</strong>: It works using <a href="http://ubuntu-unleashed.blogspot.com/2007/10/setup-vnc-server-for-ubuntu-gutsy.html">instructions found here</a>.)</i></p></li>
<li><p>Stacks are ugly. Which folder <em>is</em> that, anyway? Also, you have to mouse around with the contextual menu just to <em>actually open the folder</em>. No amount of clicking, double-clicking, or mashing modifier keys helps.</p></li>
</ul>

<p>Some issues that it would be wonderful if plugin developers could address:</p>

<ul>
<li><p>Time Machine should issue a Growl notification when a backup finishes (because it gives me a fuzzy feeling to know that the last hour or two of work is now safe)</p></li>
<li><p>Time Machine needs a Dashboard widget displaying its current status, which is currently only viewable in the system preferences pane.</p></li>
<li><p>Quick Look needs to report on the contents of archives: .zip, .gz, .tar, .dmg, etc. A nice little list of the files&#8217; names and sizes would be extremely helpful (I shall arrogantly assume <s>Aladdin</s> <s>Allume</s> SmithMicro is already working on one for .sit). Also, CSS files&#8217; previews should render as text, like .txt and .php files do.</p></li>
<li><p>iChat should employ some sort of Quick Look-like view for inline images. Once you&#8217;re used to Quick Look in the Finder, it&#8217;s frustrating to hit the space bar and have nothing happen, then remember you have to launch Preview to see that image at a comprehensible size.</p></li>
</ul>

<p>And, as is tradition, I&#8217;ve already got my installation hacked up with a bunch of plugins, some Alpha-quality, some not:</p>

<ul>
<li><p><a href="http://ksuther.com/weblog/">Chax 2.0</a> &#8212; Adds the features Apple forgot</p></li>
<li><p><a href="http://www.daneharnett.com/widemail/">WidescreenMailPlugin</a> &#8212; Makes your Mail window extremely narrow</p></li>
<li><p><a href="http://www.olivetoast.com/MiniMail/">MiniMail</a> &#8212; Like the mini iTunes window, but for Mail</p></li>
<li><p><a href="http://haoli.dnsalias.com/Saft/">Saft for Leopard</a> &#8212; Essentials like type-to-find, double-click-for-new-tab, and undo-tab-closing</p></li>
<li><p><a href="http://millenomi.altervista.org/PlugSuit/">PlugSuit</a> &#8212; Plugin enabler and manager prefpane. Lets you use many regular old InputManagers on Leopard.</p></li>
</ul>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2007/11/notes-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>The Tale of the Wireless Mighty Mouse</title>
		<link>http://danielbergey.com/motion/2007/09/the-tale-of-the-wireless-mighty-mouse/</link>
		<comments>http://danielbergey.com/motion/2007/09/the-tale-of-the-wireless-mighty-mouse/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 18:29:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/2007/09/25/the-tale-of-the-wireless-mighty-mouse/</guid>
		<description><![CDATA[We spent last week in Maryland, visiting with my family. I planned to work some of time we were there, and when I pulled my Mighty Mouse out to use it, I discovered that it had been damaged in transit. Or at least it appeared to be; the side-squeeze buttons must have been messed up [...]]]></description>
			<content:encoded><![CDATA[<p>We spent last week in Maryland, <a href="http://www.flickr.com/photos/octolilly/sets/72157602125143794/">visiting with my family</a>. I planned to work some of time we were there, and when I pulled my <a href="http://www.apple.com/mightymouse/gallery/wired_480.html">Mighty Mouse</a> out to use it, I discovered that it had been damaged in transit. Or at least it appeared to be; the side-squeeze buttons must have been messed up somehow, for they kept registering clicks over and over, zooming my Dashboard in and out quite alarmingly.</p>

<p>So off we trekked to <a href="http://www.apple.com/retail/columbia/">the closest Apple store</a>. I once tried to make my whole setup as wireless as possible (including sound), but found it impractical with the technology of that time. I thought I might start heading that direction again, so I used the opportunity to pick up a wireless version of the Mighty Mouse.</p>

<p>Either I completely forgot my prior experience with MacMice&#8217; <a href="http://www.engadget.com/2004/06/25/the-mouse-bt/">The Mouse BT</a>, or else I figured Apple&#8217;s quality would be better. The Mouse BT was (and presumably still is, since I still have it somewhere) a two-button alternative to Apple&#8217;s then-current <a href="http://www.amazon.com/Apple-Wireless-Pro-Mouse-M9269Z/dp/B0002VQDVW">Apple Wireless Pro Mouse</a>, it suffered from a slight, annoying lag which I suspect affects all Bluetooth mice to some degree. Plus, it <a href="http://gizmodo.com/gadgets/death-to-the-aa/battery-eater-is-more-like-a-battery-vampire-271941.php">ate batteries</a>.</p>

<p>Back to the present: I was initially impressed with Apple&#8217;s new wireless mouse. It looks and works just like the wired version (which is still my favorite mouse, second only to my MacAlly iOptiNet). Except for the lag. The stupid, unpredictable Bluetooth lag. Like, when I move the Bluetooth mouse in small, tight circles, I don&#8217;t even get a consistent circle from the cursor. In my opinion, a wired mouse just feels Snappier&trade;.</p>

<p>So <a href="http://greenville.craigslist.org/sys/431762309.html">I&#8217;m selling it, of all places, on Craigslist</a>. It&#8217;s sort of an experiment. If you live in Upstate SC, or if you want to pay for postage to where you are, feel free to send me $60 for it &#8212;- which is a $10 savings over buying it new, I might add. Enjoy.</p>

<p>Oh, and if anyone wants my old The Mouse BT, you can have that for like $30 ($70 retail in 2004). Same deal with the postage.</p>

<p><b>Update:</b> As <a href="http://www.silfreed.net/">Doug</a> points out, it could be my hardware. This time, I&#8217;m using a <a href="http://www.connectonthenet.com/Toys/Bluetooth_USB.asp">Belkin Bluetooth adapter</a>, since my internal Bluetooth module is fried. However, I was using the built-in Bluetooth with my The Mouse BT back in the day. Coincidence? Maybe. Either way, I can&#8217;t use the mouse now. <img src='http://danielbergey.com/motion/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2007/09/the-tale-of-the-wireless-mighty-mouse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<slash:comments>1</slash:comments>
	</item>
	</channel>
</rss>
