<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3580925889301370172</id><updated>2012-01-12T13:40:36.056-06:00</updated><category term='calendar'/><category term='Vista'/><category term='snip'/><category term='Twitter'/><category term='image backup'/><category term='64-bit'/><category term='XP'/><category term='mirrored disks'/><category term='data encryption'/><category term='Thunderbird'/><category term='Snippage'/><category term='PCPhoneHome'/><category term='RAID'/><category term='G.Skill'/><category term='SP1'/><category term='Adobe AIR'/><category term='MC'/><category term='active desktop'/><category term='trojan'/><category term='NVIDIA'/><category term='Sonata III 500'/><category term='quiet'/><category term='BootMail'/><category term='HTPC'/><category term='Backup'/><category term='Copernic'/><category term='Google Desktop'/><category term='hard drive'/><category term='Virus'/><category term='computer'/><category term='TrueCrypt'/><category term='worm'/><category term='E6750'/><category term='Windows Live Mail'/><category term='Windows 7'/><category term='dual processor'/><category term='HDTV'/><title type='text'>Build My Own Computer</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>37</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-2057159354749701759</id><published>2011-03-18T16:41:00.001-05:00</published><updated>2011-03-18T16:44:58.844-05:00</updated><title type='text'>Use BLAT With STUNNEL To Send Email Via SSL On Windows</title><content type='html'>An &lt;a href="http://buildmyown.blogspot.com/2009/08/do-it-yourself-pc-phone-home.html"&gt;earlier post&lt;/a&gt; described a Windows command-line script which sends a detailed email at bootup, like PC Phone Home (tm).  It worked on our computers for a year and a half, and then stopped.  We discovered that our internet service provider, trying to reduce the amount of spam sent through their servers, had blocked port 25, the standard unencrypted email port.  They encouraged their customers to switch to SSL, encrypted transmission, using a different port.&lt;br&gt;
&lt;br&gt;
The BootMail script uses a free utility called blat to actually send its email.  Unfortunately, blat does not support SSL connections.  However another free utility, stunnel (secure tunnel?), can convert data from an SSL-ignorant program like blat and send it to an SSL-aware computer or connection.  Stunnel can do lots of other things too, and in fact I found the documentation to be thoroughly daunting, but installation turned out to be quite simple, basically the same on Windows 7, Vista, and XP:&lt;ul&gt;

&lt;li&gt;Download &lt;a href="ftp://ftp.stunnel.org/stunnel/stunnel-4.35-installer.exe"&gt;stunnel-4.35-installer.exe&lt;/a&gt; from &lt;a href="http://www.stunnel.org"&gt;stunnel.org&lt;/a&gt;.
&lt;li&gt;Run it and accept the defaults.  This installs the software on the disk, in c:\Program Files\stunnel on a 32-bit system or c:\Program Files (x86)\stunnel on a 64-bit system.
&lt;li&gt;In Start/Programs go to the new stunnel folder and right-click on "Edit Stunnel.conf."  Click Run as Administrator (Vista or W7), or click Open (XP).  This brings the configuration file into Notepad with rights to modify it.  You may be prompted for permission in this and following steps.
&lt;li&gt;Delete everything in the file, and copy in the four lines example below, modifying them for your use.  "Accept" is the port on which blat sends the email (this can be changed), and "connect" is the server name and port that your ISP wants you to use.  Save and quit.
&lt;li&gt;In Start/Programs, right-click "Service Install" and click Run as Adminstrator.
&lt;li&gt;In Start/Programs, right-click "Service Start" and click Run as Administrator.&lt;/ul&gt;
Example stunnel.conf file which could be used to send email through gmail:

&lt;pre&gt;
client = yes
[ssmtp]
accept  = 25
connect = smtp.gmail.com:465
&lt;/pre&gt;

In the script which runs blat, or in the registry, you will want to specity the server as follows: "-server localhost:25".&lt;br&gt;
&lt;br&gt;

(tm) PC PhoneHome is a trademark of Brigadoon Software.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-2057159354749701759?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/2057159354749701759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=2057159354749701759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2057159354749701759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2057159354749701759'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2011/03/use-blat-with-stunnel-to-send-email-via.html' title='Use BLAT With STUNNEL To Send Email Via SSL On Windows'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-6911722028093850801</id><published>2010-12-18T13:54:00.003-06:00</published><updated>2010-12-18T14:11:02.292-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='trojan'/><category scheme='http://www.blogger.com/atom/ns#' term='Virus'/><category scheme='http://www.blogger.com/atom/ns#' term='worm'/><title type='text'>Virus Attack!</title><content type='html'>One of our computers, a 32-bit Vista laptop, recently became infested with a virus.  Using either Google or Yahoo, and then clicking on a result, the browser would first go briefly to several other sites before going to the selected URL.  It appeared that the virus may have been a money-earner, clicking on ads that brought someone a profit.  I also got repeated popup messages that the computer was running out of disk, or out of memory, or out of "resources."  None of that was true, but the computer did seem slow.&lt;br&gt;
&lt;br&gt;
The antivirus software, Microsoft Security Essentials (MSE), looked green (OK) in the system tray, but it would not update itself, reporting an error.  After reboots to "safe" mode, MSE looked red or didn’t appear at all, and the browser still misbehaved.  Also, various system services would shut down, and the more I investigated, the more the virus seemed to react and shut things down.&lt;br&gt;
&lt;br&gt;
I was able to download Malwarebytes anti-malware, update it, and perform a scan, which came up with three results:&lt;ul&gt;&lt;li&gt;rogue.installer registry key&lt;li&gt;spyware.passwords.xgen in the recycle bin, and&lt;li&gt;rogue.hddscan in a temp directory&lt;/ul&gt;Malwarebytes attempted to clean them and said that it had done so.  But the bug was still there after a reboot to “safe” mode.  Another downloaded spyware scanner ran much more slowly but came up empty.&lt;br&gt;
&lt;br&gt;
I reverted the drive to a previous time, before the symptoms had appeared, but that didn’t help.  I eventually reverted the drive to the earliest available restore point, weeks earlier, and that didn’t help either.  So:&lt;ul&gt;&lt;li&gt;Either the bug had installed itself in the Master Boot Record, or&lt;li&gt;It had attached itself to a program that always gets started at boot, and had done so without the change being noticed by the system restore software.&lt;/ul&gt;I suspect that it had attached to Java Updater (jusched.exe), which is started at every reboot.  I can’t prove it - just a suspicion, based on a couple of observed symptoms.&lt;br&gt;
&lt;br&gt;
Fortunately, I had made a complete disk image of that laptop on an &lt;a href="http://buildmyown.blogspot.com/2010/11/iomega-professional-2-tb-external-drive.html"&gt;Iomega 2 TB external drive&lt;/a&gt; just six weeks earlier, using Macrium Reflect (free).  Macrium restored the drive in about an hour, including the Master Boot Record, and the problem was gone.  Files in the lost six weeks were then restored from more-recent partial backups.  Apparently nothing of value was lost, except a lot of my time.&lt;br&gt;
&lt;br&gt;
The virus may also have posed other risks, of which we are not aware:&lt;ul&gt;&lt;li&gt;It might have been a keylogger, sending keystrokes back to someone;&lt;li&gt;It may also have tried to find personal data and send that;&lt;li&gt;It could have tried to send virus-laden emails to our mailing list; and&lt;li&gt;it may have tried to infect other computers on the network.&lt;/ul&gt;I did have the computer disconnected from the network except when downloading the virus scanners, and so far, no other computer has shown symptoms of the infection.  There is no indication that emails were sent - no backscatter from virus checkers or bad email addresses.  This particular computer does not contain much personal data, and we have taken steps to deal with the keylogger possibility, including changes in passwords and a new IP address.&lt;br&gt;
&lt;br&gt;
How did the virus get in?  Windows and Internet Explorer (IE) were entirely up to date.  I checked recent emails, and that doesn’t seem to be the path. It may have come through Java, which was not quite up to date - I know for certain that the same computer was infected through Java a couple of years ago.  Perhaps it did come in through Internet Explorer itself, or one of the many browser extensions - this computer was still running IE7 rather than the newer IE8.  I’ll never know for sure, but Java is now up to date and Internet Explorer is now IE8.  Was it a virus, or a worm, or a trojan?  Who cares, it was destructive.&lt;br&gt;
&lt;br&gt;
What a pain.  Wouldn’t you just love to get hold of the cowardly creeps who write viruses like that and cause other people so much grief?  What kind of "man" (woman?) is that intelligent, and yet so incompetent  that they have to make a living by deliberately hurting other people?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-6911722028093850801?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/6911722028093850801/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=6911722028093850801' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/6911722028093850801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/6911722028093850801'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2010/12/virus-attack.html' title='Virus Attack!'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8435181076746863439</id><published>2010-11-04T17:33:00.004-05:00</published><updated>2010-11-04T17:43:00.779-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='XP'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='image backup'/><title type='text'>Iomega Professional 2 TB External Drive Review</title><content type='html'>It works!  With eSATA and USB 2.0 ports, this drive connected easily to six different computers ranging from 7 years old to less than a month, and running operating systems from Windows XP up to Windows 7, some 32 bit and some 64 bit.  Every computer saw it as an external hard drive and was able to use it.&lt;br&gt;
&lt;br&gt;
I have other ways of doing day-to-day backup, but was about to send a computer in to HP for repair and bought this drive (from TigerDirect, $130) to make an image backup first.  That went so well that I started on the other computers, backing them up with Microsoft's image writer, Windows Complete PC Backup (WCPCB) where it was available (Win 7 and Vista Ultimate only).  I also used Macrium Reflect Free Edition on all six computers, with success on all but one, and tried Paragon Backup &amp; Recovery Free 2010 on that one, with uncertain success.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Hardware &amp; Performance:&lt;/b&gt;&lt;ul&gt;
&lt;li&gt;Iomega Professional Hard Drive 2 terabytes (2,000 GB), P/N 31853000, Model LDHD-UPS, eSATA and USB 2.0.
&lt;li&gt;Capacity as displayed on a Windows Vista system: 1.81 TB, or 2,000,396,288,000 bytes.
&lt;li&gt;Maximum transfer rates (advertised): eSATA 3,000 megabits/second (Mb/s), USB 2.0 480 Mb/s. Those are peak rates, not achievable in large transfers.
&lt;li&gt;Actual average data transfer rates for complete image backup: As high as 475 megabits/second (Mb/s) writing through the eSATA port from a new computer, and as low as 93 Mb/s writing through USB 2.0 from a 4-year-old Toshiba laptop running Windows XP (a 7-year-old Gateway laptop with XP did better than that lame Toshiba!).
&lt;li&gt;In its search for image backup devices, WCPCB did not "find" the drive on a Vista Ultimate system when the drive was connected by USB 2.0, though it was mounted as a "local disk" and files were visible.  Therefore, the drive was not usable for WCPCB backup via USB.  It did find the drive when connected by eSATA.
&lt;li&gt;On Windows 7 computers, WCPCB did find the drive when connected either by USB or by eSATA.&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/TNM04fRx0uI/AAAAAAAACxE/k4Al7C0ZrdE/s1600/DSCF8056.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 200px; height: 166px;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/TNM04fRx0uI/AAAAAAAACxE/k4Al7C0ZrdE/s200/DSCF8056.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5535826512041857762" /&gt;&lt;/a&gt;

&lt;li&gt;Macrium always found the drive and was able to write to it.  Unfortunately, though, I was unable to boot their linux rescue CD on one of the Windows 7 systems.  They claim to have a fix if you buy the "full" edition, $40 per computer.  I may blog about Macrium Reflect later - I do like their software best, except for this problem.
&lt;li&gt;The Iomega Professional Hard Drive box indicates compatibility with Windows XP, Vista, and Windows 7 (32-bit).  Does anyone even make a 32-bit Windows 7 system?  I suppose, but anyway the drive seems to work just fine on two different 64-bit Windows 7 HP laptops, using either the eSATA or the USB connection and the drivers already in Windows 7.
&lt;li&gt;The drive is very quiet, and I'm fussy about noise.  It's quiet.
&lt;li&gt;In Device Manager:  The drive is listed as a "Samsung HD204UI USB Device", or just a "Samsung HD204UI" when connected by eSATA.
&lt;li&gt;According to the box label, the drive was assembled in Korea, Sept 20, 2010.  I wonder if the entire system is made &lt;b&gt;for&lt;/b&gt; Iomega in Korea by Samsung.  That's OK.
&lt;/ul&gt;
&lt;b&gt;Software:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I would expect any external drive to come with software for backing up the computer, both for drive-image backups and for incremental backups.  Indeed, the box containing this drive touts their "Iomega NeverDown Software," which, unfortunately, was not in the box and is not to be found anywhere on the Iomega web site.  Apparently, it has been discontinued.  The box does contain a brief manual, in seven different languages, telling how to get started with NeverDown, but alas, no software (oops).  They do offer the downloadable "Iomega Protection Suite," including:&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Iomega's v.Clone&lt;/b&gt;, which allows you to run YOUR OWN computer on anyone else's hardware.  It's a "virtual image" - is that an image backup?  Their own user manual advises that v.Clone is not backup software.
&lt;li&gt;&lt;b&gt;Roxio Retrospect Express&lt;/b&gt;, which appears to protect exactly one computer on one external drive, no more.  I'm not interested - my 2TB Iomega drive now has ten compressed system images on it from six fully-competent computers, and is barely half full.
&lt;li&gt;&lt;b&gt;Hence&lt;/b&gt;, Iomega apparently does not offer an image backup solution.  Ouch.
&lt;/ul&gt;
Happily, though, many other companies do offer image backup software, some for free, such as Macrium and Paragon.&lt;br&gt;
&lt;br&gt;
A caution: I have not yet attempted to &lt;b&gt;restore&lt;/b&gt; an image to any computer's hard drive.  That's a risk I won't take unless I have to, and the repaired computer came back from HP with the internal drive intact.  Where possible I do make at least two different images, one by WCPCB and one by Macrium or Paragon or both, in the hope that one will work if the other fails.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;For your consideration:&lt;/b&gt; Universal Serial Bus.  USB 2.0 followed USB 1.0, and has been around for at least seven years now.  USB 3.0 is a recently-approved standard, and manufacturers are working hard to implement it in new computers and drives.  It is about 10 times as fast as USB 2.0, a little faster even than eSATA, so computers with USB 3.0 may no longer need an an eSATA port.  Therefore, future computers might have to talk to this particular drive using only USB 2.0.&lt;br&gt;
&lt;br&gt;
That's not too bad, though - Macrium backed up a complete Windows 7 computer in 32 minutes via eSATA and 59 minutes via USB 2.0.  In both cases, 105 GB "used" space on the computer's drive was compressed to one 78 GB file on the Iomega drive.  Actual average data transfer rates, therefore, were 349 Mb/s and 189 Mb/s respectively, so the eSATA image backup was not even twice as fast as the USB 2.0 backup even though burst speed is six times higher.&lt;br&gt;
&lt;br&gt;
&lt;font size="-1"&gt;Copyright (c) 2010&lt;/font&gt;&lt;br&gt;
&lt;br&gt;
Please add your comments or questions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8435181076746863439?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8435181076746863439/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8435181076746863439' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8435181076746863439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8435181076746863439'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2010/11/iomega-professional-2-tb-external-drive.html' title='Iomega Professional 2 TB External Drive Review'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/TNM04fRx0uI/AAAAAAAACxE/k4Al7C0ZrdE/s72-c/DSCF8056.JPG' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-347920585056225718</id><published>2010-10-08T10:42:00.013-05:00</published><updated>2010-10-09T15:05:40.292-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='active desktop'/><category scheme='http://www.blogger.com/atom/ns#' term='Adobe AIR'/><category scheme='http://www.blogger.com/atom/ns#' term='Snippage'/><category scheme='http://www.blogger.com/atom/ns#' term='snip'/><title type='text'>Snippage User Manual</title><content type='html'>Windows 7 Active Desktop&lt;br&gt;
&lt;br&gt;
Snippage is written and offered at no cost by &lt;a href="http://gabocorp.com/"&gt;Gabo Mendoza&lt;/a&gt;.  It's a cool little program that can display a web page, or (better yet) a portion of a web page on the desktop.  That web page can be active, such as a web cam which refreshes, and you can select just the camera image.  You can watch weather radar, the stock market, twitter, anything you'd like to keep an eye on.  Other applications will run right on top of it, when you need the desktop space, but the Snippage window will keep up to date in the background.&lt;br&gt;
&lt;br&gt;
It's a replacement for the Active Desktop of Windows XP, and it runs on XP, Vista, and Windows 7.  I was unable to find a help file or a manual, and I did learn a few lessons the hard way, so here is my little "manual" with apologies to Gabo Mendoza.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;First:&lt;/b&gt; Install Adobe AIR from &lt;a href="http://get.adobe.com/air"&gt;get.adobe.air&lt;/a&gt;.  The current version (Oct 8, 2010) is 2.04.  Snippage was written for AIR 1.0, though, and it still works with AIR 2.04, so the version may not matter much.&lt;br&gt;
&lt;b&gt;Second:&lt;/b&gt; Visit &lt;a href="http://snippage.gabocorp.com/"&gt;snippage.gabocorp.com&lt;/a&gt; to download the file snippage.air.  As of Oct 8, 2010, the current version is 1.0 R 12.&lt;br&gt;
&lt;b&gt;Third:&lt;/b&gt; Run snippage.air.  Click past the dire warnings. Snippage is used by lots of people so I doubt it's a spy.  Allow the installer to put a shortcut icon on the desktop for now because you may need to restart Snippage a few times.  You can delete that later.&lt;br&gt;
&lt;br&gt;
Snippage will open with a little window showing a pointer "click me," see below.  Move the mouse pointer up past that and click "Expand to browser view."&lt;br&gt;

&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/TK88eq_nlZI/AAAAAAAACwM/VlrqDrAVY5o/s1600/ClickMe.GIF"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 202px;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/TK88eq_nlZI/AAAAAAAACwM/VlrqDrAVY5o/s400/ClickMe.GIF" border="0" alt=""id="BLOGGER_PHOTO_ID_5525701765441754514" /&gt;&lt;/a&gt;&lt;br&gt;

Enter the URL of the web page that you want to snip (or cut and paste from another browser) and click the red "go."&lt;br&gt;
&lt;br&gt;
You can re-size the browser view of your page, if necessary, by dragging the bottom right corner.  Then move the snip window over the part of the web page that you want to snip with the upper left corner, re-size it with the lower right.&lt;br&gt;
&lt;br&gt;
Snip it by clicking the upper right corner.  Now all you have left is the part of the page that you want, called the snip.  Drag on the top and put it wherever you want on the desktop.&lt;br&gt;
&lt;br&gt;
Once you have let go of the snip, your ability to control it may disappear.  It does for me.  To regain control:&lt;ul&gt;
&lt;li&gt;Right-click on the AIR icon in the system notification area (tray), click "Exit."  Then,
&lt;li&gt;Restart Snippage by clicking on the desktop icon, then quickly move the mouse to the top of the Snippage window.&lt;/ul&gt;
Do what you need to do:&lt;ul&gt;
&lt;li&gt;To move the snip, drag the top as before.
&lt;li&gt;To delete the snip, click "Expand to browser view" and then click the "X" in the upper right corner of that larger window.
&lt;li&gt;There are other options too.&lt;/ul&gt;
To make Snippage start every time the computer boots up, place a shortcut to the executable (copy the one on the desktop) in your startup folder.&lt;br&gt;
&lt;br&gt;
Here's nice page that I have used in Snippage tests: &lt;a href="http://lsmma.com/webcam/webcam_lg.html"&gt;lsmma.com/webcam/webcam_lg.html&lt;/a&gt;.  It is the Duluth, Minnesota ship canal camera at the Lake Superior Marine Museum.  The image updates every 30 seconds and will occasionally display an iron-ore carrier or a "salty" ocean-going vessel.  For boat watchers, the web site even has a schedule of expected arrivals and departures.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/TK88fdKqXvI/AAAAAAAACwU/EDzR7gnSWjk/s1600/Boats.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 296px;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/TK88fdKqXvI/AAAAAAAACwU/EDzR7gnSWjk/s400/Boats.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5525701778909847282" /&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I've tried Snippage on Windows XP SP3, Vista, and Windows 7 - they all work about the same.  On competent dual-CPU Vista and Win 7 machines, Snippage needs less than 1% of the CPU time.  On an old single-CPU XP system it may be over 1% but not 2%.  I suspect this would depend on the number of snips displayed and the rates of update.&lt;br&gt;
&lt;br&gt;
I'm grateful to &lt;a href="http://gabocorp.com/"&gt;Gabo Mendoza&lt;/a&gt; for giving us this cute tool.  One of my users is upgrading from XP to Win 7 and wants to keep the active desktop.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Saturday, Oct 9, 2010:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Oops - I just noticed an issue.  When I have two snips running, and delete one, it doesn't really go away.  The next time I run Snippage it comes back.  You can work around that problem by editing a text file, not pretty but it it works:&lt;ul&gt;
&lt;li&gt;Stop Snippage.
&lt;li&gt;Locate the "snipset" file.&lt;ul&gt;
&lt;li&gt;On my Vista and Win 7 systems it is C:\Users\Don\AppData\Roaming\Snippage.B28F...B29B.1\Local Store\current.snipset.
&lt;li&gt;On an XP system it's C:\Documents and Settings\Don\Application Data\Snippage.B28F...B29B.1\Local Store\current.snipset.&lt;/ul&gt;
&lt;li&gt;You may wish to make a backup copy of that file somewhere just in case.
&lt;li&gt;Open the file with a plain text editor such as Notepad.
&lt;li&gt;Snips are defined between &lt;b&gt;&amp;lt;snip...&amp;gt;&lt;/b&gt; and &lt;b&gt;&amp;lt;/snip&amp;gt;&lt;/b&gt; tags.  Within each snip you will find the URL of the web page that the snip displays, along with positioning and "snipping" information.
&lt;li&gt;Find the snip that contains the web page you want to delete, and remove it completely, including the &lt;b&gt;&amp;lt;snip...&amp;gt;&lt;/b&gt; at the front and the &lt;b&gt;&amp;lt;/snip&amp;gt;&lt;/b&gt; at the end.  Save the changes.
&lt;li&gt;Run Snippage.  If it doesn't work correctly, try again - something is wrong in the edit.&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-347920585056225718?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/347920585056225718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=347920585056225718' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/347920585056225718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/347920585056225718'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2010/10/snippage-user-manual.html' title='Snippage User Manual'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/TK88eq_nlZI/AAAAAAAACwM/VlrqDrAVY5o/s72-c/ClickMe.GIF' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8520099128541675967</id><published>2010-04-20T15:43:00.008-05:00</published><updated>2010-04-20T17:22:22.281-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Twitter'/><title type='text'>Send Blog Posts to Twitter</title><content type='html'>I recently started using Twitter, to follow the Boston Marathon.  It's great for events like that.  But then I also found out how to make my new blog posts appear on Twitter as if I had "tweeted" them, in the Twitter "timeline" as if they were part of the conversation.

