<?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>KillerBlog.net &#187; School Work</title>
	<atom:link href="http://www.killerblog.net/category/school-work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.killerblog.net</link>
	<description>Flippin Sweet!</description>
	<lastBuildDate>Sun, 25 Sep 2011 18:10:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Big Bang Games &#8211; Shark Bait</title>
		<link>http://www.killerblog.net/big-bang-games-shark-bait/</link>
		<comments>http://www.killerblog.net/big-bang-games-shark-bait/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 18:03:13 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[School Work]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.killerblog.net/?p=151</guid>
		<description><![CDATA[Here is the first game made by Big Bang Games. Check it out on Kongregate.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.kongregate.com/games/FSF_Hawthorne/shark-bait" target="_blank"><img class="aligncenter size-full wp-image-152" title="shark-bait" src="http://www.killerblog.net/wp-content/uploads/2009/02/shark-bait.jpg" alt="shark-bait" width="599" height="449" /></a></p>
<h2 style="text-align: center;">Here is the first game made by Big Bang Games. Check it out on <a title="Play Shark Bait" href="http://www.kongregate.com/games/FSF_Hawthorne/shark-bait" target="_blank">Kongregate</a>.</h2>
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/big-bang-games-shark-bait/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Big Bang Games</title>
		<link>http://www.killerblog.net/big-bang-games/</link>
		<comments>http://www.killerblog.net/big-bang-games/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 02:38:01 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[School Work]]></category>

		<guid isPermaLink="false">http://www.killerblog.net/?p=149</guid>
		<description><![CDATA[Me and a friend from college are going to be starting our own little game development company. Right now its not going to be a full fledge company, but just a name to brand our games with. The name we came up with is &#8220;Big Bang Games&#8221;. It was just a random thought that stuck [...]]]></description>
			<content:encoded><![CDATA[<p>Me and a friend from college are going to be starting our own little game development company. Right now its not going to be a full fledge company, but just a name to brand our games with. The name we came up with is &#8220;Big Bang Games&#8221;. It was just a random thought that stuck I guess, we both agreed on it and thats what we went with lol.</p>
<p>We&#8217;re starting off with flash games, because that&#8217;s what we&#8217;re working on right now. Its actually only one of many things we&#8217;re working on. It just happens to be the funnest, and easiest things to put up on the web. I dont know if we&#8217;ll just stick with flash games or move on to bigger and better things.</p>
<p>I haven&#8217;t made anything just yet. I&#8217;ve made small little concept type things for labs we have done in class, but no full games. On the other hand, my friend has made a full game already just for fun.  It isn&#8217;t a huge complicated game, but it is actually fun and challenging.</p>
<p>I&#8217;ll post up that game a bit later, right now im going to play some xbox 360.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/big-bang-games/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unix Shell Scripting &#8211; Remake the rm command with a trashbin</title>
		<link>http://www.killerblog.net/unix-shell-scripting-remake-the-rm-command-with-a-trashbin/</link>
		<comments>http://www.killerblog.net/unix-shell-scripting-remake-the-rm-command-with-a-trashbin/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 19:20:51 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[School Work]]></category>
		<category><![CDATA[rm script]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[unix programming]]></category>

		<guid isPermaLink="false">http://www.killerblog.net/?p=79</guid>
		<description><![CDATA[Below is the code to remake the rm command. I remade it so I could send everything i delete to a trashbin. It sends it to your home/.Trashbin. If the directory isnt there, it makes it for you. After that it tests to see if there are any arguments after the command, and if there [...]]]></description>
			<content:encoded><![CDATA[<p>Below is the code to remake the rm command. I remade it so I could send everything i delete to a trashbin. It sends it to your home/.Trashbin. If the directory isnt there, it makes it for you. After that it tests to see if there are any arguments after the command, and if there are 0 it sends back a message. If there are arguments it continues. If the second argument is the -r flag then it send everything after the flag to the trashbin, no matter what. If there isnt the -r present then it only sends files to the trashbin, and if it finds out you tried to delete a directory, it sends back an error. This was made in a bourne-again shell.</p>
<p>Thanks!</p>
<p>Checkout the code below.<span id="more-79"></span></p>
<pre>
#!/bin/sh
if ! test -d $HOME/.Trashcan
   then
   mkdir $HOME/.Trashcan
fi
if test $# -eq 0
  then
    echo $0:missing operand - moron
exit 1
fi
if test $1 = "-r"
  then
  shift
    for stuff in $*
    do
  if test -d $stuff
  then
    mv $stuff $HOME/.Trashcan
      elif test -f $stuff
    then
        mv $stuff $HOME/.Trashcan
fi
done
  else
    for stuff2 in $*
    do
if test -f $stuff2
  then
  mv $stuff2 $HOME/.Trashcan
fi
  if test -d $stuff2
  then
    echo "myrm: cannot remove $stuff2: Is a directory. moron"
fi
done
fi
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/unix-shell-scripting-remake-the-rm-command-with-a-trashbin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Programming: BandAddict.</title>
		<link>http://www.killerblog.net/web-programming-bandaddict/</link>
		<comments>http://www.killerblog.net/web-programming-bandaddict/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 12:30:04 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[School Work]]></category>
		<category><![CDATA[band addict]]></category>
		<category><![CDATA[school project]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web programming]]></category>

		<guid isPermaLink="false">http://www.killerblog.net/?p=106</guid>
		<description><![CDATA[Well for my webprogramming class we have to design and code a website. Simple enough For that class, the main project runs throughout the entire semester, and gets handed in at the end. Our group decided we would do something based upon music, bands, and all that sort of stuff because we all love music [...]]]></description>
			<content:encoded><![CDATA[<p>Well for my webprogramming class we have to design and code a website. Simple enough <img src='http://www.killerblog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  For that class, the main project runs throughout the entire semester, and gets handed in at the end. Our group decided we would do something based upon music, bands, and all that sort of stuff because we all love music so much <img src='http://www.killerblog.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>What we came up with was the name &#8220;Band Addict&#8221; we had a bunch more that I cant even remember but they had to do with bands&#8230; and music&#8230; and liking them together.</p>
<p>We didnt really want to have to code everything and have a plain jane boring ol website, so we took a different approach. We decided to design the website in <a title="Adobe Fireworks" href="http://en.wikipedia.org/wiki/Adobe_Fireworks" target="_blank">Adobe Fireworks</a> and have iframes wherever we had to put a page that needed to be changed. We used that for the news, top 20, latest bands, etc. It made it easier than having to edit the image each time, since thats how the web page is made. I know using a web site that is entirely images is a bandwidth hog and could have tremendous load times for people with slow connections, but who cares about them. We dont <img src='http://www.killerblog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyways check out the site below, hope you like it! (we arent finished and probably never will be, but here is the link to it)</p>
<p style="text-align: center;"><a title="Band Addict" href="http://www.killerblog.net/bandaddict/" target="_blank"><img class="size-medium wp-image-108 aligncenter" title="band_addict_thumbnail" src="http://www.killerblog.net/wp-content/uploads/2008/11/band-addict-239x300.jpg" alt="" width="239" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/web-programming-bandaddict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Shell Scripting &#8211; Guessing Game</title>
		<link>http://www.killerblog.net/unix-shell-scripting-guessing-game/</link>
		<comments>http://www.killerblog.net/unix-shell-scripting-guessing-game/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 19:12:54 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[School Work]]></category>
		<category><![CDATA[guessing game]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.killerblog.net/?p=76</guid>
		<description><![CDATA[Hey all, this is a guessing game I have written for my operating systems class. It was written for a bash (bourne again shell) unix operating system. It uses a simple while loop with if loops nested in it to see if the guessed number is higher or lower than the random number. #!/bin/sh #gueessing [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all, this is a guessing game I have written for my operating systems class. It was written for a bash (bourne again shell) unix operating system.</p>
<p>It uses a simple while loop with if loops nested in it to see if the guessed number is higher or lower than the random number.</p>
<p><code>#!/bin/sh<br />
#gueessing game<br />
biggest=50<br />
guess=0<br />
guesses=0<br />
number=$(( $$ % $biggest ))<br />
while [ $guess -ne $number ] ; do<br />
   echo -n "Guess? " ; read guess<br />
   if [ "$guess" -lt $number ] ; then<br />
      echo "... bigger!"<br />
   elif [ "$guess" -gt $number ] ; then<br />
      echo "... smaller!"<br />
fi<br />
guesses=$(( $guesses + 1 ))<br />
done<br />
echo "Right!! Guessed $number in $guesses guesses."<br />
exit 0<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/unix-shell-scripting-guessing-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Replacing a flat tire</title>
		<link>http://www.killerblog.net/how-to-replacing-a-flat-tire/</link>
		<comments>http://www.killerblog.net/how-to-replacing-a-flat-tire/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 01:14:26 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[School Work]]></category>
		<category><![CDATA[instructions]]></category>

		<guid isPermaLink="false">http://killerblog.net/?p=20</guid>
		<description><![CDATA[The following is a school project I did in my technical communications class. Enjoy! Replacing a flat tire Introduction Replacing a flat tire requires only a few essentials: a spare tire, a jack, a tire iron, and a wheel chock (or large rock). Because flat tires are so common and can happen at any time, [...]]]></description>
			<content:encoded><![CDATA[<p>The following is a school project I did in my technical communications class. Enjoy!</p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-CA</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]><br />
<mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin-top:0cm; 	mso-para-margin-right:0cm; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-fareast-language:EN-US;} --></p>
<p><!--[endif]--></p>
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Replacing a flat tire</span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"> </span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Introduction</span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Replacing a flat tire requires only a few essentials: a spare tire, a jack, a tire iron, and a wheel chock (or large rock). Because flat tires are so common and can happen at any time, every driver should know how to replace a tire with a spare. Although it can be daunting the first time you attempt it, replacing a tire is not very difficult. Almost anyone can do it in under 15 minutes, which is less time than it usually takes for assistance to arrive. After reading this set of instructions, you will know how to safely and correctly replace a tire on your own.</span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"> </span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Directions</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>1.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Pull off the road, turn off the engine, and turn on the hazard lights.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>2.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Put the car in park on level ground and apply the parking brake. </span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: If you drive a manual transmission car, you should put it in gear.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>3.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Place a wheel chock or a large rock behind (if facing uphill) or in front of (if facing downhill) the diagonally opposing wheel to prevent the car from rolling. </span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: This should be done even on a slight incline.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>4.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Get out the spare tire, a lug nut wrench (tire iron), and a car jack.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: To avoid bruised knuckles, you should pull rather than push when removing lug nuts.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: Do the following before jacking up the car.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>5.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Remove the lug nut by placing one end of the tire iron over a lug nut.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: The loosening of the lug nuts should be completed in a star pattern, first loosening one a few turns and then loosening the one opposite.</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>6.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Turn the tire iron counter clockwise to loosen the lug nut.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>7.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Work across the tire until all the lug nuts are loose and unscrewed.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Warning: Cars can slip off jacks. Being extremely careful is very important. You should never get under a car with only a tire changing jack holding it up.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>8.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Move the jack underneath the car.</span><span id="more-20"></span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: Your owner’s manual will specify the correct place to put the jack.</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>9.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Turn the knob at the end of the jack, using the provided metal hand crank.</span></p>
<p class="MsoListParagraphCxSpMiddle" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>10.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Raise the car with the jack until the flat tire is completely raised off the ground.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>11.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Remove the wheel lugs completely.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: Depending on how tight the lugs are, you might be able to remove them by hand. The lugs should be set aside in a secure location where they can’t roll away.</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>12.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Remove the flat tire.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>13.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Lift the spare tire </span><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">onto the wheel studs by holding up the tire and trying to line up the holes in the wheel with the protruding wheel studs.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: One trick that might help is to balance the tire on your foot while you move it into position. </span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: If you are confused about which is the right way to put on the new tire, you should check for the valve where you add air: it always faces out.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>14.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Screw each of the wheel lugs back on by hand.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Caution: Make sure you do not cross-thread the wheel studs and the lug nuts.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>15.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Use the tire iron to finish the job, working around the wheel in a star pattern.<span> </span></span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: You should avoid tightening adjacent nuts consecutively.</span></p>
<p class="MsoListParagraphCxSpFirst" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>16.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Slowly lower the jack and then pull the jack away from the vehicle.</span></p>
<p class="MsoListParagraphCxSpLast" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>17.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Tighten down the lugs completely.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: The reason you tighten the lugs now is that the tire is on the ground and it won’t rotate around like it would if it was still hanging in the air.</span></p>
<p class="MsoListParagraph" style="text-indent: -18pt;"><!--[if !supportLists]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"><span>18.<span style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; font-family: &quot;Times New Roman&quot;;"> </span></span></span><!--[endif]--><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Place the flat tire back into the space where the spare tire was, and the jack and the tire iron should be put back in the car.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Note: </span><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Most compact spare tires are smaller than regular tires, so it is possible that the flat tire won’t fit in the spare tire well.</span></p>
<p class="MsoNormal" style="margin-left: 54pt;"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Warning: Compact spares have a limited top speed. The tire’s top speed will be written on its sidewall. If your vehicle has a full-size spare, you won’t encounter these problems.</span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;"> </span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">Conclusion</span></p>
<p class="MsoNormal"><span style="font-size: 12pt; font-family: &quot;Georgia&quot;,&quot;serif&quot;;">You have now successfully replaced a flat tire. With the spare installed, you should be able to reach your house or the nearest service station.</span></p>
<p class="MsoNormal">
]]></content:encoded>
			<wfw:commentRss>http://www.killerblog.net/how-to-replacing-a-flat-tire/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

