<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>RobPlatt.com &#187; Tips</title>
	<atom:link href="http://www.robplatt.com/index.php/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robplatt.com</link>
	<description>My name is Rob. Here are the things I find useful or amusing. Enjoy.</description>
	<lastBuildDate>Fri, 18 Nov 2011 19:40:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Toshiba Satellite BIOS Password Reset</title>
		<link>http://www.robplatt.com/index.php/2010/09/08/toshiba-satellite-bios-password-reset/</link>
		<comments>http://www.robplatt.com/index.php/2010/09/08/toshiba-satellite-bios-password-reset/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 17:52:43 +0000</pubDate>
		<dc:creator>robplatt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Bios]]></category>
		<category><![CDATA[Password]]></category>

		<guid isPermaLink="false">http://www.robplatt.com/?p=209</guid>
		<description><![CDATA[Heres a quick and dirty way to reset the password on the Toshiba Satellite A205 BIOS. DO NOT DO THIS UNLESS YOU ARE THE OWNER OR YOU HAVE BEEN ASKED TO. Warn any clients that something could go wrong with this procedure. THIS IS A RISK! (You do this at your own risk. You do [...]]]></description>
			<content:encoded><![CDATA[<p>Heres a quick and dirty way to reset the password on the Toshiba Satellite A205 BIOS.</p>
<p><strong>DO NOT DO THIS UNLESS YOU ARE THE OWNER OR YOU HAVE BEEN ASKED TO</strong>. Warn any clients that something could go wrong with this procedure. <strong>THIS IS A RISK!</strong></p>
<p><span style="color: #ff0000;">(You do this at your own risk. You do this at your own liability. I will not be held responsible if something goes wrong.)</span></p>
<p><span style="color: #000000;">Now that I&#8217;ve said that, I will add that this method did work for me on an A205-S5814 and has been reported to work on (A205-S4707, A205-S4639, A215-S7425, A215-S7425, and a A205-s5804)</span></p>
<ul>
<li>Power the laptop off, remove the battery and power cable.</li>
<li>On the bottom of the laptop, locate the memory bay, and remove the cover plate.</li>
<li>Peel back the black sticker on the motherboard (set that aside, and remember to return it when you&#8217;re finished)</li>
<li>Locate two solder joints labeled XXX in one of the corners. (we&#8217;ll return to those in a minute)<br />
<a href="http://www.robplatt.com/wp-content/uploads/2010/09/21o5v6x.jpg"><img class="alignnone size-medium wp-image-210" title="21o5v6x" src="http://www.robplatt.com/wp-content/uploads/2010/09/21o5v6x-300x224.jpg" alt="" width="300" height="224" /></a> <a href="http://www.robplatt.com/wp-content/uploads/2010/09/llbac.jpg"><img class="alignnone size-medium wp-image-211" title="llbac" src="http://www.robplatt.com/wp-content/uploads/2010/09/llbac-300x224.jpg" alt="" width="300" height="224" /></a></li>
<li>Set the laptop on its side, so the screen is open to prop it up, and the power jack is facing up.</li>
<li>Insert one of your ram modules.</li>
<li>Plug in the laptop and turn it on.</li>
<li>If it turns on and prompts for a password then continue, if it does not, then power it off, and move the ram module to the other slot and try again.</li>
<li>Turn the laptop off.</li>
<li>Hold a small flathead screwdriver onto those two soldier joints, shorting them.</li>
<li>Turn the laptop on while you&#8217;re shorting those two soldier joints.</li>
<li>It should boot. You can remove the screwdriver, power the laptop off, replace the other ram module (don&#8217;t forget that sticker), cover plate, and battery. Turn on the laptop, it should boot up!</li>
</ul>
<p>TLDR: Short solder joints labeled XXX under memory bay to clear password.</p>
<p>Post your results in the comments below. Good luck!</p>
<p>Update: Head over to <a href="http://www.whatsmypass.com/toshiba-laptop-bios-recovery">WhatsMyPass.com</a> to see more information about BIOS password recovery.</p>
<div class="google_generator">http://goo.gl/u6Id0</div>]]></content:encoded>
			<wfw:commentRss>http://www.robplatt.com/index.php/2010/09/08/toshiba-satellite-bios-password-reset/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>untrack files in git</title>
		<link>http://www.robplatt.com/index.php/2010/06/28/untrack-files-git/</link>
		<comments>http://www.robplatt.com/index.php/2010/06/28/untrack-files-git/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:36:32 +0000</pubDate>
		<dc:creator>robplatt</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.robplatt.com/?p=191</guid>
		<description><![CDATA[I accidentally added files to a git project that I didn&#8217;t want to. git rm &#8211;cached filename or git rm &#8211;cached directory -r cleared me right up. (please note, that is two dashes in front of cached) http://goo.gl/O42L6]]></description>
			<content:encoded><![CDATA[<p>I accidentally added files to a git project that I didn&#8217;t want to.</p>
<p>git rm &#8211;cached filename</p>
<p>or</p>
<p>git rm &#8211;cached directory -r</p>
<p>cleared me right up.</p>
<p>(please note, that is two dashes in front of cached)</p>
<div class="google_generator">http://goo.gl/O42L6</div>]]></content:encoded>
			<wfw:commentRss>http://www.robplatt.com/index.php/2010/06/28/untrack-files-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net SessionState in SQL</title>
		<link>http://www.robplatt.com/index.php/2010/06/21/aspnet-sessionstate-sql/</link>
		<comments>http://www.robplatt.com/index.php/2010/06/21/aspnet-sessionstate-sql/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 22:36:52 +0000</pubDate>
		<dc:creator>robplatt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.robplatt.com/?p=180</guid>
		<description><![CDATA[Using SQL Server to store ASP.Net session state has it&#8217;s advantages. It was time for us to switch from InProc to SQL, but we ran into some problems getting the configuration right. The SELECT permission was denied on the object &#8216;sysobjects&#8217;, database &#8216;mssqlsystemresource&#8217;, schema &#8216;sys&#8217;.] Unable to use SQL Server because ASP.NET version 2.0 Session [...]]]></description>
			<content:encoded><![CDATA[<p>Using SQL Server to store ASP.Net session state has it&#8217;s advantages. It was time for us to switch from InProc to SQL, but we ran into some problems getting the configuration right.</p>
<p><strong>The SELECT permission was denied on the object &#8216;sysobjects&#8217;, database &#8216;mssqlsystemresource&#8217;, schema &#8216;sys&#8217;.]</strong></p>
<p><strong>Unable to use SQL Server because ASP.NET version 2.0 Session State is not installed on the SQL server. Please install ASP.NET Session State SQL Server version 2.0 or above.</strong></p>
<p>These two pages got me going in the end.</p>
<p><a href="http://idunno.org/articles/277.aspx">http://idunno.org/articles/277.aspx</a></p>
<p><a href="http://cherupally.blogspot.com/2009/08/problems-in-configuring-sql-server-for.html">http://cherupally.blogspot.com/2009/08/problems-in-configuring-sql-server-for.html</a></p>
<p>Now watch your session states survive an iisreset, or even server reboot! You can also load balance your requests over multiple web servers now too.</p>
<div class="google_generator">http://goo.gl/qiCr</div>]]></content:encoded>
			<wfw:commentRss>http://www.robplatt.com/index.php/2010/06/21/aspnet-sessionstate-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