It's not hard - here's how:&lt;ul&gt;
&lt;li&gt;Go to &lt;a href="http://feedburner.com"&gt;Feedburner&lt;/a&gt; and create an account.  If you are already on Blogger, you can use that account - you will notice that Feedburner.com actually resolves to a Google address.
&lt;li&gt;Under "Burn a feed right this instant," enter your blog address.  Next &gt;&gt;
&lt;li&gt;Then select a feed source.  The default is Atom - I have used that.
&lt;li&gt;On the WELCOME! page, click NEXT &gt;&gt;
&lt;li&gt;On the CONGRATS! page, click "Skip directly to ..."
&lt;li&gt;On the Publicize tab, select Socialize.
&lt;li&gt;On the Socialize page:&lt;ul&gt;
  &lt;li&gt;Add your Twitter account.  Then,
  &lt;li&gt;Change &lt;b&gt;Post content&lt;/b&gt; to "Title and Body."  This just means that the "tweeted" content will be the title and the first line or two of the body, instead of just the title.  Or don't change it.
  &lt;li&gt;Be sure to ACTIVATE at the bottom of the page.&lt;/ul&gt;&lt;/ul&gt;

I do notice a time lapse between the blog post and the tweet appearing on Twitter.  Maybe 20 - 30 minutes?  I haven't timed it.  Perhaps that's an intentional delay in Blogger, to allow time for the inevitable blog-post corrections before the RSS feed is generated.  Just a guess.&lt;br&gt;

