<?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>Red Sweater Blog &#187; Intel</title>
	<atom:link href="http://www.red-sweater.com/blog/category/articles/programming/intel/feed" rel="self" type="application/rss+xml" />
	<link>http://www.red-sweater.com/blog</link>
	<description>Mac &#38; Technology Writings by Daniel Jalkut</description>
	<lastBuildDate>Tue, 17 Jan 2012 22:03:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Cocoa-Java Porting Step 2: Life Support</title>
		<link>http://www.red-sweater.com/blog/281/cocoa-java-porting-step-2-life-support</link>
		<comments>http://www.red-sweater.com/blog/281/cocoa-java-porting-step-2-life-support#comments</comments>
		<pubDate>Tue, 20 Feb 2007 19:04:41 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/281/cocoa-java-porting-step-2-life-support</guid>
		<description><![CDATA[In the first part of this series, Triage, I talked about some of the earliest steps I took in the process of purchasing a Cocoa-Java application and porting it to Objective C. In this article, I&#8217;ll discuss some techniques I stumbled upon for working with a legacy Java code base while gradually migrating functionality to [...]]]></description>
			<content:encoded><![CDATA[<p>In the first part of this series, <a href="http://www.red-sweater.com/blog/271/cocoa-java-porting-step-1-triage">Triage</a>, I talked about some of the earliest steps I took in the process of purchasing a Cocoa-Java application and porting it to Objective C. In this article, I&#8217;ll discuss some techniques I stumbled upon for working with a legacy Java code base while gradually migrating functionality to Objective C. In keeping with the medical metaphors, I&#8217;m calling this segment &#8220;Life Support&#8221; because, while the project in this state is by no means dead, it&#8217;s far from healthy.</p>
<p>
What does it mean for a project to be <em>alive</em>? I&#8217;m adopting a definition of life that is roughly &#8220;as freaking close to original functionality as possible.&#8221; That means the application needs to be launchable. It needs to perform its advertised purpose. Ideally, a project in &#8220;life support&#8221; should be less than a week away from &#8220;shippable&#8221; at any time.
</p>
<p>
The bad news? To maintain this standard, you might put up a ton of scaffolding code  today to keep the application alive, only to tear it down in a few days when the complementary structures in another part of the application have been comparably revised. Some would argue that it&#8217;s better to bid farewell to the life of the application, and commit to a dark period of zero functionality while everything is redesigned and/or ported to the desired specification. This would certainly make for less &#8220;throwaway&#8221; code, but an unfamiliar, non-functioning application scares the living daylights out of me.
</p>
<h3>Clean Code In A Strange Land</h3>
<p>
Back to the specific project at hand. You&#8217;ll recall that during triage, I discovered some cool Objective-C hacks that allowed me to fix the heinous crashing bugs on Intel, while leaving essentially the entire Java code base unchanged. This trick relied on a basic truism of the Cocoa-Java runtime: calling methods on Java objects from Objective-C is relatively easy, while calling back to Objective-C from Java is not.
</p>
<p>
To call a Java class method from Objective-C, you look up the class by name, and send it a message that will, by convention, map to an associated Java class method. When the Java class you&#8217;re messaging is in fact a subclass of a Cocoa class, the messaging can feel extremely natural. For instance, assuming you&#8217;ve got a Java-based Preferences Window controller, this is how you might message it to show its window, from an Objective-C based class:
</p>
<p><pre>
<code>
Class theClass = NSClassFromString(@"PrefsController");
NSWindowController* myPrefs = [theClass sharedInstance];
[myPrefs showWindow:self];
</code>
</pre>
</p>
<p>
Going the other direction, from Java to Objective-C, requires compiled-in bridge code. Much of the Cocoa frameworks from around the 10.2 era is represented in the bridge code provided by Apple. Everything else, including any custom Objective-C classes you&#8217;ve written, would require new bridge code to be generated and linked in to your application. This is apparently still possible, using Apple&#8217;s unsupported and poorly documented &#8220;bridget&#8221; tool. Personally I didn&#8217;t want to touch it. The idea here is to eventually get rid of the Java code completely, so I don&#8217;t want to waste a lot of time making it easier for it to stick around.
</p>
<p>
So here&#8217;s my approach: pragmatically move stuff from Java to Objective-C, keeping in mind that everything I move &#8220;up&#8221; must not be depended on by any other Java code. For example, if I move the Preferences controller from Java to Objective-C, then no longer can any Java code say &#8220;PrefsController.sharedInstance().showWindow(this)&#8221;. So deciding how to proceed will require at least some sense of the dependencies between the various Java classes in my project.
</p>
<p>
I was hoping there might be a nifty way of automatically gathering this information from Apple&#8217;s class diagram tool in Xcode, but it turns out not to be as entirely useful as I&#8217;d hoped. I used a combination of its member variable information, combined with some brute-force global text searches, to roughly plot out a list of all classes, and the <em>Java-based classes</em> that they depended upon. For instance my Java-based application delegate depended upon the Java-based document class, which depended on several Java-based model classes. So I can&#8217;t really port the document or model classes to Objective-C, but I can port the delegate, because no other Java code links directly to it.
</p>
<p>
The idea is to look for &#8220;childless nodes&#8221; in the class hierarchy, and decide whether it is pragmatic to port them no or later.  As classes are migrated up from Java to Objective-C, it reduces the amount of Java code in the project, while keeping the application functionally identical to its former self.
</p>
<p><h3>The Objective-Java Chimera</h3>
<p>Obviously things are never quite so simple. In a real project, dependencies between classes never fall into a perfect tree structure where one can simply pluck classes one-by-one from the top of the tree. In some cases, two classes might mutually depend on one another, in which case it would make sense to port both of them to Objective-C in one fell swoop. Or maybe the vast majority of a class is not dependent on Java, but one small component is. It might make sense to port the class with the caveat that things will not be <em>completely</em> functional, for a short period. The application isn&#8217;t dead! It might be wheezing, but it still <em>basically works.</em>
</p>
<p>
I came up with a technique which I found pretty useful, especially for some of the largest classes in the project. What if a class is half dependent on Java, and half not? It would be great to be able to port just the half of the class that can make it to Objective-C, while postponing the rest for later. Using a &#8220;Chimera&#8221; object that is conceptually part Java and part Objective-C, I was able to achieve this monstrous goal.
</p>
<p>
I applied the technique first to a custom NSView subclass, because I observed a slowness in drawing that I guessed might be sped up by minimizing the amount of cross-bridge messaging and structure conversion that going on every time the view was drawn. In any case, I knew I was not confident about applying Shark measurements to a Java class, and would have a much easier time fine-tuing the performance if all drawing was done in Objective-C. The custom view in this case was a major piece of the application, though. It had its hooks into the model code, and other classes had their hooks into it. And it was relatively huge. It made a great candidate for the Chimera technique.
</p>
<p>
The technique depends on Objective-C&#8217;s ability to forward messages a class doesn&#8217;t implement to another class. So for most practical purposes, an Objective-C class can &#8220;wrap&#8221; another class such that clients of the class think all the work is being done by the wrapper. In this case, we want to sneak a <em>new</em> CustomView class in to the runtime, where the nib file will unarchive and automagically contain an instance of our view instead of the old Java one. Then we&#8217;ll fulfill the contract of the old view class, both by implementing our own methods and by dispatching to it when necessary. Simplifying the situation somewhat, converting a Java class to a Chimera class involves the following steps:
</p>
<p><ol>
<li>Rename the Java class to something new. For instance, &#8220;CustomView&#8221; becomes &#8220;JavaCustomView.&#8221;</li>
<li>Create a new Objective-C class, named after the original. In this case, &#8220;CustomView.m&#8221; is our new source file.</li>
<li>Implement message-forwarding methods. These are where the magic happens.</li>
</ol>
<p>
That&#8217;s the skeletal Chimera. Now you can add whatever methods you like in ObjC and they will automatically take precedence over the Java equivalents. You can even rename the Java equivalents if appropriate, and partly implement methods in ObjC. For instance, you could implement &#8220;awakeFromNib&#8221; such that it first called the Java class&#8217;s &#8220;javaAwakeFromNib&#8221; and then proceeded to do whatever Objective-C based setup was appropriate.
</p>
<p>
So which are the &#8220;message-forwarding methods&#8221; that you need to implement? In my experience, it&#8217;s important to implement respondsToSelector:, methodSignatureForSelector:, and forwardInvocation:. In each case, you&#8217;ll want to  dispatch to the underlying Java object, but only when appropriate. To have an instnce of the Java object around, you&#8217;ll need to add code that, at init time and awakeFromNib time, respectively, instantiates and configures the underlying class. You may also need to do some patching up of IBAction connections or whatnot. The fine-tuning will all be very application-specific.
</p>
<p>
The idea for the &#8220;responds to&#8221; and &#8220;method signature&#8221; methods is you want to return the union of your Objective-C class functionality and the Java class functionality. So first ask <em>your</em> superclass to handle the method, and then only if the result is NO or nil, pass-through to the Java class for further inquiry. The forwardInvocation method will only be reached if nothing in your class could handle the method, so you can just blindly pass these through to the Java class, if it will take them.
</p>
<p>
To make this work, you have to manage the dependencies between the two halves of the Chimera. For instance, it might make sense to maintain redundant copies of the IBAction outlet variables, so that both sides of the world have access to &#8220;outside the class&#8221; dependencies. A pitfall is you might end up storing data in one half of the Chimera and not realizing that the other half is still trying to depend on it. I never said this wasn&#8217;t going to be messy, but it gets the job done.
</p>
<p>
Applying this technique essentially opens the doors wide to staging the port. You can carefully port parts to Objective-C while keeping the application alive. You&#8217;ve got a full-fledged Objective-C class to pass around in &#8220;clean land,&#8221; while Java objects continue to operate as necessary on the Java subset of the class.
</p>
<p><h3>A Healthy Outlook</h3>
<p>In the next and final installment of this series, I&#8217;ll talk about the grunt-work of actually going the final mile, and what we gain by getting there. Porting all those Java classes to Objective-C is fairly easy work, but it&#8217;s tedious. I came up with some tricks that might affect your approach in attacking a similar problem. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/281/cocoa-java-porting-step-2-life-support/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Cocoa-Java Porting Step 1: Triage</title>
		<link>http://www.red-sweater.com/blog/271/cocoa-java-porting-step-1-triage</link>
		<comments>http://www.red-sweater.com/blog/271/cocoa-java-porting-step-1-triage#comments</comments>
		<pubDate>Thu, 08 Feb 2007 17:12:21 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/271/cocoa-java-porting-step-1-triage</guid>
		<description><![CDATA[When I chose to purchase an existing Java-based Cocoa application, I knew I was taking on some risk. Mac OS X still has a technology within it called the Cocoa-Java bridge, which makes it relatively easy for Java classes to participate in the Cocoa runtime, automatically translating objects like arrays and strings to their language-specific [...]]]></description>
			<content:encoded><![CDATA[<p>When I chose to <a href="http://www.red-sweater.com/blog/257/acquisition-roundup">purchase</a> an existing Java-based Cocoa application, I knew I was taking on some risk. Mac OS X still has a technology within it called the Cocoa-Java bridge, which makes it relatively easy for Java classes to participate in the Cocoa runtime, automatically translating objects like arrays and strings to their language-specific counterparts, and allowing for messaging between objects of the two languages. In short, it makes it possible for Java developers to write Cocoa apps just like an Objective-C developer would, only using Java for all of the custom classes in their code.</p>
<p>
Unfortunately, Apple has all but abandoned the technology. The implications for developers are that Cocoa-Java applications cannot easily adopt new APIs, are mysteriously buggy, and are not easily maintained with the latest versions of Xcode. In short, they are a mine-field of opportunities for disappointment and despair.
</p>
<p>
Nonetheless, I decided to buy a Cocoa-Java application, after looking through the existing sources and making best and worst-case scenario predictions. The previous owner had already disclosed some nuanced issues with running on Intel Macs, so I knew there would be <em>some</em> work before I could ship it in good faith. The amount of work would range from &#8220;a few hacks to get it working on Intel as Cocoa-Java&#8221; to &#8220;a complete rewrite in Objective C.&#8221; I planned to port to Objective C eventually, but I hoped to be able to put the product on the market soon with just a few tweaks to make it robust on Intel. Then I could port to Objective C at my leisure while counting all the money.
</p>
<p>
Now that I&#8217;m 95% done with the process of getting the application into shape, I&#8217;m ready to start writing about it. I hope that by explaining the process of evaluating and overcoming obstacles in the process of doing this port, it will establish a reference for others who are stuck doing the same kind of work. I expect there will be many Cocoa-Java parts in the months to come, as support for the legacy technology continues to diminish. Hopefully some of the wisdom I have earned will come in handy for others.
</p>
<p><h3>Evaluate The Source Base</h3>
</p>
<p>
The first thing you&#8217;ll want to do in approaching any port is to look closely at the existing source files. You don&#8217;t need to completely understand what everything does, you just need to see it and take away an impression. At this stage the style and organization of the content should pose as much interest to you as the raw technical functionality. For example, is the object hierarchy conducive to a typical Cocoa design? Is the code well-commented? Does the code exploit language specific features being that will be difficult to replicate in the target language?
</p>
<p>
In my case the code is well-written, well-commented, and since it&#8217;s Cocoa-Java, it already conforms more or less to a conventional Cocoa way of doing things. Lucky me! Nice purchase, Daniel. The only part of the project that doesn&#8217;t directly translate to Objective-C is the notion in Java of a class that &#8220;extends Thread.&#8221; There is no Objective-C class representation of a &#8220;thread,&#8221; so this would obviously take some modest reorganization. But the use of threads was not extensive, so I did not get scard off.
</p>
<p>
It doesn&#8217;t hurt that Java and C are such close siblings, any amount of porting that does need to be done will retain much of its syntactic appearance. In particular, when porting Cocoa-Java to Cocoa-ObjC, probably 80% of the work will fall into two broad categories of concern:</p>
<ol>
<li>Convert syntax().like().this() to [[syntax like] this].</li>
<li>Pay attention to memory management.</li>
</ol>
<p>
The syntax point is a simplification, but really a lot of it could be ported by trained monkeys, or better yet, regular expressions. Anyway, I&#8217;ll talk more about this in a later segment, but suffice to say that the work of straight porting from Java classes to Objective-C classes can be tedious, but is eminently doable.
</p>
<p><h3>Build And Run</h3>
</p>
<p>
Realistically, this step was probably the first thing you did in evaluating the sources. You&#8217;ve got the Xcode project staring right back at you, how can you resist at least trying? The great news is that my product built and run flawlessly, from the minute I unpacked the source archives and installed them on my Mac. The bad news goes back to those aforementioned &#8220;subtle Intel problems.&#8221; Specifically? Crash on print. Crash on window zoom. Ouch.
</p>
<p>
The crashes in either case point to the Cocoa-Java bridge. An infuriatingly cryptic backtrace essentially lets me know that Cocoa-Java was trying to print some log message (perhaps explaining why it was about to crash?) when it bit the dust:</p>
<pre>
<font style="font-size:.8em;">
#0  0x90a53387 in objc_msgSend ()
#1  0xbfffe250 in ?? ()
#2  0x908103a2 in _CFStringAppendFormatAndArgumentsAux ()
#3  0x9080ec8c in _CFStringCreateWithFormatAndArgumentsAux ()
#4  0x925e2a5d in -[NSPlaceholderString initWithFormat:locale:arguments:] ()
#5  0x92604670 in -[NSString initWithFormat:arguments:] ()
#6  0x9672d308 in _BRIDGELog ()
#7  0x9673305d in _BRIDGEMethodImpStructReturn ()
#8  0x93519c6e in -[NSWindow _standardFrame] ()
#9  0x93732d7c in -[NSWindow zoom:] ()
#10 0x9335cd88 in -[NSApplication sendAction:to:from:] ()
#11 0x9335cce1 in -[NSControl sendAction:to:] ()
#12 0x9335ee91 in -[NSCell _sendActionFrom:] ()
#13 0x9335e94c in -[NSButtonCell performClick:] ()
#14 0x97723a6b in Java_com_apple_cocoa_application_NSWindow_performZoom ()
</font>
</pre>
</p>
<p>
Searching the web for help on this failure was pretty fruitless. I downloaded some other applications that I knew to be Cocoa-Java based, and they <em>didn&#8217;t</em> crash on zoom. So what&#8217;s the deal? What is my involvement in this problem.  Through hard work and luck, I narrowed both crashing problems down to a pretty simple thesis:
</p>
<p>
&#8220;Cocoa-Java will crash on Intel if Cocoa asks Java to return an NSRect.&#8221;
</p>
<p>
It might be overstating the case, but those are the two crashing cases in my application. I suspect there is a byte swapping problem or something. If you return an NSRect, you will crash. Sad story, but fixable. The two method calls in question for me are NSWindowController&#8217;s &#8220;windowWillUseStandardFrame:defaultFrame:&#8221; and NSView&#8217;s &#8220;rectForPage:&#8221;.
</p>
<p><h3>Keep It Running</h3>
</p>
<p>
I went to the auto parts store a few months back, around the beginning of autumn. My car had been running hot, and on the verge of overheating all through the summer. I brainstormed with the clerk about what might be wrong, and we finally agreed that it is probably a problem with my thermostat, but could be a problem with the radiator itself. Fine, it&#8217;s settled. I&#8217;ll replace the thermostat first. But even this involves draining the radiator, perhaps removing it, and a lot of other messy stuff. The shop clerk looked outside at the chilling weather and asked me a few pointed questions: &#8220;How old is this car?&#8221; &#8220;Do you drive it a lot?&#8221;, etc. After hearing my responses of &#8220;pretty old,&#8221; and &#8220;not too much,&#8221; he gave his pragmatic verdict: &#8220;It&#8217;s not gonna overheat in <em>wintah</em>, and who knows if it will even run in the spring?&#8221;
</p>
<p>
The point being, it&#8217;s not always the right time to do the right thing. I&#8217;m confident that that my Cocoa-Java NSRect crashes will disappear if I port the application to Objective C. But can I get away with patching the rough spots today? Moreover, won&#8217;t my customers (existing customers of this application) benefit from having the Intel problem solved sooner, rather than later? I decided to attack the problem of crashing NSRect across the bridge.
</p>
<p>
My first thought was to try to gauge exactly why it crashes. If it&#8217;s truly a byte-swapping issue, I could detect the fact that I&#8217;m running on Intel, and perhaps massage the data to suit the bridge. The major downside to an approach like this is you&#8217;re now at the mercy of Apple leaving the bug in place. In the unlikely event that Apple shows the bridge some love, and fixes the crash, where does that leave me? Now I&#8217;m byte-swapping myself into the same crash some ways down the road.
</p>
<p>
The solution I came up with is simple albeit somewhat of a hack. It&#8217;s the duct tape around the muffler, if you will. If you think about the crashing problem with returning an NSRect, an obvious solution would be for Java to <em>not return</em> an NSRect. To work around this problem, I modified the affected Java classes to return NSString instead of NSRect:</p>
<pre>
<font style="font-size:.8em;">
public String javaSafeStandardFrame(theWindow, defaultFrame)
public String javaSafeRectForPage(pageNumber)
</font>
</pre>
</p>
<p>
Now the program doesn&#8217;t crash. Of course, it doesn&#8217;t zoom or print correctly, either. The problem of course is that Cocoa doesn&#8217;t know to call these &#8220;javaSafe&#8221; versions of the methods, and even if it did, it wouldn&#8217;t know to expect a string in return.
</p>
<p>
This is where the hacking comes in to play. The fact that I&#8217;m working with a Cocoa-Java project doesn&#8217;t mean I can&#8217;t <em>also</em> have Objective-C classes in my project. In fact, at runtime the majority of classes in memory are Objective-C, coming from Apple&#8217;s frameworks. What&#8217;s to keep me from selectively implementing some classes of my own to help soothe this problem? Using a custom class and the powerful technique of class posing, I&#8217;m able to effectively patch out standard versions of the above methods, and replace them with code that calls through to Java, gets a string representation of the rect, and converts it to NSRect for the benefit of Cocoa. Since the NSRect is now <em>returned from Objective C</em>, there&#8217;s no more crash. In my main.m source file:</p>
<pre>
<font style="font-size:.8em;">
[RectSafeWindowController poseAsClass:[NSWindowController class]];
</font>
</pre>
</p>
<p>
And in my custom NSWindowController implementation:</p>
<pre>
<font style="font-size:.8em;">
- (NSRect)windowWillUseStandardFrame:(NSWindow *)theWindow defaultFrame:(NSRect)newFrame
{
  // Your java class instead of "JavaController"
  Class myJavaClass = NSClassFromString(@"JavaController")
  if ([self isKindOfClass:myJavaClass])
  {
    NSString* goodRectString = [self javaSafeStandardFrame:theWindow :newFrame];
    return NSRectFromString(goodRectString);
  }
  else if ([super respondsToSelector:@selector(windowWillUseStandardFrame:defaultFrame:)])
  {
    return [super windowWillUseStandardFrame:theWindow defaultFrame:newFrame];
  }
  else
  {
    // Just return the default
    return newFrame;
  }
}
</font>
</pre>
</p>
<p>
A similar approach was used in the NSView override of rectForPage.</p>
<h3>Take Stock</h3>
<p>Now that my application builds and runs without crashing, it&#8217;s time to ship it, right? Possibly, but in this case I chose not to. Although the application has a mature feature set and benefits from years of evolutionary design, it has become a little bit dated in some ways that I grew increasingly uncomfortable with.
</p>
<p>
Now that the application is running crash free, I can breathe a sigh of relief. I <em>could</em> ship this thing, but I choose not to. I want to be prudent about what I change for the &#8220;1.0 relaunch,&#8221; but there are some nuances of the appearance and performance that need tweaking. And to comfortably tweak those things, I&#8217;m going to have to <em>selectively port</em> some of the Java classes to Objective C. But after all that hard work getting the application to &#8220;shippable,&#8221; I want to be careful not to backslide too much. Tune in next time for a detailed look at migrating Java classes to Objective C without disrupting the overall functionality of the application.
</p>
<p>
Continue reading &#8211; <a href="http://www.red-sweater.com/blog/281/cocoa-java-porting-step-2-life-support">Step 2: Life Support</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/271/cocoa-java-porting-step-1-triage/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>iPhone Not Intel</title>
		<link>http://www.red-sweater.com/blog/256/iphone-not-intel</link>
		<comments>http://www.red-sweater.com/blog/256/iphone-not-intel#comments</comments>
		<pubDate>Wed, 10 Jan 2007 18:00:19 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/256/iphone-not-intel</guid>
		<description><![CDATA[Intel has confirmed that the iPhone does not use their chips. I&#8217;m inclined to agree with the prevailing wisdom that the device uses some kind of ARM chip, which is suitable for such applications, and also used in Apple&#8217;s iPods. But what if &#8220;not Intel&#8221; means AMD? I don&#8217;t know enough about the embedded market [...]]]></description>
			<content:encoded><![CDATA[<p>Intel <a href="http://www.investor.reuters.com/business/BusNewsArticle.aspx?ticker=AAPL.O&amp;storyid=201846%2b10-Jan-2007%2bRTRS&amp;symbol=AAPL.O&amp;target=%2fbusiness%2fbuscompany%2fbuscompnewsset%2fbuscompnews%2fbuscompnews&amp;page=busnewsarticle">has confirmed</a> that the iPhone does not use their chips.  I&#8217;m inclined to agree with the prevailing wisdom that the device uses some kind of ARM chip, which is suitable for such applications, and also used in Apple&#8217;s iPods. </p>
<p>
But what if &#8220;not Intel&#8221; means <a href="http://www.amd.com/us-en/">AMD</a>?   I don&#8217;t know enough about the embedded market to even know whether AMD makes compelling chips for such purposes. (But my dad might).
</p>
<p>
Could Apple be hush-hush about the chips because they&#8217;re using the iPhone as a relationship-starter with AMD?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/256/iphone-not-intel/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Compete With What?</title>
		<link>http://www.red-sweater.com/blog/167/compete-with-what</link>
		<comments>http://www.red-sweater.com/blog/167/compete-with-what#comments</comments>
		<pubDate>Thu, 03 Aug 2006 15:49:40 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/167/compete-with-what</guid>
		<description><![CDATA[Paul Kafasis from Rogue Amoeba made some interesting observations about the possible impact virtualization could have on Mac developers. Virtualization is technology, rumored to be present in the forthcoming 10.5 release of Mac OS X, that would allow Windows applications to run natively and transparently in the Mac environment. Paul&#8217;s thoughtful analysis reveals that Mac [...]]]></description>
			<content:encoded><![CDATA[<p>Paul Kafasis from <a href="http://www.rogueamoeba.com/">Rogue Amoeba</a> made some <a href="http://www.rogueamoeba.com/utm/posts/Article/WWDC-Predictions-2006-08-03-10-00">interesting observations</a> about the possible impact virtualization could have on Mac developers.</p>
<p>
Virtualization is technology, rumored to be present in the forthcoming 10.5 release of Mac OS X, that would allow Windows applications to run natively and transparently in the Mac environment. Paul&#8217;s thoughtful analysis reveals that <em>Mac users</em> will benefit because of the increased flexibility, and <em>Windows developers</em> will benefit because of the new potential market. Where does that leave <em>Mac developers?</em> I definitely think Apple should spend at least a few hundred thousand dollars researching this on our behalf. <em>Protect us, Apple!</em>  Still, the threat of Windows developers suddenly having access to our customers doesn&#8217;t scare me too much.
</p>
<p>
Such an outcome wouldn&#8217;t increase the competition so much as the noise. Look at the situation today on the Mac. It&#8217;s relatively easy (in my not-so-humble, unproven opinion) to identify products on the market that can be vastly improved upon, put in the hours to build a better solution, and market it directly to the customers. The problem even today is not &#8220;being better than the competition,&#8221; but reaching the customers who give a damn about your being better. This basic rule won&#8217;t change with an influx of new developers.
</p>
<p>
Take some popular class of application as an example: the 2D vector art editor application. There are at least 10, probably 100 of these apps available on the Mac, and they range in quality from developer examples like Sketch to expensive commercial apps like Illustrator.
</p>
<p>
Of these 10 or 100 existing apps on the Mac today, I&#8217;m guessing from my experiments that only about 2 or 3 are actually really useful. Therefore the competition pool is only 2 or 3 products, regardless of how much noise there is.
</p>
<p>
Now with virtualization we&#8217;d probably get 1 or 2 additional &#8220;really useful&#8221; apps, although their usefulness would probably be diminished by their Windows-esque UI. Anyway we&#8217;d also get probably 10-times as many &#8220;non-competitors.&#8221; More noise. These products attract users&#8217; attentions but don&#8217;t ultimately satisfiy them. So they make it harder for the user to identify your working product.
</p>
<p>
On a side-note, one could consider the opening up of Mac OS X to linux/unix as a test-run of such a strategy. Essentially for the past 5 years, Linux developers have had open access to the vast installed base of Mac users, but they haven&#8217;t made much headway in driving Mac developers out of business.  I think it&#8217;s reasonable to assume that if Mac users are not interested in free alternatives that don&#8217;t cut muster, then they will be even harder to woo with paid ones.
</p>
<p>
Bottom line? Optimistically I think that better products will win. The problem is cutting through the noise, and technology seems to be on our side. The growing popularity of blogs and &#8220;peer editorializing&#8221; seems like a natural match for promoting quality products and thereby elevating them from among the noisy ineffective ones.  To the Mac developer&#8217;s advantage, there are already complex systems in place for distributing Mac propaganda. The online news sites and download trackers that many Mac users frequent are going to be hesitant to embrace and recommend lackluster Windows software &#8211; because they themselves are Mac users who know the benefits of native software.
</p>
<p>
Even if we assumed that the best Windows developers could acquire Mac style, and truly understood what Mac users want, their Windows apps will always be at a disadvantage <em>on the Mac platform</em>. The trend from Apple is increasingly to differentiate Mac OS X by adding technologies with a system-wide impact. Spotlight integration, for instance, will likely not come for free with a &#8220;virtualized&#8221; Windows app. Furthermore, the development tools and APIs from Apple are getting more and more powerful all the time, in ways that are precisely tuned to work well with differentiating features of Mac OS X. It wouldn&#8217;t just be difficult for Windows developers to try to compete with this, it would be a colossal waste of their time!
</p>
<p>
It&#8217;s easy for me to be cavalier about this because I don&#8217;t yet make my living from direct software sales, but I&#8217;m inclined to think that Windows developers, with their platform-inappropriate styles and habits, will have a hard time competing against Mac developers &#8211; even the worst of us.
</p>
<p>
Bring on the crappy software! It can only make ours shine brighter.
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/167/compete-with-what/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The Quiet Mac</title>
		<link>http://www.red-sweater.com/blog/159/the-quiet-mac</link>
		<comments>http://www.red-sweater.com/blog/159/the-quiet-mac#comments</comments>
		<pubDate>Fri, 14 Jul 2006 15:21:40 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/159/the-quiet-mac</guid>
		<description><![CDATA[This post is part of my MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! It is with a [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of my <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
It is with a great sigh of relief that I announce the likely <em>end of my MacBook Pro saga</em>.
</p>
<p>
As recently as a few weeks ago, I expected that the end of this saga would take the form of finding a buyer on Craigslist to take the thing off my hands, but events turned in a more positive direction as I patiently worked my way through the Apple support system.
</p>
<p>
Eventually I ended up in the hands of a thoughtful representative with a lot of discretion over how best to handle my situation. The amount of bad luck I had endured really accumulated over the past few months. The defects themselves. The repeated failures to fix them. The bad Apple store rep. The slightly mutilated MBP case. Oh, I might have forgotten to mention that. On my last repair shipment, the techies must have put it back together in a hurry, as they left a gap in the case where it meets the DVD-ROM area. I mentioned this in passing to one rep, where it was apparently added to my record.
</p>
<p>
Finally, after apparently reviewing the list of everything wrong with the Mac and my experiences so far with Apple, the representative offered to send me a replacement. I was wary, at first. Just go through this all again? I&#8217;d rather have somebody <em>good</em> at Apple take an honest look at it and replace the parts that are busted. But then I heard <a href="http://blogs.zdnet.com/Apple/?p=235">rumors</a> of the new MacBook Pro logic board, and couldn&#8217;t help but hope that this meant a happy outcome was in sight. I asked my Apple representative if a replacement would be &#8220;fresh off the line.&#8221; I didn&#8217;t want some replacement from March or April, that happened to be sitting in some Cupertino stockpile (as if). He could only say that they tended to be shipped out as fast as they could be made. So I agreed &#8211; let&#8217;s spin the wheel.
</p>
<p>
The new MacBook Pro arrived this morning and what can I say? The thing is dead silent. <em>You can trust me, I know what the freaking pain sounds like.</em> Yes Virginia, there <em>is a quiet MacBook Pro</em>. Impressively, I could not even hear a noticeable sound difference with my ear <em>pressed up to</em> the machine while tweaking the slider on QuietMBP. Actually, after plugging the power in I can hear the slightest &#8220;sizzle&#8221; if I put my ear to the plug where it&#8217;s plugged in. And this might be only while it&#8217;s charging. Anyway I don&#8217;t think it&#8217;s loud enough for me to hear from any normal distance, and I bet this amount of sound is present in almost any laptop, ahem, notebook. So after months of negativity it feels good to return to my initial state of just being impressed with the MacBook Pro. Just about everything is &#8220;amazingly right.&#8221;
</p>
<p>
Even the surface temperature is slightly cooler than my old MBP. I&#8217;m transferring over from the old one right now, so both machines have been turned on the same length of time, and roughly (I assume) doing the same amount of activity. The old MBP&#8217;s &#8220;hottest spot&#8221; (above the function keys) is still so hot that I <em>cannot</em> leave my fingers there for more than a few seconds. The new one is still hot there, but I can leave my finger there indefinitely. Major improvement, even if ideally they could cool things down even more. To be honest, the heat is still frustrating, especially in the summer, but if it&#8217;s <em>just the heat</em>, then I&#8217;ll shut my whining mouth for a while.
</p>
<p>
I know at least some of you have been holding off on a new MacBook Pro because of things I&#8217;ve said about them here. I&#8217;m happy to have helped you avoid a costly and possibly frustrating mistake. But I don&#8217;t want Apple to lose customers, goodwill, or sales. I&#8217;m a stock holder, for crying out loud! Now that I can happily endorse this (please, nothing go wrong in the next few days), I say <em>get out your credit card and join us!</em></p>
<p><strong>Update:</strong> I&#8217;ve been using the new MBP for several hours and my inital impressions are holding up. It&#8217;s quiet as a mouse. I love it!  But just to show that I&#8217;m not completely devoid of crankiness, I have two minor complaints. First, the space bar makes a slight squeaking noise every time I press it. This is definitely new, but it&#8217;s so much nicer than the whine. Maybe I can fix it with a little well-placed graphite or something. Second, the lid closes in a way such that unlatching it is slightly clunky. I have to sort of press the button in extra far to get it to pop open. Overall, very minor inconveniences. How minor? There&#8217;s no way in hell I&#8217;ll risk ruining the happy state of my MBP right now by bringing it in for these teeny issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/159/the-quiet-mac/feed</wfw:commentRss>
		<slash:comments>83</slash:comments>
		</item>
		<item>
		<title>MBP: Good and Bad Apples</title>
		<link>http://www.red-sweater.com/blog/138/mbp-good-and-bad-apples</link>
		<comments>http://www.red-sweater.com/blog/138/mbp-good-and-bad-apples#comments</comments>
		<pubDate>Wed, 31 May 2006 18:46:47 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/138/mbp-good-and-bad-apples</guid>
		<description><![CDATA[This post is part of my MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! Anybody who&#8217;s been following [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of my <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
Anybody who&#8217;s been following my MacBook Pro saga knows that I&#8217;ve had plenty to complain about over the past few months. Heck, I&#8217;m sick of hearing me complain. This entry is a compromise: I&#8217;ll both complain and rejoice about a few Apple employees I have had the pleasure and displeasure of working with over the past couple weeks.
</p>
<p><h4>Part 1: Good Apple</h4>
</p>
<p>
After the disappointment of sending my MBP in for repair, being without it for a week and a half, and then getting it back only to discover that <em>nothing had been fixed</em>, I was reluctant to send it in again. I ended up getting in touch with AppleCare again and ultimately being referred to Apple Customer Relations, which is a great service Apple provides for customers who &#8220;fall through the cracks&#8221; of ordinary customer care. Basically when you have a bad enough experience, they assign a customer relations person to keep an eye on your case and work with you through (hopefully) an ultimately positive resolution.
</p>
<p>
Apple Customer Relations is awesome! From the first call with my agent, she made it clear she was listening to me and understood my concerns. There were still very clear boundaries. No, Apple wasn&#8217;t going to send me a new computer. No, there are no loaners while the machine is in for repair. No, Steve Jobs will not take me to Disneyland. But within those boundaries she worked with me to try to find compromises that might make my life easier. She never questioned the legitimacy of my complaints (part of this is because they are not technically trained, but part of this is clearly because it&#8217;s bad business to tell your complaining customers that they are wrong).
</p>
<p>
I&#8217;m still so frustrated about the whole ordeal with my MacBook Pro, but the fact is, Apple is still talking to me. Apple is still trying to help. They are a big company and as such have secret support agendas, and have to avoid admitting when something is wrong even if they know it. Etc., etc., etc. But the are <em>many, many companies</em> where somebody with my number and severity of complaints would simply fall off the end of the support line. We&#8217;re sorry. Goodbye. I am at every step of the way <em>afraid</em> that I may be near the end of my support rope, but so far Apple has surprised me with their willingness to keep talking and acting. (While I&#8217;m handing out kudos, another company I&#8217;ve dealt with recently, <a href="http://www.tomtom.com/">TomTom</a>, has excellent support on par with Apple&#8217;s).
</p>
<p>
When I spoke with my Customer Relations representative on May 23 (two days after my birthday!), I agreed to try bringing my computer into the local Apple Store. The idea was that instead of making me wait for the shipping to and from Texas for another round of repairs, I would bring it into the store where a capable technician could do most if not all of the part swapping that a specialist in Texas might do. I was skeptcial, but it was worth a shot. She comforted me by letting me know that she would be watching the progress and follow up with me about the results of the experience.
</p>
<p>
I wanted to avoid giving up my laptop for another week or more, so I went for it. I decided it was worth it to go along with this idea because it was virtually risk-free, and the time it would take to zip over to the Apple store was much less than the time it takes waiting for DHL to arrive, transit time, etc.
</p>
<p><h4>Part 2: Bad Apple</h4>
</p>
<p>
The worst part of any customer support ordeal is the stress of wondering whether you&#8217;ll make yourself clear. Whether they&#8217;ll respond politely to you. Whether they&#8217;ll understand what&#8217;s really going on. And whether they&#8217;ll actually agree with you that it needs to be fixed.
</p>
<p>
I took a deep breath on the afternoon of May 24, mentally prepared to make my case as convincingly as possible. The Apple store is the worst place in the world to complain about noise problems, because the blasting music makes every single machine in the store sound absolutely dead silent. (For any noise complaint, they take your machine into the back room where you can&#8217;t demonstrate to them how the noise varies or under what circumstances it most affects you). I knew I was up against a tough challenge, but I tried to be optimistic that I would get a Good Apple.
</p>
<p>
I checked in at the Genius Bar and waited with my buzzer. This was cool. It&#8217;s like waiting for a meal at Chevy&#8217;s or something. It went off in just a few minutes after I had arrived. So far, so good! Nice work, Apple Store. I met my &#8220;Genius,&#8221; who greeted me with a sort of contemptuous glare combined with a saccharine mumble of &#8220;What can we do for you today?&#8221; I explained that I had been sent by customer relations, that there were a few problems of varying priorities, and that the machine had already been sent in once for repair. I sort of waited for him to make the next move, expecting that he might want to glance at my record in his computer, since it showed a lot more information than I could reliably reiterate all at once. &#8220;Why don&#8217;t you just tell me what&#8217;s going on?&#8221; he said sort of impatiently.
</p>
<p>
OK, I plopped my MBP down on the counter and opened it up. I began explaining that I was most surprised that at least the brightness-related buzzing wasn&#8217;t fixed, because it&#8217;s pretty well-established that this is due to an inverter board problem. As I was talking he acted like I wasn&#8217;t there, and raised his black bic pen towards my computer. Using the ink-side tip of the pen, he reached into a corner of my screen&#8217;s display and flicked out a piece of dust or something. What are you doing to my computer, you freak?!  I paused and when he was done sort of continued explaining. He seemed pretty bored. He finally said something along the lines of what did I expect for being on the &#8220;bleeding edge?&#8221;  I put bleeding edge in quotes because it&#8217;s the only part I can guarantee was verbatim a quote from his mouth. He basically echoed that lame user sentiment that you &#8220;get what you pay for&#8221; when you choose to buy an early rev product. An Apple representative! Telling me that I was on <em>his company&#8217;s</em> bleeding edge!
</p>
<p>
I got a little bit emotional because, after working so many years at Apple, I hate seeing Apple store employees behave in a way that reflects poorly on the company. I explained to him (probably to his great boredom) that I didn&#8217;t feel like it was appropriate to classify me (and thousands of others) who made early, strong commitments to Apple&#8217;s new architecture as &#8220;bleeding edge.&#8221; Needless to say he didn&#8217;t see the error of his ways at all and insisted that you&#8217;ve got to expect a few things to be wrong in a first revision of a machine.
</p>
<p>
That was the beginning of a relationship that only went downhill. He finally agreed to take my MBP into the &#8220;back room&#8221; to listen to the noises for himself. He came back and announced that &#8220;there&#8217;s nothing wrong with the inverter and the CPU whine is within spec.&#8221; He handed me my MBP and sort of waited for me to leave, I suppose. I wanted more clarification. Nothing wrong with my inverter? Didn&#8217;t you hear the noise? He said that there was no inverter noise and what I was hearing was the CPU whine coming from different sides of the computer.  Well, that&#8217;s totally inconsistent with my understanding of the inverter noise. Since it goes away and comes back with the brightness, I had to assume it&#8217;s inverter-related. In my pessimism I had more-or-less expected the CPU whine complaints to be dismissed, but the inverter noise! I know people who have had this one fixed! At <em>least fix this</em>, Apple. You know how, even!
</p>
<p>
Another minute or two of trying to get him to agree that we were talking about the same thing. I suggested that maybe I needed to let the machine warm up before the noise is loud enough. It&#8217;s difficult because, as I said I&#8217;m trying to get him to acknowledge unacceptable noises while Gwen Stefani is blaring on the stereo. He agrees that if I want to &#8220;hang out for 20 or 30 minutes&#8221; then he&#8217;ll listen again after it warms up.
</p>
<p>
Speaking of warming up, I thought I&#8217;d ask about the heat issue before I lost his attention, and that lasted all of about 15 seconds. &#8220;If the MBP gets too hot, it will shut down. If it&#8217;s not shutting down, there&#8217;s nothing wrong with it.&#8221; Well, that&#8217;s an interesting way of looking at it. Let&#8217;s say the maximum heat is 100C. By the Apple Store&#8217;s logic that means my computer can be at 99C all the time, while somebody else&#8217;s machine is at 60C all the time. We&#8217;re both &#8220;in spec,&#8221; but my hands are forming heat blisters.
</p>
<p>
So I hang out for 20 or 30 minutes, and then go back to the podium. While I&#8217;m waiting  another MBP owner comes in, and starts chatting with another Genius. He&#8217;s complaining about the heat. The Genius he got is a lot more friendly and explains that unfortunately they can&#8217;t do any testing here in the store.  They would have to send it away for testing, and that would take a week or two. The customer seemed somewhat satisfied by the response, thanked the Genius, and left the stoer.
</p>
<p>
I hang out for another 15 minutes or so while he refuses to acknowledge that I&#8217;m there. Finally, when another Apple Store employee asks if I&#8217;m being helped, I say that I&#8217;m &#8220;just waiting for him to have a free moment.&#8221; Five minutes later he is back in the &#8220;quiet room&#8221; (who knows how quiet even that room is) with my MBP.
</p>
<p>
He emerges. Hands me my MBP, and declares, &#8220;Both I and a coworker agree that the noise is within spec.&#8221; OK. You and a coworker. So this was a hint to me that the &#8220;spec&#8221; might be a subjective test. I tried to ask whether there was some mechanical test they perform, or whether it&#8217;s just based on their own personal hearing. He looked at me sternly and said &#8220;I can&#8217;t tell you, OK. I&#8217;m sorry.&#8221;  He had a habit of saying &#8220;OK&#8221; habitually in that patronizing way, almost like the &#8220;mmkay&#8221; guy on South Park.
</p>
<p>
All this time I had been on my best behavior. I really tried to avoid calling him on his rudeness and refusal to listen carefully to my complaints. But now that the end was nigh I took the opportunity to give a little rant about how I didn&#8217;t think the machine as-is meets the criteria of a professional, $2500 machine. I complained that if Apple&#8217;s spec allows user problems to be dismissed so cavalierly, then it was a real shame for the company and its customers. At this point a quiet young woman who had been sitting at the Genius Bar for a few minutes turned to me and said empathetically, &#8220;I had six stuck pixels. They said the limit was 7.&#8221;
</p>
<p>
I commiserated with the woman for a minute and wished her luck. At least she has a <em>number</em> to be angry about. I just got an arrogant jerk who can&#8217;t even convince me that he understands what the problems with my machine are, let alone if or why they are &#8220;within spec.&#8221;
</p>
<p><h4>Part 3: Good Apple</h4>
</p>
<p>
My visit to the Apple Store almost ruined my day. I went to the store straight after picking up one of my best friends from San Francisco, who was in town for a few days. The last thing I wanted was to put a damper on his visit just because my crappy computer was never going to be repaired. He is a Mac fanatic and was just excited by the fact that we&#8217;d been in the Apple Store long enough that he&#8217;d authored a blog entry in the time he was waiting. &#8220;My first blog entry written in the Apple Store!&#8221; he said proudly as he shut his (quiet, cool, lovely) iBook G4 up and packed it in his bag.
</p>
<p>
I wasn&#8217;t looking forward to my next call with customer relations. As nice as she was, she had hinted that if the Apple Store decides there&#8217;s nothing wrong, then there might be nothing she could do. I had built myself up over the past few months to perhaps ultimately have to live with some flaws, but the screen buzzing was definitely <em>not one of them</em>. Pizza for dinner and watching episodes of <a href="http://www.bbc.co.uk/comedy/theoffice/">The Office</a> made things quite a bit better. I didn&#8217;t even take the MBP out of its case.
</p>
<p>
The next day, I got a voice mail on my cell phone while I was at the gym. It was my customer relations agent, and she sounded concerned. &#8220;I just wanted to check in because I&#8217;m looking at your case and I don&#8217;t see any repair ticket. I hope everything went OK at the store yesterday.&#8221; I called her back on Friday but got her machine. I said I was disappointed with just about every outcome of the store visit. Both the treatment from the &#8220;Genius&#8221; and the ultimate outcome. At this point I figured it might be the end of the road, so I said &#8220;I guess I might be out of luck, but call me back if you want to hear more about my experience at the store.&#8221;
</p>
<p>
Several days passed. It was Memorial Day weekend and all that. I was pretty sure I would hear from her again, but also slightly concerned that maybe that was it. Today she called and asked how I was doing. &#8220;I&#8217;m doing pretty good,&#8221; I said. I always say that because in reality, I am doing pretty good. The MBP can&#8217;t take that away from me! She asked me to tell her what happened at the store. So I basically told her everything that I&#8217;ve typed in this blog entry, minus the part about pizza and The Office.
</p>
<p>
To my great satisfaction, she agreed that the store employee had behaved inappropriately. I guess if nothing else, the fact that I got a turd for a Genius may have helped me gain some empathy from the relations agent. She offered to go back to &#8220;Plan B&#8221; which is me sending the machine back to Texas for another round of repairs. At this point I&#8217;m exhausted, don&#8217;t want to see another Genius for a long time, and would <em>really like to have that buzzing fixed</em>. If the whine doesn&#8217;t get fixed, I&#8217;ll just have to come to some compromise of running QuietMBP and losing battery life. But the buzzing, and if at all possible, the heat. Those fixed would be <em>effing fantastic!</em> As my frustration has risen over this whole affair, my expectations have plummeted accordingly.
</p>
<p>
She explained that she was going to transfer me to a &#8220;product specialist&#8221; who is a kind of hardcore customer service agent who works specifically with a particular kind of machine (I think). They want me to talk to him so he can get very specific concrete details into the problem report, and so he can trigger an &#8220;engineering seizure&#8221; of the machine if it sounds like it will be useful as a case study. She again assured  me that she&#8217;ll be following the progress of the repair.
</p>
<p>
The product specialist was polite and empathetic. He also seemed to know what he was talking about, and didn&#8217;t pull that &#8220;I never heard of that before&#8221; crap that some agents do when hearing about any problem whatsoever. He was everything a good agent should be, which isn&#8217;t asking so much.
</p>
<p>
He asked me some very specific questions about the problems. Even took seriously the CPU whine complaint. I told him I was pessimistic about it getting fixed but I know that some people have MBPs that are &#8220;much quieter than mine.&#8221;
</p>
<p>
As usual, we&#8217;ll see how it goes.
</p>
<p>
Score for the past two weeks: Good Apples &#8211; 2; Bad Apples &#8211; 1. Stay tuned for more (but hopefully not too many more!) details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/138/mbp-good-and-bad-apples/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>MBP: I Need a Hero</title>
		<link>http://www.red-sweater.com/blog/124/macbook-pro-noise-i-need-a-hero</link>
		<comments>http://www.red-sweater.com/blog/124/macbook-pro-noise-i-need-a-hero#comments</comments>
		<pubDate>Thu, 20 Apr 2006 14:27:31 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/124/macbook-pro-noise-i-need-a-hero</guid>
		<description><![CDATA[This post is part of the MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! The good news is [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of the <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
The good news is my MacBook Pro is coming back to me. It left Texas at around 6:00AM this morning. The bad news is I don&#8217;t know whether it&#8217;s fixed or not. In any case, I&#8217;ll be happy to move on to the next phase of this process. If it&#8217;s still busted, then I&#8217;ll be pushing for a refund or (if they want to gamble on it) a replacement. While it&#8217;s not very encouraging that new owners of MacBook Pros are still reporting the CPU whine, I have heard that it is at least quieter on some than on others. Perhaps quieter would be marginally acceptable to me. Otherwise, I&#8217;ll wait and hope that the MacBook or a later Pro edition is more suitable for &#8220;quiet work.&#8221;
</p>
<p>
John Siracusa over at FatBits wrote a <a href="http://arstechnica.com/staff/fatbits.ars/2006/3/4/3059">great article</a> a month or so ago, validating the the noise complaints people are having with Apple&#8217;s recent products. Today he <a href="http://arstechnica.com/staff/fatbits.ars/2006/4/20/3670">passes along</a> information from one of his astute readers about a job opening at Apple for an analog engineer. The job listing was posted in February, mere months after the final designs on the MacBook Pro must have been completed. The job listing includes specific language about DC converters and power supply design for desktop and mobile computers. These are the apparent culprits in the &#8220;CPU whine&#8221; category of annoying noises.
</p>
<p>
I can&#8217;t help but read into this job listing. Does it mean that Apple had a person filling this role who didn&#8217;t cut the mustard? Or are there several engineers in this capacity all working together to come up with solutions? Did they just realize in February, after all the Apple executives started toting around MacBook Pros, that the problem was as bad as it is?
</p>
<p>
Here is the history of the last several thousand dollars I have given money, along with a brief description of the quality of the product:
</p>
<ol>
<li>
<strong>iPod 40GB &#8211; $300</strong>. My girlfriend&#8217;s iPod. Works perfectly. Changed her life.
</li>
<p><li>
<strong>PowerMac G5 &#8211; $2500</strong>. Big, pretty, fast, reliable. Makes a high pitched chirping noise that will drive me out of my effing mind if I don&#8217;t run a script to &#8220;disable CPU napping.&#8221; Sticks in my craw as the &#8220;top of the line Mac that will forever require an annoying hardware workaround.&#8221;
</li>
</p>
<p><li>
<strong>iPod Nano &#8211; $250</strong>. Small, beautiful, doesn&#8217;t even scratch too much in my pocket. My only complaint is that I can&#8217;t unplug the dock cable while the headphones are plugged in. I use it to listen to Podcasts every day. Changed my life.</p>
<p><li>
<strong>ADC Membership &#8211; 2 Years. $1000</strong>. Reliable access to pre-release software. Hardware discount on price of defective MacBook Pro. Responsive tech support representatives. All in all a good deal &#8211; especially if you&#8217;re buying hardware.
</li>
</p>
<li><strong>MacBook Pro &#8211; $2000</strong>. Sleek, fast, beautiful. Innovative design. Brilliant Intel-native software blazes and rocks my world. Noisier than any computer I&#8217;ve used since my dad&#8217;s Kaypro IV.</li>
</li>
</ol>
<p>
Seems the more money I give Apple, the less satisfied I am. The two most expensive products listed above are the two that have caused me the most grief. Shouldn&#8217;t Apple be making customers of its $2500 products as giddy as customers of its $200 ones? Perhaps my determination to not rest with this defective MacBook Pro is the result of Apple &#8220;using up its pass&#8221; with me on the G5. It&#8217;s been a long time since I owned a Mac that didn&#8217;t have an irritating aural defect. It surprises the hell out of me that a company with a self-proclaimed audiophile and perfectionist as a leader could allow these products to continue eroding Apple&#8217;s reputation for highest quality.
</p>
<p>
Have you ever stood at the top of a large cliff, or peered over the edge of a bridge, and curiously wondered what it would feel like to jump? Not suicidal &#8211; just indulgent curiosity. It&#8217;s the kind of thinking that makes you take a step back and double-check your grip on reality. I <em>do know that I would never do that, right</em>? Lately my thinking about the Mac has led me to such frightening thought experiments as &#8220;what if I lose confidence in Macs and abandon them? Can I get used to Windows?&#8221; This isn&#8217;t likely to happen. I&#8217;m so incredibly dependent on the Mac OS X software and the Apple development APIs, that I would essentially be giving up computing if I abandoned Macs. I don&#8217;t want to use any other computer.
</p>
<p>
I don&#8217;t <em>want</em> to use any other computer, yet I&#8217;ve indulged in the curiosity of whether I would. Apple is pushing me to <em>that point.</em> I&#8217;m not jumping ship yet, but I need a hero. I need an analog system designer of utmost skill and confidence &#8211; somebody who can save Apple&#8217;s computer business. If I end up buying a third top-of-the-line computer with a completely ridiculous noise defect, it might be the last $2000+ Apple ever gets from me. And that would be sad. Where would I dock my iPod?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/124/macbook-pro-noise-i-need-a-hero/feed</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>MBP: Stop the Cow, MacBook Pro</title>
		<link>http://www.red-sweater.com/blog/123/macbook-pro-noise-stop-the-cow-macbook-pro</link>
		<comments>http://www.red-sweater.com/blog/123/macbook-pro-noise-stop-the-cow-macbook-pro#comments</comments>
		<pubDate>Wed, 19 Apr 2006 04:08:50 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/123/macbook-pro-noise-stop-the-cow-macbook-pro</guid>
		<description><![CDATA[This post is part of my MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! My MacBook Pro is [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of my <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
My MacBook Pro is still in Texas.  But apparently they spent all day today &#8220;repairing it.&#8221; This sounds slightly better than the situation a friend is in, whose MacBook Pro went in for roughly the same problem, but is now on indefinite pause as he waits for a &#8220;part on order.&#8221; I can&#8217;t help but wonder what is so different about mine and his that we require different solutions. The only thing different about mine, that I can tell, is I complained about a whole lot more. Maybe they&#8217;re still reading through the list &#8230;
</p>
<p>
<img src="http://www.red-sweater.com/blog/images/MacBookRepair2.jpg"/>
</p>
<p>
In my last post, I shared some rather silly statistics about Google and how many hits one receives for certain silly queries. I noticed over the past day or so that Google is sort of clogging my &#8220;referrals&#8221; list. I don&#8217;t know if this is because more people are searching on terms that I happen to match, or if my PageRank just went up. I think the PageRank for the blog itself might have just gone from 5 to 6. That&#8217;s cool. And I haven&#8217;t looked at the &#8220;search referrals&#8221; in my logs for a long time, but the recent influx caused me to do some examining.
</p>
<p>
It&#8217;s fascinating to pore over the list of search terms that people type in to ultimately reach your blog or site.  I don&#8217;t think most users know that the exact phrase they enter gets transmitted in this way to the target site that is ultimately clicked-through to. It&#8217;s worth considering. If you&#8217;re interviewing for a job with Bob Jones, you might not want to type &#8220;How do I eff with Bob Jones in my interview tomorrow?&#8221; into Google the night before the interview, and then click-through to his personal blog. Just a little word to the wise.
</p>
<p>
Sometimes I worry that my obsession with the MacBook Pro noise flaws is unnatural. You know, maybe I just got fixated on it and now I&#8217;m this cranky geek who can&#8217;t ignore it. Kind of like after my dad pointed out the Sony Trinitron lines (defects!) in our computer monitor when I was a kid. Damn it! I never did much like Trinitrons after that. But it&#8217;s kind of reassuring (and saddening, at the same time) to browse through my search referrals and see just how frequent people are desperately typing MacBook Pro related queries into search engines. As I looked through my logs, I tried to think of how I could best convey the magnitude of queries that exist, and how clearly frustrated and at a loss the public is to find an answer to these problems. There&#8217;s no way I could do it, so I decided the best thing to do would be to just show you exactly what it looks like.
</p>
<p>
Here are my last 500 search referrals. Now, I know a lot of them have absolutely nothing to do with MacBook Pro or noises associated with them. But a lot of them do. people are spending their quality time searching on this. This is not what people like to Google. They&#8217;d rather look up themselves, their friends, porn, or world of warcraft tips. Instead they&#8217;re looking up MacBook Pro noises, hissing, humming, buzzing, etc. And keep in mind that these results span a relatively short period of time (less than 48 hours), and only consist of clicks that actually made it through to my little site. Multiply this over every day (and probably different users every day), and you start to understand how disappointing, how personally infuriating these defects are to those of us who expect the highest quality product from Apple.
</p>
<p>
My favorite quote? &#8220;Stop the cow macbook pro.&#8221; I couldn&#8217;t agree more.
</p>
<p><table>
<tr class="ref-odd">
<td>060418 20:46:04</td>
<td><span>macbook pro noise problem</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+problem&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:42:28</td>
<td><span>macbook pro noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:39:31</td>
<td><span>quietmbp</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=quietmbp&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:37:01</td>
<td><span>firewire noise whine sound</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=firewire+noise+whine+sound&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:35:44</td>
<td><span>NSNotification observer</span><br /><small>/66/helping-myself-and-others</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=NSNotification+observer&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:35:12</td>
<td><span>macbook whine isight</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+whine+isight&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:34:56</td>
<td><span>macbook pro whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hs=mHi&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=macbook+pro+whine&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:27:44</td>
<td><span>High-Pitched Sound MacBook Pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=High-Pitched+Sound+MacBook+Pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:23:39</td>
<td><span>macbook pro humming</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+humming&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:18:31</td>
<td><span>QuietMBP</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=QuietMBP&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:18:20</td>
<td><span>macbook battery life</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+battery+life&amp;hl=en&amp;lr=&amp;c2coff=1&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:14:29</td>
<td><span>itunes movie chapters</span><br /><small>/84/fake-video-with-itunes-chapter-markers</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=itunes+movie+chapters" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:12:19</td>
<td><span>macbook noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:11:20</td>
<td><span>macbook pro  noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=macbook+pro+%2Bnoise&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 20:08:03</td>
<td><span>cooling fan in iBook will not turn off</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?q=cooling+fan+in+iBook+will+not+turn+off&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 20:03:40</td>
<td><span>automatic subversion version number build number</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=automatic+subversion+version+number+build+number&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:59:53</td>
<td><span>macbook pro noise </span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?q=macbook+pro+noise+&amp;start=0&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:58:10</td>
<td><span>macbook pro moo</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?hs=oih&amp;hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=macbook+pro+moo&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:50:33</td>
<td><span>export netflix queue</span><br /><small>/99/netnewsflix</small></td>
<td><span><a href="http://www.google.com/search?q=export+netflix+queue&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:47:40</td>
<td><span>macbook 108</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+108&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:42:11</td>
<td><span> ADC Documentation Bomb </span><br /><small>/104/adc-documentation-bomb</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=%22ADC+Documentation+Bomb%22&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:40:29</td>
<td><span>macbook whine</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook%20whine&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:31:29</td>
<td><span>Macbook pro noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=Macbook+pro+noise&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:31:14</td>
<td><span>red sweater blog</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=red+sweater+blog&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:20:21</td>
<td><span>mac book pro manual cd eject</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=mac+book+pro+manual+cd+eject&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:16:03</td>
<td><span>MACBOOk whining</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=MACBOOk+whining&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:15:43</td>
<td><span>stop the cow macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=stop+the+cow+macbook+pro&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 19:14:52</td>
<td><span>nerd out</span><br /><small>/17/nerd-out-with-gdb/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=nerd+out&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 19:14:26</td>
<td><span> AppleScript get  current  URL from  Safari</span><br /><small>/30/safari-link-sniffing</small></td>
<td><span><a href="http://www.google.com/search?q=%2BAppleScript+get+%2Bcurrent+%2BURL+from+%2BSafari&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:56:58</td>
<td><span>red sweater</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?q=red+sweater&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:54:48</td>
<td><span> photo booth  &#8211; stunt software  mac download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=%22photo+booth%22+-%22stunt+software%22+mac+download&amp;hl=en&amp;lr=&amp;start=50&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:54:38</td>
<td><span>incremental backups useless</span><br /><small>/60/backups-are-useless</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=incremental+backups+useless&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:54:01</td>
<td><span> setting network domain </span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com.au/search?hl=en&amp;q=%27setting+network+domain%27&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:53:29</td>
<td><span>mac screen brightness waste battery</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?q=mac+screen+brightness+waste+battery&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:52:34</td>
<td><span>when opening quicktime i get a question mark</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com.au/search?hl=en&amp;q=when+opening+quicktime+i+get+a+question+mark&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:50:12</td>
<td><span>macbook pro wake from sleep</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=macbook+pro+wake+from+sleep&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:47:25</td>
<td><span>quiet mbp</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://search.yahoo.com/search?p=quiet+mbp&amp;sm=Yahoo%21+Search&amp;fr=FP-tab-web-t&amp;toggle=1&amp;cop=&amp;ei=UTF-8" target="NewWindow">Yahoo</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:42:54</td>
<td><span>Macbook Pro heat issue</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.co.nz/search?hl=en&amp;q=Macbook+Pro+heat+issue&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:39:21</td>
<td><span>macpro noise</span><br /><small>/117/macbook-pro-noise-customer-sensory-issues</small></td>
<td><span><a href="http://www.google.com/search?q=macpro+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:38:04</td>
<td><span>macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro&amp;hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;start=40&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:35:46</td>
<td><span>macbook whine utility</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+whine+utility&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:30:19</td>
<td><span>loud cd drive MacBook Pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=loud+cd+drive+MacBook+Pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:27:49</td>
<td><span>macbook noise issues</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+noise+issues&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:27:43</td>
<td><span>how to use magic noise killer</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=how+to+use+magic+noise+killer&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:24:34</td>
<td><span> mirror widget hack </span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=opera&amp;rls=en&amp;q=%22mirror+widget+hack%22&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:22:09</td>
<td><span>MagicNoiseKiller</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=MagicNoiseKiller&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:21:42</td>
<td><span>magic noise killer</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=magic+noise+killer&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:20:48</td>
<td><span>macbook problems buzzing fix mnk</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+problems+buzzing+fix+mnk&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:19:53</td>
<td><span>Mac Book pro whine</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Mac+Book+pro+whine&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:17:26</td>
<td><span>xcode progress indicator example</span><br /><small>/?p=85</small></td>
<td><span><a href="http://www.google.com/search?q=xcode+progress+indicator+example&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:17:09</td>
<td><span>macbook problems buzzing fix</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+problems+buzzing+fix&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:16:59</td>
<td><span>  safari    back </span><br /><small>/21/safari-back-out-of-mistake/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;as_qdr=all&amp;q=%2B%22safari%22+%2B%22back%22&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:14:16</td>
<td><span>screen goes white when laptop gets hot</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=screen+goes+white+when+laptop+gets+hot&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:11:21</td>
<td><span>hacking isight</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=hacking+isight&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:06:57</td>
<td><span>magicnoisekiller</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=magicnoisekiller&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:05:56</td>
<td><span>milliamp-hours  calculator</span><br /><small>/96/google-calculator/feed/</small></td>
<td><span><a href="http://www.google.com/search?hs=4HL&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=milliamp-hours++calculator&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 18:03:49</td>
<td><span>mosquito noise machine</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=mosquito+noise+machine" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 18:03:13</td>
<td><span>macbook pro heat problem fixed</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+heat+problem+fixed&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:59:51</td>
<td><span>network domain setup</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.lk/search?hl=en&amp;safe=off&amp;q=network%2Cdomain%2Csetup&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:57:06</td>
<td><span>macbook pro widgets</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+widgets&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:48:55</td>
<td><span>noise macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;q=noise+macbook+pro&amp;btnG=Suche&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:44:25</td>
<td><span>mbp processor noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=mbp+processor+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:38:51</td>
<td><span>mac book pro noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://search.msn.com/results.aspx?q=mac+book+pro+noise&amp;FORM=MSNH&amp;srch_type=0" target="NewWindow">MSN</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:30:27</td>
<td><span>netinfo afp authentication</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.ch/search?hl=fr&amp;q=netinfo+afp+authentication&amp;btnG=Rechercher&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:21:54</td>
<td><span>whine macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.it/search?hl=it&amp;q=whine+macbook+pro&amp;btnG=Cerca+con+Google&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:21:11</td>
<td><span>netinfo webdav vfstype</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.ch/search?hl=fr&amp;q=netinfo+webdav+vfstype&amp;btnG=Rechercher&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:21:10</td>
<td><span>something red sweater</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=something+red+sweater" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:11:37</td>
<td><span>macbook pro disable cpu</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.ch/search?hl=en&amp;q=macbook+pro+disable+cpu&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:10:00</td>
<td><span>hack ichat video</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=hack+ichat+video&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:08:58</td>
<td><span>Revision D Macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=Revision+D+Macbook+pro&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 17:08:16</td>
<td><span>macbook pro noises</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noises&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 17:01:00</td>
<td><span> macbook pro  noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hs=9HK&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=%22macbook+pro%22+noise&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:58:16</td>
<td><span>macbook pro problems</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.co.uk/search?q=macbook+pro+problems&amp;btnG=Search&amp;hl=en" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:57:18</td>
<td><span>macbook pro power consumption</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+power+consumption&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:49:54</td>
<td><span>priority club</span><br /><small>/118/remembering-apple-the-start-date</small></td>
<td><span><a href="http://blogsearch.google.com/blogsearch?as_q=priority%20club&amp;num=100&amp;hl=en&amp;c2coff=1&amp;btnG=Search+Blogs&amp;safe=off" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:49:54</td>
<td><span>macbook xp mic fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=macbook+xp+mic+fix&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:45:50</td>
<td><span>what do black holes do except suck things in?</span><br /><small>/87/documentation-sucks</small></td>
<td><span><a href="http://www.google.com/search?q=what+do+black+holes+do+except+suck+things+in%3F&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:42:01</td>
<td><span>finding lost bookmarks in safari</span><br /><small>/78/grr-izon</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=finding+lost+bookmarks+in+safari&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:35:53</td>
<td><span>macbook pro whine replace</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hs=sDz&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=macbook+pro+whine+replace&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:35:03</td>
<td><span>is my ipod fake?</span><br /><small>/84/fake-video-with-itunes-chapter-markers</small></td>
<td><span><a href="http://www.google.com.tr/search?hs=ocJ&amp;hl=tr&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;q=is+my+ipod+fake%3F&amp;btnG=Ara&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:30:31</td>
<td><span>hidden NSWindow</span><br /><small>/97/windows-of-perception</small></td>
<td><span><a href="http://www.google.com/search?q=hidden+NSWindow&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:26:48</td>
<td><span>does the apple store replace macbook pro for processor hiss</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=does%20the%20apple%20store%20replace%20macbook%20pro%20for%20processor%20hiss" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:24:36</td>
<td><span>what fans are inside the macbook</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=what+fans+are+inside+the+macbook&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:22:09</td>
<td><span>amazon macbook pro revision D</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://72.14.203.104/search?q=cache:3HxtA5E7sKIJ:www.macintouch.com/readerreports/macbookpro/index.html+amazon+macbook+pro+revision+D&amp;hl=en&amp;gl=us&amp;ct=clnk&amp;cd=10" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:21:34</td>
<td><span>MacBook buzzing noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=MacBook+buzzing+noise&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:16:34</td>
<td><span>subversion revision tags</span><br /><small>/?p=23</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLD,GGLD:2004-45,GGLD:en&amp;q=subversion+revision+tags" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:16:03</td>
<td><span>sharing os x address book via webdav</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;client=safari&amp;rls=de-de&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=sharing+os+x+address+book+via+webdav&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:14:20</td>
<td><span>macbook issues</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+issues&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:13:36</td>
<td><span>WHAT IS A NETWORK DOMAIN</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=WHAT+IS+A+NETWORK+DOMAIN" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:08:36</td>
<td><span>mirror widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=mirror+widget&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 16:06:32</td>
<td><span>mbp noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mbp+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 16:05:29</td>
<td><span>macbook pro dock</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+dock&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:58:10</td>
<td><span>macbook hiss</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=da-dk&amp;q=macbook+hiss&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:52:19</td>
<td><span>thinkpad faint noise problem high frequency</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=thinkpad+faint+noise+problem+high+frequency&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:50:50</td>
<td><span>solutions for macbook whine</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=solutions+for+macbook+whine&amp;sourceid=mozilla-search&amp;start=0&amp;start=0" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:50:04</td>
<td><span>regular expression finder</span><br /><small>/26/rock-the-funky-finder-regex</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=regular+expression+finder" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:43:15</td>
<td><span>System/Library/Extensions/IOPlatformPluginFamily.kext</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=System%2FLibrary%2FExtensions%2FIOPlatformPluginFamily.kext&amp;sourceid=mozilla-search&amp;start=0&amp;start=0" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:42:59</td>
<td><span>macbook pro whining</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+whining&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:39:39</td>
<td><span>update itunes library on shared network library</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2005-45,GGLG:en&amp;q=update+itunes+library+on+shared+network+library" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:38:29</td>
<td><span>macbook pro buzzing</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+buzzing&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:31:43</td>
<td><span>macbook lcd noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com.au/search?hl=en&amp;q=macbook+lcd+noise&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:31:34</td>
<td><span>macbook pro blog</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.nz/search?hl=en&amp;q=macbook+pro+blog&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:27:34</td>
<td><span>macbook inverter buzz</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+inverter+buzz&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:27:01</td>
<td><span>macbook pro trackpad problem</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=de&amp;client=safari&amp;rls=de-de&amp;q=macbook+pro+trackpad+problem&amp;btnG=Suche&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:25:17</td>
<td><span> QuietMBP</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.co.uk/search?q=+QuietMBP&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:23:55</td>
<td><span>create a favorites section</span><br /><small>/63/add-a-favorites-section-to-xcode-file-templates</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=create+a+favorites+section" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:12:19</td>
<td><span>skype cocoa mac</span><br /><small>/80/an-skype-like-app-with-open-source-roots</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=skype+cocoa+mac" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:12:07</td>
<td><span>xcode trap exceptions</span><br /><small>/67/xcode-search-gone-mad</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=xcode+trap+exceptions&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:11:59</td>
<td><span>mac book pro becomes hot</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mac+book+pro+becomes+hot&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:09:44</td>
<td><span> new shell   process completed  help</span><br /><small>/48/victory-over-process-completed</small></td>
<td><span><a href="http://www.google.de/search?q=%22new+shell%22+%22process+completed%22+help&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:09:26</td>
<td><span> Network Mount   Mac OS X </span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?q=%22Network+Mount%22+%22Mac+OS+X%22&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:06:22</td>
<td><span>tomshardware macbook pro</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=tomshardware+macbook+pro&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 15:03:39</td>
<td><span>Built-in iSight Camera  macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Built-in+iSight+Camera,+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 15:00:21</td>
<td><span>macbook pro 3 partitions</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=macbook+pro+3+partitions&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:53:52</td>
<td><span>BuzzKiller MagicNoiseKiller</span><br /><small>/111/macbook-pro-noise-battery-life-tests/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=de&amp;client=safari&amp;rls=de-de&amp;q=BuzzKiller+MagicNoiseKiller&amp;btnG=Suche&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:47:16</td>
<td><span> paul tiger </span><br /><small>/106/the-network-domain/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=%22paul+tiger%22&amp;hl=en&amp;lr=&amp;safe=off&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:44:25</td>
<td><span>MacBook Pro Hard Drive Noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=de&amp;client=safari&amp;rls=de-de&amp;q=MacBook+Pro+Hard+Drive+Noise&amp;btnG=Suche&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:42:58</td>
<td><span>trac subversion cvs</span><br /><small>/22/the-bumpy-road-to-subversion</small></td>
<td><span><a href="http://www.google.nl/search?q=trac+subversion+cvs&amp;sourceid=mozilla-search&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:42:37</td>
<td><span>macbook pro  whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.nl/search?hl=nl&amp;q=macbook+pro+%2Bwhine&amp;btnG=Zoeken&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:40:01</td>
<td><span>MacBook Pro Firmware update</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=googlet&amp;q=MacBook%20Pro%20Firmware%20update" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:33:28</td>
<td><span>Whine MBP</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.ch/search?hl=de&amp;q=Whine+MBP&amp;btnG=Google-Suche&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:32:08</td>
<td><span>create domain name for local network in os x</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.co.uk/search?q=create+domain+name+for+local+network+in+os+x&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:31:15</td>
<td><span>mac book pro noise speakers</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=nb-no&amp;q=mac+book+pro+noise+speakers&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:30:02</td>
<td><span>mac book pro whining</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=mac+book+pro+whining&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:25:24</td>
<td><span>macbook pro heat hardware version</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+heat+hardware+version&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:19:59</td>
<td><span>mac book pro 8613</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.de/search?hl=en&amp;q=mac+book+pro+8613&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:17:46</td>
<td><span>os x network library alias</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.ca/search?q=os+x+network+library+alias&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 14:17:08</td>
<td><span>macbook pro  whine  widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro,+whine,+widget&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 14:06:27</td>
<td><span>hot macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=hot+macbook+pro&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:54:55</td>
<td><span>macbook pro rev.e</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;ie=ISO-8859-1&amp;q=macbook+pro+rev.e&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:53:12</td>
<td><span>program for macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.se/search?q=program+for+macbook+pro&amp;hl=sv&amp;hs=rLH&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:51:01</td>
<td><span>macbook 8612</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com.br/search?hl=pt-BR&amp;q=macbook+8612&amp;btnG=Pesquisar&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:49:33</td>
<td><span>macbook download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+download&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:43:43</td>
<td><span>macbook pro hard drive noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+hard+drive+noise" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:43:16</td>
<td><span>macbook pro updates</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?hs=84G&amp;hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;q=macbook+pro+updates&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:42:40</td>
<td><span>windows network mac the alias could not be opened</span><br /><small>/106/the-network-domain/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=windows+network+mac+the+alias+could+not+be+opened&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:40:31</td>
<td><span>macbook pro isight driver</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+isight+driver&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:39:22</td>
<td><span>macbook intel hard disk keeps running energy saving</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+intel+hard+disk+keeps+running+energy+saving&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:33:04</td>
<td><span>macbook pro not responding to battery</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+not+responding+to+battery&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:30:59</td>
<td><span>magic noise mac</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=magic+noise+mac&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:30:19</td>
<td><span>macbook whine  isight</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+whine%2C+isight&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:29:00</td>
<td><span>MagicNoiseKiller download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.ca/search?q=MagicNoiseKiller+download&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:25:12</td>
<td><span>MagNoiseKiller </span><br /><small>/comments/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=MagNoiseKiller+&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:20:33</td>
<td><span>mac book pro noise problem</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=mac+book+pro+noise+problem" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:11:44</td>
<td><span>my screen saver keeps coming back during login</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=my+screen+saver+keeps+coming+back+during+login&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:10:49</td>
<td><span>macbook pro noise battery power</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+battery+power&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 13:08:10</td>
<td><span>xcode run log has no output</span><br /><small>/81/really-simple-consolation</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=xcode+run+log+has+no+output&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 13:02:01</td>
<td><span>macbook tomshardware</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=macbook+tomshardware&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:58:14</td>
<td><span>qt_export</span><br /><small>/84/fake-video-with-itunes-chapter-markers/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;q=qt_export&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:58:03</td>
<td><span>macbook pro whine fixed</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+whine+fixed&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:51:54</td>
<td><span>xcode run.log broken</span><br /><small>/page/3/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=xcode+run.log+broken&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:49:10</td>
<td><span>xcode dynamic libraries</span><br /><small>/56/xcode-22-quickies</small></td>
<td><span><a href="http://www.google.com/search?q=xcode+dynamic+libraries&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:47:51</td>
<td><span>macbook pro cpu noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+cpu+noise&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:43:23</td>
<td><span>xcode no log bug</span><br /><small>/67/xcode-search-gone-mad</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en-us&amp;q=xcode+no+log+bug&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:41:10</td>
<td><span>info.plist keys</span><br /><small>/32/destroy-xcode-tedium</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=info.plist+keys&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:41:05</td>
<td><span>macbook pro help</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+help&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:35:19</td>
<td><span>how to get rid of macbook pro whine</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?q=how+to+get+rid+of+macbook+pro+whine&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:28:45</td>
<td><span> Express Card Slot </span><br /><small>/88/intel-impatience/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=%22Express+Card+Slot%22&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:15:15</td>
<td><span>apple notebook just make a crashing noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=apple+notebook+just+make+a+crashing+noise&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 12:09:41</td>
<td><span>DOES A Petabyte HARD DRIVE EXIST</span><br /><small>/60/backups-are-useless</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=DOES+A+Petabyte+HARD+DRIVE+EXIST&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 12:07:59</td>
<td><span>subversion installation</span><br /><small>/22/the-bumpy-road-to-subversion/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=subversion+installation&amp;hl=en&amp;lr=&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:51:22</td>
<td><span>whining sound macbook pro</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=whining+sound+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:51:07</td>
<td><span>setting up webdav os x server 10.4</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=setting+up+webdav+os+x+server+10.4&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:44:01</td>
<td><span>computadoras dell</span><br /><small>/?p=69</small></td>
<td><span><a href="http://search.yahoo.com/search?p=computadoras+dell&amp;fr=FP-tab-web-t&amp;toggle=1&amp;cop=&amp;ei=UTF-8" target="NewWindow">Yahoo</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:37:12</td>
<td><span>macbook pro high pitch noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+high+pitch+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:34:17</td>
<td><span>macbook pro noise miracles widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+miracles+widget&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:29:43</td>
<td><span>turning off processor for Macbook pro</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=turning+off+processor+for+Macbook+pro&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:26:01</td>
<td><span>loud noises coming from the macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=loud+noises+coming+from+the+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:25:37</td>
<td><span>MacBook Pro noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=MacBook+Pro+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:24:32</td>
<td><span>macbook laser</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://72.14.203.104/search?q=cache:-EO89uke7moJ:powerpage.org/+macbook+laser&amp;hl=en&amp;gl=us&amp;ct=clnk&amp;cd=1&amp;client=firefox-a" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:21:16</td>
<td><span>macbook pro whining isight firmware</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=fr&amp;q=macbook+pro+whining+isight+firmware&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:15:00</td>
<td><span>setting up os x server domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;rls=GGLR%2CGGLR%3A2005-38%2CGGLR%3Aen&amp;q=setting+up+os+x+server+domain" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:14:56</td>
<td><span>applescript droplet</span><br /><small>/31/self-opening-applescript-droplets</small></td>
<td><span><a href="http://www.google.ca/search?q=applescript+droplet&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:14:24</td>
<td><span>hacking aac files</span><br /><small>/84/fake-video-with-itunes-chapter-markers</small></td>
<td><span><a href="http://www.google.com/search?q=hacking+aac+files&amp;sourceid=mozilla-search&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:13:26</td>
<td><span>blog intel</span><br /><small>/category/technology/intel/</small></td>
<td><span><a href="http://www.google.com/search?q=blog+intel&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:10:25</td>
<td><span>macbook pro built-in isight drivers</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=macbook+pro+built-in+isight+drivers&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:08:39</td>
<td><span>macbook repair whine</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+repair+whine&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:07:10</td>
<td><span>macbook hard drive noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://72.14.203.104/search?q=cache:qGIrpdYK-qYJ:www.bensaunders.com/archives/2006/04/08/macbook-pro-and-the-doozers/+macbook+hard+drive+noise&amp;hl=en&amp;gl=us&amp;ct=clnk&amp;cd=1&amp;client=safari" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:06:41</td>
<td><span>whining macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=fr&amp;q=whining+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:06:33</td>
<td><span>macbook Speaker Defective</span><br /><small>/117/macbook-pro-noise-customer-sensory-issues</small></td>
<td><span><a href="http://www.google.com.sg/search?q=macbook+Speaker+Defective&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official_s&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:06:01</td>
<td><span>macbook whinning</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+whinning&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:05:10</td>
<td><span>macbook fan</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+fan&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 11:01:57</td>
<td><span>macbook mooing</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=macbook+mooing&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 11:01:10</td>
<td><span>quietMBP download</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hs=qfE&amp;hl=en&amp;lr=&amp;safe=off&amp;c2coff=1&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=quietMBP+download&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 10:53:51</td>
<td><span>macbook cpu noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+cpu+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 10:53:29</td>
<td><span>what is a network domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=what+is+a+network+domain" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 10:43:42</td>
<td><span>macbook pro rev.e sn</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+rev.e+sn&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 10:36:13</td>
<td><span>iemulator 1.7.9</span><br /><small>/86/noooooooooo/feed/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=nl-nl&amp;q=iemulator+1.7.9&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 10:34:18</td>
<td><span>whine macbook pro replacement</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=whine+macbook+pro+replacement&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 10:31:04</td>
<td><span>I believe in miracles</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://search.msn.com/results.aspx?q=I+believe+in+miracles&amp;FORM=MSNH&amp;srch_type=0" target="NewWindow">MSN</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 10:25:14</td>
<td><span>how to turn off core in macbook</span><br /><small>/107/macbook-pro-noise-update/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=how+to+turn+off+core+in+macbook&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 10:04:28</td>
<td><span>macbook pro issue</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+issue&amp;hl=zh-TW&amp;lr=&amp;rls=GGLG,GGLG:2006-13,GGLG:en&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 10:01:23</td>
<td><span>fw800 Express Card</span><br /><small>/88/intel-impatience/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=it&amp;client=safari&amp;rls=it-it&amp;q=fw800+Express+Card&amp;btnG=Cerca&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:59:33</td>
<td><span>UNIX &#8211; steps for setting up a network share</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=UNIX+-+steps+for+setting+up+a+network+share" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:50:14</td>
<td><span>magic widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=magic+widget&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:47:07</td>
<td><span>Magicnoisekiller</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Magicnoisekiller&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:43:54</td>
<td><span>mac magicnoisekiller</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=mac+magicnoisekiller&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:40:33</td>
<td><span>macbook pro noise cow</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=it&amp;client=safari&amp;rls=it-it&amp;q=macbook+pro+noise+cow&amp;btnG=Cerca&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:34:58</td>
<td><span>watching video in Linux</span><br /><small>/84/fake-video-with-itunes-chapter-markers</small></td>
<td><span><a href="http://www.google.com/search?q=watching+video+in+Linux&amp;hl=en&amp;hs=tqX&amp;lr=&amp;newwindow=1&amp;client=opera&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:30:49</td>
<td><span>macbook pro   noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.se/search?hl=sv&amp;q=macbook+pro+%2B+noise&amp;btnG=Google-s%C3%B6kning&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:29:46</td>
<td><span>sudo mv /System/Library/Extensions/IOPlatformPluginFamily.kext /backup</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro/feed/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=fr&amp;q=sudo+mv+/System/Library/Extensions/IOPlatformPluginFamily.kext+/backup&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:26:59</td>
<td><span>cpu noise macbook</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=sv-se&amp;q=cpu+noise+macbook&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:25:20</td>
<td><span>mirror widget quiet mbp</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mirror+widget+quiet+mbp&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:11:20</td>
<td><span>blog  wordpress  mac</span><br /><small>/91/wordpress-20</small></td>
<td><span><a href="http://www.google.com/search?q=blog+%2Bwordpress+%2Bmac&amp;hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:10:33</td>
<td><span>macbook pro disable a core</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=it&amp;client=safari&amp;rls=it-it&amp;q=macbook+pro+disable+a+core&amp;btnG=Cerca&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:10:01</td>
<td><span>macbook pro whine play</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.fr/search?hl=fr&amp;q=macbook+pro+whine+play&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:08:15</td>
<td><span> ichat status screen saver chud</span><br /><small>/feed/</small></td>
<td><span><a href="http://www.google.com/search?hs=otC&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;q=%2Bichat+status+screen+saver+chud&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 09:05:23</td>
<td><span>ichat screen saver chud</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=ichat+screen+saver+chud&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 09:00:34</td>
<td><span>mac book pro defects</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=mac+book+pro+defects&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 08:55:51</td>
<td><span>fix MacBook Pro</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=fix+MacBook+Pro&amp;hl=en&amp;lr=&amp;rls=GAPB,GAPB:2005-09,GAPB:en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 08:55:05</td>
<td><span>daniel jalkut</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=daniel+jalkut&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 08:53:22</td>
<td><span>silica gel what to do swallow</span><br /><small>/95/a-word-of-caution</small></td>
<td><span><a href="http://www.google.co.il/search?hl=iw&amp;q=silica+gel+what+to+do+swallow&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 08:42:22</td>
<td><span>why syslog showing up in console shell</span><br /><small>/?p=81</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=why+syslog+showing+up+in+console+shell&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 08:41:08</td>
<td><span>what is that buzzing macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=what+is+that+buzzing+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 08:39:19</td>
<td><span>red sweater macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.dk/search?hl=da&amp;q=red+sweater+macbook+pro&amp;btnG=Google-s%C3%B8gning&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 08:18:02</td>
<td><span>mac book pro whine noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=mac+book+pro+whine+noise&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 08:17:57</td>
<td><span>macbook pro  battery time</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.se/search?hl=sv&amp;q=macbook+pro+%2Bbattery+time&amp;btnG=S%C3%B6k&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 08:13:56</td>
<td><span>macbook pro buzzing noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+buzzing+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 08:09:23</td>
<td><span>macbook pro battery tests</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+battery+tests&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:59:02</td>
<td><span>useful problems macbook pro reinstall</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.es/search?hl=es&amp;q=useful+problems+macbook+pro+reinstall&amp;btnG=B%C3%BAsqueda+en+Google&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:54:55</td>
<td><span>mac book pro whining problem</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mac+book+pro+whining+problem&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:51:43</td>
<td><span>netflix rss feed blog</span><br /><small>/99/netnewsflix</small></td>
<td><span><a href="http://www.google.com/search?q=netflix+rss+feed+blog&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:51:38</td>
<td><span>macbook pro hissing workaround</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+hissing+workaround&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:42:45</td>
<td><span>setting up macbook pro for audio</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2005-20,GGLG:en&amp;q=setting+up+macbook+pro+for+audio" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:36:53</td>
<td><span>macbook noise issue</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+noise+issue&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:32:00</td>
<td><span>setting up a network apple </span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?q=setting+up+a+network+apple+&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:30:05</td>
<td><span>macbook pro fixed issues</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+fixed+issues&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:24:02</td>
<td><span>macbook screen goes black</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+screen+goes+black&amp;sourceid=mozilla-search&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:21:03</td>
<td><span>set domain on os x</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=set+domain+on+os+x&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 07:16:01</td>
<td><span>1145367555</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://my.sitebar.org/index.php?uniq=1145367555" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 07:06:29</td>
<td><span>anybody bought macbook pro?</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=anybody%20bought%20macbook%20pro%3F&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:56:51</td>
<td><span>macbook update</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=macbook+update&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 06:55:20</td>
<td><span> macbook pro  whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=%22macbook+pro%22+whine&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:54:18</td>
<td><span>Info.plist system variables</span><br /><small>/23/automatic-build-sub-versioning-in-xcode/feed/</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=Info.plist+system+variables&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 06:52:19</td>
<td><span>domain macosx share</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.ca/search?hl=fr&amp;q=domain+macosx+share&amp;meta=&amp;btnG=Recherche+Google" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:50:46</td>
<td><span>macbook xp power management</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+xp+power+management&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 06:46:56</td>
<td><span>MacBook Pro heat problem</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.co.uk/search?q=MacBook+Pro+heat+problem&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:37:09</td>
<td><span>macbook pro magic</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=macbook+pro+magic&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 06:28:56</td>
<td><span>iPhoto the volume cannot be found</span><br /><small>/106/the-network-domain/feed/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=iPhoto+the+volume+cannot+be+found&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:24:33</td>
<td><span>nidump domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/mac?hl=en&amp;lr=&amp;q=nidump+domain&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 06:21:21</td>
<td><span> Issues and various point of hacking</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com.my/search?hl=en&amp;q=+Issues+and+various+point+of+hacking&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 06:04:02</td>
<td><span>macbook pro humming on battery power</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+humming+on+battery+power&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 05:56:42</td>
<td><span>noisy screen macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com.au/search?q=noisy+screen+macbook+pro&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 05:42:10</td>
<td><span>macbook pro inverter noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+inverter+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 05:32:46</td>
<td><span>Faults with macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com.au/search?num=30&amp;hl=en&amp;newwindow=1&amp;q=Faults+with+macbook+pro&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 05:21:49</td>
<td><span>macbook bootcamp sound driver</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=ja-jp&amp;q=macbook+bootcamp+sound+driver&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 05:16:12</td>
<td><span>http://www.red-sweater.com/blog/108/macbook-pro-noise-i-believe-in-miracles</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?lr=&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=http%3A%2F%2Fwww.red-sweater.com%2Fblog%2F108%2Fmacbook-pro-noise-i-believe-in-miracles" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 05:13:17</td>
<td><span>mac book pro electric noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=mac+book+pro+electric+noise&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 05:06:49</td>
<td><span>A comment on Gulliver   s Travels </span><br /><small>/92/easy-endian-ness</small></td>
<td><span><a href="http://www.google.com/search?q=A+comment+on+Gulliver%E2%80%99s+Travels+&amp;hl=zh-CN&amp;lr=&amp;newwindow=1&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 05:06:16</td>
<td><span> revision d  problems macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://66.249.93.104/search?q=cache:F1SAUFvjlTgJ:blogs.zdnet.com/Apple/%3Fp%3D168+%22revision+d%22+problems+macbook+pro&amp;hl=en&amp;ct=clnk&amp;cd=2" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 04:51:24</td>
<td><span>macbook pro electrical noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.fi/search?hl=fi&amp;q=macbook+pro+electrical+noise&amp;btnG=Google-haku&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 04:46:32</td>
<td><span>how to fix whinning sound macbook pro</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.fr/search?hs=d9n&amp;hl=fr&amp;client=firefox-a&amp;rls=org.mozilla%3Afr%3Aofficial&amp;q=how+to+fix+whinning+sound+macbook+pro&amp;btnG=Rechercher&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 04:40:08</td>
<td><span>magic noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=magic+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 04:29:09</td>
<td><span>chud tools cpu whine</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=chud+tools+cpu+whine&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 04:25:37</td>
<td><span>quiet macbook</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=quiet+macbook&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 04:21:37</td>
<td><span>XRAID  PC COMPATIBILITY</span><br /><small>/69/adis-a-las-computadoras-dell</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=XRAID++PC+COMPATIBILITY&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 04:14:56</td>
<td><span>macbook cpu clock utility</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=macbook+cpu+clock+utility&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 04:04:34</td>
<td><span>macbook pro faults</span><br /><small>/107/macbook-pro-noise-update/feed/</small></td>
<td><span><a href="http://www.google.co.za/search?hl=en&amp;q=macbook+pro+faults&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 03:59:07</td>
<td><span> electric shock   macbook pro </span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=%22electric+shock%22+%22macbook+pro%22&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 03:58:55</td>
<td><span>buzzing macbook</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=buzzing+macbook&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 03:51:17</td>
<td><span>osx library directory iphoto</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=osx+library+directory+iphoto&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 03:50:14</td>
<td><span>macbook noise heat</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+noise+heat&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 03:48:39</td>
<td><span>mac os network disappears</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=mac+os+network+disappears&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 03:44:47</td>
<td><span>Additionally  a 302 Found error was encountered while trying to use an ErrorDocument to handle the request.</span><br /><small>/50/be-a-web-browser-for-halloween</small></td>
<td><span><a href="http://www.google.co.za/search?q=Additionally,+a+302+Found+error+was+encountered+while+trying+to+use+an+ErrorDocument+to+handle+the+request.&amp;hl=en&amp;hs=a9m&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official_s&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 03:25:31</td>
<td><span>macbook pro isight on xp driver download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=macbook+pro+isight+on+xp+driver+download&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 02:56:46</td>
<td><span>macbook power management</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.co.jp/search?q=macbook+power+management&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 02:43:03</td>
<td><span>milliseconds to seconds calculator</span><br /><small>/96/google-calculator</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;rls=GGLG,GGLG:2005-20,GGLG:en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=milliseconds+to+seconds+calculator&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 02:39:44</td>
<td><span>macbook pro update</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+update&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 02:31:31</td>
<td><span>macbook pro sounds</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.nl/search?q=macbook+pro+sounds&amp;hl=nl&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 02:29:00</td>
<td><span>redsweater blog</span><br /><small>/91/wordpress-20</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=redsweater+blog&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 02:22:04</td>
<td><span>inside open macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.nl/search?hs=3CR&amp;hl=nl&amp;client=firefox-a&amp;rls=org.mozilla%3Anl%3Aofficial&amp;q=inside+open+macbook+pro&amp;btnG=Zoeken&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 02:12:26</td>
<td><span>mbp display noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?client=firefox-a&amp;rls=org.mozilla%3Aen-GB%3Aofficial_s&amp;hl=en&amp;q=mbp+display+noise&amp;meta=&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 02:03:05</td>
<td><span>macbook pro noise blog</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+blog&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 01:58:22</td>
<td><span>Mac Book Pro  revisions</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=Mac+Book+Pro+%2Brevisions&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 01:52:57</td>
<td><span>live preview visitor keystrokes blog</span><br /><small>/52/fixing-keychain-look-ma-no-code</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=live+preview+visitor+keystrokes+blog&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 01:52:17</td>
<td><span>macbook pro battery issue after firmware update</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=macbook+pro+battery+issue+after+firmware+update" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 01:44:31</td>
<td><span>macbook pro whine fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com.au/search?hl=en&amp;q=macbook+pro+whine+fix&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 01:43:52</td>
<td><span>consolation messages</span><br /><small>/?p=81</small></td>
<td><span><a href="http://www.google.co.ke/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=consolation+messages&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 01:36:43</td>
<td><span>magic noise killer download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=magic+noise+killer+download&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 01:33:15</td>
<td><span>macbook pro cpu whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.be/search?hl=nl&amp;ie=ISO-8859-1&amp;q=macbook+pro+cpu+whine&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 01:12:43</td>
<td><span>macbook pro hissing noise problem</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com.au/search?q=macbook+pro+hissing+noise+problem&amp;btnG=Search&amp;hl=en" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 01:09:05</td>
<td><span>regulating fan macbook</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.se/search?q=regulating%20fan%20macbook&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 01:03:58</td>
<td><span>http://www.red-sweater.com/blog/macbook-pro-noise-complaints/</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.be/url?sa=U&amp;start=1&amp;q=http://www.red-sweater.com/blog/macbook-pro-noise-complaints/&amp;e=14905&amp;ei=Zp1ERPGWArDSwgHsyLn_BA" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 00:57:41</td>
<td><span>red sweater b log</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?q=red+sweater+b+log&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 00:50:31</td>
<td><span>how to buy Gesture keyboard</span><br /><small>/61/a-mighty-mistake/feed/</small></td>
<td><span><a href="http://www.google.co.in/search?hl=en&amp;q=how+to+buy+Gesture+keyboard&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 00:49:10</td>
<td><span>intel mac  cpu noise </span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=intel+mac+%22cpu+noise%22&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 00:45:58</td>
<td><span>applescript  attribute run </span><br /><small>/46/blogging-with-style</small></td>
<td><span><a href="http://www.google.com/search?q=applescript+%22attribute+run%22&amp;btnG=Search&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060418 00:23:42</td>
<td><span>quietMBP</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=quietMBP&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060418 00:14:49</td>
<td><span>mac widget lego error</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=mac+widget+lego+error&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 23:58:08</td>
<td><span>xcode svn build directory</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=xcode+svn+build+directory&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 23:46:52</td>
<td><span>macbook pro whine issues</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+whine+issues&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 23:41:08</td>
<td><span>macbook pro trackpad scroll tilt</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?ie=utf8&amp;oe=utf8&amp;q=macbook+pro+trackpad+scroll+tilt" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 23:40:10</td>
<td><span>macbook whine killing program</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+whine+killing+program&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 23:08:51</td>
<td><span>magicnoisekiller 10.4.6</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=magicnoisekiller+10.4.6&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 23:07:53</td>
<td><span>perl regex error quantifier followed by nothing in regex</span><br /><small>/26/rock-the-funky-finder-regex</small></td>
<td><span><a href="http://www.google.co.in/search?hs=AW3&amp;hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=perl+regex+error+quantifier+followed+by+nothing+in+regex&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 23:06:42</td>
<td><span>MacBook Pro sound problem fixes</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=MacBook+Pro+sound+problem+fixes&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 23:02:52</td>
<td><span>macbook pro cooling upgrade</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.ca/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=macbook+pro+cooling+upgrade&amp;meta=&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 22:52:25</td>
<td><span>adding an accidentally deleted podcast itunes</span><br /><small>/62/a-home-for-wayward-podcasts</small></td>
<td><span><a href="http://www.google.com/search?q=adding+an+accidentally+deleted+podcast+itunes&amp;btnG=Search&amp;hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en-us" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 22:38:09</td>
<td><span>weird noises macbookpro</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?q=weird%20noises%20macbookpro" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 22:29:09</td>
<td><span>adding an AppleScript to an Xcode project</span><br /><small>/32/destroy-xcode-tedium</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=adding+an+AppleScript+to+an+Xcode+project&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 22:13:50</td>
<td><span>xcode subversion</span><br /><small>/22/the-bumpy-road-to-subversion</small></td>
<td><span><a href="http://www.google.com/search?q=xcode+subversion&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 21:52:21</td>
<td><span>macbook moo</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+moo&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=flock&amp;rls=FlockInc.:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 21:40:41</td>
<td><span>creating a subversion repo</span><br /><small>/22/the-bumpy-road-to-subversion</small></td>
<td><span><a href="http://www.google.com/search?q=creating+a+subversion+repo&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official_s&amp;start=40&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 21:33:20</td>
<td><span>quiet macbook pro</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=quiet+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 21:21:58</td>
<td><span>my macbook pro makes a weird noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=my+macbook+pro+makes+a+weird+noise&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 21:21:55</td>
<td><span>mac book pro cpu noise fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mac+book+pro+cpu+noise+fix&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 21:21:46</td>
<td><span>How many hours does the macbook pro battery last</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=How+many+hours+does+the+macbook+pro+battery+last&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 21:19:17</td>
<td><span>mac book pro cpu noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mac+book+pro+cpu+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 21:17:35</td>
<td><span>heat macbook fix</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=heat+macbook+fix&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 21:10:06</td>
<td><span>macbook pro processor whine</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook%20pro%20processor%20whine" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 20:49:35</td>
<td><span>mugshot flickr</span><br /><small>/83/magical-code</small></td>
<td><span><a href="http://www.google.com/search?sourceid=mozclient&amp;ie=utf-8&amp;oe=utf-8&amp;q=mugshot+flickr" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 20:42:56</td>
<td><span>mac book pro\noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=mac+book+pro%5Cnoise&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 20:24:08</td>
<td><span>how to setup mac server 10.4 to publish ical</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?q=how+to+setup+mac+server+10.4+to+publish+ical&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 20:14:57</td>
<td><span>mac book pro high frequency fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=mac+book+pro+high+frequency+fix&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 20:07:21</td>
<td><span>MAC BOOK PRO GETTING VERY HOT</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=MAC+BOOK+PRO+GETTING+VERY+HOT&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 20:03:17</td>
<td><span>seagate hard drive squeaking</span><br /><small>http://red-sweater.com/blog/index.php</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2005-26,GGLG:en&amp;q=seagate+hard+drive+squeaking" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 19:58:32</td>
<td><span>ibook bright spots</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=ibook+bright+spots&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 19:56:51</td>
<td><span>macbook pro whine sample</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;q=macbook+pro+whine+sample&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 19:47:35</td>
<td><span>maCBOOK NOISE</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=maCBOOK+NOISE&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 19:41:11</td>
<td><span>open dashboard widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=open+dashboard+widget&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 19:00:54</td>
<td><span>macbook pro whine photo booth</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+whine+photo+booth&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:55:51</td>
<td><span>macbook noise red</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com.sg/search?hl=en&amp;q=macbook+noise%2Bred&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:51:31</td>
<td><span>daniel jalkut radar</span><br /><small>/51/keychain-inaccessibility</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=daniel+jalkut+radar&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:46:07</td>
<td><span>macbook pro dock -ipod</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=macbook+pro+dock+-ipod&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:43:50</td>
<td><span>macbook temperature</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+temperature&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:42:51</td>
<td><span>macbook pro screen complaints</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+screen+complaints&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:41:15</td>
<td><span>tilt macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=tilt+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:39:36</td>
<td><span>macbook pro processor heat</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=macbook+pro+processor+heat&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:37:09</td>
<td><span>install magic noise killer</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles/feed/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=install+magic+noise+killer&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:33:47</td>
<td><span>powerbook pro command line</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=powerbook+pro+command+line&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:18:54</td>
<td><span>mirror widget bad for isight</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=mirror+widget+bad+for+isight&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 18:10:41</td>
<td><span>replacing hard drive in macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=replacing+hard+drive+in+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 18:08:41</td>
<td><span> interface builder  autosizing</span><br /><small>/35/lazy-parent-views</small></td>
<td><span><a href="http://www.google.com/search?q=%22interface+builder%22+autosizing&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:42:18</td>
<td><span>macbook pro cpu tool</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://search.yahoo.com/search?p=macbook+pro+cpu+tool&amp;sm=Yahoo%21+Search&amp;fr=FP-tab-web-t&amp;toggle=1&amp;cop=&amp;ei=UTF-8" target="NewWindow">Yahoo</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:32:09</td>
<td><span>macbook pro trackpad problems</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+trackpad+problems&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:31:10</td>
<td><span>macbook pro complaints</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+complaints&amp;sourceid=mozilla-search&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:29:27</td>
<td><span>why mirror widget audio</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=why+mirror+widget+audio&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:26:57</td>
<td><span>macbook pro fan noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+fan+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:23:53</td>
<td><span>apple  mighty mouse  defect</span><br /><small>/61/a-mighty-mistake</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=apple+%22mighty+mouse%22+defect&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:18:56</td>
<td><span>macbook inverter</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+inverter&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:15:04</td>
<td><span>leave in macbook pro case</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=leave+in+macbook+pro+case&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:14:55</td>
<td><span>gdb macro</span><br /><small>/?p=17</small></td>
<td><span><a href="http://www.google.co.jp/search?hs=1fI&amp;hl=ja&amp;client=firefox&amp;rls=org.mozilla%3Aja%3Aofficial&amp;q=gdb+macro&amp;btnG=Google+%E6%A4%9C%E7%B4%A2&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:13:42</td>
<td><span>macbook pro   heat issues</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+%2B+heat+issues&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:11:25</td>
<td><span>dim noise macbookpro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=fr&amp;q=dim+noise+macbookpro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:07:43</td>
<td><span>exporting netflix queue</span><br /><small>/99/netnewsflix</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=exporting+netflix+queue&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:03:31</td>
<td><span>macbook pro noise fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+fix&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 17:01:57</td>
<td><span>macbook pro processor noise fix</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+processor+noise+fix&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 17:01:14</td>
<td><span>turn off green led on isight macbook</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=turn+off+green+led+on+isight+macbook&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:51:13</td>
<td><span>are  desiccant packs  dangerous</span><br /><small>/95/a-word-of-caution</small></td>
<td><span><a href="http://search.msn.com/results.aspx?q=are++desiccant+packs++dangerous&amp;FORM=QBRE" target="NewWindow">MSN</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:50:49</td>
<td><span>macbook pro hiss</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+hiss&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:30:43</td>
<td><span>macbook pro whining noise</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;rls=GGLG%2CGGLG%3A2005-39%2CGGLG%3Aen&amp;q=macbook+pro+whining+noise" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:22:15</td>
<td><span>noise issues with macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=noise+issues+with+macbook+pro&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:18:24</td>
<td><span>whining macbook pro fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=whining+macbook+pro+fix&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:15:52</td>
<td><span>macbook heat</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+heat&amp;hl=en&amp;lr=&amp;c2coff=1&amp;safe=off&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:11:29</td>
<td><span>quiet MBP</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=quiet+MBP&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:09:56</td>
<td><span>macbook noise mirror</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+noise+mirror&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:07:39</td>
<td><span>build scripts in xcode</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?q=build+scripts+in+xcode&amp;btnG=Search&amp;hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:06:16</td>
<td><span> hard c4e </span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com.tw/search?hs=LYH&amp;hl=zh-TW&amp;client=firefox&amp;rls=org.mozilla%3Azh-TW%3Aofficial&amp;q=%22hard+c4e%22&amp;btnG=%E6%90%9C%E5%B0%8B&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:03:44</td>
<td><span>macbook left fan</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=macbook+left+fan&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 16:02:44</td>
<td><span> no menus  fear</span><br /><small>/97/windows-of-perception/feed/</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2006-15,GGLG:en&amp;q=%22no+menus%22+fear" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 16:01:54</td>
<td><span>curl emulate web browser cookie jar</span><br /><small>/50/be-a-web-browser-for-halloween</small></td>
<td><span><a href="http://www.google.bg/search?q=curl+emulate+web+browser+cookie+jar&amp;btnG=%D0%A2%D1%8A%D1%80%D1%81%D0%B5%D0%BD%D0%B5" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 15:57:57</td>
<td><span>macbook pro too hot</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+too+hot&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 15:54:41</td>
<td><span>domain OS X</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=domain+OS+X&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 15:52:42</td>
<td><span>macbook quicktime .mov no sound</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+quicktime+.mov+no+sound&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 15:48:31</td>
<td><span>macbookpro screensaver work windows xp boot camp</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;q=macbookpro+screensaver+work+windows+xp+boot+camp&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 15:44:15</td>
<td><span>macbook QUIET</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+QUIET&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 15:21:08</td>
<td><span>macbook pro red sweater</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+red+sweater&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 14:39:54</td>
<td><span>macbook whine disable a core</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.ch/search?client=firefox-a&amp;rls=org.mozilla%3Afr%3Aofficial_s&amp;hl=fr&amp;q=macbook+whine+disable+a+core&amp;meta=&amp;btnG=Recherche+Google" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 14:39:18</td>
<td><span>curl cookiejar</span><br /><small>/50/be-a-web-browser-for-halloween</small></td>
<td><span><a href="http://www.google.com/search?q=curl+cookiejar&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 14:38:47</td>
<td><span>cool macbook pro tricks</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=cool+macbook+pro+tricks&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 14:37:51</td>
<td><span>macbook pro MNK forum</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.ch/search?hl=fr&amp;q=macbook+pro+MNK+forum&amp;btnG=Rechercher&amp;meta=lr%3Dlang_fr" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 14:37:24</td>
<td><span>MacBook Pro hard drive noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://ww.google.ca/search?hl=en&amp;q=MacBook+Pro+hard+drive+noise&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 14:19:19</td>
<td><span>macbook delete logon</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?num=20&amp;hl=en&amp;lr=&amp;newwindow=1&amp;q=macbook+delete+logon" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 14:15:33</td>
<td><span>interface builder size</span><br /><small>/65/center-windows-in-interface-builder</small></td>
<td><span><a href="http://www.google.com/search?q=interface%20builder%20size" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 14:14:44</td>
<td><span>managing podcasts itunes sucks</span><br /><small>/62/a-home-for-wayward-podcasts</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLJ,GGLJ:2006-05,GGLJ:en&amp;q=managing+podcasts+itunes+sucks" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 14:06:49</td>
<td><span>CPU Clock MacBook Pro</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hs=PgF&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=CPU+Clock+MacBook+Pro&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 14:02:03</td>
<td><span>CPU Clock for Apple MacBook Pro</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=CPU+Clock+for+Apple+MacBook+Pro&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:57:46</td>
<td><span>noisy macbook pro</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=noisy+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 13:56:53</td>
<td><span>macbook inverter noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+inverter+noise&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:55:41</td>
<td><span>Magic Noise Killer Macbook</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Magic+Noise+Killer+Macbook&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 13:35:08</td>
<td><span>programmer gone mad</span><br /><small>/67/xcode-search-gone-mad/feed/</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=SNYI,SNYI:2005-34,SNYI:en&amp;q=programmer+gone+mad" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:32:25</td>
<td><span>cryptonome noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;q=cryptonome+noise&amp;btnG=Suche&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 13:32:24</td>
<td><span>macbook pro speaker problems</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+speaker+problems&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:29:15</td>
<td><span>apple quiet script</span><br /><small>/105/all-work-and-no-play-makes-a-very-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=apple+quiet+script&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 13:23:44</td>
<td><span>Gesture Keyboard buy</span><br /><small>/61/a-mighty-mistake/feed/</small></td>
<td><span><a href="http://www.google.co.in/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=RNWE,RNWE:2004-33,RNWE:en&amp;q=Gesture+Keyboard+buy" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:22:30</td>
<td><span>NSTimer</span><br /><small>/64/throttling-nsslider/feed/</small></td>
<td><span><a href="http://www.google.com/search?q=NSTimer&amp;hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;start=40&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 13:17:39</td>
<td><span> MacBook Pro  Noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=%22MacBook+Pro%22+Noise&amp;btnG=Search&amp;hs=neZ&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 13:15:51</td>
<td><span>upgrade  MacBook Pro </span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;rls=GGLG%2CGGLG%3A2005-42%2CGGLG%3Aen&amp;q=upgrade+%22MacBook+Pro%22&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:59:25</td>
<td><span>setting up address  network directory </span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?num=30&amp;hl=en&amp;lr=&amp;newwindow=1&amp;safe=off&amp;q=setting+up+address+%22network+directory%22&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:53:31</td>
<td><span>computer just quit power supply makes clicking noise</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?q=computer+just+quit+power+supply+makes+clicking+noise&amp;hl=en&amp;hs=pvt&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official_s&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:42:37</td>
<td><span>MagicNoiseKiller </span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=opera&amp;rls=en&amp;q=MagicNoiseKiller,&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:41:55</td>
<td><span>cpu whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=cpu+whine&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:35:51</td>
<td><span>macbook pro mike minard</span><br /><small>/feed/</small></td>
<td><span><a href="http://www.google.com/search?hs=MzY&amp;hl=en&amp;lr=&amp;safe=active&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=macbook+pro+mike+minard&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:32:33</td>
<td><span>macbook pro fix</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+pro+fix&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:30:33</td>
<td><span>photo booth on a powermac</span><br /><small>/page/2/</small></td>
<td><span><a href="http://www.google.com/search?q=photo+booth+on+a+powermac&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en-us&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:27:17</td>
<td><span>apple employment blog</span><br /><small>/55/apple-employee-silenced-by-self</small></td>
<td><span><a href="http://www.google.com/search?q=apple+employment+blog&amp;hl=en&amp;hs=PaY&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:22:23</td>
<td><span>macbook pro noise remover</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+noise+remover&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:22:15</td>
<td><span>millisecond to microseconds calculator</span><br /><small>/96/google-calculator</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=millisecond+to+microseconds+calculator" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:16:00</td>
<td><span>macbook pro firmware upgrade</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+pro+firmware+upgrade&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:14:44</td>
<td><span>lawsuit macbook pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=lawsuit+macbook+pro" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:14:17</td>
<td><span>how to setup a network with a domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=opera&amp;rls=af&amp;q=how+to+setup+a+network+with+a+domain&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:11:16</td>
<td><span>simulating mozilla openssl</span><br /><small>/50/be-a-web-browser-for-halloween</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=simulating+mozilla+openssl&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:10:31</td>
<td><span>setting up network itunes library</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=setting+up+network+itunes+library&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:07:35</td>
<td><span>shark bites</span><br /><small>/?p=41</small></td>
<td><span><a href="http://search.msn.com/results.aspx?srch=105&amp;FORM=AS5&amp;q=shark+bites" target="NewWindow">MSN</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:04:29</td>
<td><span>kids eating silica gel packages</span><br /><small>/95/a-word-of-caution</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=kids+eating+silica+gel+packages&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:02:04</td>
<td><span>subversion inserting id string in checked files</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?q=subversion+inserting+id+string+in+checked+files&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 12:00:46</td>
<td><span>macbook noises</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+noises&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 12:00:23</td>
<td><span>dell power adapter hacks</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=dell+power+adapter+hacks&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official_s&amp;start=30&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:57:20</td>
<td><span>mac book pro display dim corners</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=mac+book+pro+display+dim+corners&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:50:41</td>
<td><span>red herring sweater</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=red+herring+sweater" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:50:09</td>
<td><span>Apple Software Interview Questions</span><br /><small>/55/apple-employee-silenced-by-self</small></td>
<td><span><a href="http://www.google.ca/search?q=Apple+Software+Interview+Questions&amp;hl=en&amp;lr=&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:48:14</td>
<td><span>Xcode Number of recently open projects</span><br /><small>/32/destroy-xcode-tedium</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Xcode+Number+of+recently+open+projects&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:44:41</td>
<td><span>macbook dashboard widget</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=macbook+dashboard+widget&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:39:49</td>
<td><span>mav pro buzz</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=mav+pro+buzz&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:35:49</td>
<td><span>macbook hot repair</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+hot+repair&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:31:33</td>
<td><span>Magicnoisekiller download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=Magicnoisekiller+download&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:21:27</td>
<td><span>problems with the Mac Pro laptop pad</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=problems+with+the+Mac+Pro+laptop+pad&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:18:33</td>
<td><span>macbook pro inverter board location</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+inverter+board+location&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:17:33</td>
<td><span>automount webdav os x</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial_s&amp;hl=en&amp;q=automount+webdav+os+x&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:17:32</td>
<td><span>macbook pro battery life</span><br /><small>/111/macbook-pro-noise-battery-life-tests</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+battery+life&amp;hl=en&amp;hs=lNX&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:13:26</td>
<td><span>wordpress style tag disappears in post</span><br /><small>/94/live-preview-or-die</small></td>
<td><span><a href="http://www.google.com/search?q=wordpress+style+tag+disappears+in+post&amp;hl=cs&amp;hs=t2C&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 11:10:48</td>
<td><span>macbook pro heat lawsuit</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=macbook+pro+heat+lawsuit&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 11:04:35</td>
<td><span>macbook pro hacks</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+hacks" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:59:54</td>
<td><span>high pitch noise macbook</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=high+pitch+noise+macbook&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 10:58:38</td>
<td><span>macbook pro noise revision D</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+noise+revision+D" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:37:43</td>
<td><span>skype like programs</span><br /><small>/80/an-skype-like-app-with-open-source-roots</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient-ff&amp;ie=UTF-8&amp;rls=GGGL,GGGL:2005-09,GGGL:en&amp;q=skype+like+programs" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 10:30:44</td>
<td><span>dice widget dashboard</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=dice%20widget%20dashboard" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:27:13</td>
<td><span>Macbook Pro random restarts</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=Macbook+Pro+random+restarts&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 10:26:51</td>
<td><span> os x  network domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;safe=off&amp;q=%22os+x%22+network+domain&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:16:11</td>
<td><span>mac book pro whining noise</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;hs=KRr&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;sa=X&amp;oi=spell&amp;resnum=1&amp;ct=result&amp;cd=1&amp;q=mac+book+pro+whining+noise&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 10:13:54</td>
<td><span>macbook pro makes buzzing sound</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+makes+buzzing+sound&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:13:17</td>
<td><span>xcode svn versioning</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=xcode+svn+versioning&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 10:11:47</td>
<td><span>macbook pro buzzing sound</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+buzzing+sound&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 10:01:14</td>
<td><span>upgrade macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=upgrade+macbook+pro&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:59:48</td>
<td><span>whining noise with macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=whining+noise+with+macbook+pro&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:57:00</td>
<td><span>mac OS X DOMAIN Settings</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=mac+OS+X+DOMAIN+Settings&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:45:08</td>
<td><span>magicnoisekiller download</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;safe=off&amp;client=safari&amp;rls=en&amp;q=magicnoisekiller+download&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:42:09</td>
<td><span>electric shock on mac book pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=electric+shock+on+mac+book+pro&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:38:01</td>
<td><span>macbook pro microphone</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.de/search?q=macbook+pro+microphone&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:34:38</td>
<td><span>battery life check apple script</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=battery+life+check+apple+script&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:27:40</td>
<td><span>whine  macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hs=kcq&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=whine%2C+macbook+pro&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:23:32</td>
<td><span>whining noise update</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=whining+noise+update&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:23:23</td>
<td><span> Mirror widget   whine</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=%22Mirror+widget%22+%2Bwhine" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:14:41</td>
<td><span>blogs about macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?client=opera&amp;rls=en&amp;q=blogs+about+macbook+pro&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 09:12:37</td>
<td><span>red sweater san francisco</span><br /><small>/category/web/</small></td>
<td><span><a href="http://www.google.com/search?hs=bUq&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=red+sweater+san+francisco&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 09:03:23</td>
<td><span>MBP noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=de&amp;client=safari&amp;rls=de-de&amp;q=MBP+noise&amp;btnG=Suche&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:59:00</td>
<td><span>iphoto change network mount</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=iphoto+change+network+mount&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:45:47</td>
<td><span>netnewswire subscribe bookmarklet</span><br /><small>/103/announcing-dinky-links</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=netnewswire+subscribe+bookmarklet&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:39:23</td>
<td><span>Mirror Widget</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=ja-jp&amp;q=Mirror+Widget&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:37:04</td>
<td><span>high pitched noise usb power management</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?q=high+pitched+noise+usb+power+management&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:35:37</td>
<td><span>macbook pro hissing noise</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook%20pro%20hissing%20noise&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:29:25</td>
<td><span>magic mac book pro whine</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hs=Ipp&amp;hl=en&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;q=magic+mac+book+pro+whine&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:24:52</td>
<td><span>NOOOOOOOOOO</span><br /><small>/86/noooooooooo</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=NOOOOOOOOOO" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:21:53</td>
<td><span>macbook-pro heat recall</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;q=macbook-pro+heat+recall&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:14:45</td>
<td><span>interface builder center window</span><br /><small>/65/center-windows-in-interface-builder</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=interface+builder+center+window&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:11:56</td>
<td><span>Be True to Your Work &#8211; Short plays</span><br /><small>/105/all-work-and-no-play-makes-a-very-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.co.in/search?hl=en&amp;q=Be+True+to+Your+Work+-+Short+plays&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:02:43</td>
<td><span>macbook moo charging</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=macbook%20moo%20charging&amp;sourceid=mozilla2&amp;ie=utf-8&amp;oe=utf-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 08:02:32</td>
<td><span>sendAction cocoa</span><br /><small>/64/throttling-nsslider</small></td>
<td><span><a href="http://search.yahoo.com/search?p=sendAction+cocoa&amp;ei=UTF-8&amp;xargs=0&amp;pstart=1&amp;fr=slv1-&amp;b=11" target="NewWindow">Yahoo</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 08:01:14</td>
<td><span>download high pitched mosquito</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=download+high+pitched+mosquito&amp;btnG=Search&amp;hl=en&amp;lr=&amp;safe=off&amp;rls=RNWE%2CRNWE%3A2005-22%2CRNWE%3Aen" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:56:22</td>
<td><span>macbook pro processor noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+pro+processor+noise" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:54:49</td>
<td><span>macbook pro whine screen</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.ca/search?hl=en&amp;rls=GGLG%2CGGLG%3A2006-01%2CGGLG%3Aen&amp;q=macbook+pro+whine+screen&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:49:38</td>
<td><span>network domain</span><br /><small>/106/the-network-domain</small></td>
<td><span><a href="http://www.google.com.sa/search?hl=ar&amp;safe=active&amp;q=network%2Bdomain&amp;btnG=%D8%A7%D8%A8%D8%AD%D8%AB%21&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:48:07</td>
<td><span>display noise macbook pro</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=display+noise+macbook+pro&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:31:53</td>
<td><span>qa</span><br /><small>/index.php?s=qa</small></td>
<td><span><a href="/index.php?s=qa" target="NewWindow">localhost</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:29:11</td>
<td><span>mac app development hid usb api</span><br /><small>/89/hideous-adventures-with-open-source</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=mac+app+development+hid+usb+api&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:20:06</td>
<td><span>macbook battery whine</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=macbook+battery+whine&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:18:45</td>
<td><span>c1e activate</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2006-15,GGLG:en&amp;q=c1e+activate" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:16:54</td>
<td><span>Software problems on macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=Software+problems+on+macbook+pro&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:11:06</td>
<td><span>another term for an open bug fix no completed</span><br /><small>/67/xcode-search-gone-mad</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=another+term+for+an+open+bug+fix+no+completed" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:09:41</td>
<td><span>subversion unique build id</span><br /><small>/23/automatic-build-sub-versioning-in-xcode</small></td>
<td><span><a href="http://www.google.com/search?q=subversion+unique+build+id&amp;hl=en&amp;lr=&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:08:03</td>
<td><span>macbook pro temperature sensors</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?hl=de&amp;client=safari&amp;rls=de-de&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;q=macbook+pro+temperature+sensors&amp;spell=1" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:03:34</td>
<td><span>rightmark macbook</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2006-16,GGLG:en&amp;q=rightmark+macbook" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 07:03:26</td>
<td><span>computer stop working after running partition magic </span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;rls=GGLG%2CGGLG%3A2006-14%2CGGLG%3Aen&amp;q=computer+stop+working+after+running+partition+magic+&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 07:00:32</td>
<td><span>macbook pro left fan</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;q=macbook+pro+left+fan&amp;btnG=Suche&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 06:57:24</td>
<td><span>red sweater mac</span><br /><small>/</small></td>
<td><span><a href="http://www.google.com/search?q=red+sweater+mac&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 06:47:13</td>
<td><span>regex and shell scripts</span><br /><small>/26/rock-the-funky-finder-regex</small></td>
<td><span><a href="http://www.google.com/search?q=regex+and+shell+scripts&amp;hl=en&amp;lr=&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 06:43:12</td>
<td><span>macbook pro high pitched noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?q=macbook+pro+high+pitched+noise&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 06:16:39</td>
<td><span>macbook pro noise killer</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+killer&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 06:15:56</td>
<td><span>magicnoisekiller update</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;q=magicnoisekiller+update&amp;btnG=Google+Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 06:14:21</td>
<td><span>NSPanel not modal</span><br /><small>/85/kagi-universal</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=de-de&amp;q=NSPanel+not+modal&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 06:06:36</td>
<td><span>USB bulk sample source</span><br /><small>/89/hideous-adventures-with-open-source/feed/</small></td>
<td><span><a href="http://www.google.bg/search?q=USB+bulk+sample+source&amp;hl=bg&amp;lr=&amp;start=20&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 06:00:10</td>
<td><span>switch red conection</span><br /><small>/97/windows-of-perception</small></td>
<td><span><a href="http://search.t1msn.com.mx/results.aspx?q=switch+red+conection&amp;FORM=QBRE" target="NewWindow">MSN</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 05:54:26</td>
<td><span>macbook pro early adopters</span><br /><small>/macbook-pro-noise-complaints/</small></td>
<td><span><a href="http://www.google.com/search?sourceid=navclient&amp;ie=UTF-8&amp;rls=GGLG,GGLG:2006-15,GGLG:en&amp;q=macbook+pro+early+adopters" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 05:51:48</td>
<td><span>macbook pro brightness</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.nl/search?q=macbook+pro+brightness&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox&amp;rls=org.mozilla:en-US:unofficial" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 05:46:31</td>
<td><span>g5 noise chud</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?q=g5+noise+chud&amp;hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 05:27:30</td>
<td><span>macbook  fan</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.no/search?q=macbook+%2Bfan&amp;hl=no&amp;hs=Qqm&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:nb-NO:official&amp;start=10&amp;sa=N" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 05:17:25</td>
<td><span>cocoa applescript category</span><br /><small>/category/programming/applescript/</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=cocoa+applescript+category&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 05:15:28</td>
<td><span>converting int to NSString in objective c</span><br /><small>/98/string-theory</small></td>
<td><span><a href="http://www.google.co.in/search?hl=en&amp;q=converting+int+to+NSString+in+objective+c&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 05:10:31</td>
<td><span>web text tcpdump</span><br /><small>/50/be-a-web-browser-for-halloween</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=web+text+tcpdump&amp;btnG=Google+Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 05:00:11</td>
<td><span>mac book pro noise killer</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=fr&amp;q=mac+book+pro+noise+killer&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 04:57:34</td>
<td><span>macbook pro noise screen</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=macbook+pro+noise+screen&amp;ie=UTF-8&amp;oe=UTF-8" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 04:53:19</td>
<td><span> cpu clock c1e source code</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.de/search?hl=de&amp;q=%2Bcpu+clock%2Bc1e%2Bsource+code&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 04:45:50</td>
<td><span>IOPlatformPluginFamily</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro/feed/</small></td>
<td><span><a href="http://www.google.com/search?hl=it&amp;q=IOPlatformPluginFamily&amp;btnG=Cerca&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 04:20:22</td>
<td><span>powermac g5 fan control widget</span><br /><small>/105/all-work-and-no-play-makes-a-quiet-macbook-pro</small></td>
<td><span><a href="http://www.google.com/search?hl=en&amp;lr=&amp;client=safari&amp;rls=en&amp;q=powermac+g5+fan+control+widget&amp;btnG=Search" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 04:14:44</td>
<td><span>objective c converting int to NSString</span><br /><small>/98/string-theory</small></td>
<td><span><a href="http://www.google.co.in/search?hl=en&amp;q=objective+c+converting+int+to+NSString&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 04:01:12</td>
<td><span>leave mnemonic intel assembler</span><br /><small>/70/assembler-instruction-reference</small></td>
<td><span><a href="http://www.google.pl/search?hl=pl&amp;q=leave+mnemonic+intel+assembler&amp;lr=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 03:48:01</td>
<td><span>mbp quiet</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.com/search?q=mbp+quiet&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 03:33:27</td>
<td><span>macbook pro models without noise</span><br /><small>/108/macbook-pro-noise-i-believe-in-miracles</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=macbook+pro+models+without+noise&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 03:30:04</td>
<td><span>noise on the macbook pro</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?hl=en&amp;q=noise+on+the+macbook+pro&amp;btnG=Search&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-even">
<td>060417 03:21:12</td>
<td><span>electric shock mac book pro</span><br /><small>/113/macbook-pro-the-whining-user</small></td>
<td><span><a href="http://www.google.es/search?hl=es&amp;q=electric+shock+mac+book+pro&amp;meta=" target="NewWindow">Google</a></span></td>
</tr>
<tr class="ref-odd">
<td>060417 02:45:22</td>
<td><span>quietMPB for powerbook</span><br /><small>/107/macbook-pro-noise-update</small></td>
<td><span><a href="http://www.google.co.uk/search?q=quietMPB+for+powerbook&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official" target="NewWindow">Google</a></span></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/123/macbook-pro-noise-stop-the-cow-macbook-pro/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>MBP: Love Conquers All</title>
		<link>http://www.red-sweater.com/blog/122/macbook-pro-noise-love-conquers-all</link>
		<comments>http://www.red-sweater.com/blog/122/macbook-pro-noise-love-conquers-all#comments</comments>
		<pubDate>Mon, 17 Apr 2006 17:05:03 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/122/macbook-pro-noise-love-conquers-all</guid>
		<description><![CDATA[This post is part of the MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! Just a minor update: [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of the <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
Just a minor update: my MacBook Pro has made it safely to Texas, and is being operated on (hopefully) as we speak!
</p>
<p>
<img src="http://www.red-sweater.com/blog/images/MacBookDiagnosis.jpg"/>
</p>
<p>
As a diversion, while I wait patiently for my MacBook Pro to be put through the paces and ultimately returned to me (probably, alas, with CPU whine in-tact), I punched some silly phrases into Google, to measure sheer &#8220;hit count&#8221;:
</p>
<p>
<img src="http://www.red-sweater.com/blog/images/MacbookChart.jpg"/>
</p>
<p>
This chart proves nothing. But it does motivate thinking. The word &#8220;macbook&#8221; is twenty times more likely to appear on the same web page with &#8220;hate&#8221; or &#8220;noise&#8221; than it is with &#8220;aardvark.&#8221;
</p>
<p>
And if that ain&#8217;t science, then I don&#8217;t want to be a scientist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/122/macbook-pro-noise-love-conquers-all/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>MBP: Customer Sensory Issues</title>
		<link>http://www.red-sweater.com/blog/117/macbook-pro-noise-customer-sensory-issues</link>
		<comments>http://www.red-sweater.com/blog/117/macbook-pro-noise-customer-sensory-issues#comments</comments>
		<pubDate>Sat, 15 Apr 2006 19:42:19 +0000</pubDate>
		<dc:creator>Daniel Jalkut</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.red-sweater.com/blog/117/macbook-pro-noise-customer-sensory-issues</guid>
		<description><![CDATA[This post is part of the MacBook Pro Complaints series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading! I was getting increasingly [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"><!-- .caption { border-style:dashed; border-width:1px; border-color:#BBBBBB; margin-left:20px; padding:10px;}--></style>
<p><div class="caption">
This post is part of the <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">MacBook Pro Complaints</a> series. Instead of (or in addition to) linking directly to this post, consider linking to the series link, which includes a summary of all findings to date and direct links to the pertinent downloads that users may find useful. Thanks for reading!
</div>
</p>
<p>
I was getting increasingly anxious to finally bite the bullet and pursue repair and/or replacement of my defective MacBook Pro. I have held off for a while hoping that Apple would get its story straight and hopefully have a comprehensive, time and cost effective method for dealing with these complaints. After the initial experience of calling and scheduling a product return, I will say that I&#8217;m pretty pessimistic that all of my problems will be fixed, but I&#8217;m hoping for the best.</p>
<h4>Making the Call</h4>
</p>
<p>
I was inspired to finally call when <a href="http://www.atomicbird.com/">Tom Harrington</a> told me about his experience reporting similar (though not quite as extensive) problems. Something about the courage of numbers or something. After I called, I also noticed a good write-up by <a href="http://blogs.zdnet.com/Apple/?p=175">Jason O&#8217;Grady</a> on the subject of his similar experience. In my opinion, the more people who speak openly about this problem and the results of pursuing a solution, the better.
</p>
<p>
Here&#8217;s how my process went. I called up AppleCare and got a very friendly, sympathetic representative, who dutifully wrote down every last smidgen of detail I recited to her (for the record, I <em>only</em> complained about display buzz, display squeal, cpu whine, mooing, and heat). I asked her up-front if it made sense, given that I was going to reveal a laundry list of MBP issues, that I be transferred to a &#8220;product specialist.&#8221; She let me know that if that were to happen she would have to provide them with a written list of the complaints anyway, so I went through that process with her.
</p>
<p>
It took about 15 minutes and when we were finished I was put on hold while she talked to the product specialist. I never actually got to talk to the specialist, but apparently my representative sort of relayed the facts of my problem to the specialist, and it was the specialist&#8217;s job to bat down as many of them as possible while essentially only admitting to the likelihood that the screen buzzing was the known screen inverter problem.
</p>
<p>
The verdict? &#8220;Send in the MacBook Pro for the display buzzing and hopefully everything else will magically get fixed as a side-effect.&#8221; Uh, yeah right. So I explained again as cordially as possible that I understand the process a little bit, and if I&#8217;m just going to end up sending it straight back in to Apple for further repairs, it might save us all a lot of time and money if she can emphasize my desire to get the other issues addressed.
</p>
<p>
In the end my tactic didn&#8217;t really work. After almost an hour total spent on the phone, I was given a dispatch number which would be used to track the repair process. Oh well. I&#8217;m really pessimistic that anything but the screen buzzing will be fixed on this round, but at least that will be a start, and marks the beginning of my due diligence in letting Apple repair the defects of this computer.
</p>
<p>
An hour or two after the telephone call, I got an email confirmation, summarizing the gist of my complaint as &#8220;Customer Sensory Issues.&#8221; This was the same assessment Tom had received, and I think the fact that more than one of us has gotten this assessment betrays Apple&#8217;s failure to own up here. Maybe chalk this one up as <a href="http://arstechnica.com/journals/apple.ars/2006/4/14/3586">another case</a> of &#8220;unfortunate use of language,&#8221; but the problems here are not &#8220;customer sensory issues.&#8221; True, there would be no problem if I didn&#8217;t have senses, but if that were true I would also have no credit card. And $2000+ from that credit card would also not be sitting in Apple&#8217;s bank account right now. <em>These are &#8220;MacBook Pro Noise Issues&#8221; &#8211; not customer sensory issues!</em>
</p>
<p><h4>Pickup and Delivery</h4>
</p>
<p>
To Apple&#8217;s credit, they pay for all the shipping costs to and from the repair center, but the amount of time I had to dedicate to being at home just to make this happen I think embodies the reasons people hesitate to embark on the process. First, I had to wait for the delivery of the empty box. It was shipped &#8220;overnight&#8221; but I found out that it really means &#8220;within 2 business days.&#8221; I was so eager to be here for the delivery of the empty box, that I practically didn&#8217;t leave the house for the whole next day after calling AppleCare. Missing the box would mean an extra day of waiting! The first day passed and no box. Shucks! Fortunately, on the second day the doorbell rang at around 11:30AM and I ran down to make sure I took possession. Since I&#8217;m up on the third floor, it&#8217;s not unheard of for delivery people to give up and rush off before I&#8217;m even able to make it down there (we don&#8217;t have a buzzer or intercom). I raced down the stairs, my heart pounding, and thrust open the door.
</p>
<p>
The box was sitting alone on the porch.  A yellow DHL truck revved off down the street.
</p>
<p>
Ah, quaint, trusting Somerville. I guess I didn&#8217;t have to be here at all. Hope they don&#8217;t leave it on the porch when it&#8217;s full! I took the box upstairs, opened it up, gave my MacBook Pro a final kiss goodbye, and packaged it according to instructions. I was especially impressed with this little tablet of individual packaging tape slices. Neat! My future best friend lay waiting in the box, now all I have to do is call DHL back and get them to pick it up!
</p>
<p>
I was hoping that maybe because DHL had just been here moments before, they might still be in the neighborhood to come back and pick it up. I guess it doesn&#8217;t work that way. I called at around 12:30AM and got an estimated pickup time of &#8220;by 6:00PM.&#8221; OK. that&#8217;s kind of a huge chunk of my day, but hopefully they&#8217;ll come early.
</p>
<p>
I sat around (working, but sitting around) all day waiting for that door bell so I could once again make the sprint down the stairs, this time with the precious cargo in tow. Hours passed and no doorbell. I occasionally feared that somehow I&#8217;d missed the doorbell, so I went downstairs to check for any sign of a stealth visit. No signs.
</p>
<p>
At 6:00PM &#8211; pretty much on the dot &#8211; I called the DHL number to see what was up. I didn&#8217;t particularly have anywhere to be, but I had postponed things like taking a shower all day so I could be present for this process. I&#8217;d just as soon out of &#8220;being DHL&#8217;s lap dog&#8221; mode, and back into my normal daily routine.
</p>
<p>
&#8220;Hi I&#8217;m just calling to check on the status of a scheduled pickup I made for today.&#8221;
</p>
<p>
<em>&#8220;The system shows that the driver is on schedule to make the pickup by 7:00!&#8221;</em>
</p>
<p>
&#8220;7:00? Oh, I must have misunderstood earlier. Hmm. Thanks.&#8221;
</p>
<p>
I hadn&#8217;t misunderstood. But I was trying to be nice. I didn&#8217;t want any chance of this pickup guy getting angry with me and purposely mishandling <em>precious</em>. Anyway, it was just another hour so I figured I&#8217;d wait it out and finally be done with it. When 7:00 rolled around, I starting getting irritated again. What the heck. This time I waited until 7:15, pacing around the living room and peering up and down the street for signs of the yellow truck. I called DHL again &#8211; I just wanted to make sure the driver didn&#8217;t check out for the day without picking up my package.
</p>
<p>
<em>&#8220;The driver is running a little late today but it still shows he&#8217;s scheduled to make your pickup at 7:30&#8243;</em>
</p>
<p>
MMmmmmmmkay. I guess a six hour window isn&#8217;t enough time to work with when picking up packages. I wouldn&#8217;t mind so much if they would just narrow it down a little or give me updates throughout the day. Like &#8220;there&#8217;s no chance in hell we&#8217;ll get there until after 5:00 so feel free to go out for lunch.&#8221; Even the DMV does a better job than this. At this point I&#8217;m pissed but still being polite on the phone.  What if I had dinner plans or something? DHL  is not winning my affection.
</p>
<p>
Finally at 7:45 (only 15 minutes late!) the driver rings the bell. I sprint down the stairs faster than ever, making as much noise as possible on the way. This is how I let the delivery guys know that I am not only home, but I&#8217;m completely insane. When I get to the door and open it, I see the driver wielding a portable bar-code reader. I rotate the box so that the scannable label faces him.
</p>
<p>
<em>&#8220;I see you&#8217;ve done this before!&#8221;</em> he says cheerfully.
</p>
<p>
&#8220;Heh.&#8221; I say, trying to remain upbeat and not knowing how to phrase &#8220;No, I&#8217;ve never done it before but I&#8217;m incredibly brilliant and I <em>know</em> what those magic guns you use are capable of.&#8221;
</p>
<p>
I continue making smalltalk, offer my sympathies to the driver as he complains that he still has several more pickups to make. He complains that there are too many one-way streets around here and he keeps getting lost. I feel sorry for him, but I also feel sorry for the several people after me on his list, who are also dancing around looking for yellow trucks to appear on the horizon.
</p>
<p><h4>Optimizing for Success</h4>
</p>
<p>
As I said earlier, the outlook is not great for my getting a completely repaired MacBook Pro. I got good lip service about the problems, but they were more eager to offer workarounds like &#8220;maybe you can make sure the micorophone is far away from the computer&#8221; when I offered reasonable circumstances in which the noises make the computer a less than Pro offering. Since the well-trained telephone staff seemed eager to dismiss all but the completely undeniable defects, I decided I better try to appeal to the techies themselves. So prior to sending off the MacBook, I made a few notable preparations.
</p>
<p>
First and foremost, I backed up every single bit of data that was in any way important to me. They can incinerate <em>precious</em> if they want to, as long as they send me a new one without noise. I am psychologically separated from that machine in particular. I never even installed the extra 1GB RAM I ordered, because I wanted to be sure it went into a machine that would be mine for a long time. If these noise issues are not fixed, I will be demanding a refund or a replacement. In the worst case scenario, I guess I&#8217;ll be stuck with 1GB of RAM and no laptop to use it in.
</p>
<p>
After archiving my own stuff (I left an encrypted copy of my home directory on the disk, for my convenience if I do get the same one back), I went to setting up the &#8220;optimum techie user account.&#8221; When you&#8217;re on the phone with Apple, they&#8217;ll ask for your login and password. Instead of giving it to them, just ensure them that you&#8217;ve set the machine up to auto-login when it boots. I added an account &#8220;apple&#8221; with password &#8220;apple&#8221; and hint &#8220;The password is &#8216;apple&#8217;.&#8221; I set this account up as the auto-login account. There. A fresh clean space for the techie to enjoy my laptop&#8217;s flaws in.
</p>
<p>
After setting up the techie account, it occurred to me that I might improve my chances of success if I improved the odds of the techie observing the heinousness of the problem. In particular, the CPU whine seems to be the most disputed of flaws by Apple. Reports across the web paraphrase Apple as basically dismissing the noise as &#8220;within Apple spec.&#8221; My earliest hack at quieting the noise was a little program called &#8220;QuietMBP,&#8221; which utilized the CPU at varying levels such that the noise was eliminated or extremely diminished. Now, a side-effect of QuietMBP is that you can also adjust the slider &#8220;the wrong way&#8221; and hear the noise. But when the slider is midway, it turns out there is a sweet spot of pain, where the noise is even worse than it is when the machine is completely idle. This demonstrates the &#8220;worst possible scenario.&#8221; It&#8217;s not exactly realistic that the machine will always be in this state, but then again it&#8217;s not exactly unrealistic. It&#8217;s just a program using the CPU. There&#8217;s no reason to think that Photoshop or some other program might not use the CPU with such a pattern as to maximize the noies.
</p>
<p>
I decided to set up QuietMBP in &#8220;noisy&#8221; mode, and configure it to start automatically with the &#8220;apple&#8221; account logs in. In place of the usual text in the QuietMBP dialog, I added a direct plea to the techie. I explained what the program was there for and suggested that until the slider can be moved from one extreme to the other with no audible noise, the machine was still defective. I also made it clear that I would be returning any machine that didn&#8217;t pass this obvious test of &#8220;fixedness.&#8221; As bitchy as this may sound in the blog, I was a bit more tactful in the actual text.
</p>
<p>
I also decided the techie might not be familiar with my blog and the work I&#8217;d done to get to the bottom of these problems. So I configured Safari to automatically launch as well, and positioned its window so that it would appear next to (not obscuring) the QuietMBP window. A perfect little &#8220;entree&#8221; to the problem at hand. Since I couldn&#8217;t rely on the techie being connected to the web, I downloaded a local copy of just the <a href="http://www.red-sweater.com/blog/macbook-pro-noise-complaints/">main summary</a> page, and set that as the &#8220;home page&#8221; for Safari. Et voila:
</p>
<p>
<a href="http://www.red-sweater.com/blog/images/MacBookProService.jpg"><img src="http://www.red-sweater.com/blog/images/MacBookProServiceThumb.jpg"/></a><br />
(Click for full size view)
</p>
<p>
If everything goes well, the techie will be staring at the above screen while also noticing a hideous high pitched chatter coming from the left side of the machine. If the techie cares at all, he or she can also pursue the questions raised in my blog, after connecting to the internet or on another machine. It may not make the slightest bit of difference, but I figure there&#8217;s at least a small chance that the techie will be touched by this problem, and become independently dedicated to making my MBP well.
</p>
<p>
Please, Apple Techie! Fix my MacBook Pro! Heck, fix them all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.red-sweater.com/blog/117/macbook-pro-noise-customer-sensory-issues/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

