<?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>It&#039;ll Never Fly &#187; apple</title>
	<atom:link href="http://wqoq.com/tag/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://wqoq.com</link>
	<description>Clever... not good, but clever.</description>
	<lastBuildDate>Thu, 20 Oct 2011 19:50:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3-beta1-18972</generator>
		<item>
		<title>Am I Making Myself Clear?</title>
		<link>http://wqoq.com/2010/03/22/am-i-making-myself-clear-5/</link>
		<comments>http://wqoq.com/2010/03/22/am-i-making-myself-clear-5/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 06:57:01 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[cleartype]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">/?p=1322</guid>
		<description><![CDATA[At work last week, it became necessary to develop our own custom message boxes. I wanted the message box to auto-size to its content: an optional image on the left, any number of custom labeled buttons along the bottom, and a label that auto-sizes itself vertically. The message box sizing to fit its content, and [...]]]></description>
			<content:encoded><![CDATA[<p>At work last week, it became necessary to develop our own custom message boxes. I wanted the message box to auto-size to its content: an optional image on the left, any number of custom labeled buttons along the bottom, and a label that auto-sizes itself vertically. The message box sizing to fit its content, and the first two criteria were fairly straightforward. The only real challenge was creating a label control that will auto-size itself vertically. It turns out it&#39;s actually quite easy, once you realize you have to manually take control of its drawing routine. Looking at examples from the web, it was a simple matter of setting up a region that defines the label&#39;s maximum dimensions and then making use of the Graphics.MeasureString and Graphics.DrawString routines in .NET.</p>
<p>But I noticed something amiss between our message boxes and the built-in message boxes. Even with the same font at the same size, our message boxes looked like crap. The text looked like it had been run through some fun house mirror filter. Without getting too technical, it&#39;s apparently a difference between Windows&#39; different graphics interfaces, GDI and GDI+, and resolution-independence. This was something Microsoft noticed with .NET 2.0 and thus came out with a TextRenderer object with methods MeasureText and DrawText which accomplish roughly the same effect.</p>
<p>All this examination of fonts lead me to start looking at ClearType, Microsoft&#39;s name for sub-pixel rendering technology that attempts to make text more legible at small sizes on a discreet display medium like the computer monitor. It&#39;s <a href="http://www.grc.com/cleartype.htm" target="_blank">not a new idea</a>, but it&#39;s only become become prevalent in recent history because of the advent of LCD monitors. Any major desktop operating system will have <a href="http://daringfireball.net/2003/11/panther_text_rendering" target="_blank">some form of it</a> built-in or at the very least have the ability to turn it on. Having said that though, there&#39;s no one right way to accomplish it, because different people perceive things differently. It&#39;s actually quite a <a href="http://www.codinghorror.com/blog/2007/06/font-rendering-respecting-the-pixel-grid.html" target="_blank">polarizing topic</a>. There are <a href="http://www.levien.com/artofcode/fontfocus/compare.html" target="_blank">several different ways</a> to do it, but basically they fall into one of two camps, and it&#39;s all about the pixel grid.</p>
<p>Microsoft&#39;s theory is essentially a kind of &quot;snap to grid&quot; approach; adjust the font so that it mainly fits along discreet points of the pixel grid. The idea being that this increases the &quot;crispness&quot; of the text, thus making it more legible. In theory, this is good, but in practice there&#39;s really one big caveat: unless a font is designed with this in mind, you can end up with some quite jarring results (the fun house mirror effect I alluded to earlier). This is now why you see a whole new rash of fonts coming out of Microsoft, especially designed for ClearType, and quietly replacing their old tried and true fonts with every new Office or Windows product. They themselves know how poorly fonts look with ClearType turned on if they weren&#39;t designed for it (and vice versa, I should point out).</p>
<p>Apple&#39;s approach is more benign. Rather than cram the font into a box, they elect to display it as best they can keeping the font in tact, potentially at the cost of crispness of display. The net effect is fonts rendered in OS X tend to look &quot;smoother&quot; and more appealing to the eye, but also &quot;blurry&quot; to some people. The upside is you don&#39;t need fonts designed especially to work with OS X&#39;s rendering technology. It &quot;just works&quot;.</p>
<p>So it all boils down to personal preference. Frankly, I find fonts rendered with ClearType to look broken, faint, and/or fuzzy (with multihued outlines) and really distracting as I read (though it&#39;s better than turning it off completely). I don&#39;t find fonts rendered in OS X to be blurry at all.  They look more natural and &quot;intact&quot; to me. Now perhaps it&#39;s my monitor at home, which is the new 27&quot; iMac, because when I tried XP with ClearType through VirtualBox it looked way better than it did at work with the same settings (though I could still detect the fuzziness I see, but not as bad). This is even after using the <a href="http://www.microsoft.com/typography/cleartype/tuner/tune.aspx">ClearType Tuner</a>, which helped greatly, but I was still never able to find the perfect setting. Though, if you&#8217;re going to stick with ClearType on XP, I highly recommend it .</p>
<p>Regardless, I&#39;m stuck using XP at work with aliased fonts, or broken/multi-hued fonts in ClearType. This became even more noticeable when I installed Safari 4 and turned on its built-in &quot;Medium&quot; font-smoothing. It really made me want to find a way to turn that on system-wide. Luckily, some Japanese programmers also came to the conclusion that ClearType sucks for displaying their ligatures and decide to do something about it. <a href="http://drwatson.nobody.jp/gdi++/index-en.html" target="_blank">GDI++</a> is a tool that uses the FreeType open source font engine for rendering fonts in Windows, and you can customize it (albeit in a very non-user-friendly way) to your own preference.</p>
<p>Now I&#39;d only advocate using GDI++ if you&#39;re like me, and stuck in an XP world. If you&#39;re on Vista or Windows 7, their latest advances in DirectWrite and Direct2D appear to me to be a vast improvement over anything you can accomplish in XP, either built-in or through a third-party (mind you, I&#39;m basing that strictly on screenshots I&#39;ve seen, having never used Vista nor Windows 7). Unfortunately, Microsoft has decided no to support XP at this time with either of those technologies. But if you&#39;re up for a little tinkering, GDI++ is the way to go. I&#39;ll attach my settings, which attempt to mimc my Mac, once I get back in to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2010/03/22/am-i-making-myself-clear-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linklog for May 08 to May 15</title>
		<link>http://wqoq.com/2008/05/16/linklog-for-may-08-to-may-15/</link>
		<comments>http://wqoq.com/2008/05/16/linklog-for-may-08-to-may-15/#comments</comments>
		<pubDate>Fri, 16 May 2008 06:59:45 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[totry]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[wqoq]]></category>

		<guid isPermaLink="false">http://wqoq.com/2008/05/16/linklog-for-may-08-to-may-15/</guid>
		<description><![CDATA[Stuff I found funny, interesting, just plain disturbing, or for my own personal benefit. Rainer Brockerhoff :: Quay Quay extends the Mac OS X 10.5 (Leopard) Dock to show extended popup menus for most Dock items, including applications, stacks and URLs. Quay also allows you to make folder proxy icons with easily customized icons. Tags: [...]]]></description>
			<content:encoded><![CDATA[<div class="magnolia_post xfolkentry">
<p class="leading_line">Stuff I found funny, interesting, just plain disturbing, or for my own personal benefit.</p>
<h4><a class="taggedlink" href="http://www.brockerhoff.net/quay/">Rainer Brockerhoff :: Quay</a></h4>
<p class='thumbnail'><img width="100" src="http://ma.gnolia.com/bookmarks/ficithechaq/thumbnail/160"></p>
<div class="description">Quay extends the Mac OS X 10.5 (Leopard) Dock to show extended popup menus for most Dock items, including applications, stacks and URLs. Quay also allows you to make folder proxy icons with easily customized icons.</div>
<p class="tags">Tags: <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/apple">apple</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/mac">mac</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/osx">osx</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/utility">utility</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/dock">dock</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/totry">totry</a></p>
<h4><a class="taggedlink" href="http://fernlightning.com/doku.php?id=software:misc:tms">tms [fernLightning]   </a></h4>
<p class='thumbnail'><img width="100" src="http://ma.gnolia.com/bookmarks/hufufox/thumbnail/160"></p>
<div class="description">Allows basic cvs style operations on Time Machine volumes.</div>
<p class="tags">Tags: <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/apple">apple</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/mac">mac</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/osx">osx</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/backup">backup</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/utility">utility</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/unix">unix</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/cli">cli</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/timemachine">timemachine</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/totry">totry</a></p>
<p class='link_to_magnolia'><a href="http://ma.gnolia.com/people/wqoq/bookmarks" title="View all my bookmarks on Ma.gnolia">View all my bookmarks on Ma.gnolia</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2008/05/16/linklog-for-may-08-to-may-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Update: Stylesheet and Fonts</title>
		<link>http://wqoq.com/2008/04/26/site-update-stylesheet-and-fonts/</link>
		<comments>http://wqoq.com/2008/04/26/site-update-stylesheet-and-fonts/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 02:34:08 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wqoq]]></category>

		<guid isPermaLink="false">http://wqoq.com/?p=733</guid>
		<description><![CDATA[Just a quick note to the readers. I&#8217;ve been tweaking the stylesheet for the site over the last few days, making it a little more efficient and readable hopefully (i.e. making it more about the &#8220;C&#8221; than the &#8220;SS&#8221;). There&#8217;s a lot about CSS that still throws me for a loop sometimes. I seem to [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to the readers.</p>
<p>I&#8217;ve been tweaking the stylesheet for the site over the last few days, making it a little more efficient and readable hopefully (i.e. making it more about the &#8220;C&#8221; than the &#8220;SS&#8221;).  There&#8217;s a lot about CSS that still throws me for a loop sometimes.  I seem to have a hard time with styling technologies in general (but that&#8217;s a different story).</p>
<p>I didn&#8217;t have too hard a time of it this go around, I think mainly because of the <a href="http://webkit.org/blog/148/web-inspector-update/">new Web Inspector</a> in Apple&#8217;s web browser, Safari.  DOM/HTML/CSS inspectors in web browsers is not a new idea, and Apple wasn&#8217;t the first to the table with the idea.  In fact, their inspector <a href="http://webkit.org/blog/41/introducing-the-web-inspector/">has been around</a> for a couple of years now, in <a href="http://webkit.org/blog/108/yet-another-one-more-thing-a-new-web-inspector/">various forms</a>.</p>
<p>It wasn&#8217;t just the live-updating of the CSS that helped, but also how it shows the different style rules in play and how they&#8217;re being overruled by others, and lastly the ability to see the final computed style.  It&#8217;s still a little clunky and could use some more features, but it&#8217;s definitely usable the way it is now.</p>
<p>If I didn&#8217;t find Firefox as a whole rather clunky on my G5 (but only on my G5, for whatever weird reason), I&#8217;d probably be using it with <a href="http://www.joehewitt.com/software/firebug/">Firebug</a>, which looks awesome.  Actually, if I was back in the business of coding web pages to make a living, I&#8217;d definitely be using that.</p>
<p>Anyway, if you&#8217;re still reading this, you shouldn&#8217;t really notice too many changes.  I&#8217;ve pretty much kept all the styles the same, I&#8217;ve just reorganized how they cascade in the stylesheet.  The biggest change I just implemented, is switching the main font over to a series of various Lucida variants from Verdana (which I&#8217;ve used for years now, simply because it was different, and Tahoma looked too cramped).  Only problem now is finding the right Lucida variant for the job, as only certain ones came pre-installed with certain OSs or applications at certain times, and some look like utter crap.  But I&#8217;ve done my <a href="http://www.brownbatterystudios.com/sixthings/2006/09/26/there-is-hardship-beyond-arial-verdana/">research</a>, and I think I&#8217;ve chosen the best option that screws all people equally (maybe the Windows people slightly more than others).</p>
<p>I&#8217;ve also started using tags, so at least I now appear to be &#8220;<a href="http://www.oldmansimpson.com/index.php?page=details&#038;episode=3F21">with it</a>.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2008/04/26/site-update-stylesheet-and-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linklog for Apr 12</title>
		<link>http://wqoq.com/2008/04/13/linklog-for-apr-12/</link>
		<comments>http://wqoq.com/2008/04/13/linklog-for-apr-12/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 07:01:49 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://wqoq.com/2008/04/13/linklog-for-apr-12/</guid>
		<description><![CDATA[Stuff I found funny, interesting, just plain disturbing, or for my own personal benefit. Surfin’ Safari &#8211; Blog Archive » Downloadable Fonts WebKit development team announcing downloadable font support for WebKit-based browsers. Tags: apple, web, safari, html, css, fonts, webkit A List Apart: Articles: CSS @ Ten: The Next Big Thing An A List Apart [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Stuff I found funny, interesting, just plain disturbing, or for my own personal benefit.</p>
<h4><a href="http://webkit.org/blog/124/downloadable-fonts/">Surfin’ Safari &#8211; Blog Archive  » Downloadable Fonts</a></h4>
<div>WebKit development team announcing downloadable font support for WebKit-based browsers.</div>
<p>Tags: <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/apple">apple</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/web">web</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/safari">safari</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/html">html</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/css">css</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/fonts">fonts</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/webkit">webkit</a></p>
<h4><a href="http://www.alistapart.com/articles/cssatten">A List Apart: Articles: CSS @ Ten: The Next Big Thing</a></h4>
<div>An A List Apart article talking about using embedded fonts in Web pages.</div>
<p>Tags: <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/web">web</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/html">html</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/css">css</a>, <a rel="tag" href="http://ma.gnolia.com/people/wqoq/tags/fonts">fonts</a></p>
<p><a href="http://ma.gnolia.com/people/wqoq/bookmarks" title="View all my bookmarks on Ma.gnolia">View all my bookmarks on Ma.gnolia</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2008/04/13/linklog-for-apr-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-08-27</title>
		<link>http://wqoq.com/2007/08/27/links-for-2007-08-27/</link>
		<comments>http://wqoq.com/2007/08/27/links-for-2007-08-27/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 12:17:25 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[totry]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/08/27/links-for-2007-08-27/</guid>
		<description><![CDATA[Fix those Aluminium Keyboard woes &#8211; The Unofficial Apple Weblog (TUAW) Fixes the problems with the new Apple keyboards and the Dashboard and Exposé keys. (tags: mac osx apple keyboard hardware howto fix) app4mac.com App for geotagging your photos. (tags: mac software osx freeware photography geography totry)]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.tuaw.com/2007/08/26/fix-those-aluminium-keyboard-woes/">Fix those Aluminium Keyboard woes &#8211; The Unofficial Apple Weblog (TUAW)</a></div>
<div>Fixes the problems with the new Apple keyboards and the Dashboard and Exposé keys.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/osx">osx</a> <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/hardware">hardware</a> <a href="http://del.icio.us/maguirer/howto">howto</a> <a href="http://del.icio.us/maguirer/fix">fix</a>)</div>
</li>
<li>
<div><a href="http://www.app4mac.com/action_freewares.lasso">app4mac.com</a></div>
<div>App for geotagging your photos.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/software">software</a> <a href="http://del.icio.us/maguirer/osx">osx</a> <a href="http://del.icio.us/maguirer/freeware">freeware</a> <a href="http://del.icio.us/maguirer/photography">photography</a> <a href="http://del.icio.us/maguirer/geography">geography</a> <a href="http://del.icio.us/maguirer/totry">totry</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/08/27/links-for-2007-08-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-08-17</title>
		<link>http://wqoq.com/2007/08/17/links-for-2007-08-17/</link>
		<comments>http://wqoq.com/2007/08/17/links-for-2007-08-17/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 12:18:06 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[nostalgia]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/08/17/links-for-2007-08-17/</guid>
		<description><![CDATA[How Apple Keyboards Lost a Logo and Windows PCs Gained One Bit of a history on Apple and keyboards. (tags: keyboard apple) Image:Apple iieb.jpg &#8211; Wikipedia, the free encyclopedia Picture of an Apple IIe. Note the Apple keys. (tags: apple keyboard appleiie) Apple_III_Keyboard_s1.jpg (JPEG Image, 700&#215;411 pixels) Picture of the Apple III. Note the Apple [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.roughlydrafted.com/RD/RDM.Tech.Q3.07/5F38E4EF-76BA-4025-8BAB-BC4B634DC59E.html">How Apple Keyboards Lost a Logo and Windows PCs Gained One</a></div>
<div>Bit of a history on Apple and keyboards.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/apple">apple</a>)</div>
</li>
<li>
<div><a href="http://en.wikipedia.org/wiki/Image:Apple_iieb.jpg">Image:Apple iieb.jpg &#8211; Wikipedia, the free encyclopedia</a></div>
<div>Picture of an Apple IIe.  Note the Apple keys.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/appleiie">appleiie</a>)</div>
</li>
<li>
<div><a href="http://www.old-computers.com/museum/photos/Apple_III_Keyboard_s1.jpg">Apple_III_Keyboard_s1.jpg (JPEG Image, 700&#215;411 pixels)</a></div>
<div>Picture of the Apple III.  Note the Apple keys.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/appleiii">appleiii</a>)</div>
</li>
<li>
<div><a href="http://apple2history.org/museum/images/a2_plusclose.jpg">a2_plusclose.jpg (JPEG Image, 771&#215;473 pixels)</a></div>
<div>Picture of the Apple II+.  Note the lack of any Apple keys.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/appleii">appleii</a>)</div>
</li>
<li>
<div><a href="http://www.folklore.org/StoryView.py?project=Macintosh&amp;story=Swedish_Campground.txt&amp;showcomments=1#comments">Folklore.org: Macintosh Stories: Swedish Campground</a></div>
<div>Brief history of the Command (⌘) key on Apple keyboards.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/history">history</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a> <a href="http://del.icio.us/maguirer/gui">gui</a>)</div>
</li>
<li>
<div><a href="http://lowendmac.com/compact/plus.shtml">Profile: Mac Plus</a></div>
<div>Profile of the Mac Plus.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/macplus">macplus</a>)</div>
</li>
<li>
<div><a href="http://www.tuaw.com/2007/08/16/save-the-open-apple-key-or-should-we/">Save the Open Apple key (or should we?) &#8211; The Unofficial Apple Weblog (TUAW)</a></div>
<div>I, for one, am glad it&#8217;s gone.  I never had one on the Apple II+ or Mac Plus I grew up on, so I&#8217;ve always felt that Open Apple symbol was for wusses.  Do you think maybe that&#8217;s why the Apple III didn&#8217;t sell so well?</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/keyboard">keyboard</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/08/17/links-for-2007-08-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useless computer accessory update #2</title>
		<link>http://wqoq.com/2007/07/27/useless-computer-accessory-update-2/</link>
		<comments>http://wqoq.com/2007/07/27/useless-computer-accessory-update-2/#comments</comments>
		<pubDate>Sat, 28 Jul 2007 05:46:50 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[video cards]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/07/27/useless-computer-accessory-update-2/</guid>
		<description><![CDATA[As I mentioned last time, the fan on my ATI X800 XT is wearing out, causing all kinds of lovely &#8220;derka derka&#8221; noises in my otherwise quiet G5. Thank the gods for my MacBook, which has allowed me to keep the times I power up the G5 to a minimum until I can get a [...]]]></description>
			<content:encoded><![CDATA[<p>As I mentioned <a href="/2007/06/19/useless-computer-accessory-update/">last time</a>, the fan on my ATI X800 XT is wearing out, causing all kinds of lovely &#8220;derka derka&#8221; noises in my otherwise quiet G5.  Thank the gods for my MacBook, which has allowed me to keep the times I power up the G5 to a minimum until I can get a suitable replacement fan.  As I also mentioned, I ordered a Zalman replacement fan, a <a href="http://www.zalman.co.kr/usa/product/view.asp?idx=192&#038;code=013">VF900-Cu</a> to be exact, which came a few days after my initial post.  I went through the whole rigmarole of pulling out the X800 card, swearing upon dropping the screw in the case, disassembling the old fan, cleaning the old goop off, attaching the fancy new thermal heatsinks, applying the new grease, and attaching the new fan, only to find that the handy dandy thumb screws Zalman provides on the underside of the card to tighten everything together, stick out like sore thumbs (pun intended&#8230; this is where you laugh), and because of Apple&#8217;s custom engineering and intent to waste no space, there&#8217;s no room to fit the card back in the only provided AGP slot *and* have those thumb screws on there keeping everything in place (and have the proper power provided, because Apple engineered those out of sight, too), so now I&#8217;m back to my jalopy fan (now catch your breath and marvel at how long that sentence was).</p>
<p>So I packed the Zalman back up, and because I&#8217;m the wuss I am, have made no attempt to return it back.  Who knows?  Maybe it&#8217;ll come in handy in the years to come.  And that&#8217;s where things have been for the last few weeks.  I&#8217;ve just been living off my MacBook, without any of my iTunes being available nor being able to play any video games.</p>
<p>That is, until about an hour ago.  After searching high and low, looking for someplace that&#8217;ll ship an <a href="http://www.arctic-cooling.com/vga2.php?idx=61">Arctic Cooling ATI Silencer 5</a> to Canada (or within Canada), finding mostly shitty mom and pop online stores that couldn&#8217;t ship themselves out of a paper bag, made even harder by the fact that it seems to be discontinued, I ended turning to eBay.  To some of you that might have seemed to be an obvious next step, but I have a strange dislike for eBay, thinking of it more as an exhausting all my other options, snakes on a plane, last resort kind of thing.</p>
<p>Perhaps not unsurprisingly, in spite of all the countless fake eBay spam messages I&#8217;ve received over the years, my account was still alive and well, patiently awaiting the one day when I would once again return to buy <a href="http://www.beastformers.com/checklist.cfm">Battle Beasts</a>, <a href="http://guide.lugnet.com/set/6103_1">Lego®</a>, and <a href="http://www.toyarchive.com/Dungeons&#038;Dragons/Figures/Warduke.html">D&#038;D™ action figures</a>.  To put things in perspective, <a href="http://myworld.ebay.ca/maguirer/">my current profile</a> rating is a 12, collected during a flurry of activity between April 25th and July 17th, 1999.  Yes, 1999.  This is pre-Y2K stuff here, people.</p>
<p>But, alas, this evening&#8217;s visit was unfortunately not to purchase any assortment of molded plastic chunks of tomfoolery, but to find a replacement fan for my graphics card.  And find one I did&#8230; in the UK.</p>
<p>We&#8217;ll see what happens *this* time.</p>
<p>Oh, and the Kensington mouse is working well.  Haven&#8217;t really had a whole lot of time to use it, though, seeing as it&#8217;s to be used with my G5.</p>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/07/27/useless-computer-accessory-update-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-07-22</title>
		<link>http://wqoq.com/2007/07/22/links-for-2007-07-22/</link>
		<comments>http://wqoq.com/2007/07/22/links-for-2007-07-22/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 12:17:21 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/07/22/links-for-2007-07-22/</guid>
		<description><![CDATA[Sci-Fi Hi-Fi: PodWorks it allows you to copy songs from any Mac iPod to any Mac running OS X 10.2 or higher (including Panther) (tags: ipod itunes music apple mac software osx utility)]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.scifihifi.com/podworks/">Sci-Fi Hi-Fi: PodWorks</a></div>
<div>it allows you to copy songs from any Mac iPod to any Mac running OS X 10.2 or higher (including Panther)</div>
<div>(tags: <a href="http://del.icio.us/maguirer/ipod">ipod</a> <a href="http://del.icio.us/maguirer/itunes">itunes</a> <a href="http://del.icio.us/maguirer/music">music</a> <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/software">software</a> <a href="http://del.icio.us/maguirer/osx">osx</a> <a href="http://del.icio.us/maguirer/utility">utility</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/07/22/links-for-2007-07-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-05-26</title>
		<link>http://wqoq.com/2007/05/26/links-for-2007-05-26/</link>
		<comments>http://wqoq.com/2007/05/26/links-for-2007-05-26/#comments</comments>
		<pubDate>Sat, 26 May 2007 12:17:36 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[totry]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/05/26/links-for-2007-05-26/</guid>
		<description><![CDATA[Unplugged UnPlugged is an application to notify when the power cord of the Mac is unplugged or plugged in. Notifications are done using Growl, or with a Alertwindow, when Growl is not installed. (tags: apple battery mac osx software utility totry macbook) The Internet Repository of Free Hidden Information Videos I love watching these what [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.briksoftware.com/products/unplugged/">Unplugged</a></div>
<div>UnPlugged is an application to notify when the power cord of the Mac is unplugged or plugged in. Notifications are done using Growl, or with a Alertwindow, when Growl is not installed.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/battery">battery</a> <a href="http://del.icio.us/maguirer/mac">mac</a> <a href="http://del.icio.us/maguirer/osx">osx</a> <a href="http://del.icio.us/maguirer/software">software</a> <a href="http://del.icio.us/maguirer/utility">utility</a> <a href="http://del.icio.us/maguirer/totry">totry</a> <a href="http://del.icio.us/maguirer/macbook">macbook</a>)</div>
</li>
<li>
<div><a href="http://www.valis666.net/">The Internet Repository of Free Hidden Information Videos</a></div>
<div>I love watching these what I call quackumentaries.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/video">video</a> <a href="http://del.icio.us/maguirer/documentary">documentary</a> <a href="http://del.icio.us/maguirer/interesting">interesting</a> <a href="http://del.icio.us/maguirer/towatch">towatch</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/05/26/links-for-2007-05-26/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>links for 2007-02-28</title>
		<link>http://wqoq.com/2007/02/28/links-for-2007-02-28/</link>
		<comments>http://wqoq.com/2007/02/28/links-for-2007-02-28/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 12:18:12 +0000</pubDate>
		<dc:creator>Bob</dc:creator>
				<category><![CDATA[Linklog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[fashion]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://wqoq.com/2007/02/28/links-for-2007-02-28/</guid>
		<description><![CDATA[Birth Of An Apple Store Watch a live web cam of the new Apple store in Boston being built. (tags: apple webcam boston store video blog) Viktor &#38; Rolf Fall 2007 Ready-to-Wear Collection Slideshow on Style.com I&#8217;ll never understand fashion. Here&#8217;s a &#8220;shower curtain&#8221; line-up. (tags: art weird fashion style)]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div><a href="http://www.ifoapplestore.com/boston/index.html">Birth Of An Apple Store</a></div>
<div>Watch a live web cam of the new Apple store in Boston being built.</div>
<div>(tags: <a href="http://del.icio.us/maguirer/apple">apple</a> <a href="http://del.icio.us/maguirer/webcam">webcam</a> <a href="http://del.icio.us/maguirer/boston">boston</a> <a href="http://del.icio.us/maguirer/store">store</a> <a href="http://del.icio.us/maguirer/video">video</a> <a href="http://del.icio.us/maguirer/blog">blog</a>)</div>
</li>
<li>
<div><a href="http://www.style.com/fashionshows/collections/F2007RTW/complete/slideshow/VIKROLF">Viktor &amp; Rolf Fall 2007 Ready-to-Wear Collection Slideshow on Style.com</a></div>
<div>I&#8217;ll never understand fashion.  Here&#8217;s a &#8220;shower curtain&#8221; line-up. <img src='http://wqoq.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </div>
<div>(tags: <a href="http://del.icio.us/maguirer/art">art</a> <a href="http://del.icio.us/maguirer/weird">weird</a> <a href="http://del.icio.us/maguirer/fashion">fashion</a> <a href="http://del.icio.us/maguirer/style">style</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wqoq.com/2007/02/28/links-for-2007-02-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