&lt;a href="http://twitter.com/minnesotadon" target="_blank"&gt;&lt;img src="http://minnesotadon.ms11.net/icon/twitter_logo_header.png" align="bottom" border="0" alt="Don on Twitter (opens in a new window)" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8520099128541675967?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8520099128541675967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8520099128541675967' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8520099128541675967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8520099128541675967'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2010/04/send-blog-posts-to-twitter.html' title='Send Blog Posts to Twitter'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8127176072300687030</id><published>2009-11-20T16:30:00.000-06:00</published><updated>2009-11-20T16:30:17.102-06:00</updated><title type='text'>Incompetent HP Laptop Support</title><content type='html'>Not the people, the whole system.&amp;nbsp; I think they would&amp;nbsp;prefer to&amp;nbsp;have a dissatisfied customer return a laptop rather than giving access to people who can actually solve the problem.&lt;br /&gt;
&lt;br /&gt;
The built-in TV tuner in my brand-new HP dv7t-2200 laptop is not working, and I have now spent over 12 hours of my time (and HP's time) on the phone with HP's response center agents.&amp;nbsp; As far as I know, we are no closer to a solution.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;The Good:&lt;/strong&gt;&amp;nbsp; (1) I have had no trouble reaching an agent on the telephone (now seven different agents); and (2) Every one of the HP agents, except the last one, has been polite and has tried hard to fix the problem.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;The Bad:&lt;/strong&gt;&amp;nbsp; Except for one, every agent has been clueless.&amp;nbsp; I'm very certain that none have ever seen a TV tuner like mine - one guy asked if I had plugged in the tuner card.&amp;nbsp; It's built in, and they should know it!&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;The Ugly:&lt;/strong&gt;&amp;nbsp; HP's system simply does not allow for any continuity.&amp;nbsp; You cannot call anyone back - you always start all over.&amp;nbsp; They do have a record of what has been done before, but they only half believe it, so they want to repeat everything.&amp;nbsp; I had a good thing going once with Jason in the USA, who was on a&amp;nbsp;good track and promised a callback and an email.&amp;nbsp; No email, ever.&amp;nbsp; There was a call, which I unfortunately missed, and they said they would call again, but they never did.&amp;nbsp; Most of the agents who say they will call back do not do so.&amp;nbsp; It's impossible to get anywhere, gain any traction.&amp;nbsp; As far as I know, there is no way to escalate a problem.&amp;nbsp; HP just doesn't care about one laptop - they deal in hundreds and thousands of them.&lt;br /&gt;
&lt;br /&gt;
I managed to reach "Second Level" support today, but was informed by Adrian (in India) that I was only on warranty support and had not paid enough money to talk to him!&amp;nbsp; This despite the fact that I have purchased a 2-year support contract.&lt;br /&gt;
&lt;br /&gt;
The system is totally incompetent.&lt;br /&gt;
&lt;br /&gt;
I have about 12 days yet to send the damn thing back to HP for a full refund.&amp;nbsp; I don't want to do it, but it's looming larger every day.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8127176072300687030?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8127176072300687030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8127176072300687030' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8127176072300687030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8127176072300687030'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/11/incompetent-hp-laptop-support.html' title='Incompetent HP Laptop Support'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-7252632492967005854</id><published>2009-11-19T10:39:00.001-06:00</published><updated>2009-11-19T10:40:38.421-06:00</updated><title type='text'>Windows 7 Does Not Save Window Size or Position Settings</title><content type='html'>This is as good a reason as any to AVOID buying a computer with Windows 7.&amp;nbsp; Buy a Mac instead.&lt;br /&gt;
&lt;br /&gt;
In Windows XP and earlier we could set the size, position, and other details of an explorer&amp;nbsp;window, then close the window, and from then on a window with that path would have that same size, position, and details.&amp;nbsp; Windows Vista retained that function, but occasionally "forgot" everything, so we had to reset every window again.&lt;br /&gt;
&lt;br /&gt;
Windows 7 remembers NOTHING!&amp;nbsp; Actually, it seems to&amp;nbsp;know only the size and position of the last-used explorer window, even if it isn't closed yet, so all new windows will have that size and will fall of top of that window.&amp;nbsp; As a result, almost every newly-opened explorer window must be resized and repositioned, resulting in many more mouse-clicks and moves than ever before.&lt;br /&gt;
&lt;br /&gt;
According to remarks on two different forums, by people who may know, this is a deliberate change by Microsoft, not an accident.&amp;nbsp; It's a feature, not a bug.&amp;nbsp; If so, then Microsoft solves their little problems by simply eliminating the feature that has the problem!&lt;br /&gt;
&lt;br /&gt;
But it sure doesn't work for me.&amp;nbsp; I often work with multiple windows open, copying files from here to there or whatever.&amp;nbsp; I HATE HAVING TO FIX WINDOWS ALL THE TIME.&lt;br /&gt;
&lt;br /&gt;
I've never used a Mac, but people keep saying that it's better in some way.&amp;nbsp; Maybe I'm starting to catch on.&lt;br /&gt;
&lt;br /&gt;
FOR GOD'S SAKE BUY A MAC!&lt;br /&gt;
&lt;br /&gt;
I haven't returned my brand-new HP laptop to HP yet, but I'm sure leaning that way.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-7252632492967005854?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/7252632492967005854/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=7252632492967005854' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7252632492967005854'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7252632492967005854'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/11/windows-7-does-not-save-window-size-or.html' title='Windows 7 Does Not Save Window Size or Position Settings'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-1872386289375476981</id><published>2009-11-19T10:19:00.001-06:00</published><updated>2009-11-19T11:14:48.447-06:00</updated><title type='text'>Still No TV Tuner</title><content type='html'>I missed a phone call yesterday, so I don't know the current status of the TV Tuner problem on my brand-new HP dv7t-2200 laptop. My fault for missing it. &lt;br /&gt;
&lt;br /&gt;
Of course I tried to call back, twice actually, but was both times connected to an agent in India, neither of them able to bring up any record of my service ticket. Both wanted to start all over. After wasting 9 hours on Tuesday, I declined. &lt;br /&gt;
&lt;br /&gt;
The voice message from the missed call said they would try again today. We'll see.&amp;nbsp; They said that they would send an email and would call.&amp;nbsp; No email, but they did call.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-1872386289375476981?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/1872386289375476981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=1872386289375476981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/1872386289375476981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/1872386289375476981'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/11/still-no-tv-tuner.html' title='Still No TV Tuner'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5358782245778440412</id><published>2009-11-17T18:25:00.002-06:00</published><updated>2009-11-17T18:26:35.428-06:00</updated><title type='text'>HP dv7t Still Doesn't Work</title><content type='html'>To be slightly more fair, brand-new laptop, the TV tuner doesn't work.  At all.  Over nine hours on the phone with HP, no resolution.  The last HP agent, Jason, said that apparently this is a problem on most or all of the newest HP dv7t laptops.&lt;br&gt;
&lt;br&gt;
So don't buy one now, or don't get the TV tuner with it!&lt;br&gt;
&lt;br&gt;
The only good news is that I have been able to get through to HP agents fairly quickly.  The bad news is that they were pretty much clueless until I reached Jason.  And of course it ISN'T FIXED!&lt;br&gt;
&lt;br&gt;
HP has a money-back guarantee.  Perhaps I'll wind up sending this back and buying a Dell or a Toshiba.&lt;br&gt;
&lt;br&gt;
I'm supposed to get an email tonight or tomorrow with a resolution, and a phone call as well.  We'll see.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5358782245778440412?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5358782245778440412/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5358782245778440412' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5358782245778440412'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5358782245778440412'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/11/hp-dv7t-still-doesnt-work.html' title='HP dv7t Still Doesn&apos;t Work'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-2267117930656136959</id><published>2009-11-17T15:08:00.003-06:00</published><updated>2009-11-17T15:14:16.859-06:00</updated><title type='text'>Frustrating HP Support</title><content type='html'>I don't think I can build a laptop, so I bought one.&lt;br&gt;
&lt;br&gt;
At this moment I have been on the phone with HP for over seven hours, trying to resolve a problem with the built-in TV tuner in a brand new HP dv7t laptop computer.  Imagine, seven hours, and there is no end in sight.  I've had my sweeties bring up both breakfast and lunch, looks like dinner might be next.&lt;br&gt;
&lt;br&gt;
I started at 7:41 am with the general support number and got a woman who quickly gave me a service ticket number and turned me over to Vivek, in India.  He's a nice guy, but we spent over four hours together, way more than either of us wanted.  At 12 noon, 00:30 am his time, he gave up and asked me to wait five minutes for him to document the problem and then call a "Level 2" support number.&lt;br&gt;
&lt;br&gt;
I did, but then got transferred (intentionally I think) to another department, where the nice lady transferred me back.  Or so I thought, but after spending a couple more hours with Lloyd, also in India, I discovered that he was also Level 1 and was communicating with HIS support person by text message.&lt;br&gt;
&lt;br&gt;
I am almost ready to give up on the tuner and just say that HP couldn't fix it.  It has never worked, it's dead as a doornail, and HP just won't put me in touch with people who can figure it out.  Right now I'm off the phone, but the laptop is doing a scan for channels, which will come up with zero channels as it always has.  Then I have a number to call again.  I'll let you know how that comes out.&lt;br&gt;
&lt;br&gt;
I can't say anything positive about the HP dv7t laptop until this is resolved.  I'm pissed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-2267117930656136959?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/2267117930656136959/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=2267117930656136959' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2267117930656136959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2267117930656136959'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/11/frustrating-hp-support.html' title='Frustrating HP Support'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-2048397209855516526</id><published>2009-08-14T18:48:00.005-05:00</published><updated>2009-08-27T09:29:04.728-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PCPhoneHome'/><category scheme='http://www.blogger.com/atom/ns#' term='BootMail'/><category scheme='http://www.blogger.com/atom/ns#' term='XP'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>PC Phone Home (Do It Yourself)</title><content type='html'>Some time ago I downloaded an evaluation copy of the for-sale PC Phone Home, and reviewed it &lt;a href="http://buildmyown.blogspot.com/2008/01/pcphonehome-not-recommended.html"&gt;here&lt;/a&gt; and &lt;a href="http://buildmyown.blogspot.com/2008/02/pcphonehome-does-not-call-back.html"&gt;here&lt;/a&gt;.  I did not recommend PCPhoneHome in that review, and some of the comments left by readers are quite interesting too.  Bottom line - at that time it seemed to be mostly a scam, because even if it did work there was no way to get a response from the company if your computer was stolen.  Your results may vary.&lt;br&gt;
&lt;br&gt;
I had never done anything with Windows scripts, but I studied up a little, and it turns out that you can fairly easily create a pc-phone-home batch file to be executed by the Task Scheduler at system startup.  This batch file can automatically send you an email describing the computer, time of day, IP address, and whatever else you wish to add.  No changes to the registry (except those made by the Task Scheduler), no secret code, no risk of a trojan in the system, everything is done with standard Windows command-line commands plus one well-proven, free, open-source SMTP mail sending program called &lt;a href="http://www.blat.net/"&gt;BLAT&lt;/a&gt;.  The same batch file runs on Windows Vista Ultimate, Vista Home Premium, XP Professional, and XP Home Edition, probably all Vista and XP systems, and even Windows 7, though testing is not complete on Win 7. It will not work on earlier Windows systems, and has only been tested on XP and Vista systems that are fully up to date, SP3 and SP2 respectively.&lt;br&gt;
&lt;br&gt;
On my computer, the batch file is called BootMail.cmd.  Its weakness is that it may be easier for a thief to find and uninstall BootMail than PCPhoneHome.  But that would require a knowledgable computer thief, which may be an oxymoron.  And there are things that you can do, like hiding the BootMail.cmd file somewhere in the operating system and renaming it something innocuous like GoogleHelper.cmd.  In addition, if there is no network found at bootup, it will not lurk in the background waiting for one to show up.  I may add that someday.&lt;br&gt;
&lt;br&gt;
Previous experience with Windows scripts and with the Task Scheduler might be helpful to a person installing this software, but they are probably not required.  I got by somehow, and you may be able to make some simple modofications and otherwise use the example code exactly as is.&lt;br&gt;
&lt;br&gt;
BootMail is designed to phone home at system start, but it could easily be modified to run on different triggers, such as the network coming back up, or a disk error, or any other event that is logged by Windows.  There are lots of those, especially in Vista and Windows 7.  Of course a user knowledgable in windows commands can also modify the information that it displays.  Click &lt;a href="http://minnesotadon.ms11.net/code/email.html"&gt;here&lt;/a&gt; for an example of the email message that it sends.&lt;br&gt;
&lt;br&gt;
To make it work:&lt;ul&gt;
&lt;li&gt;Copy the code from &lt;a href="http://minnesotadon.ms11.net/code/code.html"&gt;this page&lt;/a&gt; into a file with a .cmd type extension, e.g. bootmail.cmd.
&lt;il&gt;Modify it for appropriate email addresses and user names.  See code comments.
&lt;li&gt;Download the small BLAT program from &lt;a href="http://www.blat.net"&gt;www.blat.net&lt;/a&gt; and put the executables where Windows will find them.  See code comments.
&lt;li&gt;Use the Task Scheduler to set up bootmail.cmd to run at system startup.  See code comments.
&lt;li&gt;Set debug=TRUE at first, until you get it working.&lt;/ul&gt;

The code looks big, but it's mostly documentation (every line beginning with ::).  If you prefer not to do the screen copy, you can download both the code and the example email text in a zipped file &lt;a href="http://minnesotadon.ms11.net/code/bootmail.zip"&gt;here&lt;/a&gt;.  The files are very small.&lt;br&gt;
&lt;br&gt;
What I DON'T know is what to do if a computer is stolen and I do get an email.  There is enough information in the email to pinpoint the exact IP address from which it was mailed, but how does a person proceed with that?  I guess I'd call my local police, or perhaps better yet the cops at the address where the IP address is owned, as determined by &lt;a href="http://www.networksolutions.com/whois/index.jsp"&gt;WHOIS&lt;/a&gt;.  Will the police even care about one stolen computer?  Anyone have a better idea?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-2048397209855516526?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/2048397209855516526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=2048397209855516526' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2048397209855516526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2048397209855516526'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/08/do-it-yourself-pc-phone-home.html' title='PC Phone Home (Do It Yourself)'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-2034769988014539699</id><published>2009-05-27T19:08:00.008-05:00</published><updated>2009-05-29T12:57:52.629-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows Live Mail'/><category scheme='http://www.blogger.com/atom/ns#' term='Thunderbird'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows 7'/><title type='text'>Windows Live Mail versus Mozilla Thunderbird</title><content type='html'>I like Windows Mail, the free mail client on Windows Vista.  It grew out of Outlook Express, and finally does almost everything I would want.  So, naturally, Microsoft has decided to discontinue it on their next operating system, Windows 7.  In fact they will not be providing any email client at all, counting on the user to download something, or on the internet service provider to do that for the user.&lt;br&gt;
&lt;br&gt;
Microsoft has developed a new mail client, apparenty based on Windows Mail, called Windows Live Mail.  Sorry for the confusion in names, but I didn't cause that, Microsoft did!  Users will be able to download Windows Live Mail (WLM) at no cost.  But it isn't the same.  So I installed &lt;a href="http://download.live.com/wlmail"&gt;Windows Live Mail&lt;/a&gt; Version 2009 (Build 14.0.8064.0206) alongside &lt;a href="http://www.mozillamessaging.com/en-US/thunderbird/3.0b2/"&gt;Mozilla Thunderbird 3&lt;/a&gt; (Beta 2).  Thunderbird is a free, open-source, collaborative email client developed by people who say they want to provide the "most useful and enjoyable communications tool possible."  It's a mature product, certainly as mature as WLM.  Thunderbird Release 3 Beta 2 is stable on my machine.  The comparison between Thunderbird and Windows Live Mail is interesting.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Windows Live Mail:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
THEY DUMBED IT DOWN!  Windows Live Mail is Windows Mail with fewer controls.  They added a calendar and included it with a large set of other applications called Windows Live Essentials.  Here are some comparisons between Windows Mail and WLM:&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Sh3WtKN3jJI/AAAAAAAACW0/al8eqi8jGiA/s1600-h/wlive.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 127px; height: 95px;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Sh3WtKN3jJI/AAAAAAAACW0/al8eqi8jGiA/s200/wlive.jpg" border="0" alt="Windows Live Logo"id="BLOGGER_PHOTO_ID_5340660804456254610" /&gt;&lt;/a&gt;&lt;ul&gt;
&lt;li&gt;WLM supports multiple POP accounts, but each is treated quite separately, with no way (that I have found) to direct mail from all or several POP accounts into a common inbox.  This is most inconvenient.  I have lots of POP accounts and do not use web-based accounts.
&lt;li&gt;Further, when a new, unread email does come in, WLM says there is a new one but doesn't say which inbox it is in!  Inconvenient and annoying.  There is a "Quick View" that can help, but it takes space in the list of accounts, see next.
&lt;li&gt;The list of accounts cannot be deleted or moved and has way too much space between accounts, so that scrolling to search for an email is always necessary if there are several accounts.
&lt;li&gt;WLM has no "Send All" command.  When you finish an email, it's gone.  No "Outbox" unless the send actually fails.  This can be good or bad, but I don't like it because I'm accustomed to clicking on Send All to really send it.
&lt;li&gt;WLM apparently uses yet another type of address book.  For sure it does not use the "Contacts" directory used by Windows Mail, though it will import that directory into its book.  I'm not sure where the WLM address book is, actually, though I probably could find it if I cared.  It will export its address book in only two formats: VCF and CSV.
&lt;li&gt;The "New Mail" sound file cannot easily be changed.  I like a louder one in case I'm not at my computer.
&lt;li&gt;When I installed WLM it tried to copy all of the mail in Windows Mail into its own file system, but failed.  Email POP accounts also did not transfer over.  I don't know why.
&lt;li&gt;Help, like all Microsoft help these days, is entirely web-based.  Don't plan on any help without an internet connection.
&lt;li&gt;The good news is that WLM works and seems quite appropriate for a user with one POP account, or with only web-based accounts, because the list of accounts will be trivial, and there are fewer things to screw up.  Too bad Microsoft couldn't include an "expert" button of some kind to make it more configurable for the rest of us.&lt;/ul&gt;

&lt;b&gt;Mozilla Thunderbird:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;I tried both Release 2.0, the current "stable" version, and Release 3b2, ending up with 3b2.  Comparing Windows Mail and WLM with Thunderbird:&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Sh3WtKKLyrI/AAAAAAAACWs/Ml_OMih8K8o/s1600-h/tbird.GIF"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 133px; height: 135px;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Sh3WtKKLyrI/AAAAAAAACWs/Ml_OMih8K8o/s200/tbird.GIF" border="0" alt="Mozilla Thunderbird Logo"id="BLOGGER_PHOTO_ID_5340660804440804018" /&gt;&lt;/a&gt;&lt;ul&gt;
&lt;li&gt;WLM and Windows Mail have a "drag and drop" capability, allowing the user to drag an email out of the Inbox, for example, into a normal Windows Folder as a .EML file.  I love that feature and use it all the time.  Thunderbird does not have that feature.  Why would anyone want that?  I like to keep all files for a project together, whatever their file types.  For example, if I'm planning to run a marathon in Paducah, there will be a folder named Paducah containing an internet shortcut to the race web site (.url), maybe one to the hotel web site (.url), a copy of the course map (.jpg or .gif), printouts of car, air, or hotel reservations (.pdf), and copies of communications (.eml).  No need to look in different places for different file types.  Thunderbird will correctly display an email in .EML format, and will export them too, but not as easily as Windows Mail and WLM will do.
&lt;li&gt;Like WLM, Thunderbird has no Send All command.  In fact I haven't found anything quite like WLM's Sync command.  I admit I haven't missed it though.
&lt;li&gt;Thunderbird would not import my email messages from Windows Mail.  There is a separately-installable extension called ImportExportTools, but it only imported the file structure and not the files themselves.  Perhaps it would work better with a simpler file structure than I have.
&lt;li&gt;Thunderbird would not import POP accounts.  But neither did WLM.
&lt;li&gt;It will export contacts only in LDIF, CSV, or tab-delimited formats.
&lt;li&gt;HOWEVER, Thunderbird does have a global-folder structure called Local Folders.  Any email from any account can be directed into the global Inbox on Local Folders, or the global Spam box that I created, for that matter.  This allows me to pull email from any of several POP accounts into one place.
&lt;li&gt;All three clients have filters that can be configured to redirect or simply delete known spam, or to direct email from specific addresses into specific folders.  Thunderbird allows these folders to be global, hence accessible to any POP account.
&lt;li&gt;Further, Thunderbird has a "Junk Mail Learning" feature that seems to work pretty well, far better than the simple junk filter levels in WLM.
&lt;li&gt;Thunderbird has WAY more controls than WLM, and more than Windows Mail as well.  So it's possible for a user to get things pretty screwed up.  The good news is that the most dangerous options have a "restore defaults" button.  I haven't needed that yet, but ...
&lt;li&gt;Thunderbird can include "add-ons," contributed extensions which may add class and functionality for the discerning Thunderbird user.
&lt;li&gt;Thunderbird won't go away.  I hate that about Microsoft - they just want to sell new copies of operating systems, so we (obviously) can't depend on them for continuity.&lt;/ul&gt;

For my money (they're both free), I far prefer Thunderbird over Windows Live Mail, even without drag &amp; drop.  I have already switched to Thunderbird on my Vista x64 system, even though I do have the venerable Windows Mail on it too.  But there are other users on my network, people with only one POP account.  It may be a while before they have computers with Windows 7 (or beyond), but perhaps I will install Windows Live Mail for them when they do.  We shall see.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-2034769988014539699?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/2034769988014539699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=2034769988014539699' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2034769988014539699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/2034769988014539699'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2009/05/windows-live-mail-versus-mozilla.html' title='Windows Live Mail versus Mozilla Thunderbird'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/Sh3WtKN3jJI/AAAAAAAACW0/al8eqi8jGiA/s72-c/wlive.jpg' height='72' width='72'/><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-370588653857044308</id><published>2008-10-27T07:07:00.012-05:00</published><updated>2008-10-27T08:10:10.685-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='NVIDIA'/><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>NVIDIA Driver Update Error 800705B3</title><content type='html'>This morning Windows Update wanted to install several updates, including one for my GeForce 8600 GT graphics card.  I let the updates proceed.  All updates installed correctly except this NVIDIA driver.  According to Windows Update, the installation failed with error code 800705B3.  Microsoft's Windows Update description of the failure is shown at the bottom of this post.&lt;br&gt;
&lt;br&gt;
Microsoft has no information about this error, nor does &lt;a href="http://www.nvidia.com/page/support.html"&gt;NVIDIA.com&lt;/a&gt;.  A quick internet search with Google didn't help much either.&lt;br&gt;
&lt;br&gt;
My computer runs Vista Ultimate 64-bit. I suppose it's a 64-bit problem - neither Microsoft nor the 3rd party vendors have fully committed to 64 bits  yet - it's always the last thing they do when developing software or issuing an update.  But I don't know how to fix the update error, 64-bit problem or not.&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
AHA!  End run.  I went back to NVIDIA.com and downloaded driver version 178.24, the latest drivers for the NVIDIA 8-series running 64 bits.  That download was 99 MB, much larger than the Windows Update download for some reason.  It installed without error.  When Windows Update next runs, we will see whether it wants to try to update the NVIDIA driver again.  I expect that it won't.&lt;br&gt;
&lt;br&gt;
The NVIDIA.com web site is very easy to navigate, and there is even a tool (beta release) which can figure out which hardware and software you have, hence which driver update you need.  I'm impressed so far.&lt;br&gt;
&lt;br&gt;

&lt;table cols="1" cellpadding="0" cellspacing="0" border="0"
width="100%"&gt;
&lt;tr&gt;&lt;td&gt;Comments?&lt;/td&gt;&lt;/tr&gt; &lt;td&gt; &amp;nbsp;&lt;br&gt; &lt;/td&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/SQWvEiEssDI/AAAAAAAACHo/KhMQanleRL8/s1600-h/Photo0.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 228px;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/SQWvEiEssDI/AAAAAAAACHo/KhMQanleRL8/s400/Photo0.gif" border="0" alt="NVIDIA Driver Update Error.  Click to enlarge, BACK to return here"id="BLOGGER_PHOTO_ID_5261804232053141554" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-370588653857044308?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/370588653857044308/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=370588653857044308' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/370588653857044308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/370588653857044308'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/10/nvidia-driver-update-error-800705b3.html' title='NVIDIA Driver Update Error 800705B3'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_CodyAxkmUSw/SQWvEiEssDI/AAAAAAAACHo/KhMQanleRL8/s72-c/Photo0.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-3449937063091972406</id><published>2008-08-04T22:23:00.006-05:00</published><updated>2008-12-11T22:28:18.461-06:00</updated><title type='text'>HP Laserjet P1005 Review</title><content type='html'>A few weeks ago my ancient HP Laserjet II (20+ years old) expired, so I looked around for a low-cost replacement.  The &lt;a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/18972-18972-3328059-14638-3328066-3435674.html" title="HP's Page"&gt;HP P1005&lt;/a&gt; fit the bill - at that time HP was selling them with an on-line rebate which reduced the price to $49.99 with free shipping, less than the cost of one of its print cartridges.
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/SJfIPUMYcrI/AAAAAAAABbA/RD-QXZ9d1TI/s1600-h/p1005.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/SJfIPUMYcrI/AAAAAAAABbA/RD-QXZ9d1TI/s200/p1005.jpg" border="0" alt="Click to enlarge, then BACK to return here"id="BLOGGER_PHOTO_ID_5230869657658356402" /&gt;&lt;/a&gt;
At this writing HP's price has gone back up, but &lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16828115079" title="NewEgg's Page"&gt;Newegg&lt;/a&gt; has them for $49.99 plus shipping.  Perhaps others do too.  At that price, how could it really go wrong?&lt;br&gt;
&lt;br&gt;
So far so good.  It installed fine on Vista x64 and the LAN-connected Vista and XP computers, despite some confusion on my part caused by the serious lack of documentation, see below.&lt;br&gt;
&lt;br&gt;
I've used it for a couple of weeks now.  Unlike the old Laserjet II, the P1005 is absolutely silent until called upon to print something.  Then if it hasn't printed recently it warms itself up for a few seconds (HP says 8.5) and prints at a rate of up to 15 pages per minute, four seconds per page, and in a quick test it did print a 3-page document in 12 seconds.  Some reviewers have complained about the 62 dB noise, but in my low-duty application right next to my desk it hasn't bothered.  It won't interrupt conversation.  If others were using it frequently, I would place it farther from my desk or at a different computer.&lt;br&gt;
&lt;br&gt;
Features:&lt;ul&gt;
 &lt;li&gt;Paper: Letter, legal, postcards, transparencies and "tough" (plastic) paper, #10 envelopes, smaller sizes.
 &lt;li&gt;Up to 15 pages per minute, four seconds per page.
 &lt;li&gt;Good black-and-white print quality.
 &lt;li&gt;About 1500 pages per print cartridge, which cost about $50-$60, or 3 to 4 cents per page.
 &lt;li&gt;Input tray 150 sheets, output 100.
 &lt;li&gt;USB 2.0.
 &lt;li&gt;Win 2000, XP, Server 2003 32/64 bit, Vista 32/64, Mac OS X several revs.
 &lt;li&gt;Small and light, 10.3 lb, hence modestly portable.&lt;/li&gt;
&lt;/ul&gt;

It does NOT have:&lt;ul&gt;
 &lt;li&gt;COLOR.  The biggie.
 &lt;li&gt;Its own networking of any kind, except through an attached computer of course.  The only connection available is USB 2.0.
 &lt;li&gt;Automatic double-sided printing.  It does have manual double-sided printing, sort of, see below.
 &lt;li&gt;Selectable input trays.
 &lt;li&gt;High duty cycle - 1500 pages per month is the recommended max, 5000 absolute max.
 &lt;li&gt;Any printed documentation whatsoever.&lt;/li&gt;
&lt;/ul&gt;

Things that are lame:&lt;ul&gt;
 &lt;li&gt;Printed Documentation: none.  HP has apparently given up on solving the multiple-language problem and just doesn't include any printed material except how to unpack it and how to find your local HP office anywhere in the world.  There is a CD-ROM with no instructions on it which, if you play it, gives information on installation.  It's a bit obtuse but we got there.
 &lt;li&gt;Manual Double-Side Print: It prints the first side of all pages, then instructs you to re-insert the stack and push the GO button.  But on the P1005 there is no GO button or any software button to click - maybe you need a P1006 or P1500 to get that.  The workaround is to briefly lift the lid to the printer cartridge and set it back down, after which the backs of the pages will print.  But HP doesn't offer that solution - you have to get there by trial and error.  They may offer a downloadable fix for the software, but I've checked and not found it.&lt;/li&gt;
&lt;/ul&gt;
Despite those minor issues it's a mighty good printer for the price of $50.  Probably for the regular price too.  It's very suitable for home use or for a small office, but for color you'd need an inkjet as well.&lt;br&gt;
&lt;br&gt;
Made in Vietnam.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-3449937063091972406?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/3449937063091972406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=3449937063091972406' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/3449937063091972406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/3449937063091972406'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/08/hp-laserjet-p1005-review.html' title='HP Laserjet P1005 Review'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/SJfIPUMYcrI/AAAAAAAABbA/RD-QXZ9d1TI/s72-c/p1005.jpg' height='72' width='72'/><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5702544472713954757</id><published>2008-07-19T15:49:00.004-05:00</published><updated>2008-12-11T22:28:18.816-06:00</updated><title type='text'>8 GB RAM</title><content type='html'>The "new" computer has 4 GB of RAM, which is a lot, but I have disk paging turned off, and Windows Vista has warned me more than once that I was down to 15% of memory remaining.  In each instance Googe Earth was running, but I like Google Earth and I'm sure that other applications will come along which can also benefit from gobs of memory.  That's the future of computing.&lt;br&gt;
&lt;br&gt;
Furthermore, the exact memory that I used for the first 4 GB (&lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820231122"&gt;G.Skill 4 GB dual channel 800 MHz&lt;/a&gt;) now appears to be out of production by G.Skill (technology moves along) and is on sale at NewEgg.  It works perfectly and has a Windows Experience Index Subscore of 5.9, the highest possible.  So I ordered 4 GB more, which is all that my Intel DP35DP motherboard is rated to handle.  Full up.&lt;br&gt;
&lt;br&gt;
But I got an unpleasant surprise at boot time.  While my nice new home-built computer had routinely booted in about 60 seconds with 4 GB, from power-on to display of the desktop, it now took over three minutes, sometimes almost four.  Yikes!  Why would that be?  Memory test: no problems.  Swap new memory with old: same problem with 8GB, no problem with 4 GB.  Huh.&lt;br&gt;
&lt;br&gt;
Google provided the answer.  The Intel DP35DP BIOS had two software bugs, one affecting only boards with 8GB and running in 64-bit mode, and the other affecting boards with 8 GB and no disk in the DVD drive.  Either way I had a problem, but either way the fix required only a simple &lt;a href="http://www.intel.com/products/desktop/motherboards/dp35dp/dp35dp-tools.htm"&gt;download&lt;/a&gt; and "express" installation of updated BIOS.  Now it boots up in 60 seconds with 8 GB, as it darn well should, and the Windows Experience Index Subscore for memory is still 5.9.&lt;br&gt;
&lt;br&gt;
&lt;table cols="2" cellpadding="0" cellspacing="0"&gt;
&lt;tr&gt;&lt;td align="center"&gt;&lt;b&gt;Before&lt;/b&gt;&lt;/td&gt;&lt;td align="center"&gt;&lt;b&gt;After&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td align="center"&gt; &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9ydrS6TI/AAAAAAAAAww/cRJrhW_nnZc/s1600-h/ftr.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9ydrS6TI/AAAAAAAAAww/cRJrhW_nnZc/s320/ftr.jpg" border="0" alt="4 GB Memory" width="220" height="165"&gt;&lt;/a&gt; &lt;/td&gt;
&lt;td align="center"&gt; &lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/SIJUrEz7ZMI/AAAAAAAABZI/FGMvKk0W7IE/s1600-h/After.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/SIJUrEz7ZMI/AAAAAAAABZI/FGMvKk0W7IE/s400/After.JPG" border="0" alt="8 GB Memory" width="220" height="165" id="BLOGGER_PHOTO_ID_5224831616705848514" /&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5702544472713954757?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5702544472713954757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5702544472713954757' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5702544472713954757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5702544472713954757'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/07/8-gb-ram.html' title='8 GB RAM'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9ydrS6TI/AAAAAAAAAww/cRJrhW_nnZc/s72-c/ftr.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-122844057347281571</id><published>2008-07-05T16:06:00.027-05:00</published><updated>2008-12-11T22:28:19.467-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='calendar'/><title type='text'>Mozilla Sunbird Calendar Works Great!</title><content type='html'>Better than Microsoft's Windows Calendar.&lt;br&gt;
&lt;br&gt;
Here are my specifications for a good calendar system:&lt;ul&gt;
&lt;li&gt;A nice application window with several views, including day, week, and month;
&lt;li&gt;Compatible with on-line calendars such as Google Calendar;
&lt;li&gt;But it must continue to work when there is no internet connection;
&lt;li&gt;Calendars sharable within my own network;
&lt;li&gt;Reliable pop-up reminders of calendar events; and
&lt;li&gt;The same application should work on all of the computers on my network.&lt;/li&gt;&lt;/ul&gt;

After I discovered &lt;b&gt;Windows Calendar&lt;/b&gt; on my new Vista 64-bit machine, I set it up with several different calendars, moving all of that information off of an older machine which I then shut down.  It sort of worked, and I found it useful, but with these issues:&lt;ul&gt;
&lt;li&gt;It only worked on my Vista machine, not on XP machines, so I couldn't use it to maintain a central calendar accessible from all machines.&lt;/li&gt;

&lt;li&gt;It was unreliable, in two different ways:&lt;ul&gt;
  &lt;li&gt;Reminders did not work unless Windows Calendar was running, regardless of the setting of the option called "&lt;i&gt;Reminders should show when Windows Calendar is not running&lt;/i&gt;."
  &lt;li&gt;Windows Calendar didn't always start when Windows started.  That meant that I couldn't depend on reminders, period, because I can't depend on myself to notice whether it's running every time the computer restarts.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;

&lt;li&gt;Setting an appointment (event) for later in the current day was quite awkward: As soon as I clicked on New Appointment, I would get an immediate "reminder" because the default time for the reminder was prior to the current time.  The reminder had to be dismissed before any other information could be entered into the new appointment.  Yuck - don't they ever try their own software?

&lt;li&gt; After a new event was set up, there was no way to know whether it had been published.  No final "save" command or "appointment saved" acknowledgment.

&lt;li&gt;HELP on Vista Calendar is worthless.  Clicking on Help gives one page of instructions for doing those things that are patently obvious anyway.  There is no overview, no explanation of the difference between an "appointment" and a "task," no instructions for keeping the calendars in a folder of MY choice (one that will be backed up frequently).&lt;/li&gt;&lt;/ul&gt;
Windows Calendar isn't a bad application, but it isn't good either.  It's Microsoft.&lt;br&gt;
&lt;br&gt;
A quick Google search produced &lt;b&gt;Mozilla Sunbird&lt;/b&gt;, an open-source cross-platform multi-language calendar which runs on Linux, Windows, Mac, and a few other systems.  It resolves most of the problems mentioned above:&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/SHFkEMCJ4PI/AAAAAAAABXY/sRs-UBVc73g/s1600-h/sunbird.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/SHFkEMCJ4PI/AAAAAAAABXY/sRs-UBVc73g/s200/sunbird.gif" border="0" alt="Screenshot of Sunbird running on Windows XP" id="BLOGGER_PHOTO_ID_5220063466211631346" /&gt;&lt;/a&gt;&lt;ul&gt;
&lt;li&gt;It works on both Windows Vista and XP;
&lt;li&gt;It has been quite reliable so far although, as with Windows Calendar, Sunbird must be running for reminders to work;
&lt;li&gt;It's much easier to set up a new event, especially on the current day;
&lt;li&gt;There is no question when the new event has been published.
&lt;/ul&gt;
It does NOT have a help file, however, except an on-line help which works with Mozilla browsers (Firefox) but not with Internet Explorer.  The people who do Mozilla must really hate IE!  Maybe I'll install Firefox and take a look at that help file someday.  And who knows, maybe I'll like Firefox.&lt;br&gt;
&lt;br&gt;



&lt;b&gt;Getting Started with Sunbird:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Here is the web page for &lt;a href="http://www.mozilla.org/projects/calendar/sunbird/"&gt;downloading Mozilla Sunbird&lt;/a&gt;.  Installation on Windows was uneventful on my systems.&lt;br&gt;
&lt;br&gt;
Sunbird supports two kinds of calendar files: (1) Its own internal data base, not accessible from other computers; and (2) iCalendar (.ics) files, a standardized format in which each file is a separate calendar, accessible from other computers if located in a shared folder.  Sunbird will create the first kind of calendars, but it will not conveniently create the second kind, unless I've missed something.&lt;br&gt;
&lt;br&gt;
I have a main computer (the one I built) and a laptop, and others in my family also have computers, so I needed sharable iCalendar files.  Here is how I created all of my calendar files:&lt;ul&gt;
&lt;li&gt;Some of my calendars already existed in Windows Calendar, so I simply "published" those to .ics files in the folder of my choice.
&lt;li&gt;For the rest, I created an empty file with the extension .ics in a folder of my choice as follows:&lt;ul&gt;
  &lt;li&gt;Right-clicked in that chosen folder, clicked New, then Text Document.
  &lt;li&gt;Renamed that file "calendarname.ics," where "calendarname" is the name I wished to give that particular calendar.  When Windows asked if I really wanted to change the name extension, I answered Yes.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;In Sunbird, I clicked File, then Open Calendar File, then
&lt;li&gt;Navigated to the file I created, clicked  on it, and clicked Open.
&lt;li&gt;That calendar then appeared in my calendar list, so I added events, and also edited the calendar's properties.
&lt;li&gt;I actually deleted the default calendar called "Home" because there was no need for it.&lt;/li&gt;&lt;/ul&gt;

&lt;b&gt;Why would anyone want more than one calendar?&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Because (1) It may be convenient to organize calendars by topic or activity, e.g. one for taking medicine (daily reminders), a different one for business appointments, and yet another for repeating things that don't change, like birthdays; (2) With several calendars all displayed at once the calendar window may get quite busy, so it may be helpful to be able to temporarily suppress the information from one or more calendars to better view the other calendars; and (3) Some of the calendars that show in my window may belong to someone else, from another computer on the network or from the internet, such as a calendar of US holidays.&lt;br&gt;
&lt;br&gt;
Examples of calendars that appear on my Sunbird window:&lt;ul&gt;
&lt;li&gt;Medicine reminders;
&lt;li&gt;Business and other appointments - anything that may come up;
&lt;li&gt;Repeating events such as birthdays, backup reminders, tax payments; and
&lt;li&gt;US Holidays.&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
&lt;b&gt;To make Sunbird ALWAYS start up minimized at bootup on XP and Vista:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Windows XP:&lt;/b&gt; &lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/SHFkEStlhUI/AAAAAAAABXg/7E1QH67FBQc/s1600-h/XPMinimized.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/SHFkEStlhUI/AAAAAAAABXg/7E1QH67FBQc/s200/XPMinimized.gif" border="0" alt="XP - Click to enlarge" id="BLOGGER_PHOTO_ID_5220063468004410690" /&gt;&lt;/a&gt; &lt;ul&gt;
&lt;li&gt;Put a shortcut to Sunbird on the desktop so that it will be handy.  If there is not a shortcut there already, click the Start button, then go to Programs, then Mozilla Sunbird, RIGHT-click Mozilla Sunbird, drag it to the desktop, and click "copy here."
&lt;li&gt;In Windows Explorer, navigate to c:\Documents and Settings, then User (whichever user wants startup at boot), then Start Menu, then Programs, then Startup.
&lt;li&gt;Move the Sunbird shortcut from the desktop into Startup.
&lt;li&gt;Right-click the Mozilla Sunbird shortcut, click Properties.
&lt;li&gt;Change "Run:" from "Normal Window" to "Minimized."  Click Apply.  Click OK.&lt;/li&gt;  &lt;/ul&gt;

&lt;b&gt;Windows Vista:&lt;/b&gt; &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/SHFkEst76uI/AAAAAAAABXo/4BgcQqldsfo/s1600-h/VistaMinimized.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/SHFkEst76uI/AAAAAAAABXo/4BgcQqldsfo/s200/VistaMinimized.gif" border="0" alt="Vista - Click to enlarge" id="BLOGGER_PHOTO_ID_5220063474985200354" /&gt;&lt;/a&gt; &lt;ul&gt;
&lt;li&gt;Put a shortcut to Sunbird on the desktop so that it will be handy.  If there is not a shortcut there already, click the Start button, then go to Programs, then Mozilla Sunbird, RIGHT-click Mozilla Sunbird, drag it to the desktop, and click "copy here."
&lt;li&gt;In Windows Explorer, navigate to c:\Users, then User (whichever user wants startup at boot), then AppData, then Microsoft, then Windows, then Start Menu, then Programs, then Startup.
&lt;li&gt;Move the Sunbird shortcut from the desktop into Startup.
&lt;li&gt;Right-click the Mozilla Sunbird shortcut, click properties.
&lt;li&gt;Change "Run:" from "Normal Window" to "Minimized."  Click Apply.  Click OK.&lt;/li&gt;  &lt;/ul&gt;
That will do it - anything in that Startup folder will be started at bootup, and you have told Windows to start it minimized.  Reboot and try it out.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Remaining Problems:&lt;/b&gt; &lt;br&gt;
&lt;br&gt;
&lt;b&gt;Help File:&lt;/b&gt; Neither Windows Calendar nor Sunbird has a useful help file built in.  If you use the Firefox browser, then you may have a help file for Sunbird - I haven't tried it.&lt;br&gt;
&lt;br&gt;
With both calendars, reminders will not work if you close the application.  If you use reminders, then DO NOT EVER click on the X in the upper right corner of the window.  Minimize the window instead.  I hope to find a fix for this issue in Sunbird.  I'd also like to move it from the main taskbar to the notification area (system tray), though I think this is a bit beyond my expertise at the moment.&lt;br&gt;
&lt;br&gt;
Comments are invited.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-122844057347281571?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/122844057347281571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=122844057347281571' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/122844057347281571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/122844057347281571'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/07/mozilla-sunbird-calendar-works-great.html' title='Mozilla Sunbird Calendar Works Great!'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/SHFkEMCJ4PI/AAAAAAAABXY/sRs-UBVc73g/s72-c/sunbird.gif' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-7181440871852692040</id><published>2008-05-22T11:34:00.003-05:00</published><updated>2008-05-22T11:41:32.991-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>Vista Still Sucks</title><content type='html'>This post is a brief rant about Microsoft and their latest attempt to provide an "operating system" for regular PC users.  It's the opinion of one semi-technical user - read it at your own risk.&lt;br&gt;
&lt;br&gt;
Vista has been out for over a year and a half now.  One major update later (Service pack 1), nothing has changed on my system.  Nothing.  Every original complaint is still there.  I have found workarounds for some, but not all.  I don't have the performance problems that so many others complain about for some reason - but then again I have never made the exact comparison by loading XP or Ubuntu on this speedy new home-built hardware.  It boots up in seconds.  I chose Vista Ultimate 64 because it supports 64-bit addressing, allowing more RAM memory, which (as always) is the future of computing.  But that's the best I can say for Vista.&lt;br&gt;
&lt;br&gt;
Microsoft has always been a paragon of mediocrity in the technical arena.  I have not been exposed to anything that they have done with excellence, ever, except marketing.  They have, of course, applied their marketing muscle with skill, arrogance, and disdain to force their inferior products into markets where excellent products already existed, to the detriment of the customer and certainly to the companies offering the superior products.  Vista may yet be another Microsoft marketing success but, so far, it's a technical flop.&lt;br&gt;
&lt;br&gt;
A few of my specific complaints:&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Vista forgets folder settings.&lt;/b&gt;  This is a well-documented bug which doesn't seem to appear on all systems, but I sure have it.  Just now, for example, I opened my Contacts folder to find that it had been reset to a folder type of "all items," (the default) rather than a folder type of "contacts."  Because of this, the contacts were not sorted in any useful way.  This happens to all folders, even the recycle bin.  I set things back as they should be, but I know that they won't be that way after the next reboot.  Here is a &lt;a href="http://www.vistax64.com/tutorials/70819-windows-explorer-folder-view-settings.html"&gt;web site&lt;/a&gt; that offers a fix, but in my experience the fix lasts for only a few days to a few weeks.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Vista is unstable.&lt;/b&gt;  Several times now Vista has failed catastrophically, something that never happened on Windows XP.  Most recently I had almost finished a fairly complex email, and suddenly the create-mail window froze.  I could still perform a few windows functions, but every application which was dependent on explorer.exe was stuck.  That's a lot of applications, and apparently the "create mail" function in Windows Mail is one of them.  Reason enough to use a different mail client, I guess.  I lost my work.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;HELP&lt;/b&gt; is &lt;b&gt;AWFUL!!!&lt;/b&gt;  What on earth are they thinking?  If you ask for help from within an application, you will get an unordered list of things that might help.  But if you try to change or narrow the search you will get Google-like results from the entire universe of Microsoft products, most having little or nothing to do with the application you are using.  It's useless.  Actually, Google on the web is much better!  What happened to an application-specific help facilitiy with a table of contents, index, and word search?  The new help must save cost for Microsoft, but it's very little help and another example of technical mediocrity, in this case very deliberate.&lt;/li&gt;
&lt;/ul&gt;
There is so much more, but this will do for now.  What's the point of complaining - I don't get any warm feelings that Microsoft ever listens.&lt;br&gt;
&lt;br&gt;
I wish I had the courage (and time) to just switch to Linux.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-7181440871852692040?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/7181440871852692040/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=7181440871852692040' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7181440871852692040'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7181440871852692040'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/05/vista-still-sucks.html' title='Vista Still Sucks'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-4997599511046670474</id><published>2008-02-21T19:23:00.007-06:00</published><updated>2008-12-11T22:28:19.931-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SP1'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>Windows Vista Service Pack 1</title><content type='html'>No problems.&lt;br&gt;
&lt;br&gt;
Unlike the service packs for Windows XP, Vista Service Pack 1 (SP1) is an AUTOMATIC install.  That means if you have Windows Update set to perform updates automatically, SP1 will be installed whether you choose it or not.  That almost happened to me today, but I was able to delay it until I could do a disk-image backup.  See a previous post "&lt;a href="http://buildmyown.blogspot.com/2007/12/raid-backup.html"&gt;RAID Backup&lt;/a&gt;" about that process.&lt;br&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/R74kfzw3v6I/AAAAAAAABAk/R2fjKt_H0ss/s1600-h/sp1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/R74kfzw3v6I/AAAAAAAABAk/R2fjKt_H0ss/s400/sp1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5169609551157641122" /&gt;&lt;/a&gt;
&lt;br&gt;
Then I allowed the update to proceed.  This computer is a medium-high-end system with dual 2.7 GHz processors, RAID 1 SATA disks, 4 Gb of memory, and Vista Ultimate 64-bit.  The update took 27 minutes, from start until I was logged on again.  It rebooted once during the install.&lt;br&gt;
&lt;br&gt;
I have so far discovered no problems at all.  I've tried lots of applications, including IE, Word, WordPerfect, Windows Media Center, anti-virus, graphics editors, and many more.  SP1 has been running for only a few hours, but so far so good.&lt;br&gt;
&lt;br&gt;
Here are some possible improvements:&lt;ul&gt;
&lt;li&gt;Microsoft says it's a little faster, and it does seem a little more lively, though this computer was pretty quick before, and&lt;/li&gt;
&lt;li&gt;Before the update, memory usage tended to build up throughout the day until it reached 55 or 60%.  Now it seems to sit at about 35%, going up or down slightly as applications are opened and closed.&lt;/li&gt;
&lt;/ul&gt;
That's all I have noticed, and those are just perceptions, not measurements.  Here are some annoying Vista "features" that have NOT improved:&lt;ul&gt;
&lt;li&gt;The select zone that extends all the way across the main window of Windows Explorer instead of being limited to the file name,&lt;/li&gt;
&lt;li&gt;Windows Calendar reminders still don't work if Windows Calendar is closed, even though I have selected the option that should make reminders work,&lt;/li&gt;
&lt;li&gt;Windows Task Manager still asks for permission to continue, when I ask it to display all running processes, even though I'm logged on as Administrator, and&lt;/li&gt;
&lt;li&gt;All of the other Vista annoyances.&lt;/li&gt;
&lt;/ul&gt;
After the update was completed, a popup asked whether or not I would like to contribute to the "Windows Customer Experience."  This was a click YES or NO, with a "read more" link.  I clicked on "read more" and was taken to a very obtuse page about personal information and Microsoft's use thereof; that page had nothing to say about Windows Customer Experience.  I opted out, of course.  Why contribute when they won't even tell us what it's about?&lt;br&gt;
&lt;br&gt;
Nevertheless, bottom line, SP1 works fine here, or at least as well as Vista worked before.  I'll install it on another computer without a qualm.  On the other hand, if I were managing an enterprise network I'd do a lot more investigation before installing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-4997599511046670474?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/4997599511046670474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=4997599511046670474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4997599511046670474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4997599511046670474'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/02/windows-vista-service-pack-1.html' title='Windows Vista Service Pack 1'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/R74kfzw3v6I/AAAAAAAABAk/R2fjKt_H0ss/s72-c/sp1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5579739845997084963</id><published>2008-02-09T20:08:00.000-06:00</published><updated>2008-12-11T22:28:20.602-06:00</updated><title type='text'>Desktop iCalendar Lite</title><content type='html'>Cute but buggy.  Almost a product.&lt;br&gt;
&lt;br&gt;
I love the look of this cute little calendar.  Windows Vista now comes with an almost-competent calendar called, not surprisingly, Windows Calendar.  It has its own set of bugs, but it almost works well enough.  In particular, it can subscribe to calendars in ICAL (.ics) format which are on the web or on the local network, and it can also publish a calendar in that format locally or on the web.&lt;br&gt;
&lt;br&gt;
Since I have two computers, it's convenient to maintain the calendar on the Vista desktop and have the XP laptop "subscribe" to that calendar.  Unfortunately, though, Windows Calendar does not run on the laptop, and the Microsoft calendar that IS on the laptop is not compatible with the ICAL format.  So a search ensued for a compatible calendar that will run on XP, preferably a free one.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.desksware.com/blog/index.php?p=20"&gt;Desktop iCalendar Lite&lt;/a&gt; was released less than two weeks ago, and seems to have all of the features that I want.  Best of all, it's free.  I've installed it on both computers, and it seems to work exactly the same on Vista x64 as it does on XP x32.&lt;br&gt;
&lt;br&gt; 
What I like the MOST is the cool appearance.  The screenshot shows the desktop of the XP laptop computer, with the calendar in the upper right-hand corner on top of a busy desktop theme (breakfast!). It shows even more clearly against the black background that I normally use. &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/R65c9Tw3vsI/AAAAAAAAA-0/l_d8tzNkLE0/s1600-h/cal.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/R65c9Tw3vsI/AAAAAAAAA-0/l_d8tzNkLE0/s400/cal.gif" border="0" alt="Click to enlarge, BACK to return here" id="BLOGGER_PHOTO_ID_5165168030987566786" /&gt;&lt;/a&gt; This is a transparent "skin" (appearance), which I especially like, but the calendar also has opaque skins of various motifs and colors.  The text size, placement, and colors are almost completely adjustable.  Days with scheduled appointments or tasks are in color, while days without are white.  Hover the mouse over any day, and up pops a little window showing the events of that day.  On both of my computers I have told iCalendar Lite to subscribe to the calendars published by Windows Calendar on the Vista desktop computer, and that part seems to work.&lt;br&gt;
&lt;br&gt;
Here is a list of installation issues:&lt;ul&gt;
&lt;li&gt;On initial startup, an error appeared with a US Holidays problem. &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/R65ddTw3vtI/AAAAAAAAA-8/SqV7butgnec/s1600-h/holidays.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/R65ddTw3vtI/AAAAAAAAA-8/SqV7butgnec/s200/holidays.gif" border="0" alt="Click to enlarge, BACK to return here" id="BLOGGER_PHOTO_ID_5165168580743380690" /&gt;&lt;/a&gt; This was solved by adding a new US Holidays calendar from Google Public Calendars, then deleting one of the US Calendar entries.&lt;/li&gt;
&lt;li&gt;HELP did not work, either from the program (right-click and Help) or from the HELP shortcut in Start Menu.  This was solved by renaming the file Desktop iCal Lite.chm to Help.chm.  Now it works from both locations.&lt;/li&gt;
&lt;li&gt;The calendar kept prompting me for a Google username and password, even though I do not use Google Calendar.  I set up a dummy Google Calendar and eventually the problem went away, though I think a reboot was part of the solution.&lt;/li&gt;
&lt;li&gt;Initially when I clicked on the "setting" function, the program reported an illegal integer value. &lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/R65ddjw3vuI/AAAAAAAAA_E/4Tz9NW1ARvw/s1600-h/integer.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/R65ddjw3vuI/AAAAAAAAA_E/4Tz9NW1ARvw/s200/integer.gif" border="0" alt="Click to enlarge, BACK to return here" id="BLOGGER_PHOTO_ID_5165168585038348002" /&gt;&lt;/a&gt; That problem eventually went away.&lt;/li&gt;
&lt;li&gt;The hourly time announcement is optional.  If you select it, the default sound file is in the folder c:\WINNT\Media, which folder does not exist on either XP or Vista.  I changed the default to point to a file in c:\Windows\Media and then it worked.&lt;/li&gt; 
&lt;li&gt;It has a setting called "Run the program at start up."  If this is NOT checked, iCalendar nevertheless runs at startup anyway.  I deleted the offending registry entry, which was disclosed in MSCONFIG, and that issue went away.&lt;/li&gt;&lt;/ul&gt;
Ongoing issues:&lt;ul&gt;
&lt;li&gt;The HELP file discusses a "weather" function, which does not seem to exist in this "lite" version of the program.  In addition, the HELP file is very, very skimpy.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;IMPORTANT:&lt;/b&gt; The REMINDER function does not seem to work properly.  For example, if the reminder is for 5:00 pm iCalendar may or may not chime at that time.  Further, it may show a popup at the correct time, or perhaps later, and the popup seems to disappear almost instantly.  I can live with the other bugs, but this one is serious.  If you set a reminder, you need to be confident that you will GET the reminder at the set time, not one minute sooner or later.&lt;/li&gt;
&lt;/ul&gt;
Windows Calendar has this same failing, by the way.  It has a setting in Options labeled "Reminder should show when Windows Calendar is not running."  But the reminder &lt;b&gt;doesn't&lt;/b&gt; always appear, even with that setting checked.  I think it always works if Windows Calendar is minimized, but of course that unnecessarily consumes taskbar space.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Rant: I've had a calendar with reminders working on a real-time computer (HP 1000) for over 20 years.  I wrote it myself; it's NOT difficult!  Is this a problem with Windows, or did two different calendar authors both screw up?  Either way, Microsoft certainly screwed up.  Why is Microsoft always such a paragon of mediocrity?  Heaven knows they have enough money to do the job right the first time if they care to.&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
The non-Microsoft author might be excused, but not Microsoft for Heaven's sake.  If they're going to act like the big boys they should do the job right, but somehow I doubt they ever will.  End of rant.&lt;br&gt;
&lt;br&gt;
Perhaps the solution to the buggy iCalendar is to try the "full" version; it's only $20 if it works, otherwise nothing.  I like the look so much, I'll probably do that.  I hope it has a simple digital clock too; I'd like to move that off the taskbar.&lt;br&gt;
&lt;br&gt;
Still no response of any kind from Brigadoon Software, by the way.  See previous post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5579739845997084963?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5579739845997084963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5579739845997084963' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5579739845997084963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5579739845997084963'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/02/desktop-icalendar-lite.html' title='Desktop iCalendar Lite'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/R65c9Tw3vsI/AAAAAAAAA-0/l_d8tzNkLE0/s72-c/cal.gif' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-7457901316132294535</id><published>2008-02-02T08:18:00.001-06:00</published><updated>2009-09-28T07:43:48.212-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PCPhoneHome'/><title type='text'>PCPhoneHome Does Not Call Back</title><content type='html'>&lt;b&gt;Update 2009 Sep 28:&lt;/b&gt; &lt;a href="http://buildmyown.blogspot.com/2009/08/do-it-yourself-pc-phone-home.html"&gt;Do It Yourself PC Phone Home&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Update: I left three separate tech service requests with Brigadoon Software, the makers of PCPhoneHome, two by email and one by telephone.  The most-recent of those, the phone call, was five days ago and the oldest was more than a week ago.  I have received no response yet.&lt;br&gt;
&lt;br&gt;
It's my current opinion that PCPhoneHome is an orphan - nobody home at Brigadoon Software.  So what if my PC was stolen and it did phone home?  I seriously doubt I would get any help tracing it.  Apparently it's still possible to order the product, but I won't!&lt;br&gt;
&lt;br&gt;
Now the problem is that it's still phoning home, from my home, every day at least twice.  Brigadoon's documentation implies that it is nearly impossible to uninstall it without their help, and they don't call back.  Since PCPhoneHome puts other "hooks" into the operating system, I think I will try to uninstall it anyway before the trial period expires.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-7457901316132294535?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/7457901316132294535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=7457901316132294535' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7457901316132294535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7457901316132294535'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/02/pcphonehome-does-not-call-back.html' title='PCPhoneHome Does Not Call Back'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-4138171036535388500</id><published>2008-01-28T17:22:00.002-06:00</published><updated>2009-09-28T07:40:19.058-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PCPhoneHome'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>PCPhoneHome Not Recommended</title><content type='html'>&lt;b&gt;Update 2009 Sep 28:&lt;/b&gt; &lt;a href="http://buildmyown.blogspot.com/2009/08/do-it-yourself-pc-phone-home.html"&gt;Do It Yourself PC Phone Home&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
What if I left my laptop in the car for a moment, and someone ripped it off?  or, perish the thought, someone broke in and took my nice new computer?  It happens all the time, especially in the corporate and public sectors, but certainly it happens to private individuals too.  One in 14 laptops is stolen, say some experts.&lt;br&gt;
&lt;br&gt;
But what if that stolen laptop or computer was powered up by the thief, then connected to the internet, and it sent an email back to the original owner describing where it was? And what if "someone" could then tell the police the name and address of the thief?&lt;br&gt;
&lt;br&gt;
That's what &lt;a href="http://www.pcphonehome.com/"&gt;PCPhoneHome&lt;/a&gt; is supposed to do.  It costs $30, a modest one-time charge.  There is a Windows version and a Mac version.  You install it on the hard drive of the computer, and whenever the computer gets a new internet connection it sends an email to any email address that you specify.  This happens regularly, day after day, and unless the computer is stolen it's of little use except to let you know that it is still working.  But if the computer is stolen, that email contains vital information including the IP address of the computer on its local network, if any, and especially the IP address of the mail server from which the email is actually sent.  That IP address can be traced back to the user who was connected to the mail server at that time.&lt;br&gt;&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/R55j7PO6dsI/AAAAAAAAA9M/C9HCjNGKIXk/s1600-h/phonehome.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/R55j7PO6dsI/AAAAAAAAA9M/C9HCjNGKIXk/s320/phonehome.gif" border="0" alt="PcPhoneHome Registration Screen" id="BLOGGER_PHOTO_ID_5160672092365682370" /&gt;&lt;/a&gt;&lt;br&gt;
Brigadoon software, the makers of PCPhoneHome, promise to help with the task of tracing the computer and contacting the police with that information.  So, for the price of $30, you are buying an insurance policy that may get your computer back, assuming that Brigadoon will actually answer their telephone and trace the PC, and that the police will take the time to retrieve the PC.&lt;br&gt;
&lt;br&gt;
I downloaded three trial copies:&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Laptop running Windows XP:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Version 3.0 is the "standard" version set up for a 30-day trial.  It doesn't say that it works on Vista, but it does on XP.  It installed with no problems, I filled out the form with details of my laptop computer (make, model, serial#, more...) and it immediately sent its first email to the address that I specified in the form.  The laptop was connected by WiFi, and when I connected it directly to the LAN it sent another email. In fact, it sends TWO emails every time, with a slightly different FROM address, for some reason.  No problem.  So far, after three days, it works just fine.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;New home-built desktop running Vista Ultimate 64-Bit:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I knew that Version 3.0 was not recommended for Vista, even though that was the standard trial download from Brigadoon Software.  So I downloaded a 3.2 "upgrade" version and tried installing that, with a subsequent comedy of errors:&lt;ul&gt;
&lt;li&gt;First, the installation program failed to run because, according to Windows, I did not have sufficient privileges to run it even though I was logged on as administrator;&lt;/li&gt;
&lt;li&gt;So I clicked on the installation program's Properties, then Compatibility, and selected "Run as Administrator;"&lt;/li&gt;
&lt;li&gt;Then the installation program went a lot farther, but eventually reported a different error;&lt;/li&gt;
&lt;li&gt;It continued past that error and put up the "registration" screen which takes data to be included in the email that PCPhoneHome sends, but because of the reported error I didn't bother to fill out the screen;&lt;/li&gt;
&lt;li&gt;Nevertheless, the installer said the installation was successful, though I knew better;&lt;/li&gt;
&lt;li&gt;I uninstalled it (still possible until reboot), and tried again;&lt;/li&gt;
&lt;li&gt;Same results, so I rebooted;&lt;/li&gt;
&lt;li&gt;PCPhoneHome disappeared from the list in Programs and Features - it could no longer be uninstalled.  This is a security feature built into PCPhoneHome;&lt;/li&gt;
&lt;li&gt;So I "reverted" the drive to the most recent restore point, deleted one leftover executable, and started over;&lt;/li&gt;
&lt;li&gt;This time, surprisingly, the installation went well.  I filled out the "registration" screen and allowed it to reboot the computer.&lt;/li&gt;
&lt;li&gt;After logon, Windows alerted me that an "unknown" program XYZ (I won't disclose the name here) wanted to run and asked me if that was OK;&lt;/li&gt;
&lt;li&gt;I said yes.  Pretty soon I received the two emails.  Yay!;&lt;/li&gt;
&lt;li&gt;Sadly, though, upon each succesive reboot, Windows continues to ask whether program XYZ can run;&lt;/li&gt;
&lt;li&gt;I have modified "User Account Control" (UAC) in Windows Vista so that this no longer occurs, but of course this modification is unacceptable for the long term.  UAC is a pain in the ass, but it has a purpose and should be turned ON for day-to-day activities.&lt;/li&gt;
&lt;li&gt;I requested a technical service response by email on January 25, but so far have not received any.
&lt;/ul&gt;
&lt;b&gt;Friend's laptop running Vista Home Edition 32-Bit:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Wow I'm SO SORRY that I tried PCPhoneHome on this computer.  I tried downloading the official trial version and installing that first, as most users would do.  Of course it didn't work, because that version is not for Vista, so then I downloaded the upgrade and tried to install that on top of the first install.  The resulting comedy of errors totally eclipsed anything that I had encountered with the desktop installation, and it still doesn't work.  I have installed a lot of software on many different machines, but this takes the cake.  I have requested a technical service response by telephone and by email, but so far have not received any.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Bottom line:  I DO NOT RECOMMEND PCPhoneHome FOR VISTA.&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
In my opinion, it works fine on XP but is not ready for Vista yet.  It phones home on only one of my two Vista installations.  There is a workaround for the XYZ "unknown program" prompt at bootup, but that workaround simply trades one security risk for another.  Brigadoon Software must fix that problem somehow, perhaps by getting valid "digital signatures" for their software.&lt;br&gt;
&lt;br&gt;
Perhaps this is all my fault for installing it on both Vista systems incorrectly.  But I don't think so; I suspect anyone running Vista with UAC turned on will experience similar problems.  If true, that's an astounding failure, since:&lt;ul&gt;
&lt;li&gt;The most-easily-stolen computers are laptops;&lt;/li&gt;
&lt;li&gt;Almost all laptops sold in the last YEAR run Vista;&lt;/li&gt;
&lt;li&gt;UAC is turned on by default in all new Vista systems;&lt;/li&gt;
&lt;li&gt;Brigadoon Software had months BEFORE THAT to prepare for Vista; so&lt;/li&gt;
&lt;li&gt;They are about two years behind the curve and falling further behind daily.&lt;/li&gt;
&lt;/ul&gt;
It's as if Brigadoon is a one- or two-person shop, too busy to take the time and do the testing necessary to make their product really install and run correctly.  What happens then, I know from experience, is that you spend so much time dealing with tech service questions that you have no time to fix the product.  Meanwhile you are selling more of the junky product and compounding your problems.  I'm only speculating here though ...&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Other Issues:&lt;/b&gt;&lt;ol&gt;

&lt;li&gt;If your computer is stolen and does phone home, will Brigadoon Software actually answer their telephone and trace an email for you?  When I called their telephone number this afternoon during regular business hours, I got an answering machine and no callback today.  This is not what you want, because the computer may soon evaporate into the black market and never call home again.  I see other remarks on the internet which indicate that this is a real question.  I will update this post and add a new post when/if I hear from them regarding my pre-sales technical service problems.&lt;/li&gt;

&lt;li&gt;One very good thing:  My computers are set up to require a password for my own logon, to prevent access to my account through the network, and also through the keyboard if the computer were to be stolen.  On both the XP and the Vista desktop system, if I booted up and did NOT log on, the computer sent the email &lt;b&gt;anyway&lt;/b&gt;.  Thus if a thief were sitting at the keyboard trying various passwords, and made the mistake of connecting the computer to the internet first, the email would be on its way.&lt;/li&gt;

&lt;li&gt;But what if the thief didn't connect to the internet before logging on?  In another part of the FAQ document, Brigadoon goes into great detail to show how to set up a computer so that it will boot up with one account which does NOT have a password.  They don't spell out WHY we should do that, because it obviously reduces the system's security.  But I suppose if I were the thief, I might try each of the usernames on the logon screen, looking for one with no password.  If found, I might start with that account, and might even use that account to connect to the internet.  Obviously, that account should not have administrator privileges!&lt;/li&gt;
&lt;li&gt;
Brigadoon makes another good point in their FAQ document: It's important to set up a password to the BIOS of a computer, and then set the BIOS to boot first from hard disk, not floppy or CD/DVD or memory stick.  This prevents a thief from using an alternate boot to simply reformat the disk and install a new operating system, thereby obliterating the PCPhoneHome program.  In case YOU have a problem with the hard disk, you simply enter the password and change the BIOS back to allow boot from alternate devices.  Of course the thief can still remove the hard drive and reformat it some other way, but that's more work and by then the computer may already have phoned home.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-4138171036535388500?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/4138171036535388500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=4138171036535388500' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4138171036535388500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4138171036535388500'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/01/pcphonehome-not-recommended.html' title='PCPhoneHome Not Recommended'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/R55j7PO6dsI/AAAAAAAAA9M/C9HCjNGKIXk/s72-c/phonehome.gif' height='72' width='72'/><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8454290680860050812</id><published>2008-01-08T17:20:00.001-06:00</published><updated>2008-12-11T22:28:21.174-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Google Desktop'/><category scheme='http://www.blogger.com/atom/ns#' term='data encryption'/><category scheme='http://www.blogger.com/atom/ns#' term='Copernic'/><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>Google Desktop vs. Copernic</title><content type='html'>The basic idea:  What if I could search my own computer as easily as I can search the web?  Then I could find an email or a Word document, even a PDF document, or a previously-viewed web page, or all of those on my own computer in an instant, just by entering a few words of text that I think might be in the document or in its name.&lt;br&gt;
&lt;br&gt;
Enter &lt;a href="http://desktop.google.com/"&gt;Google Desktop&lt;/a&gt; (GD).  I discovered this a year or two ago, when I was running Windows XP, and thought it was slicker than sliced bread.  Well, almost, and certainly better than anything that Microsoft offered.  It didn't work exactly right - sometimes I would click on a result and nothing would come up - but at least it did seem to find everything.&lt;br&gt;
&lt;br&gt;
Except WordPerfect documents.  I use WordPerfect and certainly prefer it to Microsoft Word, but the documents apparently have a unique format and are not correctly indexed by GD &lt;b&gt;or&lt;/b&gt; by Microsoft's Vista indexing software.  No surprise that Microsoft would deliberately omit WordPerfect, because they have been trying to bury it with Word for years (with obvious success), but we expect better from Google.  There is a contributed Google Desktop plugin called Larry's WordPerfect Indexer, and it seemed to work when installed, but Google Desktop kept uninstalling it for some reason; I never solved that problem.&lt;br&gt;
&lt;br&gt;
Enter Windows Vista; I have the 64-bit version.  It supposedly has its own indexing, but I find that awkward and obtuse; I still haven't entirely figured what IS and what IS NOT indexed.  Google Desktop was better.&lt;br&gt;
&lt;br&gt;
However, if you Google "google desktop" and "vista" you will find complaints about Google Desktop slowing down Vista, and you will find that Google and Microsoft are having a legal hassle.  Nevertheless a few days ago I downloaded GD and installed it.  To my surprise, GD did not offer ANY indexing commands.  I could not make it re-index, and there was no pause-indexing command.  When I did a GD search it DID come up with results though, without ever doing an indexing search.  From this I assume that it uses Vista's built-in index, and no longer builds its own index.  I "installed" Larry's WordPerfect Indexer, but of course a search still did not bring up any WordPerfect documents.  Conclusion: At least for now, Google Desktop is broken - no better than Vista's search, which itself is very clumsy and which will apparently never be able to search WordPerfect documents.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/R4QFchVTwWI/AAAAAAAAA6Q/9PeoK3baRZo/s1600-h/copernic.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/R4QFchVTwWI/AAAAAAAAA6Q/9PeoK3baRZo/s320/copernic.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5153249861160911202" /&gt;&lt;/a&gt;
Enter &lt;a href="http://www.copernic.com/en/products/desktop-search/"&gt;Copernic&lt;/a&gt;.  I downloaded this desktop searcher and couldn't be more pleased.  It runs exactly the same on both XP (my laptop) and Vista 64 (my new desktop computer).  In both cases it built its index in almost no time at all.  Here are some of the features:&lt;ul&gt;
&lt;li&gt;It automatically indexes WordPerfect documents - important to me if not to you;&lt;/li&gt;
&lt;li&gt;You can select the types of files it will index, including PDF documents and ZIP folders, by type extension;&lt;/li&gt;
&lt;li&gt;You choose whether the indexing function pauses while you use the computer, and if so, for how long;&lt;/li&gt;
&lt;li&gt;You choose which folders you index and which you do not.  For example, I have files that are encrypted and certainly don't want them in the index!;&lt;/li&gt;
&lt;li&gt;Regardless how the index is built, you can limit a search to any particular file type, to avoid getting too many results;&lt;/li&gt;
&lt;li&gt;For any specific class of files you can limit the search by date, partial file name, folder, and other attributes;&lt;/li&gt;
&lt;li&gt;There is a quick and easy way to check for updates to Copernic;&lt;/li&gt;
&lt;li&gt;I haven't even discovered all of the features yet.&lt;/li&gt;&lt;/ul&gt;
Copernic does NOT seem to offer complex (advanced) searches.  It seems to require that ALL of the words in the search box must appear in the document, with no "ANY" option or "DOES NOT HAVE" option.  But I can live with that.  Many of the features in the list above are also available in Google Desktop and Vista Search, but not all of them are.&lt;br&gt;
&lt;br&gt;
I've only had Copernic for a couple of days now, but it sure seems far more robust than the competition, and yet easier to use.  Unlike those, it's a completed, working product.  If I continue to like it, I may just turn off Vista indexing altogether.&lt;br&gt;
&lt;br&gt;
Please let me know if you agree, or disagree, or want more information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8454290680860050812?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8454290680860050812/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8454290680860050812' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8454290680860050812'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8454290680860050812'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2008/01/google-desktop-vs-copernic.html' title='Google Desktop vs. Copernic'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/R4QFchVTwWI/AAAAAAAAA6Q/9PeoK3baRZo/s72-c/copernic.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8494630284974317148</id><published>2007-12-14T21:25:00.000-06:00</published><updated>2008-12-11T22:28:21.350-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTPC'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='HDTV'/><category scheme='http://www.blogger.com/atom/ns#' term='MC'/><title type='text'>AverMedia AVerTV Combo PCI-E Media Center Upgrade Kit</title><content type='html'>&lt;b&gt;Recording TV Programs:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Our ancient VCR (&lt;u&gt;tape&lt;/u&gt; recorder) in the TV room is starting to act up and we are looking around for a replacement.  Of course VCR is the technology of the previous century - we should probably get a DVD recorder or, better yet by far, a DVR (digital video recorder).&lt;br&gt;
&lt;br&gt;
Enter the brand new computer.  It turns out that a computer with a TV tuner card can make a dandy DVR, and this new one with lots of power, high-quality graphics, and Windows Vista Ultimate with Media Center is a perfect candidate.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;TV Tuner Card:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I have Windows Vista 64 with Media Center, so I ordered the AverMedia Media Center Upgrade Kit from &lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16815100014"&gt;NewEgg.com&lt;/a&gt;, a PCI-E tuner card. I chose that product for its features but even more because of the good recommendations from purchasers on &lt;a href="http://www.newegg.com/Product/ProductReview.aspx?Item=N82E16815100014"&gt;NewEgg.com&lt;/a&gt;. The card includes two tuners, one for analog channels (broadcast or cable) and the other for digital (broadcast or cable).&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Installation:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I installed it in a PCI-E slot, rebooted, and Windows automatically installed the drivers.  There was no need to use the drivers on the included CD-ROM; I'm confident that Windows used appropriate drivers.  With the kit also came a remote control and remote receiver, for which Windows also found and installed a driver.&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/R2NJZxVTv1I/AAAAAAAAA2E/gxLwSw94iYg/s1600-h/aver.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/R2NJZxVTv1I/AAAAAAAAA2E/gxLwSw94iYg/s320/aver.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5144035906475507538" /&gt;&lt;/a&gt;&lt;br&gt;
I connected the cable TV signal to the analog tuner, and the included "test" antenna to the digital tuner, and immediately tuned in all of the analog cable channels and eight digital broadcast channels.&lt;br&gt;
&lt;br&gt;
I'm not an HDTV enthusiast, at least not yet.  I know almost nothing about home-theater PC (HTPC).  But this was trivially simple.  What we have here is a card that is designed to work specifically with Windows Media Center (MC), a Microsoft software package found on some XP and Vista machines.  The card came with no other software except drivers - it would be useless without MC, and MC cannot play or record TV signals without a TV tuner card.  They go together hand in glove, and they worked together right out of the box with no coaxing at all.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Performance:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;&lt;li&gt;The quality of the analog cable programs is better than my desktop TV, and they have equal signals off the same splitter.&lt;/li&gt;
&lt;li&gt;The quality of the digital programs is stunning.&lt;/li&gt;
&lt;li&gt;MC and the tuner immediately detected and cataloged every useful analog cable channel.&lt;/li&gt;
&lt;li&gt;Using a tiny "test" antenna supplied with the kit, the system detected all of the major local broadcast stations. That test antenna is all I need.&lt;/li&gt;
&lt;li&gt;MC can play one program from one tuner while recording another program from the other tuner.&lt;/li&gt;
&lt;li&gt;With MC not running, the computer's CPU usage is 1% to 2%.  With MC playing a program it is about 20%, and with MC both playing and recording it is about 25%.&lt;/li&gt;
&lt;li&gt;The card's tuner chips felt warm to the touch, but not hot.&lt;/li&gt;
&lt;li&gt;I ran a CPU exercise program called &lt;a href="http://www.jam-software.com/freeware/index.shtml"&gt;HeavyLoad&lt;/a&gt; while MC was playing and recording, and the program played without a hitch with CPU usage bumping up between 90% and 100%.  Nothing overheated.&lt;/li&gt;
&lt;/ul&gt;
&lt;b&gt;Features I'd like to have:&lt;/b&gt;&lt;br&gt;
&lt;ul&gt;&lt;li&gt;The documentation was nonexistent.  I have no idea how some of the included parts are even supposed to be used.&lt;/li&gt;
&lt;li&gt;It has no FM tuner, which would be very nice with MC.&lt;/li&gt;
&lt;li&gt;Though there are two tuners on the card, MC will not show picture-in-picture.&lt;/li&gt;
&lt;li&gt;The tuner is capable of playing QAM (unencrypted digital cable signals) but MC will not take advantage that capability.&lt;/li&gt;&lt;/ul&gt;
&lt;b&gt;Bottom Line:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
It works exactly as advertised and I'm glad to have it.  I wonder if we should just build another, cheaper computer and dedicate it to DVR as a replacement for the VCR.  Still expensive I guess.&lt;br&gt;
&lt;br&gt;
An alternative is to rent the DVR from our cable provider Comcast, which would require us to upgrade the cable from Standard to Digital, and the rental plus the upgrade would cost us $16.00/month or about $200.00/year.  At that rate we coud pay for an $800 computer in four years ... hmmm.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8494630284974317148?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8494630284974317148/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8494630284974317148' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8494630284974317148'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8494630284974317148'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/12/avermedia-avertv-combo-pci-e-media.html' title='AverMedia AVerTV Combo PCI-E Media Center Upgrade Kit'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/R2NJZxVTv1I/AAAAAAAAA2E/gxLwSw94iYg/s72-c/aver.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5362261089532401990</id><published>2007-12-11T16:48:00.000-06:00</published><updated>2008-12-11T22:28:21.584-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='data encryption'/><category scheme='http://www.blogger.com/atom/ns#' term='hard drive'/><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='TrueCrypt'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><category scheme='http://www.blogger.com/atom/ns#' term='Backup'/><title type='text'>TrueCrypt Is Cool</title><content type='html'>My business requires me to safeguard the security of certain files.  For years I have used &lt;a href="http://pc-magic.com/"&gt;Encrypted Magic Folders&lt;/a&gt; (EMF) from PC-Magic to encrypt those files, and to hide them from the view of an interloper.  I loved it, because files were always encrypted on disk and yet were fully accessible to applications.  However, when I upgraded to Vista 64, the new EMF crashed my system so completely that it was unbootable even in safe mode.  I tried it twice, recovered twice with some difficulty, and gave up on EMF.&lt;br&gt;
&lt;br&gt;
In the meantime I had heard about &lt;a href="http://www.truecrypt.org/"&gt;TrueCrypt&lt;/a&gt;, an open-source disk encryption package for Windows and Linux.  It's free!  I must admit that after I downloaded it, I needed some time to get my mind around it.&lt;br&gt;
&lt;br&gt;
Here are the basics:&lt;ul&gt;
&lt;li&gt;Using the TrueCrypt application you create a large "container" file on your system, larger than you will need to hold your encrypted files.  It can be on any read/write disk, even a memory stick, and is initially filled with random data.&lt;/li&gt;
&lt;li&gt;The container file can be copied, moved, deleted, or renamed just like any other file.  It's not fragile.    It can have any name and any file extension.  You can have more than one.&lt;/li&gt;
&lt;li&gt;With the TrueCrypt application, you &lt;b&gt;mount&lt;/b&gt; that container file as a disk volume with its own drive letter.  You choose the letter.&lt;/li&gt;
&lt;li&gt;The TrueCrypt application runs in the background and manages TrueCrypt volumes.&lt;/li&gt;
&lt;li&gt;Within the TrueCrypt volume you create folders, or copy them in, and create or copy in any files that ought to be encrypted.  A TrueCrypt volume behaves exactly like any other disk, even though it's really just a file on your hard drive or mem stick.  Every file within it is totally encrypted, including file names and even its file system.&lt;/li&gt;
&lt;li&gt;Unused space in the TrueCrypt container file is filled with random data which cannot be distinguished from actual encrypted files.&lt;/li&gt;
&lt;li&gt;When you open an encrypted file in an application, such as a wordprocessor or graphic editor, the file is decrypted on the fly so that the application sees it decrypted.&lt;/li&gt;
&lt;li&gt;The file is never decrypted on disk, however, unless the application keeps temporary backup copies, and of course you should tell your applications to keep those in an encrypted volume too.&lt;/li&gt;
&lt;li&gt;Backup of encrypted data is easy: Just dismount the encrypted volume and copy its container file, still encrypted, to the backup medium.&lt;/li&gt;
&lt;li&gt;If the backup medium is another disk, mem stick, DVD, or CD-ROM, you can actually mount that backup container file whenever you want without ever copying it back to the original hard disk.&lt;/li&gt;
&lt;/ul&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/R18UZmQZSHI/AAAAAAAAA1g/9Bw9Q2FYFqA/s1600-h/truecrypt.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/R18UZmQZSHI/AAAAAAAAA1g/9Bw9Q2FYFqA/s320/truecrypt.png" border="0" alt="TrueCrypt Application Window" id="BLOGGER_PHOTO_ID_5142851729478994034" /&gt;&lt;/a&gt;&lt;br&gt;
That's the simple view of TrueCrypt.  There is lots more.  For example:&lt;ul&gt;
&lt;li&gt;Anyone examining your system or your disk can tell that you use TrueCrypt, and can probably even identify the container files.&lt;/li&gt;
&lt;li&gt;However, you can host a TrueCrypt volume &lt;b&gt;within&lt;/b&gt; another truecrypt volume in a manner that makes the internal volume both hidden and undectable &lt;b&gt;even if&lt;/b&gt; the outer volume is mounted and visible.  Really cool.  The TrueCrypt people call this "plausible deniability," and consider it quite important.&lt;/li&gt;
&lt;li&gt;Example: An adversary points a gun at you and demands to see your encrypted files.  You can give them the password to the outer encrypted volume without ever revealing that an inner, hidden volume even exists.  It's invisible.  I don't actually see the need for a hidden volume in my business, but evidently some folks do.&lt;/li&gt;
&lt;li&gt;You can host a truecrypt volume on a public computer, or another person's computer, without installing any software on that computer, so your encrypted files are portable.&lt;/li&gt;
&lt;li&gt;You can tell TrueCrypt to mount certain TrueCrypt volumes automatically at bootup, though you will be required to enter a password to complete the mounting process.&lt;/li&gt;
&lt;li&gt;TrueCrypt allows you to use any of eight different encryption algorithms and three different hash algorithms, making decryption by an adversary even more difficult.&lt;/li&gt;
&lt;/ul&gt;
I love it, and in fact am using it for my encrypted files on my new computer.  It works very well indeed, even on Vista 64.  It is certainly no more trouble than EMF was, and backup is much simpler.  It is far better than Windows Encrypted File System (EFS) because: (1) EFS files are always available when you log on, whereas TrueCrypt files require you to enter another password; and (2) EFS files cannot easily be backed up in their encrypted form.  TrueCrypt is also much simpler than Windows BitLocker encryption, which requires you to partition your drive and poses some risk of losing the entire drive if something goes wrong.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5362261089532401990?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5362261089532401990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5362261089532401990' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5362261089532401990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5362261089532401990'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/12/truecrypt-is-cool.html' title='TrueCrypt Is Cool'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/R18UZmQZSHI/AAAAAAAAA1g/9Bw9Q2FYFqA/s72-c/truecrypt.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-988489504322079018</id><published>2007-12-02T17:21:00.001-06:00</published><updated>2008-12-11T22:28:22.493-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='RAID'/><category scheme='http://www.blogger.com/atom/ns#' term='hard drive'/><category scheme='http://www.blogger.com/atom/ns#' term='mirrored disks'/><category scheme='http://www.blogger.com/atom/ns#' term='Backup'/><title type='text'>RAID Backup</title><content type='html'>Working perfectly!&lt;br&gt;
&lt;br&gt;
Usually, a person needs a backup when their disk drive fails.  All disk drives fail sometime - there is no escape from that truth.  But there are other reasons for keeping good backups:&lt;ul&gt;
&lt;li&gt;Total disaster, such as a fire or flood that destroys the whole computer and all nearby backups.&lt;/li&gt;
&lt;li&gt;Deliberate mischief, such as a virus that deletes important files.&lt;/li&gt;
&lt;li&gt;Accidental deletion or modification of one or more files.&lt;/li&gt;&lt;/ul&gt;
I'm sure there are more reasons, but if we cover these we'll probably have the rest covered.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Drive Failure:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Disk drive failure can mostly be avoided by using two mirrored drives in a configuration known as RAID 1.  RAID means Redundant Array of Independent Drives, and has several well-defined levels.  RAID 1 is a simple comfiguration with two drives which always contain exactly the same information, hence the term "mirrored."  If either drive fails, the other simply becomes the system's sole drive and takes over without a hitch.  Since the probability of two drives failing at once is very small, RAID 1  pretty well covers that problem.  The new computer here employs RAID 1.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Total Disaster:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
If the building burns down or floods, the only solution is to have a separate backup stored offsite.  This can be on the internet, another building some distance away, or perhaps in a fire- and water-proof safe.  At this office a flood is highly unlikely, so we store encrypted DVD backups of most user files in a fire-resistant safe in the basement, and we occasionally put a DVD in a safe deposit box at the bank.  I have just set up an upload account and I may stop putting DVDs in the safe deposit box.  We'll see.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Deliberate Mischief, or Accidental Deletion or Modification:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
RAID disks don't help here, because the RAID disk controller keeps the two mirrored disks identical even when the files themselves are deleted or corrupted.  This is where Windows System Restore can be very handy indeed.  I have several times seen a serious problem solved by restoring a system to a previous date and time.  System Restore works, though it has the disadvantage that the &lt;u&gt;whole drive&lt;/u&gt; reverts to a selected time in the past, even if you only need to recover one file.&lt;br&gt;
&lt;br&gt;

&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/R1M-eWQZR4I/AAAAAAAAAzo/lpId2MJAhTM/s1600-h/RAID+Rebuilding.gif"&gt; &lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/R1M-eWQZR4I/AAAAAAAAAzo/lpId2MJAhTM/s320/RAID+Rebuilding.gif" border="0" alt="Intel Storage Console rebuilding a RAID volume" id="BLOGGER_PHOTO_ID_5139520290851211138"&gt;&lt;/a&gt; 
But if System Restore isn't the solution, then backups are the answer.  DVD and internet backups can be used to restore user data, but what about all of the rest of the system?  I started a full backup once, but quit when the backup wizard pointed out that I would need 19 DVDs.  Enter "RAID Backup" with a third identical disk drive.  At some reasonable interval (every day, every week, every month) I can disconnect the power to one of the two mirrored disks and connect the third disk.  The disconnected disk is instantly a complete backup of everything, and the newly-connected disk will soon be overwritten and re-mirrored to the remaining good disk in the RAID 1 pair.  Voila - complete backup in about five minutes for a one-time cost of about $80.  It does actually take about 2 hours and 15 minutes to re-mirror, but the system is usable, if slower, while that takes place.  And the third disk, with no power, is safe from any mischief.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/R1M-ZmQZR3I/AAAAAAAAAzg/-CIEcc2zLRA/s1600-h/RAID+Rebuilt.gif"&gt; &lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/R1M-ZmQZR3I/AAAAAAAAAzg/-CIEcc2zLRA/s320/RAID+Rebuilt.gif" border="0" alt="Intel Storage Console showing the RAID volume rebuilt" id="BLOGGER_PHOTO_ID_5139520209246832498" /&gt;&lt;/a&gt;
&lt;b&gt;It Works!:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I wasn't entirely sure that the Intel software would be totally cool with what I wanted to do, but I tried it last night and today.  The system has three identical 320 Mb Western Digital hard disk.  Steps in the experiment:&lt;ul&gt;
&lt;li&gt;Disk Drives A and B were mirrored, drive C was powered up as a spare but had never been used.&lt;/li&gt;
&lt;li&gt;I shut down the computer, disconnected power on B, rebooted the computer.  The Bios complained that the RAID 1 pair was "degraded" and gave me a chance to deal with it in the Bios, but I declined and let the bootup proceed.&lt;/li&gt;
&lt;li&gt;The computer booted normally, and the Intel monitor software presented a pop-up balloon that said the RAID 1 disk was degraded but could be repaired.&lt;/li&gt;
&lt;li&gt;I clicked on the balloon and followed the instructions to restore disk C to mirror the good disk in the RAID pair, disk A.  Two and a quarter hours later, A &amp; C were a mirrored RAID pair and B was a complete backup.  Job done.&lt;/li&gt;
&lt;li&gt;As an experiment, however, I shut down again and disconnected all EXCEPT disk B, then rebooted.  Again the Bios complained and the on-line software did too, but the system functioned normally on just the "backup" disk.  As far as I could tell, all files were accessible.  The RAID software, apparently confused, also created a second RAID array at this point, consisting of Disk B and a "missing" disk.  Duh.&lt;/li&gt;
&lt;li&gt;I rebooted with only A &amp; C connected, and everything worked once again, no complaints.&lt;/li&gt;
&lt;li&gt;Then I connected B as well, rebooted, and got some complaints about a degraded pair in the second RAID array (disk B), but the system ran normally and all files on all disks seemed to be accessible, including the files on disk B.&lt;/li&gt;
&lt;li&gt;Finally, I disconnected disk C, leaving A &amp; B connected, and rebooted once again.  The Bios and the Intel application software both complained about degraded RAID arrays.  But it allowed me to delete the second RAID array, consisting of only disk B.  That done, it allowed me to re-mirror B to the good disk in the original RAID pair, disk A, even though disk B contained lots of valid data.  I was concerned that it might not let me destroy data, and I think there were at least four warnings that data would be destroyed on disk B if I proceeded, but it finally let me do it.  Now disk C is again the full backup and the system is back to a RAID array of disks A &amp; B.&lt;/li&gt;&lt;/ul&gt;
From now on the procedure will be much simpler: Shut down, disconnect B or C (whichever was connected), reconnect the disk that was disconnected, reboot, and tell the Intel application to restore the RAID array.  The biggest hassle is moving the computer to a position where I can open the side panel and disconnect / reconnect drives.  I can handle it.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://minnesotadon.ms11.net/pix/ExperienceIndex.gif"&gt; &lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/R1NR2WQZR6I/AAAAAAAAAz4/-VaUz4j6zmg/s320/ExperienceIndex.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5139541593888999330" /&gt;&lt;/a&gt;
&lt;b&gt;Windows Experience Index:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
 Before these little experiments, the system's Windows Experience Index was 5.4, limited by the disk subscore of 5.4.  I ran the tests several times.  Since the experiments, the Windows Experience Index is 5.5, limited by both the processor and gaming graphics, with the disk subscore improving to 5.7.  Why did the disk subscore go up from 5.4 to 5.7, using exactly the same disks?  Only Microsoft knows.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-988489504322079018?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/988489504322079018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=988489504322079018' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/988489504322079018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/988489504322079018'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/12/raid-backup.html' title='RAID Backup'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/R1M-eWQZR4I/AAAAAAAAAzo/lpId2MJAhTM/s72-c/RAID+Rebuilding.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-4280472712756498265</id><published>2007-11-11T20:41:00.001-06:00</published><updated>2008-12-11T22:28:23.277-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dual processor'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><title type='text'>Heat, Speed, &amp; Sound</title><content type='html'>&lt;b&gt;Speed:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Mr. Tobias Schonherr pointed out an error in my assembly of this new computer.  Thank you Mr. Schonherr!  I had misinterpreted the Intel manual on the DP35DP motherboard, and unwittingly installed the two memory modules in single-channel mode rather than dual-channel mode.&lt;br&gt;
&lt;br&gt;
As I understand it, dual-channel mode enables the CPUs to make two requests on memory at one time, increasing overall memory throughput.  See below.  First the memory modules before and after, then the resulting Windows Experience Index before and after.  The computer recognized 4 Gb of memory in each case, but you will notice that the memory sub-index jumped from 5.6 to 5.9, now as high as any other element of the system and higher than the dual-processor CPU.&lt;br&gt;
&lt;table cols="2"&gt;
&lt;tr&gt;&lt;td align="center"&gt; &lt;b&gt;Before&lt;/b&gt;&lt;/td&gt;
&lt;td align="center"&gt; &lt;b&gt;After&lt;/b&gt;&lt;td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="center"&gt; &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9xdrS6SI/AAAAAAAAAwo/-pvfjCcQcQc/s1600-h/b4.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9xdrS6SI/AAAAAAAAAwo/-pvfjCcQcQc/s320/b4.jpg" border="0" alt="Memory as originally installed" width="220" height="165"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td align="center"&gt; &lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9ydrS6TI/AAAAAAAAAww/cRJrhW_nnZc/s1600-h/ftr.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9ydrS6TI/AAAAAAAAAww/cRJrhW_nnZc/s320/ftr.jpg" border="0" alt="Memory correctly installed" width="220" height="165"&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td align="center"&gt; &lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/Rze9ytrS6UI/AAAAAAAAAw4/Cu7Nop4VcMo/s1600-h/WinExp+5.4.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/Rze9ytrS6UI/AAAAAAAAAw4/Cu7Nop4VcMo/s320/WinExp+5.4.gif" border="0" alt="Original Windows Experience Index" width="220" height="165"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td align="center"&gt; &lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Rze9zNrS6VI/AAAAAAAAAxA/SoOeScfJMCE/s1600-h/WinExp+5.9.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Rze9zNrS6VI/AAAAAAAAAxA/SoOeScfJMCE/s320/WinExp+5.9.gif" border="0" Alt="New Windows Experience Index" width="220" height="165"&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Heat:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Modern computers contain a host of self-monitoring devices, temperature monitors in particular.  I installed the &lt;a href="http://www.intel.com/design/motherbd/software/idu/"&gt;Intel Desktop Utilities&lt;/a&gt;, which takes advantage of those devices to provide readouts and to raise an alarm if some device goes outside its limit.&lt;br&gt;
&lt;br&gt;
A few days back I returned to my computer to find an alarm on the screen.  The CPU had exceeded its temperature limit of 68 degrees C for several minutes, going as high as 69 C (156 F).  I downloaded a system-exerciser program called &lt;a href="http://www.jam-software.com/freeware/index.shtml"&gt;HeavyLoad&lt;/a&gt; and ran the CPU test, which is a repetitive graphics application, and the CPU temperature jumped right up to 70 C, CPU fan becoming very audible.  Oops - problem.&lt;br&gt;
&lt;br&gt;
I wondered if the thermal transfer between the CPU and its heatsink was OK.  I had removed the heatsink once to re-check that the CPU was correctly loaded in its socket, thus disturbing the termal transfer compound.  Also I had never felt good about the seating of the clips that hold the heatsink to the motherboard.&lt;br&gt;
&lt;br&gt;
So I removed the heatsink once again, removed the old thermal transfer compound, and applied &lt;a href="http://www.arcticsilver.com/as5.htm"&gt;Arctic Silver&lt;/a&gt; compound in its place, evening it out with a credit card.  Replacing the heatsink atop the CPU cover, I tried very carefully this time to apply equal pressure on all of the mounting clips, hearing a satisfying little click at each corner, an assurance that the heatsink is held down squarely.  I also disconnected the internal case fan from motherboard control and connected it to full voltage so that it will always run full speed.  It's noiseless anyway.&lt;br&gt;
&lt;br&gt;
Good results!  The following measurements were made with HeavyLoad executing its graphic application (about 60% CPU utilization), and the hole pattern in the back of the case blocked, thus forcing air to come all the way through from the front).  In each case, temperatures were allowed to settle for at least a quarter of an hour.  The CPU fan is automatically controlled from the motherboard:&lt;br&gt;&lt;br&gt;
&lt;table cols="7"&gt;
&lt;tr align="right"&gt;
&lt;td width="200"&gt; &lt;b&gt;Conditions&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;CPU&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;MOB&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;ICH&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;MCH&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;GPU&lt;/b&gt;&lt;/td&gt;
&lt;td align="center"&gt; &lt;b&gt;CPU&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr align="center"&gt;
&lt;td&gt; &amp;nbsp; &lt;/td&gt;
&lt;td&gt; &lt;b&gt;C&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;C&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;C&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;C&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;C&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;Fan&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr align="right"&gt;
&lt;td&gt; &lt;b&gt;Max allowed&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;68&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;85&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;119&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;109&lt;/b&gt;&lt;/td&gt;
&lt;td&gt; &amp;nbsp;&lt;/td&gt;
&lt;td&gt; &lt;b&gt;RPM&lt;/b&gt;&lt;/td&gt;
&lt;tr align="right"&gt;
&lt;td&gt; Exhaust fan LOW (silent)&lt;/td&gt;
&lt;td&gt; 60&lt;/td&gt;
&lt;td&gt; 48&lt;/td&gt;
&lt;td&gt; 62&lt;/td&gt;
&lt;td&gt; 66&lt;/td&gt;
&lt;td&gt; 53&lt;/td&gt;
&lt;td&gt; 1467&lt;/td&gt;&lt;/tr&gt;
&lt;tr align="right"&gt;
&lt;td&gt; Exhaust fan MED (audible)&lt;/td&gt;
&lt;td&gt; 60&lt;/td&gt;
&lt;td&gt; 49&lt;/td&gt;
&lt;td&gt; 62&lt;/td&gt;
&lt;td&gt; 66&lt;/td&gt;
&lt;td&gt; 50&lt;/td&gt;
&lt;td&gt; 1345&lt;/td&gt;&lt;/tr&gt;
&lt;tr align="right"&gt;
&lt;td&gt; Exhaust fan HI (whoosh)&lt;/td&gt;
&lt;td&gt; 59&lt;/td&gt;
&lt;td&gt; 47&lt;/td&gt;
&lt;td&gt; 62&lt;/td&gt;
&lt;td&gt; 66&lt;/td&gt;
&lt;td&gt; 50&lt;/td&gt;
&lt;td&gt; 1348&lt;/td&gt;&lt;/tr&gt;
&lt;tr align="right"&gt;
&lt;td&gt; Fan LOW, no HeavyLoad&lt;/td&gt;
&lt;td&gt; 40&lt;/td&gt;
&lt;td&gt; 41&lt;/td&gt;
&lt;td&gt; 63&lt;/td&gt;
&lt;td&gt; 66&lt;/td&gt;
&lt;td&gt; 53&lt;/td&gt;
&lt;td&gt; 927&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;br&gt;
I wish it were cooler still, but the CPU is now well within specifications.  Further, the speed of the rear exhaust fan doesn't seem to make much difference in the temperatures, though it makes a lot of difference in noise.  So I'm leaving the fan on low until there is a problem.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Noise:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I admit that my hearing isn't what it once was, but this system is so quiet that I can't always be sure I'm hearing it.  A very low rumble from the disk drives is about all there is, and only when they are busy.  But when the forced-air-furnace comes on I just can't hear it at all.  I LOVE that!  Now about that furnace ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-4280472712756498265?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/4280472712756498265/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=4280472712756498265' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4280472712756498265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4280472712756498265'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/11/heat-speed-sound.html' title='Heat, Speed, &amp; Sound'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/Rze9xdrS6SI/AAAAAAAAAwo/-pvfjCcQcQc/s72-c/b4.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5800569811078737822</id><published>2007-11-04T16:55:00.000-06:00</published><updated>2008-12-11T22:28:27.333-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='RAID'/><category scheme='http://www.blogger.com/atom/ns#' term='hard drive'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><title type='text'>The Computer Is Built!</title><content type='html'>And I'm pleased with it.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Performance:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5PI1IoPWI/AAAAAAAAAvo/gkqUCoa9IsY/s1600-h/Windows+Experience+Index.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5PI1IoPWI/AAAAAAAAAvo/gkqUCoa9IsY/s400/Windows+Experience+Index.gif" width="200" align="left" height="150" border="0" alt="Windows Experience Index screen in Vista, click to enlarge" id="BLOGGER_PHOTO_ID_5129124038742392162" /&gt;&lt;/a&gt;The overall Windows Experience Index is 5.4, which I believe is pretty good.  The limiting subscore (5.4) is the disks, actually, and they are very high-speed SATA II 7200-RPM drives, though you can get 10,000 RPM drives which should be faster yet.  The highest subscore is the Windows Aero graphics, 5.9.  Everything else falls between, so the system is reasonably well balanced.&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Quietness:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
When there is &lt;b&gt;nothing&lt;/b&gt; else going on in the room, TV and the old computer turned off, sitting at my desk, I can hear a faint, low-pitched roar similar to the sound you hear by holding a large seashell up to your ear, but certainly not that loud.  It has a resonance to it, despite my efforts to dampen sounds inside the box.  I think that the rear fan is the origin of most of the noise.  It's not objectionable, because it's faint, but I will probably try to do more to limit the sound, such as:
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5O8lIoPUI/AAAAAAAAAvY/5Yy8vxKIhEI/s1600-h/inservice.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5O8lIoPUI/AAAAAAAAAvY/5Yy8vxKIhEI/s400/inservice.jpg" width="174" height="150" align="right" border="0" alt="This is the computer (black), in service, next to the older and larger Gateway 600 (grey) that it will eventually replace.  Click to enlarge" id="BLOGGER_PHOTO_ID_5129123828288994626" /&gt;&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Add more sound-deadening material inside the box; there is room on the side cover for more;&lt;/li&gt;
&lt;li&gt;Play with fan speeds.  The computer reports its own temperatures at several places including the CPU, graphics card, and motherboard, and those are quite comfortably within spec right now, so I could choose a lower speed for the rear fan;&lt;/li&gt;
&lt;li&gt;Cover the strange hole pattern on the back of the case, for which there seems no purpose; and&lt;/li&gt;
&lt;li&gt;Replace or rewire the rear fan.  The motherboard came with a fan-control connection for that fan, but oddly, that fan did not come with a connector for the fan control.  It may be easier for me to order a fan with the right connector rather than a conversion cable.&lt;/li&gt;
&lt;/ul&gt;
&lt;b&gt;Bottom Line:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
It's a good computer.  Luckily there were no DOA (dead-on-arrival) parts, and it came right up and ran.  The only problems were software ones, &lt;b&gt;after&lt;/b&gt; Vista was installed and not to be discussed here (though I may yet post a &lt;b&gt;rant&lt;/b&gt; about Vista.  It is &lt;b&gt;SO&lt;/b&gt; awkward and obtuse).  I think that once a person has the proper parts on hand, one could put a computer like this together in an hour or two, including the initial Vista installation.&lt;br&gt;
&lt;br&gt;
Below is a pictorial of the build process, in reverse order.  Click on the Materials List on the side panel to see what went into the computer.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5O81IoPVI/AAAAAAAAAvg/7-rWQHKKspQ/s1600-h/raidscreen.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5O81IoPVI/AAAAAAAAAvg/7-rWQHKKspQ/s400/raidscreen.jpg" border="0" alt="Initial RAID Screen in Intel Bios" id="BLOGGER_PHOTO_ID_5129123832583961938" /&gt;&lt;/a&gt;&lt;br&gt;
After powering up the disks, this screen in the BIOS allowed the association of drives A and B as a single fault-tolerant 320 Gb RAID disk before anything was ever written to the disks.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OqlIoPQI/AAAAAAAAAu4/qSnMFQI0ILU/s1600-h/nodevices.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OqlIoPQI/AAAAAAAAAu4/qSnMFQI0ILU/s400/nodevices.jpg" border="0" alt="Screen shows that no bootable devices are connected.  More importantly, it shows that the computer WORKS!" id="BLOGGER_PHOTO_ID_5129123519051349250" /&gt;&lt;/a&gt;&lt;br&gt;
When first powering up the system, I had disconnected all of the disk drives and some other stuff to see if the CPU and motherboard would POST (power-on self test).  THEY DID!  This screen proves that a lot of stuff was working:&lt;ul&gt;
&lt;li&gt;Power supply;&lt;/li&gt;
&lt;li&gt;Motherboard;&lt;/li&gt;
&lt;li&gt;CPU;&lt;/li&gt;
&lt;li&gt;Graphics card, at least sufficient to display to the generic screen; and&lt;/li&gt;
&lt;li&gt;USB ports and keyboard-handling firmware on the motherboard;&lt;/li&gt;
&lt;li&gt;Fans (I could see them turn).&lt;/li&gt;
&lt;/ul&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OqlIoPRI/AAAAAAAAAvA/1XeaSjVKKTA/s1600-h/fullup.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OqlIoPRI/AAAAAAAAAvA/1XeaSjVKKTA/s400/fullup.jpg" border="0" alt="Ready to run" id="BLOGGER_PHOTO_ID_5129123519051349266" /&gt;&lt;/a&gt;&lt;br&gt;
The box is fully wired and ready to test.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5Oq1IoPSI/AAAAAAAAAvI/G8MXzqZcJCY/s1600-h/mobisin.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5Oq1IoPSI/AAAAAAAAAvI/G8MXzqZcJCY/s400/mobisin.jpg" border="0" alt="Motherboard and most other parts are in place" id="BLOGGER_PHOTO_ID_5129123523346316578" /&gt;&lt;/a&gt;&lt;br&gt;
The motherboard is installed and screwed in place.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5OrFIoPTI/AAAAAAAAAvQ/LUbGfEloZAs/s1600-h/drivesinstalled.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5OrFIoPTI/AAAAAAAAAvQ/LUbGfEloZAs/s400/drivesinstalled.jpg" border="0" alt="Hard disks are installed" id="BLOGGER_PHOTO_ID_5129123527641283890" /&gt;&lt;/a&gt;&lt;br&gt;
The three 320 Gb hard drives are in place and wired up.  Two drives are for the fault-tolerant RAID disk, and a third will be used as a backup.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OZlIoPMI/AAAAAAAAAuY/XgPdWC9kbMI/s1600-h/diskdrive.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Ry5OZlIoPMI/AAAAAAAAAuY/XgPdWC9kbMI/s400/diskdrive.jpg" border="0" alt="One 320 Gb drive" id="BLOGGER_PHOTO_ID_5129123226993573058" /&gt;&lt;/a&gt;&lt;br&gt;
It's still hard for me to reconcile this palm-sized, silent, extremely fast 320 Gb drive with the washing-machine-sized sub-Gb drives I cut my computer teeth on years ago.  And in just a few years, even these will be replaced with much faster &lt;b&gt;flash&lt;/b&gt; drives having no moving parts at all.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5OaFIoPNI/AAAAAAAAAug/-ItqQI4ZA-o/s1600-h/soundproofed.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5OaFIoPNI/AAAAAAAAAug/-ItqQI4ZA-o/s400/soundproofed.jpg" border="0" alt="Sound deadening material applied" id="BLOGGER_PHOTO_ID_5129123235583507666" /&gt;&lt;/a&gt;&lt;br&gt;
Sound-deadening material stuck to the back side of the hard-drive cage.  A similar piece is attached to the side door covering the drives on this side, and on the bottom and top of the cage.  I attached this material on all interior surfaces wherever it could be attached without getting in the way or interfering with the passage of cooling air.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5ObFIoPOI/AAAAAAAAAuo/XkACvYSvodQ/s1600-h/sounddead.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Ry5ObFIoPOI/AAAAAAAAAuo/XkACvYSvodQ/s400/sounddead.jpg" border="0" alt="Sound-deadening felt" id="BLOGGER_PHOTO_ID_5129123252763376866" /&gt;&lt;/a&gt;&lt;br&gt;
Sound-deadeing felt.  Found in the local Menards hardware store, not for the purpose of deadening sound, but I think it should work.  I liked the black better, but the store didn't have much so I bought some of both.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/Ry5ObVIoPPI/AAAAAAAAAuw/vFrNzCSyYAI/s1600-h/frontfan.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/Ry5ObVIoPPI/AAAAAAAAAuw/vFrNzCSyYAI/s400/frontfan.jpg" border="0" alt="Front fan is installed" id="BLOGGER_PHOTO_ID_5129123257058344178" /&gt;&lt;/a&gt;&lt;br&gt;
Front fan installed inside of the hard drive cage, to pull air across the drives and blow it toward the graphics card and CPU.  See earlier posts for other views of the entire case.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5800569811078737822?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5800569811078737822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5800569811078737822' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5800569811078737822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5800569811078737822'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/11/computer-is-built.html' title='The Computer Is Built!'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/Ry5PI1IoPWI/AAAAAAAAAvo/gkqUCoa9IsY/s72-c/Windows+Experience+Index.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5903941258805894520</id><published>2007-10-23T19:04:00.000-05:00</published><updated>2008-12-11T22:28:28.114-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hard drive'/><category scheme='http://www.blogger.com/atom/ns#' term='E6750'/><category scheme='http://www.blogger.com/atom/ns#' term='G.Skill'/><category scheme='http://www.blogger.com/atom/ns#' term='mirrored disks'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>Everything is Here</title><content type='html'>The Intel E6750 Boxed CPU and three Western Digital 320-Gb SATA hard drives arrived today, and now all of the parts are here.  I set everything except the case out on the picnic table for a photo.  Out of several photos, my sweetie liked this one with fall color in the background  :-)&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Rx6RDlIdbFI/AAAAAAAAAtY/xjiStqVtlc8/s1600-h/picnic.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Rx6RDlIdbFI/AAAAAAAAAtY/xjiStqVtlc8/s320/picnic.jpg" border="0" alt="All of the stuff" id="BLOGGER_PHOTO_ID_5124692916687432786" /&gt;&lt;/a&gt;
Then I downloaded an Intel video that demonstrates how to install the processor and "thermal solution" (fan + heat sink) on the Intel DP35DP motherboard.  After playing the video once, I played it again and did the installation while watching the video.  What makes it tricky is that dozens upon dozens of tiny pins on the motherboard socket must match up with a similar number of contact lands on the CPU wafer, without bending any of the pins.&lt;br&gt;
&lt;br&gt;
And the CPU is just a wafer at this point, not fragile exactly but the motherboard pins are.  You are supposed to set the square wafer straight down on the pins without sliding it at all, but I must admit that when I set it down it wasn't perfectly aligned and it did slide slightly.  I hope those pins handled it - I didn't look.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/Rx6Q9VIdbEI/AAAAAAAAAtQ/FvcQAwyotVg/s1600-h/mother.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/Rx6Q9VIdbEI/AAAAAAAAAtQ/FvcQAwyotVg/s320/mother.jpg" border="0" alt="Motherboard with CPU and memory" id="BLOGGER_PHOTO_ID_5124692809313250370" /&gt;&lt;/a&gt;
After inserting the wafer you close a little door and then a little spring handle to press the door and wafer down tightly against the socket pins.  Then you put the heatsink on top of it all and fasten it down with its own little plastic clips, plug the heatsink fan into the appropriate connector, tie off any spare wire, and job done.  I hope.  I'll feel a little better when I power it up and get a BIOS screen.&lt;br&gt;
&lt;br&gt;
By comparison, the 4 Gb of G.Skill RAM seemed quite easy to install.  Just push it carefully into the socket.&lt;br&gt;
&lt;br&gt;
On another note: My first experience with computers was in 1962, 45 years ago, when disk drives were barely on the horizon.  We used a magnetic tape operating system, and wrote programs on punched cards or paper tape.  Later, about 28 years ago, I bought my first computer while working at 3M, with 64 Kb of RAM (yes RAM, not core), and a 5-Mb disk drive which was too heavy for one person to manage alone.  These palm-sized disks &lt;b&gt;each&lt;/b&gt; have 64,000 (sixty-four thousand) times as much disk capacity, and the CPU will enjoy 62,500 times as much RAM.  Oh, and the RAM is about 800 times faster, while the CPU is easly 2500 times faster and there are two in the chip.  Isn't technology stunning?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5903941258805894520?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5903941258805894520/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5903941258805894520' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5903941258805894520'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5903941258805894520'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/everything-is-here.html' title='Everything is Here'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/Rx6RDlIdbFI/AAAAAAAAAtY/xjiStqVtlc8/s72-c/picnic.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8886784051802819851</id><published>2007-10-18T07:42:00.000-05:00</published><updated>2008-12-11T22:28:29.265-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Sonata III 500'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><title type='text'>Antec Sonata III 500 Review</title><content type='html'>&lt;B&gt;Noise Reduction:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
The &lt;a href="http://www.antec.com/us/productDetails.php?ProdID=15137"&gt;Sonata III 500&lt;/a&gt; is supposed to be one of the quietest computer cases on the planet, advertised by Sonata as "whisper quiet when it comes to system noise."  
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdWMVIda_I/AAAAAAAAAso/bwlJmIuQCf8/s1600-h/front.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdWMVIda_I/AAAAAAAAAso/bwlJmIuQCf8/s200/front.jpg" border="0" alt="Front of case with top front cover removed, three large bays and two small ones" id="BLOGGER_PHOTO_ID_5122657870988274674" /&gt;&lt;/a&gt;
This is why I bought it, but frankly, I don't see what all the fuss is about.  Here is what the Sonata III 500 &lt;b&gt;&lt;u&gt;does&lt;/u&gt;&lt;/b&gt; have for noise reduction:&lt;ul&gt;
&lt;li&gt;An efficient 500-watt power supply with its own "low noise" cooling fan.  I haven't powered it up yet, so I can't yet testify to the lack of noise but I expect it to be quiet,&lt;/li&gt;
&lt;li&gt;A normal-looking three-speed 120 mm rear exhaust fan. I was unable to find noise ratings published by Antec, but I expect it to be quiet at the lower speeds and noisy at the top speed,&lt;/li&gt;
&lt;li&gt;Silicone grommets for mounting the hard drives, to absorb noise and vibrations, and&lt;/li&gt;
&lt;li&gt;Rubber feet.&lt;/li&gt;
&lt;/ul&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/RxdWElIda-I/AAAAAAAAAsg/w3hYc8pHMqw/s1600-h/inside.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/RxdWElIda-I/AAAAAAAAAsg/w3hYc8pHMqw/s200/inside.jpg" border="0" alt="Nice clean inside showing space for up to four hard drives but no obvious sound-deadening features" id="BLOGGER_PHOTO_ID_5122657737844288482" /&gt;&lt;/a&gt;
On the flip side, though, here is what the Sonata does &lt;b&gt;&lt;u&gt;not&lt;/u&gt;&lt;/b&gt; have:&lt;ul&gt;
&lt;li&gt;Sound-deadening panels or foam of any kind to absorb sound or prevent conduction through the hard steel panels,&lt;/li&gt;
&lt;li&gt;Baffling to prevent sound generated inside from coming out either the front or back air ports,&lt;/li&gt;
&lt;li&gt;Gaskets or sealant to prevent sound from coming through the various cracks, such as around the side and front doors,&lt;/li&gt; or
&lt;li&gt;Joint treatment to prevent the doors from rattling.&lt;/li&gt;
&lt;/ul&gt;
I have a lot of experience in older computers, the kind that were once called minicomputers, but I am certainly not an expert in modern PC's - this is my first build.  So maybe none of those things are important or should be expected, although Sonata does indeed provide sound-deadening panels on some of their other cases so I guess that one matters.  I may add my own panels where there is space to do so, especially around the hard disks.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RxdV91Ida9I/AAAAAAAAAsY/voFb1vPNZLI/s1600-h/filter.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RxdV91Ida9I/AAAAAAAAAsY/voFb1vPNZLI/s200/filter.jpg" border="0" alt="This is the air filter" id="BLOGGER_PHOTO_ID_5122657621880171474" /&gt;&lt;/a&gt;
&lt;b&gt;Air Cooling:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
The air filter is built-in, removable, and washable, but dubiously effective at filtering air and obviously no good at baffling noise.  It is simply a very thin plastic piece with lots of little holes  in it, as shown in the photo, in fact so flimsy that I broke one of the latch handles the first time I tried to remove the filter.  It should be provided with some kind of filter medium, and the accompanying manual appears to show such a piece, but none came with the case.  Perhaps I'll add one myself and punch out the lattice of holes, which will just plug up anyway and cause the fan to speed up and make more noise.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/RxdV0lIda8I/AAAAAAAAAsQ/tcrSedWFHJ8/s1600-h/holes.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/RxdV0lIda8I/AAAAAAAAAsQ/tcrSedWFHJ8/s200/holes.jpg" border="0" alt="Back of case.  Note the hole pattern on the top right of the picture, bottom of case when it is standing upright.  What on earth could this be for? Is my ignorance showing?" id="BLOGGER_PHOTO_ID_5122657462966381506" /&gt;&lt;/a&gt;
Furthermore, there is a big pattern of holes in the back cover which appears to be positioned to provide air to the PCI devices, but which has no filter at all and which looks like it would admit air which would circulate directly up to the rear exhaust fan without doing much good.  There are brackets inside which could be used to hold a filter, or even an air-blocking cover, but no documentation about such an accessory was provided.  Maybe this is standard, and I ought to know about it, but I don't, and I don't find it on my older PCs.  I may try to block it myself, or cover it with a filter medium, after I see exactly how all of the components fit inside the case.&lt;br&gt;
&lt;br&gt;

The rear exhaust fan is a three-speed, automatically controlled by the motherboard, which I believe is normal these days.  There are screw holes for another fan inside the case between the hard disks and the motherboard, but no fan is provided because, according to Antec, this will add noise.  I have ordered a very-low-noise fan for this location, to help cool the disk drives as well as the graphics card attached to the motherboard.  It looks as though it will fit with very little room to spare.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdVqVIda7I/AAAAAAAAAsI/aBBwcVv_fU8/s1600-h/before.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdVqVIda7I/AAAAAAAAAsI/aBBwcVv_fU8/s200/before.jpg" border="0" alt="Before fastening the feet to the case" id="BLOGGER_PHOTO_ID_5122657286872722354" /&gt;&lt;/a&gt;
&lt;b&gt;Feet:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Other reviewers of this case have complained that the rubber feet are attached only with adhesive and tend to come off.  I judged that my box would have that problem too, and fixed it right away by screwing the same feet securely to the case through 1/8-inch by 3/4-inch fender washers.  See the photos.  I can't imagine why Antec doesn't do this themselves, especially when all objective reviewers mention it.&lt;br&gt;
&lt;br&gt;

&lt;b&gt;Power Connections:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I am impressed by the sheer number of power connectors available out of this supply.  With no experience in such things, sixteen connections seems like a lot to me, a good thing.  &lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdViVIda6I/AAAAAAAAAsA/wpRW4t1x5PU/s1600-h/after.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/RxdViVIda6I/AAAAAAAAAsA/wpRW4t1x5PU/s200/after.jpg" border="0" alt="After fastening the feet to the case" id="BLOGGER_PHOTO_ID_5122657149433768866" /&gt;&lt;/a&gt;
It has four SATA connections, which might seem like a lot, but I may still need to add one additional SATA power output if I install three hard disks and two DVD drives.  Nevermind, there are inexpensive "Y" cables for this very purpose.&lt;br&gt;
&lt;br&gt;

&lt;b&gt;Case Size:&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
I thought that this was a "full-size" ATX case, or I would have ordered a different one.  It is not, but this is &lt;b&gt;MY FAULT&lt;/b&gt; because Antec's literature clearly describes it as a "super mini tower."  Regardless, the case is large enough to accommodate a "full" ATX motherboard, and I think it will hold the other stuff I've ordered with some space for expansion.  Therefore, even though I am currently somewhat underwhelmed by the quality of the Sonata III 500, I do like the specifications on the power supply, I find the box attractive, and I will build my new computer in it.&lt;br&gt;
&lt;br&gt;
I ordered all of the other components for the computer yesterday, mostly from &lt;a href="http://newegg.com"&gt;NewEgg.com&lt;/a&gt;, but the motherboard from &lt;a href="http://ZipZoomFly.com"&gt;ZipZoomFly.com&lt;/a&gt; because NewEgg didn't have it at the time.  They do now, for less money.  Tsk.  I bought SATA data cables and one power "Y" cable from &lt;a href="http://SataCables.com"&gt;SataCables.com&lt;/a&gt;.  Here is the &lt;a href="http://minnesotadon.ms11.net/stirling/Materials%20List%20RAID.htm"&gt;materials list&lt;/a&gt;.  I may post about the Sonata case again after I have it filled and powered up, when we'll know how quiet it is.&lt;br&gt;&lt;br&gt;  Your comments, objections, and suggestions are invited.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8886784051802819851?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8886784051802819851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8886784051802819851' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8886784051802819851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8886784051802819851'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/antec-sonata-iii-500-review.html' title='Antec Sonata III 500 Review'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/RxdWMVIda_I/AAAAAAAAAso/bwlJmIuQCf8/s72-c/front.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-3932889278782115191</id><published>2007-10-13T19:55:00.001-05:00</published><updated>2008-12-11T22:28:29.741-06:00</updated><title type='text'>Choice of Motherboard</title><content type='html'>This computer (which I call Stirling) will require a motherboard, like any other computer, which will be host to the CPU, memory, graphics, audio, disk controller, and much more.  There are many motherboards, by several manufacturers, which support the E6750 CPU that I have selected, and which will fit perfectly in the full-size ATX cabinet that I have ordered.  For better or for worse, however, I have not made a search for the "perfect" motherboard and have decided to just order one by Intel, for these reasons:&lt;ul&gt;
&lt;li&gt;I like Intel,&lt;/li&gt;
&lt;li&gt;They are an Amercan company (at least headquartered here), and&lt;/li&gt;
&lt;li&gt;They make the CPU as well, so I expect to get support, if needed, without finger pointing.&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RxFpIVIda2I/AAAAAAAAArg/6VjiEXg8RZ4/s1600-h/dp35dp_lg.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RxFpIVIda2I/AAAAAAAAArg/6VjiEXg8RZ4/s200/dp35dp_lg.jpg" border="0" alt="Boxed Intel DP35DPM Motherboard " id="BLOGGER_PHOTO_ID_5120989843129461602" /&gt;&lt;/a&gt;
Do let me know if I am dreaming.&lt;br&gt;
&lt;br&gt;
From what I have read about the Intel motherboards, they are reliable, utilitarian, and straightforward.  They are not for gamers and other overclockers, because they do not allow most of the voltage and clock adjustments that those folks seek.  The Intel boards are not simple, however.  They all include such features as:&lt;ul&gt;
&lt;li&gt;Slots for 8 Gb of 800 MHz main memory,&lt;/li&gt;
&lt;li&gt;Lots of serial ATA (SATA) disk interfaces,&lt;/li&gt;
&lt;li&gt;One back-compatible Parallel IDE interface,&lt;/li&gt;
&lt;li&gt;Audio system,&lt;/li&gt;
&lt;li&gt;LAN 10/100/1000,&lt;/li&gt;
&lt;li&gt;Legacy I/O including a serial port, consumer infrared, PS/2 mouse &amp; keyboard,&lt;/li&gt;
&lt;/ul&gt;
Some include a diskette controller, and some contain an internal graphics controller.  All support Windows Vista, 1333 Mz FSB, 12 USB ports, and more.  Here is a &lt;a href="http://minnesotadon.ms11.net/stirling/Motherboard%20Comparison.htm"&gt;table comparing&lt;/a&gt; the four Intel motherboards that support the E6750 and similar CPUs.&lt;br&gt;
&lt;br&gt;
I've chosen the Intel &lt;a href="http://www.intel.com/products/motherboard/DP35DP/configs.htm"&gt;DP35DP&lt;/a&gt; motherboard, distinguished from the others by the following set of features:&lt;ul&gt;
&lt;li&gt;Full ATX form factor, for maximum on-board real estate,&lt;/li&gt;
&lt;li&gt;Six SATA interfaces, as much as any board&lt;/li&gt;
&lt;li&gt;Three standard PCI slots,&lt;/li&gt;
&lt;li&gt;Three PCI 1 slots,&lt;/li&gt;
&lt;li&gt;RAID support, but&lt;/li&gt;
&lt;li&gt;No graphics accelerator, and&lt;/li&gt;
&lt;li&gt;No legacy diskette I/O.&lt;/li&gt;
&lt;/ul&gt;
Those last two are a trade-off so that the card can have the maximum number of SATA interfaces and PCI slots, as well as the maximum real estate for cooling and component fit.  Graphics will be provided by a separate graphics accelerator card, and diskette support will be provided through an internal USB connection.&lt;br&gt;
&lt;br&gt;
If it sounds like I know what I'm doing here, don't be fooled.  These are the musings of a complete novice, and any comments will be appreciated and valued.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-3932889278782115191?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/3932889278782115191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=3932889278782115191' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/3932889278782115191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/3932889278782115191'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/choice-of-motherboard.html' title='Choice of Motherboard'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_CodyAxkmUSw/RxFpIVIda2I/AAAAAAAAArg/6VjiEXg8RZ4/s72-c/dp35dp_lg.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-4137630691022825805</id><published>2007-10-13T15:57:00.000-05:00</published><updated>2008-12-11T22:28:30.374-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='E6750'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><title type='text'>CPU Cooling</title><content type='html'>The Intel &lt;a href="http://compare.intel.com/pcc/showchart.aspx?mmID=890439&amp;familyID=1&amp;culture=en-US"&gt;Core 2 Duo 6750 processor&lt;/a&gt; comes in a retail box from &lt;a href="http://www.newegg.com/Product/Product.asp?Item=N82E16819115029&amp;ATT=19-115-029&amp;CMP=OTC-pr1c3grabb3r&amp;cm_mmc=OTC-pr1c3grabb3r-_-Processors-_-intel-_-19115029"&gt;NewEgg&lt;/a&gt; and others, complete with a processor cooling solution consisting of a small fan and cooling fins.  Concerned about noise, I searched for a passive design, without a fan, to replace the Intel cooler, and came across the web site &lt;a href="http://www.frostytech.com/"&gt;FrostyTech.com&lt;/a&gt;, where CPU heatsinks of many types are compared.  One of the evaluated heatsinks is the "&lt;a href="http://www.frostytech.com/articleview.cfm?articleID=2132"&gt;stock&lt;/a&gt;" fan/fin cooler provided by Intel with the boxed processor.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/RxEyDlIda1I/AAAAAAAAArY/aG2qEFjAz6k/s1600-h/intel1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/RxEyDlIda1I/AAAAAAAAArY/aG2qEFjAz6k/s200/intel1.jpg" border="0" alt="Intel stock cooler" id="BLOGGER_PHOTO_ID_5120929288385555282" /&gt;&lt;/a&gt;
According to FrostyTech, the Intel cooler is &lt;u&gt;very&lt;/u&gt; quiet, one of the quietest coolers evaluated.  The &lt;a href="http://www.frostytech.com/articleview.cfm?articleID=2132"&gt;article&lt;/a&gt; includes a large table of coolers, with the stock Intel 35 db quieter than the noisiest cooler and about 20 db quieter than the median.  The description was also very favorable, it "operates very quietly at its default speed."&lt;br&gt;
&lt;br&gt;
However the fan was not tested in the mode in which it will actually be used.  FrostyTech used a 3-pin connector, which causes the fan to adjust its speed according to ambient air temperature.  In the Intel boxed solution a 4-pin connector is used, permitting the fan speed to be programmed according to the actual CPU temperature, in which case it might run faster and make more noise.  Nevertheless, it's my guess that the Intel fan will be quiet enough, probably much quieter than the two mirrored 320 Gb disk drives that will be running in the same cabinet, and probably also quieter than the cabinet fan.&lt;br&gt;
&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RxEx8VIda0I/AAAAAAAAArQ/WO_qDJFPMtA/s1600-h/intel2.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RxEx8VIda0I/AAAAAAAAArQ/WO_qDJFPMtA/s200/intel2.jpg" border="0" alt="Intel stock cooler" id="BLOGGER_PHOTO_ID_5120929163831503682" /&gt;&lt;/a&gt;
&lt;br&gt;
FrostyTech also evaluated the cooler's actual cooling ability, applying an 85-watt heat load, which is slightly higher than the 65 watts dissipated by the E6750 at maximum current.  Here the Intel cooler did not fare as well, ending up near the top of the list with the highest CPU temperature (least cooling), some 20 degrees C higher than the best cooler.  Again, though, the fan was not operated in the mode in which it will be used in my computer.  I suspect that Intel knows what it is doing, and the cooling will be adequate for my relatively tame application.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/RxEx2FIdazI/AAAAAAAAArI/PisUXcqXUtQ/s1600-h/intel3.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/RxEx2FIdazI/AAAAAAAAArI/PisUXcqXUtQ/s200/intel3.jpg" border="0" alt="Intel stock cooler" id="BLOGGER_PHOTO_ID_5120929056457321266" /&gt;&lt;/a&gt;
I did find two heatsinks by &lt;a href="http://www.spirecoolers.com/main/default.asp"&gt;Spire&lt;/a&gt;, both of which include a noisy fan, but which (according to Spire) can be used without the fan if the heat load is not excessive.  One of these was also evaluated by FrostyTech, who downrated it for its bulkiness and thought it was difficult to install and remove.  They did not test it without the fan, but considering the tests they did perform I doubt that it would perform very well without the fan unless there was a gale wind flowing through the cabinet.  In my modest search I did not find any other passive CPU heatsinks.  These are available on some graphic accelerator cards (which are CPUs in their own right) but apparently not for CPUs.  If you know different, please let me know.&lt;br&gt;
&lt;br&gt;
Bottom line: I'm going with the stock Intel cooler unless the noise is a big surprise.  If so, then I'll look at other coolers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-4137630691022825805?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/4137630691022825805/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=4137630691022825805' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4137630691022825805'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4137630691022825805'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/cpu-cooling.html' title='CPU Cooling'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/RxEyDlIda1I/AAAAAAAAArY/aG2qEFjAz6k/s72-c/intel1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-8270351904397903449</id><published>2007-10-11T22:00:00.001-05:00</published><updated>2008-12-11T22:28:30.511-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='64-bit'/><category scheme='http://www.blogger.com/atom/ns#' term='Vista'/><title type='text'>Windows Vista Ultimate</title><content type='html'>I'm not yet a big fan of Windows Vista, but unless I go to some form of Unix it 
is in my future whether I like it or not.  The machine I am building will support the fanciest operating system that Microsoft makes, which is 64-bit Windows Vista Ultimate.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Rw7jceDqdiI/AAAAAAAAAqo/LPnbt4Jf6dI/s1600-h/ultimate.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Rw7jceDqdiI/AAAAAAAAAqo/LPnbt4Jf6dI/s200/ultimate.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5120279904611104290" /&gt;&lt;/a&gt;
It would certainly also support Windows Vista Business, which is about $50 cheaper than Ultimate, but Ultimate has two things I might want that are not in Business:&lt;ul&gt;
&lt;li&gt;Media Center stuff - I could become interested in this, and&lt;/li&gt;
&lt;li&gt;Windows BitLocker, drive encryption.&lt;/li&gt;&lt;/ul&gt;

So I ordered Windows Vista Ultimate, full, not upgrade or OEM, from &lt;a href="http://www.viosoftware.com/Windows+Vista+Ultimate+PG/?utm_source=pricegrabber&amp;utm_medium=mall&amp;utm_campaign=66R-00002"&gt;VioSoftware&lt;/a&gt; for $253.22.  Note: VioSoftware has two prices for this software package, one if you go to PriceGrabber first and a higher one if you go directly to VioSoftware.  There is a $27 difference.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-8270351904397903449?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/8270351904397903449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=8270351904397903449' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8270351904397903449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/8270351904397903449'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/windows-vista-ultimate.html' title='Windows Vista Ultimate'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_CodyAxkmUSw/Rw7jceDqdiI/AAAAAAAAAqo/LPnbt4Jf6dI/s72-c/ultimate.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-4187657394891656800</id><published>2007-10-09T16:56:00.000-05:00</published><updated>2008-12-11T22:28:31.178-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Sonata III 500'/><title type='text'>Here We Go ...</title><content type='html'>Since I don't really know how to build a computer, the first item to order would seem to be the case.  Then I can visualize how everything will fit.  I've chosen the full-size &lt;a href="http://www.antec.com/us/productDetails.php?ProdID=15137#"&gt;Sonata III 500&lt;/a&gt; case, billed as the quietest case in captivity.  We'll see.
&lt;a href="http://1.bp.blogspot.com/_CodyAxkmUSw/Rwv67eDqdgI/AAAAAAAAAqY/h25G-lLiIQ0/s1600-h/antec1.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CodyAxkmUSw/Rwv67eDqdgI/AAAAAAAAAqY/h25G-lLiIQ0/s200/antec1.jpg" border="0" alt="Corner view, side panel on" id="BLOGGER_PHOTO_ID_5119461301024355842" /&gt;&lt;/a&gt;
&lt;br&gt;

&lt;br&gt;
It's glossy black, because (I think) most of the people who build their own PC's are "&lt;a href="http://en.wikipedia.org/wiki/Gamer"&gt;gamers&lt;/a&gt;" who want the fastest computer on the block, or at least the fastest that they can afford, for running their graphics-intensive computer games.  For some reason, gamers seem to like black, shiny things, or very colorful things: computers, web sites, graphics cards, on and on.  It's OK with me - black is a fine color for computers, and most accessories like DVD drives can be ordered in black.&lt;br&gt;
&lt;br&gt;
The complaint from people who have ordered the Sonata III 500 is that the glossy black finish is easily marked.  If that happens it'll be too bad, but I don't really care that much.  If it's not &lt;u&gt;quiet&lt;/u&gt;, I'll care a lot more.&lt;br&gt;
&lt;br&gt;
&lt;a href="http://4.bp.blogspot.com/_CodyAxkmUSw/Rwv61ODqdfI/AAAAAAAAAqQ/drG0CsbuLUc/s1600-h/antec2.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CodyAxkmUSw/Rwv61ODqdfI/AAAAAAAAAqQ/drG0CsbuLUc/s200/antec2.jpg" border="0" alt="Side view, panel off" id="BLOGGER_PHOTO_ID_5119461193650173426" /&gt;&lt;/a&gt;
It is now on order for $117.00 from &lt;a href="http://www.zipzoomfly.com/jsp/ProductDetail.jsp?ProductCode=10005323"&gt;ZipZoomFly.com&lt;/a&gt;, shipping included, the lowest-cost source I could find at the moment I ordered it.  Not bad, really, since it includes the power supply.  Another company, TigerDirect, had it for less, but as I shopped around the price there suddenly jumped up.  That might have been a coincidence, but I suspect that their computer thought I was getting serious and bumped up the price.  They lost the sale.
&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;
More Specifications:&lt;ul&gt;
&lt;li&gt;Full-size ATX for lots of space, whether I need it or not.  It sits beside the desk anyway, so there is plenty of room for it.&lt;/li&gt;
&lt;li&gt;Included 500-watt super-quiet high-efficiency power supply.&lt;/li&gt;
&lt;li&gt;CPU-controllable cooling fan speed.&lt;/li&gt;
&lt;li&gt;Nine drive bays of various sizes, mounted on sound-absorbing silicone grommets.&lt;/li&gt;
&lt;li&gt;Front ports for USB, audio, and more.&lt;/li&gt;&lt;/ul&gt;
When I receive it, I'll see whether it comes with anything else, such as power supply cables, screws, and other necessary parts.  Then the next step is to order the motherboard, CPU, memory, graphics card, Vista, DVD drive, and at least one hard drive.  When those arrive I'll try to start it up and install Vista.  Some of these parts have a limited return period, so I will wait until I need them and order them all at once.  Learning experiences will follow!&lt;br&gt;
&lt;br&gt;
At this moment my intention is to install the 64-bit version of Vista, 4 Gb memory, and Raid 1 disks (2 disks, mirrored).  The materials list looks like &lt;a href="http://minnesotadon.ms11.net/stirling/Materials%20List%20RAID.htm"&gt;this&lt;/a&gt;.    If you have any suggestions I'm all ears (eyes).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-4187657394891656800?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/4187657394891656800/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=4187657394891656800' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4187657394891656800'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/4187657394891656800'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/10/here-we-go.html' title='Here We Go ...'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_CodyAxkmUSw/Rwv67eDqdgI/AAAAAAAAAqY/h25G-lLiIQ0/s72-c/antec1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5075914193736023</id><published>2007-08-29T22:34:00.000-05:00</published><updated>2008-12-11T22:28:31.411-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hard drive'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><title type='text'>Choosing a Hard Disk</title><content type='html'>How does one choose the hard disk drive (HDD) from all of the available vendors and capacities?  First, it's important to recognize that it's not a highly critical decision; I'm not likely to choose a vendor or capacity that is unsuitable, and drives are not a huge expense any more, so I can add or replace drives later (or sooner) if necessary.&lt;br&gt;
&lt;br&gt;
My existing system has 23 Gb available out of 100 Gb total capacity, so I'm using about 77 Gb.  Disk usage has grown from about 15 Gb in 1999 to 77 this year, which means that it grew by a factor of five in the intervening eight years.  That suggests I should buy five times the amount of disk that I am now using, or about 400 Gb, to last the next eight years.  Maybe so.&lt;br&gt;&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RtY7HaY03rI/AAAAAAAAAiY/gofDyN4a1Wg/s1600-h/hdd.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RtY7HaY03rI/AAAAAAAAAiY/gofDyN4a1Wg/s200/hdd.jpg" border="0" alt="Hard Drive" id="BLOGGER_PHOTO_ID_5104332226199609010" /&gt;&lt;/a&gt;&lt;br&gt;
But maybe not.  New technology is on the horizon.  It is already possible to buy a 64 Gb flash drive with no moving parts for about $900.  How soon will the price/performance curve of flash or some even-better technology approach that of moving-head disk drives?  Probably sooner than later.&lt;br&gt;
&lt;br&gt;
For now I'm going with 320 Gb drives, a relatively mature technology, available from several manufacturers, with modest power and heat dissipation needs.  That's a safe choice.&lt;br&gt;
&lt;br&gt;
So whose drives?  To simplify things I've narrowed the field to three manufacturers: (1) Samsung, (2) Seagate, and (3) Western Digital, in alphabetical order.  Hitachi and Maxtor make appropriate drives too, as do other manufacturers, but I've seen nothing to indicate that any of those would be a better choice than the best of the first three.  If you have other information, &lt;b&gt;please comment&lt;/b&gt;.  The drives will all have:

&lt;ul&gt;&lt;li&gt;320 Gb capacity.&lt;/li&gt;
&lt;li&gt;SATA 3.0 Gb/s interface.&lt;/li&gt;
&lt;li&gt;7200 RPM and attending latency.&lt;/li&gt;
&lt;li&gt;Average seek time less than 10 ms.&lt;/li&gt;
&lt;li&gt;16 Mb cache.&lt;/li&gt;&lt;/ul&gt;

The following table shows some additional information about each drive.  Prices are all from &lt;a href="http://www.newegg.com"&gt;NewEgg&lt;/a&gt;, as is the user comment information.  Other data comes from the manufacturers' specification sheets:&lt;br&gt;
&lt;br&gt;
&lt;table cols="6" cellpadding="2"&gt;
&lt;tr&gt;&lt;td&gt;&lt;u&gt;Brand&lt;/u&gt;&lt;/td&gt;
&lt;td&gt;&lt;u&gt;Model#&lt;/u&gt;&lt;/td&gt;
&lt;td&gt;&lt;u&gt;Price&lt;/u&gt;&lt;/td&gt;
&lt;td&gt;&lt;u&gt;Warranty&lt;/u&gt;&lt;/td&gt;
&lt;td&gt;&lt;u&gt;Five*&lt;/u&gt;&lt;/td&gt;
&lt;td&gt;&lt;u&gt;Comments&lt;/u&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Samsung&lt;/td&gt;
&lt;td&gt;HD321KJ&lt;/td&gt;
&lt;td&gt;$74.99&lt;/td&gt;
&lt;td align="center"&gt;1 yr&lt;/td&gt;
&lt;td&gt;80%&lt;/td&gt;
&lt;td align="right"&gt;20&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Seagate&lt;/td&gt;
&lt;td&gt;ST3320620AS&lt;/td&gt;
&lt;td&gt;$79.99&lt;/td&gt;
&lt;td align="center"&gt;5 yr&lt;/td&gt;
&lt;td&gt;76%&lt;/td&gt;
&lt;td align="right"&gt;1887&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Western Digital&lt;/td&gt;
&lt;td&gt;WD3200AAKS&lt;/td&gt;
&lt;td&gt;$74.99&lt;/td&gt;
&lt;td align="center"&gt;3 yr&lt;/td&gt;
&lt;td&gt;80%&lt;/td&gt;
&lt;td align="right"&gt;144&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;br&gt;
The &lt;u&gt;Five*&lt;/u&gt; column is the percentage of reviewers who gave the drive five stars out of five, i.e. the best possible rating.  I realize that some people rarely give the highest rating to anything, so the system may be biased, but I also saw a comment from a reviewer who gave four stars for a drive which was dandy until it failed after one day's use.  So it balances out.&lt;br&gt;
&lt;br&gt;
In any case the reviewers' ratings don't give much guidance, all between 76% and 80%.  The Seagate drive is by far the most popular, but comments indicate that it has been received dead on arrival in many recent cases.  One commenter said that it is made in China.  Further, and significantly, many reviewers comment that the Seagate drive is noisy.  I don't like that, and I'm leaning a bit toward WD.  I wonder where theirs are made?&lt;br&gt;
&lt;br&gt;
Suppliers like NewEgg have a 30-day return policy on drives (probably on everything), so I suppose I won't be buying &lt;b&gt;any&lt;/b&gt; drives until the rest of the system is nearly assembled and ready to test. By then things may have changed.  Perhaps Seagate will correct their quality problem, or prices will change enough to make one drive more attractive on that basis.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5075914193736023?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5075914193736023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5075914193736023' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5075914193736023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5075914193736023'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/08/choosing-hard-disk.html' title='Choosing a Hard Disk'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_CodyAxkmUSw/RtY7HaY03rI/AAAAAAAAAiY/gofDyN4a1Wg/s72-c/hdd.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-5712127182661328073</id><published>2007-08-28T14:49:00.000-05:00</published><updated>2008-12-11T22:28:32.252-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mirrored disks'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>Gateway Performance 600</title><content type='html'>I'm struggling with the original precept of this blog: building a &lt;b&gt;new&lt;/b&gt; computer, because my Gateway Performance 600 is working so well now.  It's almost eight years old, but it runs a Pentium III processor at 600 MHz and has been upgraded significantly:&lt;ol&gt;&lt;a href="http://3.bp.blogspot.com/_CodyAxkmUSw/RtR9oKY03qI/AAAAAAAAAiQ/IE0red99vbQ/s1600-h/SystemProperties600.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CodyAxkmUSw/RtR9oKY03qI/AAAAAAAAAiQ/IE0red99vbQ/s200/SystemProperties600.gif" border="0" alt="System Properties show 768 Mb" id="BLOGGER_PHOTO_ID_5103842406654336674" /&gt;&lt;/a&gt;&lt;li&gt;Added another hard disk to increase total disk capacity from 20 Gb to about 100 Gb.&lt;/li&gt;
&lt;li&gt;Replaced the original CD RW drive (failed) with a new and better Sony drive.&lt;/li&gt;
&lt;li&gt;Upgraded from Windows 98 to Windows XP Professional, now SP2 and fully current.&lt;/li&gt;
&lt;li&gt;Maxed out the memory to 768 Mbytes, comparable to brand-new low-end computers.&lt;/li&gt;&lt;/ol&gt;&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RtR9h6Y03pI/AAAAAAAAAiI/rbWYubwYwSw/s1600-h/C_600.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RtR9h6Y03pI/AAAAAAAAAiI/rbWYubwYwSw/s200/C_600.gif" border="0" alt="C drive is pretty full" id="BLOGGER_PHOTO_ID_5103842299280154258" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_CodyAxkmUSw/RtR9a6Y03oI/AAAAAAAAAiA/g4m12yPrT1s/s1600-h/G_600.gif"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CodyAxkmUSw/RtR9a6Y03oI/AAAAAAAAAiA/g4m12yPrT1s/s200/G_600.gif" border="0" alt="G drive is more than half full" id="BLOGGER_PHOTO_ID_5103842179021069954" /&gt;&lt;/a&gt;It's not a bad computer, and I'm wavering on the decision to replace it.  Money ($1000+) and time are the reasons NOT to replace it.  Here are some reasons why I might:&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;Quieter.  The Performance 600, though not loud, is the loudest thing in the room.&lt;/li&gt;
&lt;li&gt;Faster.  I wonder how much.  The processors will be ten or twenty times as fast and the disk(s) at least twice as fast.  I'm sure the difference will be noticeable!&lt;/li&gt;
&lt;li&gt;Upgradable.  In theory at least, the memory will be upgradable to 8 Gb.&lt;/li&gt;
&lt;li&gt;Bigger disk.  At least three times as much, upgradable to much more.&lt;/li&gt;
&lt;li&gt;Windows Vista or Vista compatible.  The Gateway 600 is not even slightly compatible with Vista, needing more speed, disk, a DVD drive, and more.&lt;/li&gt;
&lt;li&gt;More reliable?  Only the CD RW drive in the 600 has ever failed, but I've been lucky because hard disks certainly do fail too.  I'm thinking about paired disks in the new computer for improved data security, and a better backup system than the zipped CD ROMs I use now.&lt;/li&gt;
&lt;li&gt;Experience.  Mine.  I will enjoy the experience and learn a LOT!  I've been involved in computers almost all of my adult life (45+ years) and it's time to add some current technology to that knowledge.&lt;/li&gt;&lt;/ul&gt;
I'm almost convinced, but then again the 600 is really working pretty well.  I have plenty of time to think about it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-5712127182661328073?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/5712127182661328073/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=5712127182661328073' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5712127182661328073'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/5712127182661328073'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/08/gateway-performance-600.html' title='Gateway Performance 600'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_CodyAxkmUSw/RtR9oKY03qI/AAAAAAAAAiQ/IE0red99vbQ/s72-c/SystemProperties600.gif' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-1909241716919022508</id><published>2007-08-24T20:32:00.000-05:00</published><updated>2007-08-24T21:10:51.276-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='RAID'/><category scheme='http://www.blogger.com/atom/ns#' term='E6750'/><category scheme='http://www.blogger.com/atom/ns#' term='mirrored disks'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>RAID</title><content type='html'>RAID is a computer acronym meaning "Redundant Array of Independent Disks." &lt;a  href="http://en.wikipedia.org/wiki/RAID"&gt;Wikipedia&lt;/a&gt;.  In this case we're  talking about "mirrored" disks, one of the simplest RAID configurations, where two identical disks contain identical  data so that one can continue operating if the other fails.  Since they  contain the same data the second disk doesn't add any disk capacity, but it  does add reliability. Pros:&lt;ul&gt;&lt;li&gt;The hard disk is MUCH less apt to  crash.  Only people who have experienced a crash can fully appreciate this.&lt;/li&gt;
&lt;li&gt;Perhaps I can get away with less backup, e.g. only back up the most  sensitive data.&lt;/li&gt;
&lt;li&gt;Or, I can buy a THIRD drive and &lt;a  href="http://en.wikipedia.org/wiki/Hot_swap"&gt;hot-swap&lt;/a&gt; it, so the  swapped-out drive is the backup.&lt;/li&gt;
&lt;li&gt;I'd enjoy the experience of setting it up and using it.&lt;/li&gt;&lt;/ul&gt;
Cons:&lt;ul&gt;&lt;li&gt;It's more expensive:  I need two drives, not one, and the  motherboard (which manages the drives) costs a little more.&lt;/li&gt;
&lt;li&gt;The drives will make twice as much noise.  Hmmm.&lt;/li&gt;
&lt;li&gt;It doesn't solve ALL backup problems: If I accidentally permanently  delete a file, it will be gone on BOTH drives; if lightning hits the computer  it could easily take out both drives.&lt;/li&gt;&lt;/ul&gt;

I'm leaning toward RAID, as you may have guessed.  But haven't decided yet  for sure.  Seems like overkill for a simple office computer.  But  then again there's the experience of it ...&lt;br&gt;
&lt;br&gt;
Here are some other features of the computer that's starting to come  together:&lt;ul&gt;
&lt;li&gt;Sonata III 500 case, with 500 W power supply.  This is the outer box for the whole thing, and this box is quiet with plenty of power  available.&lt;/li&gt;
&lt;li&gt;Intel E6750 dual-core processor, 2.66 GHz, 1333 front-side bus, with  Intel motherboard to match.  This is two very fast processors in one.  By the  time I get going on this, the E6850 may come down in price, even faster.&lt;/li&gt;
&lt;li&gt;2 Gb of 2-channel DDR2 memory, 800 MHz.  Expandable to 8 Gb they say, but  the chips for that don't exist yet; 4 Gb is the max.&lt;/li&gt;
&lt;li&gt;Seagate 320 Gb SATA-300 drive(s).  Big enough for me.&lt;/li&gt;
&lt;li&gt;Sony AWG170S-B2 18x DVD read/write.&lt;/li&gt;&lt;/ul&gt;
But everything is still in pencil.  Absolutely everything.  Meantime, though,  I did a little pricing of the materials lists for WITH RAID and withOUT RAID.   Here are very preliminary materials lists:&lt;ul&gt;
&lt;li&gt;&lt;a  href="http://minnesotadon.ms11.net/stirling/Materials%20List%20RAID.htm"&gt;With  RAID&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a  href="http://minnesotadon.ms11.net/stirling/Materials%20List.htm"&gt;Without  RAID&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;
I'm totally new at this, a complete novice.  If there is anyone out there  reading this blog with an idea or a word of caution, I'd love to hear from  you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-1909241716919022508?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/1909241716919022508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=1909241716919022508' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/1909241716919022508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/1909241716919022508'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/08/raid.html' title='RAID'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3580925889301370172.post-7775428777667708651</id><published>2007-08-23T12:29:00.000-05:00</published><updated>2007-08-23T21:28:25.609-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='dual processor'/><category scheme='http://www.blogger.com/atom/ns#' term='quiet'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>I think I'll Build My Own Computer</title><content type='html'>I do need a new computer in the office; mine is a slow eight-year-old Gateway 600 MHz, with upgraded memory, disk, and operating system.  It's time for a new one that can grow with the times.  Here are some specifications:&lt;ul&gt;
&lt;li&gt;Quieter than my old Gateway tower, which itself really isn't too bad but is the noisiest thing in the room when the TV is off.&lt;/li&gt;
&lt;li&gt;Speedy (modern) but not &lt;b&gt;"extreme"&lt;/b&gt;.  The idea is to have a computer that will last a while and be upgradable for a while.  We're talking dual processor for sure, but maybe not quad.&lt;/li&gt;
&lt;li&gt;It doesn't have to be small - it sits on the floor next to the desk.&lt;/li&gt;
&lt;li&gt;At least 2 Gb RAM, 800 MHz or more.&lt;/li&gt;
&lt;li&gt;At least 250 Gb hard disk, 3 Gb/sec.&lt;/li&gt;
&lt;li&gt;Windows XP Professional (preferred), Windows Vista Business otherwise.&lt;/li&gt;
&lt;li&gt;Vista Business compatible for sure.  I don't even know what that means yet.&lt;/li&gt;
&lt;li&gt;CD/DVD read and write dual layer.&lt;/li&gt;
&lt;li&gt;Floppy (yes, I really do want a floppy, even if I never use it).&lt;/li&gt;
&lt;li&gt;PS/2 mouse and keyboard ports (I like my existing keyboard &amp; mouse).&lt;/li&gt;
&lt;li&gt;Vanilla audio and graphics.  This machine means business, not games or entertainment.&lt;/li&gt;
&lt;li&gt;Modem.  Occasionally we need dialup when DSL fails.&lt;/li&gt;
&lt;li&gt;Serial port.&lt;/li&gt;
&lt;li&gt;Lifetime warranty.  By me.&lt;/li&gt;&lt;/ul&gt;
There are plenty of companies offering to build computers to specification, so why would a person build a more-or-less-ordinary computer himself?&lt;ul&gt;
&lt;li&gt;Price: Probably not a good reason. I've done some internet pricing of parts already, and I doubt there will be much of a cost saving.&lt;/li&gt;
&lt;li&gt;Quality: Might be a reason.  For example, I'm thinking of the &lt;a href="http://www.antec.com/us/productDetails.php?ProdID=15137"&gt;Antec Sonata III&lt;/a&gt; case, because it is supposed to be very quiet.  It's a little expensive, but certainly worth the difference if it really is quieter.&lt;/li&gt;
&lt;li&gt;Experience: I've been putting together computers for over 30 years now, but &lt;b&gt;not&lt;/b&gt; modern ones.  The experience will be invaluable.&lt;/li&gt;
&lt;li&gt;Serviceability: If I build it, I can fix it!&lt;/li&gt;
&lt;li&gt;Entertainment: It's fun to learn and do.&lt;/li&gt;
&lt;li&gt;Bragging rights.&lt;/li&gt;&lt;/ul&gt;
More later.  I hope.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3580925889301370172-7775428777667708651?l=buildmyown.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://buildmyown.blogspot.com/feeds/7775428777667708651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3580925889301370172&amp;postID=7775428777667708651' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7775428777667708651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3580925889301370172/posts/default/7775428777667708651'/><link rel='alternate' type='text/html' href='http://buildmyown.blogspot.com/2007/08/i-think-ill-build-my-own-computer.html' title='I think I&apos;ll Build My Own Computer'/><author><name>Don</name><uri>http://www.blogger.com/profile/03923592545983795350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://3.bp.blogspot.com/_CodyAxkmUSw/S5m69VLG-yI/AAAAAAAACmc/kv8vCtz1nzY/S220/DonASHRun.jpg'/></author><thr:total>0</thr:total></entry></feed>
