<?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>A Simple Question of Weight Ratios</title>
	<atom:link href="http:///Blog/feed" rel="self" type="application/rss+xml" />
	<link>/Blog</link>
	<description>A random collection of funny stuff, jokes, rants, opinions, news and Monty Python references</description>
	<lastBuildDate>Thu, 01 Jul 2010 02:56:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook: Remove Applications</title>
		<link>/Blog/stuff/facebook-remove-applications</link>
		<comments>/Blog/stuff/facebook-remove-applications#comments</comments>
		<pubDate>Thu, 01 Jul 2010 02:29:52 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[removal]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">/Blog/stuff/facebook-remove-applications</guid>
		<description><![CDATA[So, today I am here to write what is pretty much my first useful post on this website. After a long time of not motivating myself, I finally got around to writing a bookmarklet to make removing (de-authorizing) Facebook applications easier! If you don’t know what I’m talking about either you have never decided to [...]]]></description>
			<content:encoded><![CDATA[<p>So, today I am here to write what is pretty much my first useful post on this website. After a long time of not motivating myself, I finally got around to writing a bookmarklet to make removing (de-authorizing) Facebook applications easier! If you don’t know what I’m talking about either you have never decided to remove an application (Shame on you for not giving a damn about how many applications you allow to see your personal information), or you’ve never tried to remove more than one at once. </p>
<p>&#160;</p>
<p>Basically, when you decide to remove an application, you click the “X” and then Facebook pops up a little notification asking if you want to remove that app (which, because facebook wants to be fancy, takes about half a second for the window to pop up and then another half a second to fade away), then about one or two seconds later, a second notification pops up to tell you that you have successfully removed it (also with the previously mentioned delays). Obviously this would take up a lot of time if you want to remove several applications. </p>
<p>&#160;</p>
<p>So, to <strong>help</strong> with this annoyance, I made a <a title="WTF is a Bookmarklet?!" href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a>. While this doesn’t get rid of those notifications, it does automatically click them for you. Also, and more importantly, it adds check boxes next to each application so that you may select all of the applications which you wish to remove and then have them automatically removed. </p>
<p>&#160;</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/remove_applications.jpg" rel="shadowbox[post-127];player=img;"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Example of applications selected" border="0" alt="Example of applications selected" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/remove_applications.jpg" width="504" height="257" /></a></p>
<p>&#160;</p>
<p>Now, basically as I said, this doesn’t remove the dialog boxes. So, once you have selected the apps you want to remove and click the “Remove Selected” button, it will go through each one, clicking the dialog boxes for you, each taking about 4-5 seconds each, so it will still take time, but at least you don’t have to do it manually. </p>
<p>&#160;</p>
<p>Before I go into how to set this up, let me first say, I’m not the best JavaScript writer, so, this may be any of the following: slow, inefficient, resource hogging, semi-functional, nonfunctional. Also, use at your own risk, any damage which may occur is not my responsibility, sorry. Use at your own risk.&#160; </p>
<p>&#160;</p>
<h3>Installation:</h3>
<p>To install the bookmarklet simply drag the following link up to your browser’s bookmark bar: <a href="javascript:var CheckedInputs = new Array();var currentRemoval = 0;if(document.getElementById(&quot;editapps&quot;)){var appsContainer = document.getElementById(&quot;editapps&quot;);var appsList = null;for(y=0;y&lt;appsContainer.firstChild.childNodes.length;y++){if(appsContainer.firstChild.childNodes[y].className == &quot;editapps_list&quot;){var appsList = appsContainer.firstChild.childNodes[y];break;}}if(appsList == null){alert(&quot;Could not find div element \&quot;editapps_list\&quot;&quot;);}else{for(z=0;z&lt;appsList.childNodes.length;z++){if(/id_\w{21}/.test(appsList.childNodes[z].id)){var appsListContainer = appsList.childNodes[z];for(a=0;a&lt;appsListContainer.childNodes.length;a++){if(/id_\w{21}/.test(appsListContainer.childNodes[a].id) &amp;&amp; /editapps_allowed_\d*/.test(appsListContainer.childNodes[a].firstChild.id)){if(appsListContainer.childNodes[a].firstChild.id.match(/\d{1,}/) != null){var appLine = appsListContainer.childNodes[a].firstChild;var appId = appLine.id.match(/\d{1,}/);if(getObjectByClass(appLine,&quot;action_wrap&quot;) != null){var actionBox = getObjectByClass(appLine,&quot;action_wrap&quot;);var chkbox = document.createElement(&quot;input&quot;);var v2 = chkbox.type = &quot;checkbox&quot;;var v3 = chkbox.id = &quot;chkbx_remove_app_&quot; + appId;var v4 = chkbox.name = appId;var v5 = chkbox.className = &quot;remove_app_checkbox&quot;;var v6 = chkbox.style.cssFloat = &quot;right&quot;;var v7 = chkbox.style.margin = &quot;0 10px&quot;;var wtf = actionBox.insertBefore(chkbox,actionBox.firstChild);}else{alert(&quot;Error: Can't find action_wrap div!&quot;);}}}}}}var headerDiv = getObjectByClass(appsContainer.firstChild,&quot;viewheader&quot;);var descDiv = getObjectByClass(headerDiv,&quot;desctext&quot;);var removeButton = document.createElement(&quot;input&quot;);var val1 = removeButton.type = &quot;button&quot;;var val2 = removeButton.id = &quot;remove_applications_button&quot;;var val3 = removeButton.value = &quot;Remove Selected&quot;;removeButton.addEventListener(&quot;click&quot;,function(e) {removeSelected(); },false);var ugh = descDiv.appendChild(removeButton);}}else{alert(&quot;Wrong Page&quot;);}function getObjectByClass(parent,clName){for(x=0;x&lt;parent.childNodes.length;x++){if(parent.childNodes[x].className == clName){return parent.childNodes[x];break;}}return null;}function removeSelected(){var inputs = document.getElementsByTagName(&quot;input&quot;);CheckedInputs = new Array();for(x=0;x&lt;inputs.length;x++){if(inputs[x].className == &quot;remove_app_checkbox&quot;){if(inputs[x].checked == true){CheckedInputs.push(inputs[x].id);}}}if(CheckedInputs.length == 0){alert(&quot;You have selected no applications to remove!&quot;);}else{currentRemoval = 0;removeApp();}}function removeApp(){var id = document.getElementById(CheckedInputs[currentRemoval]).name;var a = EditAppsController.removeApplication(id, &quot;Application ID: &quot; + id, function(response) { var elem = ge(&quot;editapps_allowed_&quot; + id); elem &amp;&amp; DOM.remove(elem); });var b = setTimeout(&quot;clickRemove()&quot;,1000);currentRemoval++;}function clickRemove(){var success = true;try{document.getElementById(&quot;pop_content&quot;);}catch(e){success = false;setTimeout(&quot;clickRemove()&quot;, 100);}if(success){try{if(/uiButtonConfirm/.test(document.getElementById(&quot;pop_content&quot;).childNodes[1].childNodes[1].childNodes[0].className)){document.getElementById(&quot;pop_content&quot;).childNodes[1].childNodes[1].childNodes[0].firstChild.click();var c = setTimeout(&quot;clickOkay()&quot;,3000);}}catch(e){setTimeout(&quot;clickRemove()&quot;, 100);}}}function clickOkay(){var success = true;try{document.getElementById(&quot;pop_content&quot;);}catch(e){success = false;setTimeout(&quot;clickOkay()&quot;, 100);}if(success){try{if(/uiButtonConfirm/.test(document.getElementById(&quot;pop_content&quot;).childNodes[1].childNodes[1].childNodes[0].className)){document.getElementById(&quot;pop_content&quot;).childNodes[1].childNodes[1].childNodes[0].firstChild.click();if(currentRemoval &lt; CheckedInputs.length){var ngkrs = setTimeout(&quot;removeApp()&quot;,1000);}else{setTimeout(&quot;alert(\&quot;All selected applications have been removed!\&quot;)&quot;,500);}}}catch(e){setTimeout(&quot;clickOkay()&quot;, 100);}}}">Remove Facebook Applications</a></p>
<p>&#160;</p>
<p>If anyone is currious, the source code can be found <a href="http://yesiwouldlikefrieswiththat.com/facebook_application_bookmarklet.js">here</a>.</p>
<p>&#160;</p>
<h3>Usage:</h3>
<ol>
<li>Simply visit the Facebook application page (currently accessed by clicking Account on the top of facebook, and then Application Settings, Alternatively, you may click <a href="http://www.facebook.com/editapps.php">here</a>). </li>
<li>Click the bookmarklet. The checkboxes and button should then appear on the list of applications. </li>
<li>Check the box for any applications you wish to remove. </li>
<li>Click “Remove Selected”. </li>
</ol>
<p>The script will then go through the process of (hopefully) removing all of the applications you selected. </p>
<p>&#160;</p>
<p>As I said, this may not work correctly, so feel free to leave a message here if you have any questions, problems, or comments.</p>
]]></content:encoded>
			<wfw:commentRss>/Blog/stuff/facebook-remove-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commercial Commentary</title>
		<link>/Blog/videos/commercial-commentary</link>
		<comments>/Blog/videos/commercial-commentary#comments</comments>
		<pubDate>Sun, 25 Apr 2010 01:50:50 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[best buy]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">/Blog/videos/commercial-commentary</guid>
		<description><![CDATA[Hello again, semi-anonymous user who has, more than likely, arrived here by mistake. Today, I am taking on a new commercial which I just saw on the television. The commercial in question is a Best Buy Recycle It On commercial in which a man receives a new laptop, but doesn’t want to just throw out [...]]]></description>
			<content:encoded><![CDATA[<p>Hello again, semi-anonymous user who has, more than likely, arrived here by mistake. Today, I am taking on a new commercial which I just saw on the television. The commercial in question is a Best Buy Recycle It On commercial in which a man receives a new laptop, but doesn’t want to just throw out his old one. The man then passes the old laptop off in a “hot potato” style to another, then this process repeats. </p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:43a87904-fa16-4723-a413-c5da555a55ed"><embed src="http://www.youtube.com/v/r0BIXL7QGLQ" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
<p>&#160;</p>
<p>My response is simple: Give it to me! </p>
<p>&#160;</p>
<p>Okay. For the many of you who do not personally know me, I’m quite geeky. I really enjoy computers and frankly, one can never have to many computers. Really, I would kill for a free PC, no matter how old or crappy it may be. I don’t care if it’s an old box with 3mb of ram and a floppy disks worth of hard-drive space, I’ll take it! </p>
<p>&#160;</p>
<p>So next time you’re looking to get rid of an old PC*, remember, I’ll take it! </p>
<p>&#160;</p>
<p><font size="1">*if you don’t personally know me (and therefore don’t live close to me), you must also be looking to dispose of a few bucks for shipping. Have a nice day.</font></p>
]]></content:encoded>
			<wfw:commentRss>/Blog/videos/commercial-commentary/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bork</title>
		<link>/Blog/rants/bork</link>
		<comments>/Blog/rants/bork#comments</comments>
		<pubDate>Wed, 10 Mar 2010 04:02:30 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[bork]]></category>
		<category><![CDATA[emo]]></category>
		<category><![CDATA[lonely]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">/Blog/uncategorized/bork</guid>
		<description><![CDATA[Hello, and welcome back to another episode of aimless jabbering. At this point in time, the only subject that comes to my mind to talk about is the one subject no one really cares to read about.]]></description>
			<content:encoded><![CDATA[<p>Hello, and welcome back to another episode of aimless jabbering. </p>
<p>&#160;</p>
<p> <img style="display: block; float: none; margin-left: auto; margin-right: auto" title="this was the result of an image search for “jabbering.” I don’t get it either." border="0" alt="this was the result of an image search for “jabbering.” I don’t get it either." src="http://i112.photobucket.com/albums/n173/pizzaguy_01/Jabber.jpg" width="300" height="214" /><br />
<h6 align="center">this was the result of an image search for “jabbering.” I don’t get it either.</h6>
<p align="center">&#160;</p>
<p> <span id="more-123"></span>
<p align="left">At this point in time, the only subject that comes to my mind to talk about is the one subject no one really cares to read about—me. That’s right! Unless I come up with a meaningful topic soon, this is just going to be another one of those crappy blog posts by some random emo kid who is in need of a good hug. </p>
<p align="left">&#160;</p>
<p> <img style="display: block; float: none; margin-left: auto; margin-right: auto" title="I’m trying to be serious here, but I’m just terrible at transitions." border="0" alt="I’m trying to be serious here, but I’m just terrible at transitions." src="http://i112.photobucket.com/albums/n173/pizzaguy_01/cat-hug-1.jpg" width="300" height="230" /><br />
<h6 align="center">I’m trying to be serious here, but I’m just terrible at transitions.</h6>
<p align="center">&#160;</p>
<p align="left">Right now, I am in a state of mind where everything just seems pointless, I feel useless, everything sucks; yet, I’m actually feeling happier than I did before this point (which is quite odd considering that now I actually have more things to be down about than a few weeks ago). Perhaps I am just beginning to actually push myself to see things on the brighter side? No. I’m still not very fond of myself and whatnot. Maybe, it’s just that I am now relieved from work related stress following the final show of My Fair Lady, as well as benefits resulting from trying to accept the fact that I’m going to be depressed forever* which is in turn making me happier? That could be, it certainly seems feasible. </p>
<p align="left">&#160;</p>
<p align="left">Deeper down, that appears to be the correct answer, after all, everyone says admitting itis the first step right (accepting it is somewhere around there, I believe)? I’m still lonely as hell, but the acceptance of that loneliness for all of the foreseeable future, and the corresponding childish belief in “maybe next year a girl will like me”-ism being shattered, has helped lighten up everything because, instead of being let down constantly, I can dwell in a neutral state until something disrupts the equilibrium (which happens on a daily basis, but avoidance of disturbances like that certainly helps). However, my current weakness right now is that constant nagging part of me that is constantly falling in to the pit-trap of hope, which in every case is false hope. Hope is a lose-lose situation because, one, either it’s genuine hope that proves beneficial, or it is false hope (and for me it is <em>always</em> false hope), and, two, when it is false hope, every time one grasps that hope even a little, that person has to, again, suffer through acceptance that it is false hope. <em>(just for fun, count how many times I wrote the word “hope”).</em></p>
<p align="left">&#160;</p>
<p align="left">If you actually read this whole post, I am quite surprised—even I am not willing to go bad an read it. Thank you for your time. </p>
<p align="left">&#160;</p>
<p align="left">*forever: the period between now and at least ~1.5 years in the future, to infinity.</p>
]]></content:encoded>
			<wfw:commentRss>/Blog/rants/bork/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music to Make Valentines Day Worse</title>
		<link>/Blog/videos/music-to-make-valentines-day-worse</link>
		<comments>/Blog/videos/music-to-make-valentines-day-worse#comments</comments>
		<pubDate>Sat, 13 Feb 2010 02:47:12 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music videos]]></category>
		<category><![CDATA[valentines]]></category>

		<guid isPermaLink="false">/Blog/videos/music-to-make-valentines-day-worse</guid>
		<description><![CDATA[So, today I’m making a list of music to make your lonely Valentines Day worse*.&#160; Have fun!  
&#160;
*Only applies to people who are horribly lonely, like me. Consult your physician before use. Not valid in the state of Mississippi or Puerto Rico; void where prohibited. Batteries not included. Results may vary. 
&#160;


&#160;
 


&#160;


&#160;


&#160;


&#160;


&#160;


&#160;

]]></description>
			<content:encoded><![CDATA[<p>So, today I’m making a list of music to make your lonely Valentines Day worse*.&#160; Have fun! <img src='/Blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>&#160;</p>
<p align="right"><font size="1"><em>*Only applies to people who are horribly lonely, like me. Consult your physician before use. Not valid in the state of Mississippi or Puerto Rico; void where prohibited. Batteries not included. Results may vary.</em></font> </p>
<p align="right">&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6f72d741-01d0-4e95-8cf5-676b31968430"><embed src="http://www.youtube.com/v/2MRdtXWcgIw&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<p> <span id="more-122"></span>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:2967a3f4-01f0-4df5-a06a-b27cc07e73ce"><embed src="http://www.youtube.com/v/SO9Lj0T93Xk&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:10a35350-8e26-4c0f-9d12-de3466e07d59"><embed src="http://www.youtube.com/v/OtRaLIOoq8M&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:009db3c9-d522-4e72-99d9-57d37ac853bd"><embed src="http://www.youtube.com/v/BYE4CVhVkhw&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:31806cd6-d0bd-4c00-83a4-2599e3df19e6"><embed src="http://www.youtube.com/v/7zEm-U1hC7E&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:862ec3d7-5709-4bdd-be9e-5db41c789c07"><embed src="http://www.youtube.com/v/g0_dyc4IrLg&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:a481805c-26b6-4136-8943-09c6295670cd"><embed src="http://www.youtube.com/v/DV3tLQ2uGzs&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:bafdc83f-18a3-4fc8-ab77-d7637866d6a7"><embed src="http://www.youtube.com/v/ivu2ktfompc&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
]]></content:encoded>
			<wfw:commentRss>/Blog/videos/music-to-make-valentines-day-worse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why can&#8217;t I be this kitten?</title>
		<link>/Blog/random/why-cant-i-be-this-kitten</link>
		<comments>/Blog/random/why-cant-i-be-this-kitten#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:55:57 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[bucket]]></category>
		<category><![CDATA[kitten]]></category>

		<guid isPermaLink="false">/Blog/random/why-cant-i-be-this-kitten</guid>
		<description><![CDATA[
&#160;
Yes, yes, I know this is the type of material that you would receive in a mass email forwarding from your mother, but I really have to ask: Why can’t I be this kitten? He has a box. An awesome just-the-right-size box. I want a box. I want to be him. Seriously, this guy is [...]]]></description>
			<content:encoded><![CDATA[<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:46a927c4-5acf-4111-93f7-b90d0b027b38"><embed src="http://www.youtube.com/v/vdQj2ohqCBk&amp;hl=en_US&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></div>
<p>&#160;</p>
<p>Yes, yes, I know this is the type of material that you would receive in a mass email forwarding from your mother, but I really have to ask: Why can’t I be this kitten? He has a box. An awesome just-the-right-size box. I want a box. I want to be him. Seriously, this guy is luckier than that guy I saw with a bucket a while ago. </p>
<p>&#160;</p>
<p align="center">&#160;</p>
<p><a title="I has a bucket" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/amazons3_bucket.jpg" rel="shadowbox[kitten]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/amazons3_bucket.jpg" width="404" height="292" /></a> </p>
<p>&#160;</p>
</p>
<p>Oh well, I guess you can’t have everything <img src='/Blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>&#160;</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/stealing20my20bucket.png" rel="shadowbox[kitten]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/stealing20my20bucket.png" width="404" height="466" /></a></p>
]]></content:encoded>
			<wfw:commentRss>/Blog/random/why-cant-i-be-this-kitten/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Thanksgiving!</title>
		<link>/Blog/news/happy-thanksgiving</link>
		<comments>/Blog/news/happy-thanksgiving#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:38:34 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[thanksgiving]]></category>
		<category><![CDATA[turkey]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">/Blog/uncategorized/happy-thanksgiving</guid>
		<description><![CDATA[Happy thanksgiving everyone! 
&#160;
Now, it doesn’t take an idiot to figure out what happens next; A ton of crazy images I stole from the internets! YEY!
&#160;
 
 
&#160;

&#160;
 
&#160;
Thank you for your time. If your wondering, today, I am thankful for my family, my awesome friends, and all of the random people reading this because [...]]]></description>
			<content:encoded><![CDATA[<p>Happy thanksgiving everyone! </p>
<p>&#160;</p>
<p>Now, it doesn’t take an idiot to figure out what happens next; A ton of crazy images I stole from the internets! YEY!</p>
<p>&#160;</p>
<p><a title="U sez stuffin for Thanksgiving" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/stormy-stuffin-lol.jpg" rel="shadowbox[thanksgiving]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="stormy-stuffin-lol[1]" border="0" alt="stormy-stuffin-lol[1]" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/stormy-stuffin-lol.jpg" width="500" height="334" /></a> </p>
<p> <span id="more-113"></span><a title="U Can Haz Tofurkey, Pleez? Note: this is not the author&#39;s personal opinion, go ahead an gorge yourself on that awesome turkey!" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/loltofurkeyturkey.jpg" rel="shadowbox[thanksgiving]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="loltofurkeyturkey[1]" border="0" alt="loltofurkeyturkey[1]" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/loltofurkeyturkey.jpg" width="500" height="373" /></a>
<p>&#160;</p>
<p><a title="Klingon Turkeys" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/klingon-turkeys-klingon-turkey-turk.jpg" rel="shadowbox[thanksgiving]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="klingon-turkeys-klingon-turkey-turk[1]" border="0" alt="klingon-turkeys-klingon-turkey-turk[1]" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/klingon-turkeys-klingon-turkey-turk.jpg" width="500" height="473" /></a></p>
<p>&#160;</p>
<p><a title="Redneck Thanksgiving" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/redneck-thanksgiving-demotivational.jpg" rel="shadowbox[thanksgiving]"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="redneck-thanksgiving-demotivational[1]" border="0" alt="redneck-thanksgiving-demotivational[1]" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/redneck-thanksgiving-demotivational.jpg" width="500" height="638" /></a> </p>
<p>&#160;</p>
<p>Thank you for your time. If your wondering, today, I am thankful for my family, my awesome friends, and all of the random people reading this because they Google image searched any random mash-up of words with the term “demotivational” appended to the end.</p>
<p>&#160;</p>
<p>I’ll end this with a nice video <img src='/Blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>&#160;</p>
<h4 align="center"><a title="Super Sloppy Thanksgiving" href="http://www.collegehumor.com/video:1726131" rel="shadowbox[thanksgiving];width=906;height=546">CollegeHumor: Super Sloppy Thanksgiving</a></h4>
]]></content:encoded>
			<wfw:commentRss>/Blog/news/happy-thanksgiving/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planning for college?</title>
		<link>/Blog/college/planning-for-college</link>
		<comments>/Blog/college/planning-for-college#comments</comments>
		<pubDate>Mon, 12 Oct 2009 01:08:44 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[prep]]></category>
		<category><![CDATA[scholarship]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[zinch]]></category>

		<guid isPermaLink="false">http://yesiwouldlikefrieswiththat.com/Blog/college/planning-for-college</guid>
		<description><![CDATA[Well, if you are, then you are like me. If your aren’t you probably know someone who is, so you might want to pass this on to them. 
&#160;
Today, as I was browsing around looking for various scholarships and other methods for increasing my visibility to colleges I found a great website: Zinch.com. Basically, this [...]]]></description>
			<content:encoded><![CDATA[<p>Well, if you are, then you are like me. If your aren’t you probably know someone who is, so you might want to pass this on to them. </p>
<p>&#160;</p>
<p>Today, as I was browsing around looking for various scholarships and other methods for increasing my visibility to colleges I found a great website: <a href="http://www.zinch.com/Anonymous/StudentRegister.aspx?affid=1451835" target="_blank">Zinch.com</a>. Basically, this site is a social networking site, but besides simply connecting you to other people, it also connects you to colleges. All a person has to do is fill out a facebook-like profile and you are out in the view of hundreds of potential colleges. </p>
<p>&#160;</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/633565790529800496-college.jpg" rel="shadowbox[college]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/633565790529800496-college.jpg" /></a> </p>
<p>&#160;</p>
<p>Not only does Zinch help you connect with colleges, it also uses your information to find available scholarships from their databases containing thousands of potential scholarships. In less than two hours I have already applied to, at least, four different scholarships. </p>
<p>&#160;</p>
<p>Want to know more? Here is a quote from their website:</p>
<blockquote><p>Based on our comprehensive student profile, we can match students to any scholarship out there. Students tell us who they are&#8230;and we hook them up with scholarships that matter. Zinch allows students to learn about, get recruited by, and interact with more than 726 colleges and universities from all over the world. And it happens on a platform that students embrace &#8211; the web.</p>
</blockquote>
<p>&#160;</p>
<p>So, what are you waiting for? Why don’t you take a few minutes and <a href="http://www.zinch.com/Anonymous/StudentRegister.aspx?affid=1451835" target="_blank">sign up</a> like I did, because its a win-win situation, this can only help you. </p>
<p>&#160;</p>
<p> <a href="http://www.zinch.com/Anonymous/StudentRegister.aspx?affid=1451835"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.zinch.com/images/tools/250x250-2.jpg" /></a>
</p>
<p>&#160;</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/Physics.jpg" rel="shadowbox[college]" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/Physics.jpg" /></a></p>
<p>&#160;</p>
<p>So, to congratulate your good work, have some college related videos! <img src='/Blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>&#160;</p>
<h3></h3>
<h3><a href="http://www.collegehumor.com/video:1830262" rel="shadowbox[college];width=906;height=546" target="_blank">Professor Wikipedia</a></h3>
<h3><a href="http://www.collegehumor.com/video:1813834" rel="shadowbox[college];width=906;height=546" target="_blank">Guy Stuck In Class</a></h3>
<h3><a href="http://www.youtube.com/watch?v=VRVFfgoIKcg" rel="shadowbox[post-110];player=swf;width=640;height=385;" target="_blank">Asher Roth – I Love College</a></h3>
<p>(link is higher quality than the embeded video)</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:fbab8acb-f4cc-45bf-969d-4830642f578d" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/-dAtnq55yEw&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en"></param><embed src="http://www.youtube.com/v/-dAtnq55yEw&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>/Blog/college/planning-for-college/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This post contains no CFC&#8217;s</title>
		<link>/Blog/random/this-post-contains-no-cfcs</link>
		<comments>/Blog/random/this-post-contains-no-cfcs#comments</comments>
		<pubDate>Sat, 10 Oct 2009 23:21:23 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[aim]]></category>
		<category><![CDATA[demotivational]]></category>
		<category><![CDATA[island]]></category>
		<category><![CDATA[lonely]]></category>
		<category><![CDATA[mlia]]></category>
		<category><![CDATA[posters]]></category>
		<category><![CDATA[shirt]]></category>
		<category><![CDATA[snl]]></category>
		<category><![CDATA[star]]></category>
		<category><![CDATA[trek]]></category>

		<guid isPermaLink="false">http://yesiwouldlikefrieswiththat.com/Blog/random/this-post-contains-no-cfcs</guid>
		<description><![CDATA[Once again, boredom, as well as encounters with stories that give validity&#160; to stereotypes, has driven me to try to write a post about something intellectual and actually worth reading. However, as you may very well expect, I’m not going to do that. So, instead, I’m just going to post a mix of Links, quotes [...]]]></description>
			<content:encoded><![CDATA[<p>Once again, boredom, as well as encounters with stories that give validity&#160; to stereotypes, has driven me to try to write a post about something intellectual and actually worth reading. However, as you may very well expect, I’m not going to do that. So, instead, I’m just going to post a mix of Links, quotes and pictures for the sake of brief entertainment.</p>
<p>&#160;</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/demotivate_stars.png" rel="shadowbox[cfc]" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/demotivate_stars.png" /></a> </p>
<p> <span id="more-109"></span>
<p>First off, here are some stories from one of my favorite websites, <a href="http://mylifeisaverage.com/" target="_blank">MyLifeIsAverage</a>.</p>
<blockquote><p>Today, in health class, everyone started talking about where they were going for winter break. After someone said they were going to Kansas, a girl said &quot;Wait! Kansas is real? I thought they made it up in the Wizard of Oz.&quot; That shows how great the school system is. MLIA. [<a href="http://mylifeisaverage.com/story.php?id=879262" target="_blank">link</a>]</p>
</blockquote>
<blockquote><p>Yesterday, as I was walking down the hall to get to my next class, two cheerleaders were walking and listening to Fergie&#8217;s song &quot;Glamorous&quot;. As they sang along to the part where she sings &quot;G-L-A-M-O-R-O-U-S&quot;, one of them turned to the other and said &quot;What the hell is she spelling anyways?&quot; Never will I doubt the stereotypes again. MLIA</p>
<p>[<a href="http://mylifeisaverage.com/story.php?id=879045" target="_blank">link</a>]</p>
</blockquote>
<blockquote><p>Today I went to see a local production of The 25th Annual Putnam County Spelling Bee (a Musical). A bunch of old ladies were reading the program. One read a song title out loud &#8216;My Unfortunate Erection&#8217; and they all started laughing. It appears you never grow out of that. MLIA. [<a href="http://mylifeisaverage.com/story.php?id=876226" target="_blank">link</a>]</p>
</blockquote>
<blockquote><p>Today, I found a site where all you do is pop bubble wrap. Hello, new hobby. Goodbye, entire social life. MLIA. [<a href="http://mylifeisaverage.com/story.php?id=875949" target="_blank">link</a>] [<a href="http://www.virtual-bubblewrap.com/popnow.shtml" target="_blank">link to the site you now desperately want to visit</a>]</p>
</blockquote>
<p>&#160;</p>
<p>Wasn’t that fun?</p>
<p>&#160;</p>
<p>Now for some other crap</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/633545248111283507-segwayyouredoing.jpg" rel="shadowbox[cfc]" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/633545248111283507-segwayyouredoing.jpg" /></a> </p>
<table style="float: none; margin-left: auto; margin-right: auto" border="0" cellspacing="0" cellpadding="2" width="510">
<tbody>
<tr>
<td valign="top" width="255"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/633496835754106781-geek-humor.jpg" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/633496835754106781-geek-humor.jpg" width="253" height="171" /></a> </td>
<td valign="top" width="255"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/29464360tn6.jpg" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/29464360tn6.jpg" width="253" height="202" /></a> </td>
</tr>
<tr>
<td valign="top" width="255"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/1213839739431.jpg" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/1213839739431.jpg" width="253" height="202" /></a> </td>
<td valign="top" width="255"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/suddenly_bananas.png" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/suddenly_bananas.png" width="253" height="202" /></a> </td>
</tr>
<tr>
<td valign="top" width="255"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/warnings.jpg" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/warnings.jpg" width="253" height="202" /></a> </td>
<td valign="top" width="255">
<p align="center"><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/internethere.jpg" rel="shadowbox[cfc]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/internethere.jpg" width="253" height="202" /></a>&#160;</p>
</td>
</tr>
</tbody>
</table>
</p>
</p>
<p><a href="http://i112.photobucket.com/albums/n173/pizzaguy_01/common-sense.jpg" rel="shadowbox[cfc]" target="_blank"><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/common-sense.jpg" width="510" height="646" /></a></p>
<p>&#160;</p>
<p>And now, I leave you with a simple message. You can’t trust the system.</p>
<p>&#160;</p>
<h1>Throw it on the ground!</h1>
<div style="padding-bottom: 0px; padding-left: 0px; width: 512px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cdfe4d01-998b-44ee-b016-39450cef194d" class="wlWriterEditableSmartContent">
<div><object width="512" height="296"><param name="movie" value="http://www.hulu.com/embed/ovYI7ZF7gZYZDS7o7v4X7w"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.hulu.com/embed/ovYI7ZF7gZYZDS7o7v4X7w" type="application/x-shockwave-flash" allowFullScreen="true" width="512" height="296"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>/Blog/random/this-post-contains-no-cfcs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rough Road Ahead</title>
		<link>/Blog/news/rough-road-ahead</link>
		<comments>/Blog/news/rough-road-ahead#comments</comments>
		<pubDate>Sun, 16 Aug 2009 01:37:45 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[addresses]]></category>
		<category><![CDATA[demotivational]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[pic unrelated]]></category>
		<category><![CDATA[posters]]></category>

		<guid isPermaLink="false">http://yesiwouldlikefrieswiththat.com/Blog/news/rough-road-ahead</guid>
		<description><![CDATA[So starting tomorrow, a transition is going to occur that may or may not cause trouble with this site. I am getting a new internet connection which means two things: one, my internet connection will not go down when the weather changes (hopefully), and, two, I will no longer have a static IP address. 
&#160;
[Warning: [...]]]></description>
			<content:encoded><![CDATA[<p>So starting tomorrow, a transition is going to occur that may or may not cause trouble with this site. I am getting a new internet connection which means two things: one, my internet connection will not go down when the weather changes (hopefully), and, two, I will no longer have a static IP address. </p>
<p>&#160;</p>
<p align="center"><strong>[Warning: Educational Content – <a href="#nonedu">Skip past education</a>]</strong></p>
<p align="center"><a title="Education - It doesnt have to be boring" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/education-demotivational-poster-121.jpg" rel="shadowbox" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/education-demotivational-poster-121.jpg" width="500" height="434" /></a> </p>
<p>&#160;</p>
<p>For those of you who aren’t computer savvy, IP addresses are the numbers that basically tell computers where to go in order to access a website. Taken from wikipedia:</p>
<p>&#160;</p>
<blockquote><p>An Internet Protocol (IP) address is a numerical identification and logical address that is assigned to devices participating in a computer network utilizing the Internet Protocol for communication between its nodes… The role of the IP address has been characterized as follows: &quot;A name indicates what we seek. An address indicates where it is. A route indicates how to get there.&quot;</p>
</blockquote>
<p>&#160;</p>
<div id='extendedEntryBreak' name='extendedEntryBreak'></div>
<p>The average Internet user has a dynamic IP address, which means it changes and does not stay the same. One day your IP address might be 123.123.123.123, but another day it might be 111.222.011.022. However, a static IP is one that does not change. A static IP is typically required to run a website, because when someone types in a website name, the DNS server (i’ll spare you all and not explain that) looks up the name and tells your computer the IP of that website. </p>
<p>&#160;</p>
<p>If the IP of that website ever changes, the DNS server has to be updated, or else it will send you to the wrong website (or to a server that does not exist).</p>
<p>&#160;</p>
<p align="center"><strong><a name="nonedu">[End of severe education]</a></strong></p>
<p align="center"><strong></strong></p>
</p>
<p>So basically, as I said, I am loosing the static IP address. This leaves me with two options, plan A and plan B. Plan A: Because the address doesn’t change too often all I need to do is update the DNS with the current IP if it ever changes. This is a temporary solution and should work as long as nothing malfunctions. The draw back is the necessary work, and it takes time to update the server, so the website could be “down” for almost a day. Plan B: Don’t host my website at home. That’s a simple and easy solution, but what’s fun about that? </p>
<p>&#160;</p>
<p>So, in summary, if you can’t access this site (then again who would want to), its because of this stuff and it should be back up eventually. </p>
<p>&#160;</p>
<p>Now, because I don’t want to leave you all with some boring post about internet protocol, here is a nice heaping serving of “pic unrelated” </p>
<p>&#160;</p>
<table border="0" cellspacing="0" cellpadding="2" width="510">
<tbody>
<tr>
<td valign="top" width="170"><a title="pic unrelated" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/funny-pictures-a-letter-from-a-very.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/funny-pictures-a-letter-from-a-very.jpg" width="169" height="158" /></a> </td>
<td valign="top" width="170"><a title="Midkip" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/mudkip.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/mudkip.jpg" width="169" height="211" /></a> </td>
<td valign="top" width="170"><a title="Trust" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/46FIBH5TKLOLILVYQHFHI7EMATV7OJAA_.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/46FIBH5TKLOLILVYQHFHI7EMATV7OJAA_.jpg" width="169" height="135" /></a> </td>
</tr>
<tr>
<td valign="top" width="170"><a title="Pokemans" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/Pokemans.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/Pokemans.jpg" width="169" height="135" /></a> </td>
<td valign="top" width="170"><a title="LOL" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/lol-2.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/lol-2.jpg" width="169" height="135" /></a> </td>
<td valign="top" width="170"><a title="Canadian Street Gangs" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/attachment.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img style="display: inline; margin-left: 0px; margin-right: 0px" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/attachment.jpg" width="169" height="127" /></a> </td>
</tr>
<tr>
<td valign="top" width="170"><a title="Fukitol" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/poster81596606.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/poster81596606.jpg" width="169" height="211" /></a> </td>
<td valign="top" width="170"><a title="FAA" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/demfaavt9.jpg" rel="shadowbox[pic unrelated]" target="_blank"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/demfaavt9.jpg" width="169" height="135" /></a> </td>
<td valign="top" width="170"><a title="Rules" href="http://i112.photobucket.com/albums/n173/pizzaguy_01/poster62577569.jpg" target="_blank" rel="shadowbox[pic unrelated]"><img src="http://i112.photobucket.com/albums/n173/pizzaguy_01/poster62577569.jpg" width="169" height="211" /></a> </td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>/Blog/news/rough-road-ahead/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitting on a rooftop making time stop</title>
		<link>/Blog/news/sitting-on-a-rooftop-making-time-stop</link>
		<comments>/Blog/news/sitting-on-a-rooftop-making-time-stop#comments</comments>
		<pubDate>Thu, 13 Aug 2009 21:49:54 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[demotivational]]></category>
		<category><![CDATA[end]]></category>
		<category><![CDATA[freshman]]></category>
		<category><![CDATA[hampster]]></category>
		<category><![CDATA[idots]]></category>
		<category><![CDATA[procrastination]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[theory of a deadman]]></category>
		<category><![CDATA[toad]]></category>

		<guid isPermaLink="false">http://yesiwouldlikefrieswiththat.com/Blog/news/sitting-on-a-rooftop-making-time-stop</guid>
		<description><![CDATA[Well, sadly, it is that time again. Its the time when the summer is ending and we all have to go back to school. Usually, I don’t mind going back; I mean, I like not having school, but normally I hadn’t ever had anything to exciting happen and therefore the summer was just another vacation. [...]]]></description>
			<content:encoded><![CDATA[<p>Well, sadly, it is that time again. Its the time when the summer is ending and we all have to go back to school. Usually, I don’t mind going back; I mean, I like not having school, but normally I hadn’t ever had anything to exciting happen and therefore the summer was just another vacation. But this summer was a bit different, even though I spent most of my time at home, it was still really fun, lots of things happened, and it was probably one of my most memorable summers. However, as fun as it was, I am still excited about school. Not so much about the work and educational opportunities, but more about the simple social aspect of it; seeing my friends and meeting new ones.&#160;&#160; </p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:00f439f1-5c9b-40ec-96e9-a6e41a2dee8a" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/on-qaC-TGoA&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en"></param><embed src="http://www.youtube.com/v/on-qaC-TGoA&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<h6 align="center">Freshman</h6>
<p><span id="more-104"></span>  <br /> 
<p>Yesterday, I went to school and picked up my schedule with my friends. Its pretty nice, but I want to try to get some different teachers. However, I would like to take this opportunity to rant about idiots. </p>
<p>&#160;</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/howtopost/idiocy.jpg" /> </p>
</p>
<p>&#160;</p>
<p>Because yesterday was the first day to pick up schedules, there were a lot of people in line. Because of this some of the faculty tried to organize the line by having everyone stand (almost) single file to the right side, so that people could exit to the left. So of course, this meant that some people found it necessary to immediately walk up the newly opened space to talk with their friends at the front of the line, further blocking the left side again. Seriously, does common sense just not exist in some people? That concludes my rant. </p>
<p>&#160;</p>
<p>As of right now, I have 4 full days left before school starts. I finished the one book I had to read for summer yesterday, <em>A Prayer For Owen Meany</em>. It was dull in the beginning but it had some good parts. It was certainly a thought invoking book. The ending was surprisingly good, because you know how its going to end, but at the same time, you don’t. I also have a math packet and an essay that I have to write, both of which I haven’t even started. </p>
<p>&#160;</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://i112.photobucket.com/albums/n173/pizzaguy_01/procrastination01cc7.jpg" /> </p>
<p>&#160;</p>
<p>Oh well, I should be able to finish both of those within a day or two. And with that, I am going to wrap of this post with a related music “video”. Good bye, have a nice day! </p>
<p>&#160;</p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:34163faa-f963-4aa3-b01a-c888e5948589" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/4OTjxwlyutE&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en"></param><embed src="http://www.youtube.com/v/4OTjxwlyutE&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>/Blog/news/sitting-on-a-rooftop-making-time-stop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
