<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sheepishly Blogging</title>
	<atom:link href="http://realsheep.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://realsheep.wordpress.com</link>
	<description>Sheeplishly Logging My Progress as I Learn CMS</description>
	<lastBuildDate>Tue, 30 Mar 2010 18:14:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='realsheep.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/75090e088db23b9b722e65f879fe2a5e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Sheepishly Blogging</title>
		<link>http://realsheep.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://realsheep.wordpress.com/osd.xml" title="Sheepishly Blogging" />
	<atom:link rel='hub' href='http://realsheep.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Binary is Easy as 00000001, 00000010, 00000011</title>
		<link>http://realsheep.wordpress.com/2010/03/29/binary-is-easy-as-00000001-00000010-00000011/</link>
		<comments>http://realsheep.wordpress.com/2010/03/29/binary-is-easy-as-00000001-00000010-00000011/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 05:08:38 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[My Tech Adventures]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=337</guid>
		<description><![CDATA[Just in case you were wondering, the binary in the title is 1,2,3. Sound mind boggling? Don&#8217;t worry, it&#8217;s actually pretty easy to grasp. First we need to get something clear. Binary uses the Base 2 number system (0-1), where we are used to using the Base 10 (1-9) system. With that said (don&#8217;t worry, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=337&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;font-size:10pt;">
<img src="http://realsheep.files.wordpress.com/2010/03/binary2.jpg?w=169&#038;h=173" alt="" title="Binary Code" width="169" height="173" class="alignleft size-full wp-image-341" /><br />
Just in case you were wondering, the binary in the title is 1,2,3. Sound mind boggling? Don&#8217;t worry, it&#8217;s actually pretty easy to grasp.<br />
<span id="more-337"></span><br />
<br />
First we need to get something clear. Binary uses the Base 2 number system (0-1), where we are used to using the Base 10 (1-9) system.<br />
<br />
With that said (don&#8217;t worry, I&#8217;ll clarify), go back to elementary school where you learned place value, i.e. 1 = the ones place, 10 = the tens place, 100 = the hundreds place, etc. This is Base 10 is where we count by tens by the power of ten (1&#215;10 = 10; 10&#215;10=100; etc.).</p>
<table border="1" style="text-align:center;margin:0 auto;">
<tr>
<td>1000</td>
<td>100</td>
<td>10</td>
<td>1</td>
<td>.10</td>
<td>.100</td>
<td>.1000</td>
</tr>
<tr>
<td>Thansand&#8217;s</td>
<td>Hundred&#8217;s</td>
<td>Ten&#8217;s</td>
<td>One&#8217;s</td>
<td>Tenth&#8217;s</td>
<td>Hundredth&#8217;s</td>
<td>Thousandth&#8217;s</td>
</tr>
</table>
<p>Base 2 (binary) means we count by twos by the power of two. I will draw you a table in a moment, but first lets get the base two counting down first. 1,2,4,8,16,32,64, and 128 are the numbers we will use. We start at one just like normal (0 doesn&#8217;t come into play until later). Then we go: 1&#215;2=2; 2&#215;2=4; 2&#215;4=8; 2&#215;8=16; 2&#215;16=32; 2&#215;32=64; 2&#215;64=128; To use binary in networking and computing, there are only 8 slots or places. More on that in a minute.<br />
<br />
In binary we only use two numbers (0 and 1) because a bit of information is either represented as 0 or 1. In electrical/magnetic terms that is either positive or negative (0=negative; 1=positive). There are 8 bits in 1 byte of information and each of these &#8220;slots&#8221; equals one bit of information. Hence the reason for the 8 slots or places.<br />
<br />
Now it&#8217;s time for the chart. It may help you to draw a chart of your own as we do this so you get a real understanding of what&#8217;s going on. Start from 128 on the left and move right:<br />
</p>
<table border="1" cellpadding="5px" style="text-align:center;margin:0 auto;">
<tr>
<td>128</td>
<td>64</td>
<td>32</td>
<td>16</td>
<td>8</td>
<td>4</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<p>
This is what your chart should look like, two rows with the top row filled with the place value digits. Now you can see the &#8220;place value&#8221; thing come into play here. Just like when you would do this in grade-school with the decimal system. Now comes the fun part.<br />
<br />
Keep in mind, all the slots have to either contain a 0 or a 1. Now, we write 0s under the numbers not in use and 1s under the numbers in use. Let me explain by making the number 1:<br />
</p>
<table border="1" cellpadding="5px" style="text-align:center;margin:0 auto;">
<tr>
<td>128</td>
<td>64</td>
<td>32</td>
<td>16</td>
<td>8</td>
<td>4</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
</table>
<p>
The above example means we will only need to represent the number one, so we don&#8217;t need 128, 64, 32, 16, 8, 4, or 2, but we do need the 1. So, there is a &quot;positive&quot; mark under the number 1 and a &quot;negative&quot; mark under the rest of the numbers. Now lets step it up and make a number 6:<br />
</p>
<table border="1" cellpadding="5px" style="text-align:center;margin:0 auto;">
<tr>
<td>128</td>
<td>64</td>
<td>32</td>
<td>16</td>
<td>8</td>
<td>4</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
</tr>
</table>
<p>
Now we have negative marks under all the numbers that do not make up the number six and positive marks under the numbers that do make up the number six, i.e. 2+4=6; Hence the reason for marking off 2 and 4. This is how binary is accomplished. You merely add up the numbers needed to get the number desired. Make sense? Just to make sure, we will do one more equation to clarify. We need the number 208:<br />
</p>
<table border="1" cellpadding="5px" style="text-align:center;margin:0 auto;">
<tr>
<td>128</td>
<td>64</td>
<td>32</td>
<td>16</td>
<td>8</td>
<td>4</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
</table>
<p>
128+64+16=208; Now that we have made numbers with binary, let&#8217;s make binary out of numbers. This requires a bit more calculation, but it is still easy none the less. Let&#8217;s take the afore mentioned number of 208. How do we make binary out of the number?</p>
<ol>
<li>We take the largest and closest number to 208 out of it, i.e. 128 is the largest and the closest, so 208-128=80</li>
<li>On your chart, you would mark down a one under the 128 slot.</li>
<li>Now you take 80 and find the closest number which is 64. 80-64=16</li>
<li>On your chart, you would mark down a one under the 64 slot.</li>
<li>Now you take 16 and find the closest number which is obviously 16, so you mark a one under the 16 and a zero under all the other numbers.</li>
</ol>
<p>You now know how to convert decimal digits into binary and binary into decimal digits. How&#8217;s that for cool? Feel free to boast to people that you know binary! It sounds cool and &#8220;techy&#8221; doesn&#8217;t it? Just make sure you tell them you know binary in a cool techy voice. Think <a href="http://www.imdb.com/name/nm0911320/" style="color:#186298;" target="top">Patrick Warburton</a> as you say, &quot;Yea &#8230; that&#8217;s right. I know,&quot; flexing a little, &quot;Binary code. Yea, most us techs know that sort of thing. Kinda comes with the job if you know what I mean.&quot; NOTE: If you are a male, I encourage you to practice the deep voice and the cool look &#8211; time for us techs to break the &quot;so-uncool mold&quot; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<br />
&#8230; Laughter is so important in life &#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<br />
To download the cheat chart so you always have something to refer back to, click on the link (you will need a spreadsheet program like MS Excel to open it): <a href="http://www.realsheep.net/Code_Cheat_Sheet.xls" style="color:#186298;" target="top">Code Cheat Sheet (17KB)</a><br />
<br />
More Binary Help Sites:</p>
<ul>
<li><a href="http://www.kerryr.net/pioneers/binary.htm" style="color:#186298;" target="top">Binary &#8211; So Simple a Computer Can Do It</a></li>
<li><a href="http://en.wikipedia.org/wiki/Binary_numeral_system" style="color:#186298;" target="top">Wikipedia: Binary</a></li>
<li><a href="http://homepage.ntlworld.com/interactive/" style="color:#186298;" target="top">Binary Numbers For Dummies</a></li>
<li><a href="http://en.wikipedia.org/wiki/Binary-coded_decimal" style="color:#186298;" target="top">Wikipedia: Binary-Coded Decimal</a></li>
</ul>
<p>Was this article helpful to you? Do you have any suggestions or corrections that you would like to see here? If so, please post a comment and let me know.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=337&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2010/03/29/binary-is-easy-as-00000001-00000010-00000011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/03/binary2.jpg" medium="image">
			<media:title type="html">Binary Code</media:title>
		</media:content>
	</item>
		<item>
		<title>Design Post 2 &#8211; Creating Texture &#8211; Other Ideas</title>
		<link>http://realsheep.wordpress.com/2010/03/03/design-post-2-creating-texture-other-ideas/</link>
		<comments>http://realsheep.wordpress.com/2010/03/03/design-post-2-creating-texture-other-ideas/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 20:16:20 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[DMA C102]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=295</guid>
		<description><![CDATA[For this project, we were supposed to create textures only using the Photo Shop program. We were to first choose a word from the following selection: wrinkled rusty peeling weathered pitted woven pebbly scratched I chose the word &#8220;scratched&#8221; first. This is my first picture and I am rather proud of it as I created [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=295&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p>For this project, we were supposed to create textures only using the Photo Shop program. We were to first choose a word from the following selection:</p>
<ul>
<li>wrinkled</li>
<li>rusty</li>
<li>peeling</li>
<li>weathered</li>
<li>pitted</li>
<li>woven</li>
<li>pebbly</li>
<li>scratched</li>
</ul>
<p>I chose the word &#8220;scratched&#8221; first. This is my first picture and I am rather proud of it as I created the disc entirely in Photo Shop and then applied the scratches using a tutorial on the Net called: <a href="http://home.versatel.nl/epragt/tutorials/photoshop/texture/bigscratch/index.jsp.htm">Big Scratch</a></p>
<p>The scratches didn&#8217;t quite turn out as good as I wanted them to though.</p>
<p>(Click the image to make it larger)</p>
<div id="attachment_296" class="wp-caption alignnone" style="width: 160px"><a href="http://realsheep.files.wordpress.com/2010/03/scratched-cd.jpg"><img src="http://realsheep.files.wordpress.com/2010/03/scratched-cd.jpg?w=150&#038;h=150" alt="Scratched Optical Disc" title="Scratched Optical Disc" width="150" height="150" class="size-thumbnail wp-image-296" /></a><p class="wp-caption-text">Scratched Optical Disc</p></div>
<p>I then moved on and chose another word, &#8220;pebbly&#8221;, and followed a tutorial called: <a href="http://www.tutorial9.net/photoshop/create-fantastic-stone-textures-in-photoshop/"> Fantastic Stone Textures</a></p>
<p>I followed this, but didn&#8217;t like the black background, so I got rid of it and replaced it with a sand background. This looks more natural, but I found the image still looked odd, more like a stone wall rather than a bunch of pebbles on the ground. After adding some water, things looked better, but as it turned out, this was not the favorite pick for the project.</p>
<p>(Click the image to make it larger)</p>
<div id="attachment_297" class="wp-caption alignnone" style="width: 160px"><a href="http://realsheep.files.wordpress.com/2010/03/pebbly.jpg"><img src="http://realsheep.files.wordpress.com/2010/03/pebbly.jpg?w=150&#038;h=81" alt="Pebbly" title="Pebbly" width="150" height="81" class="size-thumbnail wp-image-297" /></a><p class="wp-caption-text">Pebbly - Pebbles Under Water</p></div>
<p>The final choice was the word &quot;weathered&quot; and I thought of weathered wood as a good example. I had just finished reading <em>Treasure Island</em> by Robert Louis Stevenson and the idea of doing the &quot;Admiral Benbo&quot; sign came into mind. Of course, I had to put my own twist on it. For the wood texture, I used the <a href="http://www.photoshoplady.com/tutorial/the-ultimate-wood-texture-tutorial/219">Ultimate Wood Texture Tutorial</a>. For the rust texture, I used the <a href="http://home.versatel.nl/epragt/tutorials/photoshop/text/easyrusted/index.jsp.htm">Easy Rusted Text</a> tutorial. After getting the textures, I found I liked the look of a raised carving for the letters and image. I was able to &#8220;weather&#8221; the carving by loading a channel selection of wood grain and then erasing little bits from the wording and figure as if it was chipped and eroded with time. After making the sign the way I liked it, I turned to the hinges, chain, and sign post. These I made using the rust text tutorial. The chain is made out of &#8220;U&#8217;s&#8221; and &#8220;O&#8217;s&#8221;. The sign post is made out of an extended &#8220;J&#8221;. ·	The Admiral was taken from a <a href="http://www.worldofmi.com/features/download/index.php" target="new">Monkey Island Fan Site</a> where they offer art work for free.</p>
<p>(Click the image to make it larger)</p>
<div id="attachment_298" class="wp-caption alignnone" style="width: 160px"><a href="http://realsheep.files.wordpress.com/2010/03/sign.jpg"><img src="http://realsheep.files.wordpress.com/2010/03/sign.jpg?w=150&#038;h=123" alt="Weathered Sign" title="Weathered Sign" width="150" height="123" class="size-thumbnail wp-image-298" /></a><p class="wp-caption-text">Weathered Sign</p></div>
<p>Let me know what you think by posting your comments at the bottom of the page. Thanks for looking!</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=295&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2010/03/03/design-post-2-creating-texture-other-ideas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/03/scratched-cd.jpg?w=150" medium="image">
			<media:title type="html">Scratched Optical Disc</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/03/pebbly.jpg?w=150" medium="image">
			<media:title type="html">Pebbly</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/03/sign.jpg?w=150" medium="image">
			<media:title type="html">Weathered Sign</media:title>
		</media:content>
	</item>
		<item>
		<title>Final Ideas on Beginning Project 01</title>
		<link>http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/</link>
		<comments>http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 05:58:04 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[DMA C102]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=278</guid>
		<description><![CDATA[These were other ideas I tried, but found they were not as popular with my family or didn&#8217;t quite meet the assignment requirements. The picture labeled &#8220;Final Photo&#8221; was the picture I submitted for this assignment. I give my sister credit for all the pictures except the sign, alley, and the city scene. Those three [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=278&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These were other ideas I tried, but found they were not as popular with my family or didn&#8217;t quite meet the assignment requirements. The picture labeled &#8220;Final Photo&#8221; was the picture I submitted for this assignment.</p>
<p>I give my sister credit for all the pictures except the sign, alley, and the city scene. Those three were taken from a card program, a WordPress theme, and from a free photo site.</p>

<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/focus-river/' title='Project 01: 03 The River in Focus'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/focus-river.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Kern River - Get Your Life Back Into Focus" title="Project 01: 03 The River in Focus" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/alley-grunge/' title='Project 01: 02 Alley to Country'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/alley-grunge.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Project 01: 02 Alley to Country" title="Project 01: 02 Alley to Country" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/serene-sign/' title='Project 01: 01 Serene Sign'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/serene-sign.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Serene Theme" title="Project 01: 01 Serene Sign" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/original-sign/' title='Original Sign Picture'><img width="121" height="150" src="http://realsheep.files.wordpress.com/2010/02/original-sign.jpg?w=121&#038;h=150" class="attachment-thumbnail" alt="Original Sign Picture" title="Original Sign Picture" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/alley/' title='Original Alley Picture'><img width="150" height="81" src="http://realsheep.files.wordpress.com/2010/02/alley.jpg?w=150&#038;h=81" class="attachment-thumbnail" alt="Original Alley Picture" title="Original Alley Picture" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/kernplateau060/' title='Kern Plateau Original Picture'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/kernplateau060.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Kern Plateau Original Picture" title="Kern Plateau Original Picture" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/vehicle-original/' title='Final Photo: Vehicle Original'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/vehicle-original.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Final Photo: Vehicle Original" title="Final Photo: Vehicle Original" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/snow-original/' title='Final Photo: Snow Original'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/snow-original.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Final Photo: Snow Original" title="Final Photo: Snow Original" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/city-original/' title='Final Photo: City Original'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/city-original.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Final Photo: City Original" title="Final Photo: City Original" /></a>
<a href='http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/final-photo/' title='01 Final Photo'><img width="150" height="112" src="http://realsheep.files.wordpress.com/2010/02/final-photo.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Final Photo" title="01 Final Photo" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/278/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=278&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2010/02/12/more-ideas-on-beginning-project-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/focus-river.jpg?w=150" medium="image">
			<media:title type="html">Project 01: 03 The River in Focus</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/alley-grunge.jpg?w=150" medium="image">
			<media:title type="html">Project 01: 02 Alley to Country</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/serene-sign.jpg?w=150" medium="image">
			<media:title type="html">Project 01: 01 Serene Sign</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/original-sign.jpg?w=121" medium="image">
			<media:title type="html">Original Sign Picture</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/alley.jpg?w=150" medium="image">
			<media:title type="html">Original Alley Picture</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/kernplateau060.jpg?w=150" medium="image">
			<media:title type="html">Kern Plateau Original Picture</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/vehicle-original.jpg?w=150" medium="image">
			<media:title type="html">Final Photo: Vehicle Original</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/snow-original.jpg?w=150" medium="image">
			<media:title type="html">Final Photo: Snow Original</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/city-original.jpg?w=150" medium="image">
			<media:title type="html">Final Photo: City Original</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/final-photo.jpg?w=150" medium="image">
			<media:title type="html">01 Final Photo</media:title>
		</media:content>
	</item>
		<item>
		<title>The Creative Side of My Brain is Tickling!</title>
		<link>http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/</link>
		<comments>http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 06:48:37 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[DMA C102]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=267</guid>
		<description><![CDATA[These pictures were drawn for part of an assignment and they remind me of doodles I used to do when I was a kid. A Word On Doodles Doodles are things that just happen. It&#8217;s something that suddenly takes shape or something that just flashes in the mind and ends up as fun on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=267&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These pictures were drawn for part of an assignment and they remind me of doodles I used to do when I was a kid.<br />
<span id="more-267"></span></p>
<h4>A Word On Doodles</h4>
<p>Doodles are things that just happen. It&#8217;s something that suddenly takes shape or something that just flashes in the mind and ends up as fun on the paper.<br />

<a href='http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/scary/' title='Design Post 1 - The Expressiveness of Line: Scary'><img width="150" height="73" src="http://realsheep.files.wordpress.com/2010/02/scary.jpg?w=150&#038;h=73" class="attachment-thumbnail" alt="Design Post 1 - The Expressiveness of Line: Scary" title="Design Post 1 - The Expressiveness of Line: Scary" /></a>
<a href='http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/paul_kuttig_playful/' title='Design Post 1 - The Expressiveness of Line: Playful'><img width="150" height="96" src="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_playful.jpg?w=150&#038;h=96" class="attachment-thumbnail" alt="Design Post 1 - The Expressiveness of Line: Playful" title="Design Post 1 - The Expressiveness of Line: Playful" /></a>
<a href='http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/paul_kuttig_delicate/' title='Design Post 1 - The Expressiveness of Line: Delicate'><img width="150" height="96" src="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_delicate.jpg?w=150&#038;h=96" class="attachment-thumbnail" alt="Design Post 1 - The Expressiveness of Line: Delicate" title="Design Post 1 - The Expressiveness of Line: Delicate" /></a>
<a href='http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/paul_kuttig_boring/' title='Design Post 1 - The Expressiveness of Line: Boring'><img width="150" height="97" src="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_boring.jpg?w=150&#038;h=97" class="attachment-thumbnail" alt="Design Post 1 - The Expressiveness of Line: Boring" title="Design Post 1 - The Expressiveness of Line: Boring" /></a>
</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=267&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2010/02/03/the-creative-side-of-my-brain-is-tickling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/scary.jpg?w=150" medium="image">
			<media:title type="html">Design Post 1 - The Expressiveness of Line: Scary</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_playful.jpg?w=150" medium="image">
			<media:title type="html">Design Post 1 - The Expressiveness of Line: Playful</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_delicate.jpg?w=150" medium="image">
			<media:title type="html">Design Post 1 - The Expressiveness of Line: Delicate</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2010/02/paul_kuttig_boring.jpg?w=150" medium="image">
			<media:title type="html">Design Post 1 - The Expressiveness of Line: Boring</media:title>
		</media:content>
	</item>
		<item>
		<title>No Good Deed Goes Unpunished</title>
		<link>http://realsheep.wordpress.com/2009/12/26/no-good-deed-goes-unpunished/</link>
		<comments>http://realsheep.wordpress.com/2009/12/26/no-good-deed-goes-unpunished/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 00:58:38 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[My Tech Adventures]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=261</guid>
		<description><![CDATA[Point(s) to Remember: Plan and do research before major projects When entering unfamiliar ground, do not rush in blindly. Journal Story One of my accounts entails me caring for a family with disabled young people. For years I have serviced and maintained their computers as well as serving as their hands and even eyes when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=261&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<img src="http://realsheep.files.wordpress.com/2009/12/good-guy1.jpg?w=147&#038;h=150" alt="I&#39;m a Good Boy" title="I&#39;m a Good Boy" width="147" height="150" class="alignleft size-thumbnail wp-image-265" /><br />
<strong>Point(s) to Remember:</strong></p>
<ul style="list-style-position:inside;">
<li>Plan and do research before major projects</li>
<li>When entering unfamiliar ground, do not rush in blindly.</li>
</ul>
<p><span id="more-261"></span><br />
<strong>Journal Story</strong></p>
<p>One of my accounts entails me caring for a family with disabled young people. For years I have serviced and maintained their computers as well as serving as their hands and even eyes when they are no longer able to use their computers by themselves. Both children (who are now young adults), own a computer and there is a computer for the mother, father, and other normal siblings as well. My primary job over the years has been to browse the Internet for information that they seek and then turn the information into text for a text-reading program. However, with so many computers in the house, the task of maintenance and fixing problems falls to me.  On one such occasion, I was doing general maintenance when I noticed that the heat sink of the father’s computer was so clogged with dust bunnies that the fan seemed to be laboring to keep things cool.</p>
<p>“I know!” I thought, “Why not clean the inside of the computer as well?” I would go the extra mile! I would receive the gratitude of my employer! He would pat me on the head and say, “Good boy! You are indeed a faithful servant.” Yes sir, I would clean this computer and have it sparkling before he came home. Please note, this was before I had ever really messed with processors and their components, so it was a case of fools rushing in as I decided to remove the fan and heat sink unit in order to properly clean it. This I did without any problems, though I noticed this sticky white paste that I somehow got on my hands when handling the heat sink. Pesky stuff! After cleaning, I was just replacing the unit as the father came into the house and over to his computer, where he watched me finish installing everything. I smiled triumphantly as I pushed the power button and the squeaky-clean computer started with renewed vigor … and then ten seconds later suddenly turned off. My smile was whisked off my face as if it was a line in the sand that a strong wind had just erased. Trying to be confident, but sweating and offering up prayers of deliverance, I pushed the button again. Ah! The sweet sound of the computer starting up … until it turned off again. The man quietly stood there as I explained I must not have tightened down the heat sink enough. After unplugging the unit, I popped the panel off and reseated the heat sink, making sure I tightened everything down enough. With a quivering finger I pushed the power button, held my breath, said another prayer, and waited. The computer started. So far so good. Soon ten seconds were past, then twenty, and then thirty. Oh what an eternity before Windows loaded and a full five minutes went by with the machine still making every healthy noise a computer makes. Still trying to look confident, I stood up and said, “Yep. That was it. I just didn’t tighten down the cooling unit enough after cleaning your whole computer.”</p>
<p>My employer smiled, knowing I had gone the second mile and knowing I had almost botched it, said, “No good deed goes unpunished.”</p>
<p>I smiled and walked away as I offered many praises to the Lord for delivering this computer fool once again.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=261&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/12/26/no-good-deed-goes-unpunished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2009/12/good-guy1.jpg?w=147" medium="image">
			<media:title type="html">I&#39;m a Good Boy</media:title>
		</media:content>
	</item>
		<item>
		<title>Just One More Screw</title>
		<link>http://realsheep.wordpress.com/2009/12/26/just-one-more-screw/</link>
		<comments>http://realsheep.wordpress.com/2009/12/26/just-one-more-screw/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 00:29:45 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[My Tech Adventures]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=255</guid>
		<description><![CDATA[Point(s) to Remember: If something doesn’t give, do not force it Think things through Plan and do research before major projects Journal Story I had saved up for it for some time and had done much research before finally purchasing a new laptop a couple of years ago. I try my best to keep this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=255&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p><strong><a href="http://realsheep.files.wordpress.com/2009/12/screws.jpg"><img class="alignleft size-full wp-image-256" title="Screws" src="http://realsheep.files.wordpress.com/2009/12/screws.jpg?w=200&#038;h=178" alt="" width="200" height="178" /></a>Point(s) to Remember</strong>:</p>
<ul style="list-style-position:inside;">
<li> If something doesn’t give, do not force it</li>
<li> Think things through</li>
<li> Plan and do research before major projects</li>
</ul>
<p><span id="more-255"></span><br />
<strong>Journal Story</strong><br />
I had saved up for it for some time and had done much research before finally purchasing a new laptop a couple of years ago. I try my best to keep this computer in top condition, as it is my workhorse usually always being in the field with me. Things have run well, but after two years of use, I started noticing that the large programs I had installed on it were sucking my system memory and were causing intensive use of the virtual memory (a section of the hard drive that is devoted to acting as RAM). So, I did the research, bit the bullet, and purchased bigger RAM. I had also noticed that the cooling fan was constantly running, even when the computer was not being used and the computer surface around the touch-pad was very hot. I also noticed the vents on the back were clogged with dust-bunnies, so I figured I would clean the inside of dust when I replaced the RAM.</p>
<p>The day when the RAM came was an exciting day! I had purchased some new computer tools as well, so I was doubly excited. When I finally got a free day, I downloaded the repair manual for my model, got my tools in order like a surgeon, and started in to reading and following the removal instructions. Unfortunately with a laptop, in order to get to the mainboard at the bottom of the computer where the dust has collected, every piece on top has to be removed – we’re talking the keyboard, the monitor, the various top plates, optical drive (DVD/CD drive), touch-pad, speakers, etc. That’s what the repair manual is for.</p>
<p>Each laptop, even laptops within the same manufacture family, are different in their screw placement and part configuration. And talk about screws! Each time I open a laptop for repairs, I marvel at the amount of screws that come out of it. When the manufacturer gives the unit&#8217;s weight, you can bet that half of the weight is in screws! Each group of screws that tighten down various parts are often different in size as well. This is an important fact to remember because some are short and some are long of the same diameter. If you were to put a long screw in a short screw hole, you could puncture the mainboard. Keeping track of the screws, their size, name, and where they came from is very important. Thankfully, I have torn into enough laptops to be fairly comfortable and organized (I have even taken pictures of my dissecting in order to help keep track). I have also learned, no matter what the manual says, if something is resistant to being pried loose … DO NOT FORCE IT! Thankfully I remembered this.</p>
<p>It seems I had downloaded the correct manual, but for some reason, it didn’t give all the information I needed to know. For instance, it said there was a screw where there was no screw (this was my first clue) and then it didn’t mention two main screws that were quietly holding the mainboard in place. I had noticed these two spacers or standoff screws before and didn’t think much of them as this type of screw is used for providing space between the mainboard and the frame of the computer. They are usually short stemmed and have a head that is about ¼” thick and resemble a nut with an octagonal shape. What made these two standoff screws stand out is the little plastic part of the computer frame next to them. On it was engraved a couple of arrows and the word, “Remove”.<br />
Now, you are probably thinking, “Well yea! That should have clued you in a little!”</p>
<p>But also under the arrows were the RAM memory modules. So, I thought the arrows were pointing to the modules so they would be removed before any major work on the mainboard. I followed the repair manual until I got to the part where they said to remove one screw and then pop the top end of the last top plate away from the frame. I removed the screw and then began to pull on the top plate … nothing but flex. I wasn’t exerting a lot of force, so I thought, “Well, I guess I could pull a little harder.” With timidity I began to pull on the top edge of the plate just like the manual said. Still nothing. This was making me nervous because I could feel the mainboard just under the plate and it felt like it was flexing with the plate. I could just imagine myself putting a screwdriver under the plate and using it as leverage. Ah yea! I’ll pop that baby off there! Of course I would end up with part of the mainboard still stuck to the plate like a bit of white goop from an Oreo when the two parts are separated.</p>
<p>So, carefully I lifted the plate about an eighth inch and shone a light in between. There they were, two big shiny screw shafts coming up through the mainboard. I shook my head and removed the two standoff screws and the plate popped off with barely any force. The rest was easy and I was able to thoroughly clean all the dust bunnies that had collected around the fan and the heat sink. Putting the unit back together was just a matter of retracing my steps. I also installed the new RAM and am happy to report that my laptop not only stays nice and cool, but is able to handle the workload now.</p>
<p>So the lesson learned, even when you’ve got the manual telling what to do, move slow and think about what you are doing. If something doesn’t seem right, approach even more cautiously and go by what you know to be right.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=255&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/12/26/just-one-more-screw/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://realsheep.files.wordpress.com/2009/12/screws.jpg" medium="image">
			<media:title type="html">Screws</media:title>
		</media:content>
	</item>
		<item>
		<title>De Flames! De Flames!</title>
		<link>http://realsheep.wordpress.com/2009/11/04/de-flames-de-flames/</link>
		<comments>http://realsheep.wordpress.com/2009/11/04/de-flames-de-flames/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 05:49:26 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[My Tech Adventures]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=179</guid>
		<description><![CDATA[This is my first entry in my computer repair journal and my first attempt at putting my experience in a journal type format. Bear with me. Point(s) to Remember: User Data is VERY important &#8230; Back it up before working or doing major diagnosis. Disconnect all drives from the power supply before testing for a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=179&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p><img src="http://www.realsheep.net/art/computerFire.jpg" width="200px" height="160px" style="float:left;margin:0 10px 10px 0;" alt="Computer Fire!" /><br />
This is my first entry in my computer repair journal and my first attempt at putting my experience in a journal type format. Bear with me. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-179"></span></p>
<h4>Point(s) to Remember:</h4>
<ul style="list-style-position:inside;">
<li>User Data is VERY important &#8230; Back it up before working or doing major diagnosis.</li>
<li>Disconnect all drives from the power supply before testing for a faulty power supply.</li>
<p></u></p>
<h4>Journal Story</h4>
<p>One of the things the instructors stress in the computer repair business is, &#8220;Documentation!&#8221; The tech is supposed to log the incident, including the workstation (computer), the trouble, the diagnosis, and the solution. This enables the tech to be better prepared for the next disaster as he can refer back to his notes when the client isn&#8217;t looking and then hopefully dazzle the client by going right to the problem and fixing it, all the while giving the impression he really knows his stuff (I speak in the masculine tense as I happen to be a male, but please feel free to substitute the he/his for her/she). This attempt at logging my experience was a practice run while hopefully passing on some valuable information to the reader. If you have made it this far, I applaud you.</p>
<h3>The Incident</h3>
<p>I was called out to repair a computer &#8220;that wouldn&#8217;t turn on&#8221; for a client the other day. I make many house calls, as I am a traveling tech (I use the term tech loosely as I am not certified just yet &#8211; hoping, hoping!). The client is a sweet elderly lady who is partially blind and only uses her computer to play solitaire and send a few emails &#8211; no personal data.<br />
<br />
After arriving on the scene, I participated in social interaction (kind of surprising for a computer nerd ain&#8217;t it?) while making my way toward the desktop computer that sat sullen on the floor next to the desk area, with only a little amber light glowing. After pleasantries were exchanged between the client and myself, I moved on to the old tech third-degree &#8211; What is the problem? What happened right before that? What did you try? etc.<br />
<br />
I then tried turning the computer on myself by pushing the power button. Nothing. Checked cables and outlet (a little voice kept repeating &#8211; &#8220;Start from the wall and work out!&#8221;). All seemingly okay.<br />
<br />
Tried holding the switch on the front for ten seconds to shut the computer off that way. The computer began to beep (computer cussing?) several times and then continued to stare sullenly at me. &#8220;Well,&#8221; I said to myself quietly, &#8220;It must have something wrong with the power supply.&#8221;<br />
<br />
I unplugged all externals (monitor, mouse, etc.), turned the unit off from the back, unplugged it, and pulled the side panel off. I didn&#8217;t notice that this motherboard was an Enhanced ATX and used the P1 and the auxiliary power connector. I unplugged both.<br />
<br />
I then plugged the power supply back into the wall outlet and flipped the switch on the back. All I can say is, it&#8217;s a good thing I still had hold of the power cord because if Robin were my sidekick, I would have heard something like, &#8220;Holy flaming hard drive Batman!&#8221; Yes sir. The one thing I forgot to unplug from the power supply was the hard drive. Being the mainboard was an EATX, it had kept the defunct power supply at bay and had not let it run it&#8217;s lethal power through the system. Genius that I am, I unplugged the only safety feature from the power supply and left everything else plugged in.<br />
<br />
Yea baby! I like &#8230; he, he, &#8230; FLAMES!!!<br />
<br />
The poor hard drive then took all the power that the power supply could give it and simply melted before my very eyes. Also before the eyes of my client. Praise the Lord I pulled the power cable before anyone had a chance to scream for the fire department. I then told the client how the power supply was bad (No! You think?) and that it could have fried more than the hard drive. She was very gracious and was thankful it didn&#8217;t burn up on her (all this while waving aside the smoke) and that she would wait to hear from me about any salvageable parts before pursuing a new computer (buying a new computer is a low priority for her, since she only used it for simple things).<br />
<br />
I then brought the computer home to my workshop\one room apartment and ran it through some tests. I found that the mainboard seems to be working fine, the DVD drive still works, but the CD drive must have taken a jolt, with the fried hard drive and power supply.<br />
<br />
The moral of this story:<br />
If you suspect a bad power supply:</p>
<ol>
<li>Unplug the hard drive from it after shutting everything down. That way, maybe some data can be saved. It would have been an absolute nightmare if the hard drive contained user data.</li>
<li>Keep your head if a fire breaks out.</li>
<li>Unplug the unit from the power source first as this is the cause of the fire (think arc welding) and could be sending electricity through the unit.</li>
<li>Then deal with the fire if it still is burning.</li>
<li> Brace your self for the possible client onslaught of, &#8220;What the FOUL FOUL do you think you&#8217;re doing? Don&#8217;t you FOUL know that FOUL fire can burn up the FOUL house? Of all the FOUL FOUL things &#8230;&#8221;</li>
<li>Last, remain calm, passive and positive. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>I was blessed to have this experience with an elderly lady whom I&#8217;ve known for quite some time and who is very sweet. I was also blessed to have this happen on a hard drive that didn&#8217;t contain any user data. However, I wanted to pass this on to you so in case a similar thing happens, you will know to UNPLUG THE HARD DRIVE. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=179&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/11/04/de-flames-de-flames/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://www.realsheep.net/art/computerFire.jpg" medium="image">
			<media:title type="html">Computer Fire!</media:title>
		</media:content>
	</item>
		<item>
		<title>Joke: Accounting Interview</title>
		<link>http://realsheep.wordpress.com/2009/10/28/joke-accounting-interview/</link>
		<comments>http://realsheep.wordpress.com/2009/10/28/joke-accounting-interview/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 18:43:50 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[Real Sheep Humor]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=164</guid>
		<description><![CDATA[Rick, fresh out of accounting school, went to a interview for a good paying job. The company boss asked various questions about him and his education, but then asked him, &#8220;What is three times seven?&#8221; &#34;22,&#34; Rick replied. After he left, he double-checked it on his calculator (he *knew* he should have taken it to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=164&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p><img src="http://www.realsheep.net/art/countFingers.jpg" width="200px" height="140px" style="float:left;margin:0 10px;" alt="Man Counting On Fingers" /><br />
Rick, fresh out of accounting school, went to a interview for a good paying job. The company boss asked various questions about him and his education, but then asked him, &#8220;What is three times seven?&#8221;<br />
<br />
&quot;22,&quot; Rick replied. After he left, he double-checked it on his calculator (he *knew* he should have taken it to the interview!) and realized he wouldn&#8217;t get the job.<br />
<br />
About two weeks later, he got a letter that said he was hired for the job! He was not one to look a gift horse in the mouth, but was still very curious. The next day, he went in and asked why he got the job, even though he got such a simple question wrong. The boss shrugged and said, &quot;Well, you were the closest.&quot; </p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=164&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/10/28/joke-accounting-interview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>

		<media:content url="http://www.realsheep.net/art/countFingers.jpg" medium="image">
			<media:title type="html">Man Counting On Fingers</media:title>
		</media:content>
	</item>
		<item>
		<title>A Little Humor A Day</title>
		<link>http://realsheep.wordpress.com/2009/09/20/a-little-humor-a-day/</link>
		<comments>http://realsheep.wordpress.com/2009/09/20/a-little-humor-a-day/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 05:40:53 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[Real Sheep Humor]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=96</guid>
		<description><![CDATA[For those in need of a quick laugh: Did you hear the one about the student? During the beginning of the semester, the instructor had given the students a written test to complete. The students had 60 minutes to complete it and then the papers were to be brought to the desk for grading before [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=96&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p>For those in need of a quick laugh:</p>
<h3>Did you hear the one about the student?</h3>
<p>During the beginning of the semester, the instructor had given the students a written test to complete. The students had 60 minutes to complete it and then the papers were to be brought to the desk for grading before the students left for the day. After the hour had passed, the students lined up to turn in their tests, all but one student who was conspicuously still at his desk. After the last student had turned in the test and had left the room, the instructor looked up to find the student still at his desk. The instructor cleared his throat and continued to stare at the student. A couple of minutes passed before the student finally arose and deposited the test on the desk and then began to quickly leave the room.<br />
<br />
Stopping the student in his tracks, the instructor said, &#8220;Wait! I think I said that all students had one hour to finish the test or they would receive a mark against their grade. I also said students were to write their names on the test. You are ten minutes late and have not written you name on this test.&#8221;<br />
<br />
The student turned and then sauntered over to the desk. &#8220;Do you know who I am?&#8221; he queried.<br />
<br />
Raising an eyebrow, the instructor responded, &#8220;No. That&#8217;s partly why I want your name on the test.&#8221;<br />
<br />
Looking surprised, the student asked again, &#8220;You mean you don&#8217;t know who I am?&#8221;<br />
<br />
&#8220;No.&#8221; came the flat reply.<br />
<br />
&#8220;I can&#8217;t believe this! You don&#8217;t know who I am!&#8221; said the student in a very arrogant and irritated voice before looking the instructor in the eye and saying again, &#8220;You can look me in the eye and tell me to my face that you have no idea who I am? Me? You don&#8217;t know who I am or my &#8230; my name?&#8221;<br />
<br />
Becoming exasperated himself, the instructor said, &#8220;No! And quite frankly I don&#8217;t really care who you are mister!&#8221;<br />
<br />
Suddenly smiling, the student said, &#8220;Oh.&#8221; and then preceded to write his name on the test and shove it in the middle of the stacked tests before walking out the door.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=96&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/09/20/a-little-humor-a-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>
	</item>
		<item>
		<title>Going Blog Happy!</title>
		<link>http://realsheep.wordpress.com/2009/08/30/going-blog-happy/</link>
		<comments>http://realsheep.wordpress.com/2009/08/30/going-blog-happy/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 00:53:56 +0000</pubDate>
		<dc:creator>His Woolliest</dc:creator>
				<category><![CDATA[Real Sheep Humor]]></category>

		<guid isPermaLink="false">http://realsheep.wordpress.com/?p=27</guid>
		<description><![CDATA[Here I am &#8230; I&#8217;m supposed to be working. No, I mean REALLY working. As in, catching up on the projects that are plaguing me outside the house, or on the website, or even on schoolwork &#8211; though my assignments are officially done &#8211; and here I sit with a lack of enthusiasm as I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=27&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="color:#000000;">
<p>Here I am &#8230; I&#8217;m supposed to be working. No, I mean <em>REALLY</em> working. As in, catching up on the projects that are plaguing me outside the house, or on the website, or even on schoolwork &#8211; though my assignments are officially done &#8211; and here I sit with a lack of enthusiasm as I write a blog post. One would almost think I&#8217;m becoming addicted. But I&#8217;m not! Really! So I get the shakes when I don&#8217;t do my blogging, Facebook, or Skype! So what! Doesn&#8217;t everybody? I can quit anytime I want to. Really! I don&#8217;t have to sit here and put mindless stuff on my blog, I just wanted to &#8230; feel compelled to! &#8230; must blog! &#8230; must post something! &#8230; mind going numb! &#8230; must resist! &#8230; must! &#8230; can&#8217;t hold out much longer! &#8230;. <em>insane laughing</em> &#8230; Alright! I admit it! I love blogging!!! This is fun! Where has my life been without it? I had no life before blogging!! I feel so &#8230; so &#8230; ALIVE!! &#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/realsheep.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/realsheep.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/realsheep.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=realsheep.wordpress.com&amp;blog=9185860&amp;post=27&amp;subd=realsheep&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://realsheep.wordpress.com/2009/08/30/going-blog-happy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e1dd2c2bf0b32ddd9fe95f222622f6b1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">His Woolliest</media:title>
		</media:content>
	</item>
	</channel>
</rss>
