<?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>Imp3rial2.com</title>
	<atom:link href="http://www.imp3rial2.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.imp3rial2.com</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 00:25:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Age Script</title>
		<link>http://www.imp3rial2.com/2011/12/12/age-script/</link>
		<comments>http://www.imp3rial2.com/2011/12/12/age-script/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 07:40:50 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=295</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: php; title: ; notranslate">
&lt;script language=&quot;JavaScript&quot;&gt;&lt;!--
function timeDifference(laterdate,earlierdate) {
    var difference = curr_date.getTime() - earlierdate.getTime();

    var daysDifference = Math.floor(differe
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2011/12/12/age-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smallville: 10 Year Anniversary</title>
		<link>http://www.imp3rial2.com/2011/10/16/smallville-10-year-anniversary/</link>
		<comments>http://www.imp3rial2.com/2011/10/16/smallville-10-year-anniversary/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 00:36:32 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=261</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><center><img  src="http://www.imp3rial2.com/wp-content/uploads/2011/10/smallville10years.jpg" alt="" title="smallville10years" width="400" height="400" class="img" size-full wp-image-262" /></center></p>
<p>HAPPY 10 Year Anniversary to Smallville!</p>
<p>Smallville first aired Oct. 16, 2001. It&#8217;s my favorite show&#8211;and I figured it needed a mentioning (and a really cool graphic).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2011/10/16/smallville-10-year-anniversary/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Font-Face</title>
		<link>http://www.imp3rial2.com/2011/10/14/font-face/</link>
		<comments>http://www.imp3rial2.com/2011/10/14/font-face/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 03:38:11 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=243</guid>
		<description><![CDATA[What is Font-Face? The CSS Property “@Font-Face” allows any type of font to be displayed on a website. For example, if a user doesn’t have the same fonts that the webmaster has, the fonts can still be displayed on the user’s computer without the user having the font installed locally. Font File Compatibility There are [...]]]></description>
			<content:encoded><![CDATA[<p><b>What is Font-Face?</b><br />
The CSS Property “@Font-Face” allows any type of font to be displayed on a website. For example, if a user doesn’t have the same fonts that the webmaster has, the fonts can still be displayed on the user’s computer without the user having the font installed locally. </p>
<p><b>Font File Compatibility</b><br />
There are four common types of font files that are used throughout the web. They include: Embedded OpenType (.eot), Scalable Vector Graphics (.svg), TrueType (.ttf) and Web Open Font Format (.woff).</p>
<p><b>Compatibility Chart:</b><br />
<b>EOT:</b> Internet Explorer<br />
<b>OTF:</b> Mozilla, Opera, Safari<br />
<b>TTF:</b> Chrome, Mozilla, Opera, Safari<br />
<b>SVG:</b> Chrome, Opera, Safari, Mobile Browsers</p>
<p>To generate the four file types, visit <u>Font Face Generator</u> (<a href="http://www.fontsquirrel.com/fontface/generator" target="_new">http://www.fontsquirrel.com/fontface/generator</a>)<br />
The <u>Font Face Generator</u> allows a webmaster to upload a single font file type and convert it to the other three file types. The <u>Font Face Generator</u> also generates the CSS and HTML required to display the font on the website, if coding “by hand” is not an option. </p>
<p><b>The CSS</b><br />
<code><br />
@charset "utf-8";	//file encoding</p>
<p>@font-face {<br />
font-family: 'FONTNAME';<br />
src: url('URL/NAME.eot');<br />
src: url('URL/NAME.eot?#iefix') format('embedded-opentype'),<br />
url('URL/NAME.woff') format('woff'),<br />
url('URL/NAME.ttf') format('truetype'),<br />
url('URL/NAME.svg#FONTNAME') format('svg*');<br />
}<br />
h1 {<br />
font-family: ‘FONTNAME’, Verdana, Helvetica, sans-serif;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2011/10/14/font-face/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revitalization</title>
		<link>http://www.imp3rial2.com/2011/10/01/revitalizatio/</link>
		<comments>http://www.imp3rial2.com/2011/10/01/revitalizatio/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 02:52:14 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=186</guid>
		<description><![CDATA[Don&#8217;t under dramatize my departure. It will be a sad event. - Kyle Monticone &#9834; &#8211; &#8220;New Lipstick&#8221; by the Kissaway Trail]]></description>
			<content:encoded><![CDATA[<div class="pullquote">Don&#8217;t under dramatize my departure. It will be a sad event.</div>
<p><cite>- Kyle Monticone</cite><br />
<br clear></br></p>
<div class="now-playing">&#9834; &#8211; &#8220;New Lipstick&#8221; by the Kissaway Trail</div>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2011/10/01/revitalizatio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculus Hmwk – First Derivative Test</title>
		<link>http://www.imp3rial2.com/2010/12/05/calculus-hmwk-first-derivative-test/</link>
		<comments>http://www.imp3rial2.com/2010/12/05/calculus-hmwk-first-derivative-test/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 03:22:32 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=88</guid>
		<description><![CDATA[I didn&#8217;t solve the whole problem. I merely showed how to get the problem &#8220;going.&#8221; It should help, I hope. #4. Click Here #5. Click Here #6. Click Here]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t solve the whole problem.<br />
I merely showed how to get the problem &#8220;going.&#8221;<br />
It should help, I hope.</p>
<p>#4. <a href="http://www.imp3rial2.com/school/2010/calculus/firstderivativetest-4.jpg">Click Here</a> <br />
#5. <a href="http://www.imp3rial2.com/school/2010/calculus/firstderivativetest-5.jpg">Click Here</a> <br />
#6. <a href="http://www.imp3rial2.com/school/2010/calculus/firstderivativetest-6.jpg">Click Here</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2010/12/05/calculus-hmwk-first-derivative-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculus Hmwk 2.1 pg. 104</title>
		<link>http://www.imp3rial2.com/2010/09/22/calculus-hmwk-2-1-pg-104/</link>
		<comments>http://www.imp3rial2.com/2010/09/22/calculus-hmwk-2-1-pg-104/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 02:40:45 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.imp3rial2.com/?p=61</guid>
		<description><![CDATA[Here are the links to the problems (Solved). 11,15,17(Which is actually 19 in the book) and 21 were done in class. #12. Click Here #13. Click Here #14. Click Here #16. Click Here #17. Click Here #18. Click Here #19. Click Here #20. Click Here #22. Click Here #23. Click Here #24. Click Here]]></description>
			<content:encoded><![CDATA[<p>Here are the links to the problems (Solved).<br />
11,15,17(Which is actually 19 in the book) and 21 were done in class.</p>
<p>#12. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-12.jpg">Click Here</a> <br />
#13. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-13.jpg">Click Here</a> <br />
#14. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-14.jpg">Click Here</a> <br />
#16. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-16.jpg">Click Here</a> <br />
#17. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-17.jpg">Click Here</a> <br />
#18. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-18.jpg">Click Here</a> <br />
#19. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-19.jpg">Click Here</a> <br />
#20. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-20.jpg">Click Here</a> <br />
#22. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-22.jpg">Click Here</a> <br />
#23. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-23.jpg">Click Here</a> <br />
#24. <a href="http://www.imp3rial2.com/school/2010/calculus/pg104-24.jpg">Click Here</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.imp3rial2.com/2010/09/22/calculus-hmwk-2-1-pg-104/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

