<?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-4086893765535253827</id><updated>2012-01-31T09:12:38.938-08:00</updated><title type='text'>Reboot Daily</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-2592062827393787029</id><published>2009-04-08T19:19:00.001-07:00</published><updated>2009-04-08T20:00:22.399-07:00</updated><title type='text'>divs and tables...</title><content type='html'>There are a myriad of resources on the net that treat the topic of divs and tables.  So look further if you are interested in the pros and cons or browser compatibility issues to name a few.&lt;br /&gt;&lt;br /&gt;I've had two recent encounters regarding the topic of divs and tables.  One was about the matter of which was better, divs or tables, and the other about a more esoteric need to have a grid of UI widgets that both horizontally and vertically move in a proportional way to the browser window.&lt;br /&gt;&lt;br /&gt;So I figured to do a little catch up and one of the notable things encountered was that there are incredibly useful examples on the net.  The second observation I had was that it was next to impossible to avoid the temptation of throwing in some Javascript for the exact behavior that I wanted.  But being more interested in wondering what basic xhtml could do in conjunction with CSS led me to need basic or naive examples for experimentation.&lt;br /&gt;&lt;br /&gt;So here are two tables I managed to get working that might serve use as input for more detailed examination of what is going on with the markup, styles and browsers. There are some interesting places to go.&lt;br /&gt;&lt;br /&gt;Please don't complain about MSIE not working with this. :-)&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;?xml version="1.0" encoding="iso-8859-1"?&amp;gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "xhtml11.dtd"&amp;gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&amp;gt;&lt;br /&gt;	&amp;lt;head&amp;gt;&lt;br /&gt;		&amp;lt;style&amp;gt;&lt;br /&gt;			html, body&lt;br /&gt;			{&lt;br /&gt;				margin: 0px;&lt;br /&gt;				padding: 0px;&lt;br /&gt;				height: 100%;&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;			/* global */&lt;br /&gt;			.a&lt;br /&gt;			{&lt;br /&gt;				background-color:#7F7049;&lt;br /&gt;			}&lt;br /&gt;			.b&lt;br /&gt;			{&lt;br /&gt;				background-color:#CCA338;&lt;br /&gt;			}&lt;br /&gt;			.cellContent&lt;br /&gt;			{&lt;br /&gt;				text-align: center;&lt;br /&gt;				background-color:#A9D6B9;&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;			/* first table */&lt;br /&gt;			.cell1&lt;br /&gt;			{&lt;br /&gt;				float: left;&lt;br /&gt;				width: 25%;&lt;br /&gt;				height:25%;&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;			/* second table */&lt;br /&gt;			.table2&lt;br /&gt;			{&lt;br /&gt;				width:100%;&lt;br /&gt;				display: table&lt;br /&gt;			}&lt;br /&gt;			.row2&lt;br /&gt;			{&lt;br /&gt;				display: table-row;&lt;br /&gt;			}&lt;br /&gt;			.cell2&lt;br /&gt;			{&lt;br /&gt;				display:table-cell;&lt;br /&gt;				padding: 10px;&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;		&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;	&amp;lt;/head&amp;gt;&lt;br /&gt;	&amp;lt;body&amp;gt;&lt;br /&gt;		&amp;lt;p&amp;gt;Table using float and clear properties; demonstrates vertical browser resize.&amp;lt;/p&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;br style="clear:both;"/&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;br style="clear:both;"/&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;br style="clear:both"/&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 b"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class="cell1 a"&amp;gt;&lt;br /&gt;			&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;br style="clear:both"/&amp;gt;&lt;br /&gt;&lt;br /&gt;		&amp;lt;p&amp;gt;Table using display property; does not demonstrate vertical browser resize.&amp;lt;/p&amp;gt;&lt;br /&gt;		&amp;lt;div class="table2"&amp;gt;&lt;br /&gt;			&amp;lt;div class="row2"&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;div class="row2"&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;div class="row2"&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;div class="row2"&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 b"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;div class="cell2 a"&amp;gt;&lt;br /&gt;					&amp;lt;div class="cellContent"&amp;gt;CellContent&amp;lt;/div&amp;gt;&lt;br /&gt;				&amp;lt;/div&amp;gt;&lt;br /&gt;			&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-2592062827393787029?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/2592062827393787029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=2592062827393787029' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/2592062827393787029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/2592062827393787029'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2009/04/divs-and-tables.html' title='divs and tables...'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-1850206093994668885</id><published>2008-12-17T18:40:00.000-08:00</published><updated>2008-12-17T20:56:54.381-08:00</updated><title type='text'>Dell Latitude D800 Dead Display</title><content type='html'>Hey everyone, here are my notes on replacing the display inverter on a Dell Latitude D800.  I'm not a repair tech and know enough to get in trouble.  Hopefully this posting will help prevent you from doing the same!&lt;br /&gt;&lt;br /&gt;The problem:  Dell Latitude D800 display suddenly quit.  After having developed the vertical line problem (and partially being repaired by Dell) the vertical lines stabilized and didn't get worse.  But, the display did suddenly fail.&lt;br /&gt;&lt;br /&gt;Step 1 - Consult Dell's support website and get the service manual.&lt;br /&gt;&lt;br /&gt;Here, I booted the laptop with the 'fn' key depressed to put it in an autodiagnostic mode.  After a period of time, it started beeping a morse code that can be decoded by using Dell's support website.  &lt;br /&gt;&lt;br /&gt;The answer was:  Bad display inverter.  I didn't know what that was.&lt;br /&gt;&lt;br /&gt;Step 2 - Find replacement part on E-Bay and figure out if the laptop is worth repairing.  This is the part, and it cost $20 bucks with expedited shipping.  The one I found was used, but hey, its a used laptop.  &lt;br /&gt;&lt;br /&gt;Here is what was advertised and what was received.  Not bad!&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUm7Y6XqUlI/AAAAAAAABw4/bAtwK10c-W0/s1600-h/DisplayInverter.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 184px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUm7Y6XqUlI/AAAAAAAABw4/bAtwK10c-W0/s320/DisplayInverter.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5280958074728370770" /&gt;&lt;/a&gt;&lt;br /&gt;Dell Latitude D800 LCD Inverter LP154W01-B3 YPNL-N015A&lt;br /&gt;&lt;br /&gt;Step 3 - Prepare the work area! I used a bathroom towel to help prevent parts from getting lost.  This technique IS NOT good ESD practice, but this is not an expensive part and there are a bunch of small screws that have to be managed.&lt;br /&gt;&lt;br /&gt;Step 4 - Follow the Dell Latitude service manual exactly as it states to prepare the laptop for display removal.  But there were some specific experiences that I had that are important to point out.&lt;br /&gt;&lt;br /&gt;a) I was hoping to keep the laptop plugged in as a ground, but the manual recommended against it.  So instead, I just used my Bass (which delivers excellent static shocks) as a grounded metal surface to frequently touch before manipulating the laptop.&lt;br /&gt;&lt;br /&gt;b) The service manual suggested removing the HDD, Memory and other expansion devices.  This was not necessary to remove the display, therefore I left those parts alone.  &lt;br /&gt;&lt;br /&gt;c) Don't forget to remove the battery - the manual states clearly that in no way should the laptop be powered.&lt;br /&gt;&lt;br /&gt;d) The manual suggests having a plastic scribe to work parts apart, etc... I found a big nylon tie to be effective and rigid enough.  Definitely don't use a screwdriver to pry plastic - the Latitude's plastic is super easy to scratch and break (as you will see below)&lt;br /&gt;&lt;br /&gt;Step 5 - Laptop prepared, now after the Display Inverter!&lt;br /&gt;&lt;br /&gt;The service manual will have a section on how to remove the display.  Follow it. You must first remove the two screws that hold the display in place.&lt;br /&gt;&lt;br /&gt;The first thing I encountered was having to remove the main control panel cover.  This thing is super flimsy and clearly is easy to break as it is being worked off the main part of the laptop.  In particular, the area where the control panel meets the LEDs for power, disk and charging appears very easy to break. Be careful.&lt;br /&gt;&lt;br /&gt;On the left side is a recessed notch that can be used by the plastic scribe to pop it out.&lt;br /&gt;&lt;br /&gt;The service manual suggests putting the display back 180 degrees - this is actually necessary as the control panel cover cannot be removed safely with the display in the upright position.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUm-4fDJRPI/AAAAAAAABxA/mOhdVQQFt84/s1600-h/IMG_2194.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 94px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUm-4fDJRPI/AAAAAAAABxA/mOhdVQQFt84/s320/IMG_2194.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280961915685258482" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Note the circled areas - good tab points to work.&lt;br /&gt;&lt;br /&gt;When the control panel cover comes off, don't pull it away.  It is connected by a ribbon cable on the far right.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUm_7k7L3vI/AAAAAAAABxI/m79VWBwlUNk/s1600-h/IMG_2196.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 157px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUm_7k7L3vI/AAAAAAAABxI/m79VWBwlUNk/s320/IMG_2196.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280963068313722610" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Finally, observe the EMI clip and how the display cable runs under it.  You probably want to place it back in its proper position when reassembling.  Note in the picture that the display cable has been disconnected.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnCSJ7UiaI/AAAAAAAABxQ/laYc0oHTTyg/s1600-h/IMG_2197.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 234px;" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnCSJ7UiaI/AAAAAAAABxQ/laYc0oHTTyg/s320/IMG_2197.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280965655226780066" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Step 6 - Free the display from the laptop&lt;br /&gt;&lt;br /&gt;Again, following the service manual instructions, you will be lifting the display off the laptop chassis now that the control panel cover has been removed.&lt;br /&gt;&lt;br /&gt;In doing this, I carefully lifted it away.  The trick here is to not have the display hinges catch the control panel cover which is still wired to the laptop.  Two people would work best.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnEQ6F58WI/AAAAAAAABxY/kdvYySjrL80/s1600-h/IMG_2198.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 285px;" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnEQ6F58WI/AAAAAAAABxY/kdvYySjrL80/s320/IMG_2198.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280967832819593570" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnEyWTFc5I/AAAAAAAABxg/2em6Y_Ou7fU/s1600-h/IMG_2199.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 140px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnEyWTFc5I/AAAAAAAABxg/2em6Y_Ou7fU/s320/IMG_2199.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280968407326749586" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Step 7 - Disassembling the display&lt;br /&gt;&lt;br /&gt;This is where things got ugly.  First off, the service manual isn't clear about which bumpers to remove.  Don't remove the oval bumpers on the sides of the display - there is no screw behind them.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnKI4nvfVI/AAAAAAAABxo/3nrxo43B-EQ/s1600-h/IMG_2201.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 241px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnKI4nvfVI/AAAAAAAABxo/3nrxo43B-EQ/s320/IMG_2201.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280974292055457106" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here is how you can use a nylon cable tie to pop out the bumpers while not marring the plastic surface.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnKlfJfr6I/AAAAAAAABxw/6af3fLSdPmg/s1600-h/IMG_2200.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 288px;" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnKlfJfr6I/AAAAAAAABxw/6af3fLSdPmg/s320/IMG_2200.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280974783433912226" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;When following the service manual on removing the screws to release the bezel, take note that the two center lower screws are different from the other six 2.5x6mm screws.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnL1_XXsTI/AAAAAAAABx4/N20G9COVP2U/s1600-h/IMG_2203.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 249px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnL1_XXsTI/AAAAAAAABx4/N20G9COVP2U/s320/IMG_2203.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280976166471577906" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;With all of the screws removed from the display assembly, the major task is at hand: remove the bezel.  This is the most difficult aspect of the repair.&lt;br /&gt;&lt;br /&gt;Carefully read the service manual on recommendations from removing the bezel off the display and laptop cover (made of metal).&lt;br /&gt;&lt;br /&gt;The bezel is extremely flimsy and can break!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnNvL3x4rI/AAAAAAAAByA/SyL4tk197ZQ/s1600-h/IMG_2206.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 269px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnNvL3x4rI/AAAAAAAAByA/SyL4tk197ZQ/s320/IMG_2206.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280978248592908978" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here is why I broke it - I didn't know which way to work the bezel and lifted up too strongly.  What is going on is that the display and laptop cover have hooks that point inward.  Consequently, applying force against the outer bezel edge inward toward the display is best to work the bezel off.  &lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnOUavhWxI/AAAAAAAAByI/gVr1u9mkJ1I/s1600-h/IMG_2204.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 295px; height: 320px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnOUavhWxI/AAAAAAAAByI/gVr1u9mkJ1I/s320/IMG_2204.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280978888239962898" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here is a detail on the hooks. This picture shows the bezel on the left which is the part that is to come away from the display and laptop cover.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnPUHyqIlI/AAAAAAAAByQ/XaS71j5Lx1c/s1600-h/IMG_2207.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 187px; height: 320px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnPUHyqIlI/AAAAAAAAByQ/XaS71j5Lx1c/s320/IMG_2207.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280979982664475218" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here is a detail on the hook that is attached to the display and laptop cover.  Note that although it appears that the hook will release the bezel if an upward force is applied to the bezel, this is untrue.  If the bezel is pried away from the display and laptop cover, the bezel loops that these hooks catch will break.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnQI2wSLFI/AAAAAAAAByY/fEMT0h-7c0Y/s1600-h/IMG_2210.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 264px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnQI2wSLFI/AAAAAAAAByY/fEMT0h-7c0Y/s320/IMG_2210.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280980888624180306" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Push the bezel edge inward, and use the plastic scribe to apply a gentle upward force.&lt;br /&gt;&lt;br /&gt;The bezel really isn't designed to be removed.&lt;br /&gt;&lt;br /&gt;Finally, the laptop cover hook that is attached to the display is attached to the display and laptop cover.  The hook is NOT attached to the bezel, it is of no use in removing the bezel other than to stabilize the display and laptop cover as the bezel is removed.&lt;br /&gt;&lt;br /&gt;Here are the latches on the display case where the bezel really needs to be worked.  &lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnS8ravjDI/AAAAAAAAByg/sbkI-HccTgo/s1600-h/IMG_2211.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 270px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnS8ravjDI/AAAAAAAAByg/sbkI-HccTgo/s320/IMG_2211.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280983977957493810" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The last part of this step is to realize that there are three screws on the right hand side that should not be removed.  Here they are two of them.  The screws that should be removed are tiny and are in the plane of the LCD.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnU8zgockI/AAAAAAAABy4/dEbbLONnZRk/s1600-h/IMG_2213.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 276px;" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnU8zgockI/AAAAAAAABy4/dEbbLONnZRk/s320/IMG_2213.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280986179152933442" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnU8o2BTJI/AAAAAAAAByw/dfetGXAKz1o/s1600-h/IMG_2212.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 317px; height: 320px;" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnU8o2BTJI/AAAAAAAAByw/dfetGXAKz1o/s320/IMG_2212.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280986176289852562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 8 - Smooth sailing from here on out!&lt;br /&gt;&lt;br /&gt;You are replacing the display inverter, and the connectors, remaining screw and component replacement is obvious and the service manual effectively describes what needs to be done.&lt;br /&gt;&lt;br /&gt;But at this point, there were serious issues with my display!&lt;br /&gt;&lt;br /&gt;First, it appears as if a ground was not properly attached to the laptop cover.   Can't be too careful with these things especially in noisy electronic environments.  Perhaps when the display was in for the vertical line problem this connection was detached?  Doubt it, it would have just been cut.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnUKOzj4UI/AAAAAAAAByo/4EzODE4veZE/s1600-h/IMG_2214.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 312px;" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/SUnUKOzj4UI/AAAAAAAAByo/4EzODE4veZE/s320/IMG_2214.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280985310306754882" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Second, wires were pinched and wire exposed!  No wonder this thing failed.  Leaking current, no ground, wtf.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnV4VuYxbI/AAAAAAAABzA/1DYOm6KVhxw/s1600-h/IMG_2215.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 318px; height: 320px;" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/SUnV4VuYxbI/AAAAAAAABzA/1DYOm6KVhxw/s320/IMG_2215.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280987201949713842" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here are the repairs made after the inverter was replaced.&lt;br /&gt;&lt;br /&gt;Fixed ground wire.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnXVIoeXJI/AAAAAAAABzQ/wOtX_zjNrhI/s1600-h/IMG_2218.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 290px;" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/SUnXVIoeXJI/AAAAAAAABzQ/wOtX_zjNrhI/s320/IMG_2218.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280988796163087506" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Repaired and routed the wires. &lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnXU_313eI/AAAAAAAABzI/XBdfm_qBzMM/s1600-h/IMG_2219.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 267px;" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/SUnXU_313eI/AAAAAAAABzI/XBdfm_qBzMM/s320/IMG_2219.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5280988793811623394" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Step 9 - reassemble and enjoy!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-1850206093994668885?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/1850206093994668885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=1850206093994668885' title='30 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/1850206093994668885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/1850206093994668885'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2008/12/dell-latitude-d800-dead-display.html' title='Dell Latitude D800 Dead Display'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_iFTnouXxE1Q/SUm7Y6XqUlI/AAAAAAAABw4/bAtwK10c-W0/s72-c/DisplayInverter.jpg' height='72' width='72'/><thr:total>30</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-3656871412667425859</id><published>2007-11-24T13:55:00.000-08:00</published><updated>2007-11-24T22:10:57.040-08:00</updated><title type='text'>DIY Wort Chiller</title><content type='html'>In search of ever faster cold breaks, my wife and I thought a wort chiller would help. One trip to Home Depot and four hours later, here is the result. &lt;div&gt;&lt;div&gt;&lt;br /&gt; &lt;/div&gt;&lt;img id="BLOGGER_PHOTO_ID_5136533162533415954" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 336px; CURSOR: hand; HEIGHT: 172px; TEXT-ALIGN: center" height="250" alt="" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/R0ihsmHRbBI/AAAAAAAAASQ/6NmWhwhwAgI/s320/IMG_0657.JPG" width="434" border="0" /&gt;&lt;br /&gt;What you are looking at is a chiller that is set up to use a water pump to circulate the coolant. Our idea is to circulate ice water through the chiller to increase its cooling capability.&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;The parts:&lt;/div&gt;&lt;img id="BLOGGER_PHOTO_ID_5136534588462558258" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/R0ii_mHRbDI/AAAAAAAAASg/vuyyyT0uOoQ/s320/IMG_0640.JPG" border="0" /&gt;&lt;br /&gt;The water pump is in the middle, and is being re-used from a fish tank. This is of course a great opportunity for contamination.&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5136655504676842642" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/R0kQ92HRbJI/AAAAAAAAATo/ADFApgv-APU/s320/IMG_0656.JPG" border="0" /&gt;&lt;br /&gt;$26.53 20' 3/8" OD .0038" wall Copper tubing (Refrigerator grade)&lt;br /&gt;$19.20 15' 8 gauge copper wire (wrong item - use &gt; 8 gauge)&lt;br /&gt;$04.44 10' Vinyl tubing 3/8" OD 1/4" ID&lt;br /&gt;$04.40 3/8"x1/4" Compression coupler for attaching female thread to copper tube&lt;br /&gt;$04.24 3/8" Male threaded 1/4" tube barb&lt;br /&gt;$02.74 1/2" Male threaded 1/4" tube barb for water pump&lt;br /&gt;$04.37 Reduction coupler for water pump&lt;br /&gt;&lt;br /&gt;Amortizable/Borrowable items&lt;br /&gt;&lt;br /&gt;$08.49 Tube bending tool (set of bending springs)&lt;br /&gt;&lt;br /&gt;So for about $70 exclusive the water pump I got to waste an afternoon when I could have easily purchased a chiller for about the same!&lt;br /&gt;&lt;br /&gt;Never mind the instructions, if you are intrepid enough to try putting one together, you are going to be able to figure it out. But here are the lessons learned:&lt;br /&gt;&lt;br /&gt;- Never build your own wort chiller. Or, only build one for fun. It seems that it is hard to justify the cost and time.&lt;br /&gt;&lt;br /&gt;- 8 Gauge copper wire is too difficult to work by hand. Get thinner wire. I suspended the loops of copper tubing by weaving the copper wire between the tubes, with two wraps per tube. I wound up (no pun intended) finding thinner copper wire around the house. Note the use of a spacer.&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5136539617869261906" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/R0inkWHRbFI/AAAAAAAAASw/vRM9CT_z42c/s320/IMG_0654.JPG" border="0" /&gt;&lt;br /&gt;- Identify an object to use as a mold for this chiller tubing. Here, a 5 gallon PVC bucket perfectly fits in a small boil pot.&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5136539252797041730" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/R0inPGHRbEI/AAAAAAAAASo/T9fFNLgF8QU/s320/IMG_0641.JPG" border="0" /&gt;&lt;br /&gt;- The finalized wort chiller.&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5136540210574748770" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/R0ioG2HRbGI/AAAAAAAAAS4/A3EyA99gSlk/s320/IMG_0655.JPG" border="0" /&gt; Additional points: &lt;ul&gt;&lt;li&gt;Clean the oil and dirt off the copper by using white vinegar. &lt;/li&gt;&lt;br /&gt;&lt;li&gt;When the copper wire is purchased, do not allow the store to tape or label the wire - the adhesive backing is difficult to remove from the wire.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Plan carefully the inlet and outlet - I sized the chiller against several different pots.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Consider drip loops for the inlet and outlet - in the picture above, they appear at a ninety degree angle, but condensate and leaks are going to clearly slide down the neck into the wort. Consider pointing the inlet and outlet downwards.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Results from having used the chiller:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;First off, the boil is HOT. If you DIY a chiller, consider that heat conducts and the entire apparatus will come up to temperature. In our first usage, we threw the chiller in during the boil to sanitize it. The result is that the vinyl intake/outake tubes practically melted. Next time, we will first sanitize the chill with iodophor and remove the heat before immersion.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;When the chiller was placed into the boil, it immediately refluxed. This is an important point to your DIY design - the air and remainder water from testing remains inside the chiller. When immersed, the air rapidly expands and remaining water gurgles out the intake and outake. Of course if you are connecting it to mains, this is less a problem. We are using a water pump which had to fight head pressure from the expansion of air.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Though the vinyl is tough, it will chemically alter from the heat and our chiller's vinyl tubing near the copper now has a pretty good haze.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;The vinyl tubing is connected to barbs. When heated from immersion in the boil, the barbs were no longer effective in anchoring the vinyl tubing and minor leakage occured.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Apparently compression fittings need LOTS of compression - ours leaked slightly risking wort contamination.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Thought I planned carefully the inlet and outlet, you cannot leave too much - the heat conducts across copper like crazy. Leave at least a foot!&lt;/li&gt;&lt;br /&gt;&lt;li&gt;The next time we use this chiller, it is going to work really well. Maybe the beer master will post the temperature curve for us...&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;img id="BLOGGER_PHOTO_ID_5136652730127969394" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/R0kOcWHRbHI/AAAAAAAAATY/1HS3U81pLKE/s320/IMG_0658.JPG" border="0" /&gt;&lt;br /&gt;- Detail on the vinyl tubing - note the steam refluxing into the lower tube. Keep the flow going on immersion! The vinyl became quite soft and there was concern it would fall off the barbs.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;p&gt;&lt;img id="BLOGGER_PHOTO_ID_5136654125992340610" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/R0kPtmHRbII/AAAAAAAAATg/baVpELKu0oM/s320/IMG_0662.JPG" border="0" /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;- the whole setup in action! The main lesson is to bring the temperature down with mains water from 120 to about 90 and then to throw ice in and bring it down from 90 to the objective temperature. We had lots of ice, and it melted quite quickly!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-3656871412667425859?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/3656871412667425859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=3656871412667425859' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/3656871412667425859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/3656871412667425859'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2007/11/diy-wort-chiller.html' title='DIY Wort Chiller'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_iFTnouXxE1Q/R0ihsmHRbBI/AAAAAAAAASQ/6NmWhwhwAgI/s72-c/IMG_0657.JPG' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-4933999994708742378</id><published>2007-04-21T19:32:00.000-07:00</published><updated>2007-04-21T09:24:20.240-07:00</updated><title type='text'>Importing and Exporting Contacts from Outlook using Excel</title><content type='html'>MS Excel 2002 10.6501.6735 SP3&lt;br /&gt;MS Outlook 2002 10.6515.6735 SP3&lt;br /&gt;&lt;br /&gt;If you try and use the import/export feature of Outlook to manage contacts, good luck.  Outlook is heavily design biased to be the primary manager of the contacts.   It doesn't like to export its contacts, have them manipulate and the imported back in.  If you manually export your contacts think of it as a one way operation.  And importing contacts gets a little more challenging.&lt;br /&gt;&lt;br /&gt;There are great third party applications (e.g. Intellsync in the ubiquitous Blackberry Desktop Manager) but you think you can outsmart things and use MS Excel to quickly manage and manipulate your contacts outside of Outlook.  Maybe you have no reason, but here is the trick to round trip edit your contacts using MS Excel:  &lt;span style="font-weight: bold;"&gt;Named Ranges&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;The best way to get a template XLS file is to first export the MS Outlook contacts.  I'm sure you can figure out how to do this.  If not, you probably wouldn't want to anyway.&lt;br /&gt;&lt;br /&gt;Take a look at the exported file: It will have the columns that you want, and the data that is expected.  But it is easy to miss the '&lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt;' that was created in the Excel XLS file.  You can't simply manipulate your contact data without understanding that the Named Range must be managed too.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Named Ranges&lt;/span&gt; are managed by the menu options Insert-&gt;Name-&gt;Define.  Once you see the Define Name window things get obvious.  You will see that MS Outlook created a &lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt; called 'Contacts'.   In the Refers To field at the bottom of the Define Name window, you will be able to click on the 'show me the range' icon in the bottom right and see the extent of the &lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;There is also another trick to know what is in the Excel document.  Take a look at the menu File-&gt;Properties and select the Contents tab.  This is an excellent way to get the gist of what is in the XLS file.&lt;br /&gt;&lt;br /&gt;Edit away on your contacts!  But then update the &lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt;.  "=Contacts!$A$1:$CN$178" may be the &lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt; exported, so make sure to edit the Named Range to reflect added rows.  How do you add a new or update your Named Range?  If you read this far, it will be a no brainer to figure out.&lt;br /&gt;&lt;br /&gt;When you wish to Import back into MS Outlook your contacts, be sure to define or update your &lt;span style="font-weight: bold;"&gt;Named Range&lt;/span&gt;.  And good luck with the two or three other issues you will hit - e.g. be sure to put a tick (') in front of all your entered fields in the XLS file!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Named Range.&lt;/span&gt;  Get it?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-4933999994708742378?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/4933999994708742378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=4933999994708742378' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/4933999994708742378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/4933999994708742378'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2006/12/importing-and-exporting-contacts-from.html' title='Importing and Exporting Contacts from Outlook using Excel'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-5552952484125921800</id><published>2007-03-14T21:36:00.000-07:00</published><updated>2007-03-17T08:49:22.588-07:00</updated><title type='text'>How to open the Western Digital My Book 500GB</title><content type='html'>Do not be stupid and leave the unit plugged in or plug it in during disassembly.  And you are about to void any warranty you may have.&lt;br /&gt;&lt;br /&gt;Model: WD5000C032&lt;br /&gt;&lt;br /&gt;Step one&lt;br /&gt;&lt;br /&gt;Identify the corner screw that is painted black. It is located by the lock hole. Scrape it clean and unscrew it. The two clam shells that form the My Book are very snug.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjP8zNaMQI/AAAAAAAAADc/pQ2Uj0TLt_g/s1600-h/StepOne.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042008426286821634" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjP8zNaMQI/AAAAAAAAADc/pQ2Uj0TLt_g/s320/StepOne.jpg" border="0" /&gt;&lt;/a&gt; Step two&lt;br /&gt;&lt;br /&gt;Put the My Book up on its end, the long rubber feet down. Locate the locking tab (See step four). It will be visible through the grille. Push locking tab down with screw driver (pink) and insert another (red) to torque the two clam shells apart. Be gentle, the plastic is soft and chances are it will get marred. Torque the clam shells apart just enough to prevent the tab from locking.&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_iFTnouXxE1Q/RfjP2TNaMPI/AAAAAAAAADU/ima4a78M5Go/s1600-h/StepTwo.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042008314617671922" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/RfjP2TNaMPI/AAAAAAAAADU/ima4a78M5Go/s320/StepTwo.jpg" border="0" /&gt;&lt;/a&gt; Step Three&lt;br /&gt;&lt;br /&gt;Flip it over and do the same. But just enough to get the locking tab to not lock. Flip it over, and continue to repeat steps two and three until you can pry the clam shells apart with your fingers or a soft instrument.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPyDNaMOI/AAAAAAAAADM/Ln30eNjIjEQ/s1600-h/StepThree.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042008241603227874" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPyDNaMOI/AAAAAAAAADM/Ln30eNjIjEQ/s320/StepThree.jpg" border="0" /&gt;&lt;/a&gt; Step Four&lt;br /&gt;&lt;br /&gt;Note the locking tabs; it will help you visualize what is to be done in steps two and three. Step the outer clamshell aside and lay the hard drive caddy flat. Observe the white transparent LED button that is used to power the My Book on and off.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPjjNaMNI/AAAAAAAAADE/Bb1621cnkrs/s1600-h/StepFour.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007992495124690" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPjjNaMNI/AAAAAAAAADE/Bb1621cnkrs/s320/StepFour.jpg" border="0" /&gt;&lt;/a&gt;Step Five&lt;br /&gt;&lt;br /&gt;Do not attempt to remove the hard drive. There is much work yet to be done. Notice how the drive screws are inaccessible.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007945250484418" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjPgzNaMMI/AAAAAAAAAC8/AlzB0NV1dlA/s320/StepFive.jpg" border="0" /&gt;Step Six&lt;br /&gt;&lt;br /&gt;Unscrew the three screws that hold the LED PCB in place.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPdDNaMLI/AAAAAAAAAC0/zmBZod1N4oA/s1600-h/StepSix.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007880825974962" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPdDNaMLI/AAAAAAAAAC0/zmBZod1N4oA/s320/StepSix.jpg" border="0" /&gt;&lt;/a&gt; Step Seven&lt;br /&gt;&lt;br /&gt;Remove the LED PCB. It is connected by pins, so wiggle it gently until it disconnects.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPUjNaMKI/AAAAAAAAACs/7hQBEnvtea0/s1600-h/StepSeven.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007734797086882" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPUjNaMKI/AAAAAAAAACs/7hQBEnvtea0/s320/StepSeven.jpg" border="0" /&gt;&lt;/a&gt; Step Eight&lt;br /&gt;&lt;br /&gt;Now this is the second hard part. The first was opening the clamshell I’m sure you will agree. The power supply PCB on the bottom of the drive caddy must be loosened so that the LED PCB connector can clear the plastic clamshell. Loosen the two screws nearest the LED connector. You may have to remove some aluminum tape that holds the HDD connectors in place.&lt;br /&gt;&lt;div&gt;&lt;a href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjPOzNaMJI/AAAAAAAAACk/a2i3RY7U69E/s1600-h/StepEight.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007636012839058" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjPOzNaMJI/AAAAAAAAACk/a2i3RY7U69E/s320/StepEight.jpg" border="0" /&gt;&lt;/a&gt;Step Nine&lt;br /&gt;&lt;br /&gt;It can’t be explained. Just keep manipulating the HDD caddy until it comes out of the plastic clamshell.&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPLjNaMII/AAAAAAAAACc/e4pOswYD8hI/s1600-h/StepNine.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007580178264194" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjPLjNaMII/AAAAAAAAACc/e4pOswYD8hI/s320/StepNine.jpg" border="0" /&gt;&lt;/a&gt;Step Ten&lt;br /&gt;&lt;br /&gt;Now remove the other two screws from the power supply cage. This is necessary so that the HDD screws can be removed without damaging the sheet metal that forms the power connector housing.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPIDNaMHI/AAAAAAAAACU/YJulgoq4kJo/s1600-h/StepTen.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007520048722034" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RfjPIDNaMHI/AAAAAAAAACU/YJulgoq4kJo/s320/StepTen.jpg" border="0" /&gt;&lt;/a&gt; Step Ten&lt;br /&gt;&lt;br /&gt;Now remove the other two screws from the power supply cage. This is necessary so that the HDD screws can be removed without damaging the sheet metal that forms the power connector housing.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjO7jNaMGI/AAAAAAAAACM/_bCooWKEegE/s1600-h/StepEleven.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007305300357218" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjO7jNaMGI/AAAAAAAAACM/_bCooWKEegE/s320/StepEleven.jpg" border="0" /&gt;&lt;/a&gt; Step Twelve&lt;br /&gt;&lt;br /&gt;You should screw the power supply cage back on at this point: the posts that are inside it are going to float around and impact components and traces as the other three HDD screws are removed.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_iFTnouXxE1Q/RfjO3TNaMFI/AAAAAAAAACE/YVE0oy0meug/s1600-h/StepTwelve.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007232285913170" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_iFTnouXxE1Q/RfjO3TNaMFI/AAAAAAAAACE/YVE0oy0meug/s320/StepTwelve.jpg" border="0" /&gt;&lt;/a&gt; Step Thirteen&lt;br /&gt;&lt;br /&gt;Remove the HDD cables.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjOzjNaMEI/AAAAAAAAAB8/J-lk362Dsbs/s1600-h/StepThirteen.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007167861403714" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RfjOzjNaMEI/AAAAAAAAAB8/J-lk362Dsbs/s320/StepThirteen.jpg" border="0" /&gt;&lt;/a&gt;Step Fourteen&lt;br /&gt;&lt;br /&gt;The HDD may be removed by wiggling it free of the rubber shock mounts to which it is attached.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjOvzNaMDI/AAAAAAAAAB0/CDbbgsqL4SA/s1600-h/StepFourteen.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007103436894258" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjOvzNaMDI/AAAAAAAAAB0/CDbbgsqL4SA/s320/StepFourteen.jpg" border="0" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div&gt;Congratulations. Enjoy replacing the drive.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjOrzNaMCI/AAAAAAAAABs/xLUf6QOZqSs/s1600-h/StepFifteen.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042007034717417506" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjOrzNaMCI/AAAAAAAAABs/xLUf6QOZqSs/s320/StepFifteen.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-5552952484125921800?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/5552952484125921800/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=5552952484125921800' title='190 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5552952484125921800'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5552952484125921800'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2007/03/how-to-open-western-digital-my-book.html' title='How to open the Western Digital My Book 500GB'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_iFTnouXxE1Q/RfjP8zNaMQI/AAAAAAAAADc/pQ2Uj0TLt_g/s72-c/StepOne.jpg' height='72' width='72'/><thr:total>190</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-5791204930745459407</id><published>2007-02-04T13:55:00.000-08:00</published><updated>2007-11-15T21:13:06.973-08:00</updated><title type='text'>Lexmark E352dn - an excellent network printer</title><content type='html'>After owning a Samsung SCX-4X16 series printer and HP Officejet Model 710, it was becoming clear that consumer multifunction printers are very poor products in general. Too complex, too much host side software needed and poor vendor support. Over time, the Samsung developed both parallel and USB connectivity problems (tried to correct through three different hosts, different cables, same behavior resulted). The HP just couldn't function until its host side software worked which it rarely did. The best malfunction of this printer was printing one letter of a document on a scale that spread it across four pages.&lt;br /&gt;&lt;br /&gt;These two experiences showed a couple things:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Multifunctional printers do not do one thing well but may do many things poorly.&lt;/li&gt;&lt;li&gt;If host side software is required, the printer will eventually be unusable as the OS marches forward in its patching.&lt;/li&gt;&lt;li&gt;Devices that require a host to be turned on to be network shared are just about useless in this day and age of home wireless networks.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Recommendations buying a new printer:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Don't go multifunctional.&lt;/li&gt;&lt;li&gt;Make sure it is network based and does not have to be connected to a PC&lt;/li&gt;&lt;li&gt;Make sure it can support more than just MS Windows (this forces a much better designed device)&lt;/li&gt;&lt;/ul&gt;After searching for a new printer the Lexmark E352dn came up as a pretty good bet - and it has been absolutely perfect so far.&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Unpacked the new E352dn&lt;/span&gt;&lt;br /&gt;Plugged in the printer to my wireless router via ethernet so that it could be accessed from all my 802.11 hosts in the house.&lt;br /&gt;&lt;br /&gt;Here is what was observed:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Is a DHCP client&lt;/li&gt;&lt;li&gt;Has a web server http://192.168.1.103/&lt;/li&gt;&lt;li&gt;Does not share any filesystem \\192.168.1.103&lt;/li&gt;&lt;li&gt;Has an FTP Server (for what purpose?)&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;$ ftp 192.168.1.103&lt;br /&gt;Connected to 192.168.1.103.&lt;br /&gt;220 ET000400C5F980 Lexmark E352dn FTP Server NZ0.NA.N001 ready.&lt;br /&gt;User (192.168.1.103:(none)):&lt;br /&gt;230 User default logged in.&lt;br /&gt;ftp&gt; dir&lt;br /&gt;200 PORT command successful.&lt;br /&gt;150 Opening ASCII data connection (192.168.1.101,5001).&lt;br /&gt;Total 0&lt;br /&gt;226 Transfer complete.&lt;br /&gt;ftp: 9 bytes received in 0.00Seconds 9000.00Kbytes/sec.&lt;br /&gt;ftp&gt; pwd&lt;br /&gt;257 "/prt0" is the current directory.&lt;br /&gt;ftp&gt;&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Install Experience&lt;/span&gt;&lt;br /&gt;But I didn't get far with my, "Never install the CD that comes with the product". The printer drivers were needed in order to add a network printer to Windows. Of course that is easily done after unpacking and connecting the Lexmark - another indicator of excellent product quality.&lt;br /&gt;&lt;br /&gt;Using MS Windows, specifically search for the drivers off the CD that comes with the E352dn. Don't use its setup.exe or autorun features. Once the drivers are installed, the printer will work like a charm. Interestingly enough, directly installing the drivers circumvents the affirmative assent license agreement that is supposed to be accepted.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Driver install details:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Installed E352dn driver (PCL?)&lt;/li&gt;&lt;li&gt;Installed E352dn PS3 driver&lt;/li&gt;&lt;li&gt;This installs two different printers.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Went back to web interface and noticed a static IP Address could be set up&lt;br /&gt;&lt;br /&gt;http://192.168.1.103/&lt;br /&gt;Gave it a reasonable hostname, "Lexmark E352dn"&lt;br /&gt;Printer Server Settings-&gt;TCP/IP-&gt;Set static IP address&lt;br /&gt;Once this address is changed, you have to update the driver port settings. Right click on the Lexmark in the "Printers &amp;amp; Faxes" control panel, choose properties-&gt;Ports tab and re-configure the previously set up ports.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Examined CD for extras&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Ran setup.exe and chose custom option-&gt;Select components-&gt;Local (using previously configured local printers)&lt;br /&gt;&lt;br /&gt;Components (IP Setup Utility AFAIK) can be installed in different locations but the browse folder functionality is unusable. The default drive, C, can't be changed without have to manually retype default path.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;Driver Profiler&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Sets profile defaults for the driver when the drivers are installed by script. I think these are the 'Printers &amp;amp; Faxes'-&gt;Right click on Lexmark printer-&gt;Printer Preferences (Also available on Print panel from application's print menu option)&lt;/li&gt;&lt;li&gt;So I skipped it.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;Enhanced Communication Software &amp;amp; Status Window&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;Tools - IP Setup Utility &amp;amp; Screen Fonts&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Skipped IP Setup Utility - seems like all the TCP/IP configs can be done through the web interface&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Alas, stuff is installed that we were not expecting: C:\Program Files\Lexmark_HostCD\Install\ some doc installs here as well as the installer. Guess it has to go somewhere.&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;Uninstaller&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Uninstalls really cleanly and also recognizes printers installed using Windows Printer and Faxes control panel so those can be uninstalled if manually setup as described above.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;Host Software Summary&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Excellent software, open minded approach to configuration, "If you installed your printer driver without using the Software and Documentation CD, you can still install your screen fonts from the [install cd]".&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Annoyances&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Setup.exe installer makes it hard to change the install path of components&lt;/li&gt;&lt;li&gt;The properties panel is slow to show when printing from within applications: File-&gt;Print-&gt;Properties takes too long to display (probably talks across my wireless network)&lt;/li&gt;&lt;li&gt;The&lt;/li&gt;&lt;li&gt;When the printer properties "2 Sided Printing" is set to "Use printer settings" a "Manual Duplex" checkbox shows up on the print panel. This is the off the shelf configuration and is surprising to see since the printer comes with an automatic, not manual duplexer. Of course this is due to Windows allowing us to manually duplex be re-feeding a document. So it is a feature, not a bug. (Seriously, the automatic duplex does long edge and short edge duplex printing but manual duplex allows various rotations if needed)&lt;/li&gt;&lt;li&gt;The included doc didn't seem to say anything about the duplexing feature&lt;/li&gt;&lt;li&gt;The duplexer is not internal... rather a sheet is ejected and then pulled back off the output tray - a little suprising if you are watching the printer.&lt;/li&gt;&lt;/ul&gt;Quick Setup&lt;br /&gt;&lt;br /&gt;Here is a picture journal of the driver install. This is the bare minimum required.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZc1J3MDCI/AAAAAAAAAAM/9QvrNqO8FcY/s1600-h/Untitled-1.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027808102255954978" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZc1J3MDCI/AAAAAAAAAAM/9QvrNqO8FcY/s320/Untitled-1.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yeah, counterintuitive: a local printer has to be configured. I'm unsure why the E352dn cannot be directly treated as a network printer.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RcZdA53MDDI/AAAAAAAAAAU/ko3SQzqOem0/s1600-h/Untitled-2.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027808304119417906" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RcZdA53MDDI/AAAAAAAAAAU/ko3SQzqOem0/s320/Untitled-2.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZdPJ3MDEI/AAAAAAAAAAc/_syuH0Dyp2g/s1600-h/Untitled-3.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027808548932553794" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZdPJ3MDEI/AAAAAAAAAAc/_syuH0Dyp2g/s320/Untitled-3.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_iFTnouXxE1Q/RcZdWp3MDFI/AAAAAAAAAAk/IfA7vG4r86k/s1600-h/Untitled-4.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027808677781572690" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_iFTnouXxE1Q/RcZdWp3MDFI/AAAAAAAAAAk/IfA7vG4r86k/s320/Untitled-4.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZdqJ3MDGI/AAAAAAAAAAs/CphQhldsV7A/s1600-h/Untitled-5.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027809012789021794" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZdqJ3MDGI/AAAAAAAAAAs/CphQhldsV7A/s320/Untitled-5.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_iFTnouXxE1Q/RcZd353MDHI/AAAAAAAAAA0/5RUCiUXtyys/s1600-h/Untitled-6.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5027809249012223090" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_iFTnouXxE1Q/RcZd353MDHI/AAAAAAAAAA0/5RUCiUXtyys/s320/Untitled-6.gif" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-5791204930745459407?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/5791204930745459407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=5791204930745459407' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5791204930745459407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5791204930745459407'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2007/02/lexmark-e352dn-excellent-network.html' title='Lexmark E352dn - an excellent network printer'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_iFTnouXxE1Q/RcZc1J3MDCI/AAAAAAAAAAM/9QvrNqO8FcY/s72-c/Untitled-1.gif' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-7449593843820726576</id><published>2007-01-10T21:35:00.000-08:00</published><updated>2007-03-17T08:42:52.957-07:00</updated><title type='text'>Install in D:\ but it goes into C:\</title><content type='html'>Generally speaking, Windows home computing should be done from a single big fat volume 'C:\'.&lt;br /&gt;&lt;br /&gt;For flawed reasons, I've decided to install all my applications and data on my D:\ drive.  Just about every installer provides an option to change install locations from C:\.  But sometimes it just doesn't work out that way.&lt;br /&gt;&lt;br /&gt;Here is a list of applications that install files in C:\ like it or not:&lt;br /&gt;&lt;br /&gt;Adobe Acrobat 6.0 Standard&lt;br /&gt;&lt;br /&gt;Installed here: D:\Program Files\Adobe\Acrobat 6.0&lt;br /&gt;Showed up here: C:\Program Files\Adobe\Acrobat 6.0 (Post install updater)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Lizard Tech Express View JPEG 2000 Viewer&lt;br /&gt;&lt;br /&gt;Installed here: D:\Program Files\LizardTech\Express View&lt;br /&gt;Files showed up here: C:\Program Files\Common Files\LizardTech Shared (In all fairness, there was a previous web browse plugin install location that had common files which might have been initially placed here)&lt;br /&gt;&lt;br /&gt;My terrible Samsung Printer&lt;br /&gt;&lt;br /&gt;Installed here: D:\Program Files\Samsung\SmarThruSCX-4x16 Series\RCP&lt;br /&gt;Files showed up here: C:\Program Files\Samsung\Samsung&lt;br /&gt;&lt;br /&gt;--&lt;br /&gt;&lt;br /&gt;I just came across a journal of my primary disk utilization when reinstalling Windows and all the obligatory office productivity apps. &lt;br /&gt;&lt;br /&gt;"rebooted 5,330,866,176&lt;br /&gt;installed all my fav apps (On D, of course) including ms office, adobe, visio 6,514,597,888"&lt;br /&gt;&lt;br /&gt;1.1GB dropped on my C Drive for installing them on D...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-7449593843820726576?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/7449593843820726576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=7449593843820726576' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/7449593843820726576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/7449593843820726576'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2007/01/install-in-d-but-it-goes-into-c.html' title='Install in D:\ but it goes into C:\'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-7502152602510947815</id><published>2006-12-24T14:54:00.000-08:00</published><updated>2007-02-04T13:41:06.703-08:00</updated><title type='text'>Buffallo Networks Linkstation Pro - LS250GL</title><content type='html'>(This is not how to hack your Linkstation Pro - Google for that - there is lots of good info on doing such a reasonable thing.)&lt;br /&gt;&lt;br /&gt;The Linkstation Pro is a really nice affordable network attached storage device. But for some reason it comes with a CD. Nothing in my experience with the product demonstrated a need for it.&lt;br /&gt;&lt;br /&gt;Step number one: Do not install any software on the CD. Disregard "Step 3" of the Quick Setup Guide. Do not install any software that the "Link Navigator 1.0" prompts you to install.  It just isn't necessary as the LS250-GL performs fine without it.&lt;br /&gt;&lt;br /&gt;For a "Quick Setup" plug the linkstation into your Microsoft LAN and use the explorer to go to the network neighborhood. That is fast. Why? The linkstation is a host that will get an IP address from a DHCP server an advertise its name on the Microsoft network.  A default name is set (check your DHCP tables to find its IP address).  It can be found on the admin webserver's basic or network page.&lt;br /&gt;&lt;br /&gt;Can't see it on your network? Explore to &lt;a href="file:////ls-glcb6"&gt;file:////ls-glcb6&lt;/a&gt;. Still can't see it? Take a look at the IP address your DHCP server gave. If &lt;a href="file:////%5Byour"&gt;file:////[your&lt;/a&gt; linkstations] IP address doesn't work, well try and install the Linkstation Pro software that came with it. That software should autodiscover the linkstation.&lt;br /&gt;&lt;br /&gt;Don't read the manual - especially the PDF on the comes with the linkstation. Around page 12 of "Manual.pdf" the author starts to refer to the "TeraStation" instead of your new Linkstation Pro. And you probably bought a Linkstation because you couldn't afford a Terastation which makes the error a bummer.&lt;br /&gt;&lt;br /&gt;But this leads us to wonder to what exten a Linkstation Pro has Terastation features and firmware. At the very least the "Printers and Faxes" icon appears in the Linkstation host directory in the Network Neighborhood. But the Linkstation Pro is not supposed to support a USB printer - or is it? Maybe especially if their engineers are as copy/paste oriented as their tech writers! More exploration later.&lt;br /&gt;&lt;br /&gt;Couple other salient points for those listening and not reading the manual or installing the CD that comes with the Linkstation Pro.&lt;br /&gt;&lt;br /&gt;- Plug it in. It has a gigabit Ethernet interface and autodetects and re-wires cross-over situations. (In other words, don't worry about ethernet cabling and your configuration)&lt;br /&gt;- It has a web server. It is accessible by &lt;a href="http://ls-glcb6/"&gt;http://ls-glcb6&lt;/a&gt; (or name you gave it) out of the box.&lt;br /&gt;- The backup features in the web interface are inexplicable and will take some playing to get a feel for how they work&lt;br /&gt;- admin/password is the default username password for the web interface&lt;br /&gt;&lt;br /&gt;If you get all that working, then there are tons of NAS features to be used. One thing to do is look at directory authentication. Be very slow in setting this up - make sure the Windows user accounts exist and that the Linkstation Pro is reboot before configuring those accounts in the Linkstation. The other important one are the backups. Never mind that there are two "Overwrite Backup (Complete/Differential)" options. Not sure what the difference is!&lt;br /&gt;&lt;br /&gt;(Don't throw out the media that came with your linkstation pro - there is a key for Memeo Backup Software (whatever this is) that is included.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-7502152602510947815?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/7502152602510947815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=7502152602510947815' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/7502152602510947815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/7502152602510947815'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2006/12/buffallo-networks-linkstation-pro.html' title='Buffallo Networks Linkstation Pro - LS250GL'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-6481609558899999557</id><published>2006-12-22T17:44:00.000-08:00</published><updated>2007-01-10T20:18:23.725-08:00</updated><title type='text'>Oracle 9.2 - XDB Port Collisions</title><content type='html'>You might not be a DBA but you might want to download Oracle 9.2, install it and try and do web development.  But beware, the XDB feature gobbles up ports that we have gotten used to as users.  For example: 8080.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.idevelopment.info/data/Oracle/DBA_tips/xmldb/XMLDB_2.shtml"&gt;http://www.idevelopment.info/data/Oracle/DBA_tips/xmldb/XMLDB_2.shtml&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Set ports to zero should turn off the services. Do this as system/system@oracle (connect as sysdba)&lt;br /&gt;&lt;br /&gt;call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(), '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',0));&lt;br /&gt;call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(), '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()',0));&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-6481609558899999557?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/6481609558899999557/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=6481609558899999557' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/6481609558899999557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/6481609558899999557'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2006/12/oracle-92-xdb-port-collisions.html' title='Oracle 9.2 - XDB Port Collisions'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-5022159384330899377</id><published>2006-12-22T17:16:00.000-08:00</published><updated>2007-03-14T21:36:07.009-07:00</updated><title type='text'>Logitech diNovo Keyboard, Mouse and Bluetooth Wireless Hub</title><content type='html'>Logitech Bluetooth diNovo Keyboard ultra-flat keyboard, MX 900 Optical Mouse and Hub&lt;br /&gt;&lt;br /&gt;Mouse p/n 852011-0000&lt;br /&gt;Keyboard p/n 867328-0100&lt;br /&gt;Hub 830916-0000&lt;br /&gt;&lt;br /&gt;When I saw this Bluetooth product, I imagined how nice it would be to replace my existing keyboard and mouse, wirelessly, and also add a bluetooth capability to my PC.&lt;br /&gt;&lt;br /&gt;Not a bad piece of hardware. But pretty bad software. The primary problem was the time it took for the mouse and keyboard to respond after a reboot. Frequently I had to plug in an old keyboard (after a while left it plugged in) to log in and play with the Logitech software to get the keyboard and mouse paired.&lt;br /&gt;&lt;br /&gt;I gave up on the product, and deinstalled the Logitech software figuring on getting rid of it. When the Logitech software was removed and Windows rebooted things got interesting. Windows recognized the USB device (the Bluetooth Wireless hub) and then everything could not have worked better. Keyboard, mouse paired up, work and there are no problems using them.&lt;br /&gt;&lt;br /&gt;But I still can't manipulate the BIOS on boot - still need the good old ps/2 keyboard.&lt;br /&gt;&lt;br /&gt;If you have this product, try the product with Windows XP and without Logitech's software. Couple caveats: I'm guessing the Media Pad (don't use it) will become a glorified Bluetooth calculator and I haven't tried a clean install of WinXP without having ever installed the Logitech software.&lt;br /&gt;&lt;br /&gt;This experience leads me to the following piece of advice: Never install any CD that comes with a peripheral you have purchased.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-5022159384330899377?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/5022159384330899377/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=5022159384330899377' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5022159384330899377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/5022159384330899377'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2006/12/logitech-dinovo-keyboard-mouse-and.html' title='Logitech diNovo Keyboard, Mouse and Bluetooth Wireless Hub'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4086893765535253827.post-4689756754451163652</id><published>2006-12-22T17:09:00.000-08:00</published><updated>2007-02-04T13:44:16.366-08:00</updated><title type='text'>Reboot Daily: there is no other choice</title><content type='html'>The Net has helped me an incredible amount to figure out how to fully use the software and consumer electronics I've encountered.   This is an attempt to return such help.&lt;br /&gt;&lt;br /&gt;Hopefully this 'blog' is indexed well and serves as a useful database of fixed problems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4086893765535253827-4689756754451163652?l=rebootdaily.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebootdaily.blogspot.com/feeds/4689756754451163652/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=4086893765535253827&amp;postID=4689756754451163652' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/4689756754451163652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4086893765535253827/posts/default/4689756754451163652'/><link rel='alternate' type='text/html' href='http://rebootdaily.blogspot.com/2006/12/reboot-daily-there-is-no-other-choice.html' title='Reboot Daily: there is no other choice'/><author><name>Rich Andrews</name><uri>http://www.blogger.com/profile/00867647861960861630</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
