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

<channel>
	<title>Anthology of Ideas &#187; fun</title>
	<atom:link href="http://anthologyoi.com/tag/fun/feed" rel="self" type="application/rss+xml" />
	<link>http://anthologyoi.com</link>
	<description>Anthology of Ideas is an archive of thoughts and form.</description>
	<lastBuildDate>Sat, 03 Mar 2012 11:16:55 +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>Short Ajax Script</title>
		<link>http://anthologyoi.com/dev/short-ajax-script.html</link>
		<comments>http://anthologyoi.com/dev/short-ajax-script.html#comments</comments>
		<pubDate>Tue, 13 May 2008 15:40:50 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Web Developing]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/minimalist-ajax-script.html</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="flickrImage_4" class="wp-caption alignleft" style="width: 250px"><a href="http://www.flickr.com/photos/jaywood/" rel="nofollow"  target="_blank"><img src="http://farm7.static.flickr.com/6065/6126357875_ca3058c8fd_m.jpg" width="240" height="160" /></a><p class="wp-caption-text">AJAX - it</p></div>
<p>I wanted to see how small you could make a fully functional AJAX script that worked cross-browser and degraded gracefully, so I went through an old custom AJAX script and made it as small as I possibly could. In the resulting AJAX scripts, the post version is 410 characters and the GET version is only 359 characters long. The scripts are fully functional and accept the following parameters: URL, DATA (in string form), and ELEMENT (to update).</p>
<p>The scripts could be a little smaller, but it would really kill readability. </p>
<h3>&#8220;Get&#8221; AJAX Script</h3>
<p><pre class="brush: php">function a(l,d,u){
try{r = new XMLHttpRequest();}catch(e){try {r = new ActiveXObject(&#039;Msxml2.XMLHTTP&#039;);}catch(e){r = new ActiveXObject(&#039;Microsoft.XMLHTTP&#039;);}}
if(r){
r.onreadystatechange = function() {if (r.readyState == 4 &amp;&amp; r.status == 200){document.getElementById(u).innerHTML = r.responseText;}}
r.open(&#039;GET&#039;, l+&#039;?&#039;+d, true);r.send(d);
}
}</pre></p>
<h3>&#8220;Post&#8221; AJAX Script</h3>
<p><pre class="brush: php">function b(l,d,u){
try{r = new XMLHttpRequest();} catch(e){try {r = new ActiveXObject(&#039;Msxml2.XMLHTTP&#039;);} catch(e){r = new ActiveXObject(&#039;Microsoft.XMLHTTP&#039;);}}
if(r){
r.onreadystatechange = function() {if (r.readyState == 4 &amp;&amp; r.status == 200){document.getElementById(u).innerHTML=r.responseText;}}
r.open(&#039;POST&#039;, l, true);r.setRequestHeader(&#039;Content-type&#039;, &#039;application/x-www-form-urlencoded&#039;);r.send(d);
}
}</pre></p>
<h3>Combined AJAX Script</h3>
<p>This combined script also accepts a fourth parameter &#8216;p&#8217; that should evaluate true if the data is to be sent by post.</p>
<p><pre class="brush: php">function a(l,d,u,p){
try{r = new XMLHttpRequest();}catch(e){try {r = new ActiveXObject(&#039;Msxml2.XMLHTTP&#039;);}catch(e){r = new ActiveXObject(&#039;Microsoft.XMLHTTP&#039;);}}
if(r){
r.onreadystatechange = function() {if (r.readyState == 4 &amp;&amp; r.status == 200){document.getElementById(u).innerHTML = r.responseText;}}
if(p){r.open(&#039;POST&#039;, l, true);r.setRequestHeader(&#039;Content-type&#039;, &#039;application/x-www-form-urlencoded&#039;);}else{r.open(&#039;GET&#039;, l+&#039;?&#039;+d, true);}
}
}</pre></p>
<p>Demo: (Sorry but you will have to go to the full page so the JavaScript is loaded.) <span id="more-220"></span><br />
<a href="?p=220" onclick="b('http://anthologyoi.com/index.php','p=220','hi'); return false;">Click here to see the POST HTML of the homepage</a><br />
<a href="?p=220" onclick="a('http://anthologyoi.com/index.php','p=220','hi'); return false;">Click here to see the GET HTML of the homepage</a><br />
 (they are the same)<br />
<textarea id="hi" rows="5" columns="5"></textarea></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/dev/short-ajax-script.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oh I am a gummy bear; yes, I am a gummy bear&#8230;</title>
		<link>http://anthologyoi.com/blogish/asides/oh-i-am-a-gummy-bear-yes-i-am-a-gummy-bear.html</link>
		<comments>http://anthologyoi.com/blogish/asides/oh-i-am-a-gummy-bear-yes-i-am-a-gummy-bear.html#comments</comments>
		<pubDate>Tue, 29 Apr 2008 17:35:25 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/?p=561</guid>
		<description><![CDATA[The best thing to come out of YouTube since the Kiwi: the Gummy bear song. Oder, ich bin ein gummi BÃ¤r; ich bin ein gummi BÃ¤r. All right, all right. Back to your regularly scheduled broadcasting.]]></description>
			<content:encoded><![CDATA[<p>The best thing to come out of YouTube since the <a href="http://anthologyoi.com/blogish/snif.html">Kiwi</a>: the Gummy bear song.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Z47EUaIFrdQ&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Z47EUaIFrdQ&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Oder, ich bin ein gummi BÃ¤r; ich bin ein gummi BÃ¤r.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/gC0sIwcAi1A&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gC0sIwcAi1A&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>All right, all right. Back to your regularly scheduled broadcasting.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/oh-i-am-a-gummy-bear-yes-i-am-a-gummy-bear.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>My feeds. You&#8217;ve kept me entertained, now I&#8217;m returning the favor.</title>
		<link>http://anthologyoi.com/blogish/my-feed-list.html</link>
		<comments>http://anthologyoi.com/blogish/my-feed-list.html#comments</comments>
		<pubDate>Mon, 17 Mar 2008 00:30:33 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Blogish]]></category>
		<category><![CDATA[Linkage]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/?p=518</guid>
		<description><![CDATA[Ever wondered or cared what I read in the mornings? [RSS] Aardvarchaeology [RSS] Accelerating Future [RSS] Adventures in Ethics and Science [RSS] Aetiology [RSS] Anthology of Ideas Yah, I subscribe to my own feed&#8230;but only so I can make sure &#8230; <a href="http://anthologyoi.com/blogish/my-feed-list.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever wondered or cared what I read in the mornings?</p>
<ul>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/lgtN">RSS</a>] <a href="http://scienceblogs.com/aardvarchaeology/">Aardvarchaeology</a></li>
<li>[<a href="http://feeds.feedburner.com/AcceleratingFuture">RSS</a>] <a href="http://www.acceleratingfuture.com/michael/blog">Accelerating Future</a></li>
<li>[<a href="http://scienceblogs.com/ethicsandscience/atom.xml">RSS</a>] <a href="http://scienceblogs.com/ethicsandscience/">Adventures in Ethics and Science</a></li>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/aetiology">RSS</a>] <a href="http://scienceblogs.com/aetiology/">Aetiology</a></li>
<li>[<a href="http://feeds.feedburner.com/AnthologyOfIdeas">RSS</a>] <a href="http://anthologyoi.com">Anthology of Ideas</a> Yah, I subscribe to my own feed&#8230;but only so I can make sure everything comes out nice&#8230;</li>
<li>[<a href="http://feeds.b5media.com/b5media/AstronomyBuff">RSS</a>] <a href="http://www.astronomybuff.com">Astronomy Buff</a></li>
<li>[<a href="http://feeds.feedburner.com/BadLanguage">RSS</a>] <a href="http://www.badlanguage.net">Bad Language</a></li>
<li>[<a href="http://feeds.b5media.com/b5media/BehindTheBuzz">RSS</a>] <a href="http://www.behindthebuzz.com">behindthebuzz.com</a></li>
<li>[<a href="http://www.blogmaverick.com/rss.xml">RSS</a>] <a href="http://www.blogmaverick.com">Blog Maverick</a></li>
<li>[<a href="http://feeds.feedburner.com/chrisgcom">RSS</a>] <a href="http://www.chrisg.com">Chris Garrett on New Media</a></li>
<li>[<a href="http://twistedphysics.typepad.com/cocktail_party_physics/rss.xml">RSS</a>] <a href="http://twistedphysics.typepad.com/cocktail_party_physics/">Cocktail Party Physics</a></li>
<li>[<a href="http://scienceblogs.com/cognitivedaily/atom.xml">RSS</a>] <a href="http://scienceblogs.com/cognitivedaily/">Cognitive Daily</a></li>
<li>[<a href="http://www.giantitp.com/comics/comics.rss">RSS</a>] <a href="http://www.giantitp.com/Comics.html">Comics at GiantITP.com</a> One of my Favorite Webcomics</li>
<li>[<a href="http://feeds.copyblogger.com/Copyblogger">RSS</a>] <a href="http://www.copyblogger.com">Copyblogger</a></li>
<li>[<a href="http://cosmicvariance.com/feed/">RSS</a>] <a href="http://cosmicvariance.com">Cosmic Variance</a></li>
<li>[<a href="http://www.cssbeauty.com/rss/gallery/">RSS</a>] <a href="http://www.cssbeauty.com/">CSS Beauty Gallery Entries</a></li>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/XzkC">RSS</a>] <a href="http://scienceblogs.com/deepseanews/">Deep Sea News</a></li>
<li>[<a href="http://scienceblogs.com/evolgen/atom.xml">RSS</a>] <a href="http://scienceblogs.com/evolgen/">evolgen</a></li>
<li>[<a href="http://feeds.feedburner.com/fosswire">RSS</a>] <a href="http://fosswire.com">FOSSwire</a></li>
<li>[<a href="http://feeds.feedburner.com/FreelanceSwitch">RSS</a>] <a href="http://freelanceswitch.com">Freelance Switch</a></li>
<li>[<a href="http://www.lukew.com/ff/rss.asp">RSS</a>] <a href="http://www.lukew.com/ff/">Functioning Form: Interface Design</a></li>
<li>[<a href="http://feeds.feedburner.com/gtutor">RSS</a>] <a href="http://www.googletutor.com">Google Tutor</a></li>
<li>[<a href="http://feeds.feedburner.com/hicksdesign">RSS</a>] <a href="http://www.hicksdesign.co.uk/">hicksdesign &#8211; journal</a></li>
<li>[<a href="http://liquidat.wordpress.com/feed/">RSS</a>] <a href="http://liquidat.wordpress.com">/home/liquidat</a></li>
<li>[<a href="http://icanhaslinux.com/feed/">RSS</a>] <a href="http://icanhaslinux.com">I Can Has Linux?</a></li>
<li>[<a href="http://ifacethoughts.net/feed/">RSS</a>] <a href="http://ifacethoughts.net">iface thoughts</a></li>
<li>[<a href="http://tan-com.com/jatecblog/?q=rss.xml">RSS</a>] <a href="http://tan-com.com/jatecblog">Jatecblog &#8211; Linux, Open Source, Web Design, and more.</a></li>
<li>[<a href="http://blogs.usyd.edu.au/labrats/atom.xml">RSS</a>] <a href="http://blogs.usyd.edu.au/labrats/">Life of a Lab Rat</a></li>
<li>[<a href="http://lorelle.wordpress.com/feed/">RSS</a>] <a href="http://lorelle.wordpress.com">Lorelle on WordPress</a></li>
<li>[<a href="http://www.makezine.com/blog/archive/weekend_projects/index.xml">RSS</a>] <a href="http://blog.makezine.com/blog/archive/weekend_projects/">MAKE Magazine: Weekend Projects</a></li>
<li>[<a href="http://feeds.feedburner.com/mappingtheweb">RSS</a>] <a href="http://www.mappingtheweb.com">Mapping The Web</a></li>
<li>[<a href="http://www.markevanstech.com/feed/">RSS</a>] <a href="http://www.markevanstech.com">Mark Evans</a></li>
<li>[<a href="http://valokuva.org/?feed=rss2">RSS</a>] <a href="http://valokuva.org">Mikko&#8217;s blog</a></li>
<li>[<a href="http://striderweb.com/nerdaphernalia/feed/">RSS</a>] <a href="http://striderweb.com/nerdaphernalia">Nerdaphernalia</a></li>
<li>[<a href="http://www.npr.org/rss/podcast.php?id=4538138">RSS</a>] <a href="http://www.npr.org/templates/story/story.php?storyId=4538138&amp;ft=2&amp;f=4538138">NPR: This I Believe</a></li>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/hOmF">RSS</a>] <a href="http://scienceblogs.com/twominds/">Of Two Minds</a></li>
<li>[<a href="http://googleblog.blogspot.com/atom.xml">RSS</a>] <a href="http://googleblog.blogspot.com/">Official Google Blog</a></li>
<li>[<a href="http://friedcellcollective.net/outbreak/feed/atom/">RSS</a>] <a href="http://friedcellcollective.net/outbreak">outbreak</a></li>
<li>[<a href="http://feeds.feedburner.com/performancing">RSS</a>] <a href="http://performancing.com">Performancing.com &#8211; Helping Bloggers Succeed</a></li>
<li>[<a href="http://scienceblogs.com/pharyngula/atom.xml">RSS</a>] <a href="http://scienceblogs.com/pharyngula/">Pharyngula</a></li>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/FIQC">RSS</a>] <a href="http://scienceblogs.com/retrospectacle/">Retrospectacle: A Neuroscience Blog</a></li>
<li>[<a href="http://blog.ruhlman.com/ruhlmancom/rss.xml">RSS</a>] <a href="http://blog.ruhlman.com/ruhlmancom/">ruhlman.com</a></li>
<li>[<a href="http://feeds.feedburner.com/snookca">RSS</a>] <a href="http://snook.ca/jonathan/">Snook.ca</a></li>
<li>[<a href="http://www.techdirt.com/techdirt_rss.xml">RSS</a>] <a href="http://www.techdirt.com/">Techdirt</a></li>
<li>[<a href="http://www.terminally-incoherent.com/blog/feed/">RSS</a>] <a href="http://www.terminally-incoherent.com/blog">Terminally Incoherent</a></li>
<li>[<a href="http://feeds.feedburner.com/TheLongTail">RSS</a>] <a href="http://www.longtail.com/the_long_tail/">The Long Tail</a></li>
<li>[<a href="http://scienceblogs.com/loom/atom.xml">RSS</a>] <a href="http://scienceblogs.com/loom/">The Loom</a></li>
<li>[<a href="http://www.christianmontoya.com/feed/">RSS</a>] <a href="http://www.christianmontoya.com">The Montoya Herald</a></li>
<li>[<a href="http://rss.thenoobcomic.com/rss.xml">RSS</a>] <a href="http://www.thenoobcomic.com">The noob</a></li>
<li>[<a href="http://feed.torrentfreak.com/Torrentfreak/">RSS</a>] <a href="http://torrentfreak.com">TorrentFreak</a></li>
<li>[<a href="http://feeds.feedburner.com/UbuntuTutorials">RSS</a>] <a href="http://ubuntu-tutorials.com">Ubuntu Tutorials : Dapper &#8211; Edgy &#8211; Feisty &#8211; Gutsy</a></li>
<li>[<a href="http://feeds.feedburner.com/scienceblogs/uncertainprinciples">RSS</a>] <a href="http://scienceblogs.com/principles/">Uncertain Principles</a></li>
<li>[<a href="http://feeds.feedburner.com/nonoscience">RSS</a>] <a href="http://www.arunn.net/blog">Unruled Notebook</a></li>
<li>[<a href="http://wordpress.org/support/rss/tags/ajaxd-wordpress">RSS</a>] <a href="http://wordpress.org/support/">WordPress &#8220;º Support Tag: ajaxd-wordpress</a></li>
<li>[<a href="http://xkcd.com/rss.xml">RSS</a>] <a href="http://xkcd.com/">xkcd.com</a></li>
<li>[<a href="http://feeds.feedburner.com/Zooillogix">RSS</a>] <a href="http://scienceblogs.com/zooillogix/">Zooillogix</a></li>
</ul>
<p>That covers most everybody. Got a favorite blog that you think I might like too? Feel free to post a comment. I think I&#8217;ll make this a monthly feature. <img src='http://anthologyoi.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/my-feed-list.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Looking for locksmith; will pay 550 thousand dollars.</title>
		<link>http://anthologyoi.com/blogish/looking-for-locksmith-will-pay-550-thousand-dollars.html</link>
		<comments>http://anthologyoi.com/blogish/looking-for-locksmith-will-pay-550-thousand-dollars.html#comments</comments>
		<pubDate>Fri, 07 Mar 2008 14:47:46 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Blogish]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[spammers]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/looking-for-locksmith-will-pay-550-thousand-dollars.html</guid>
		<description><![CDATA[I was going to help this poor man, but &#8220;offortunitely,&#8221; I don&#8217;t have a hammer. Maybe you can? Dear Sir, This is john kamara from Liberia West Africa. I am the only son of my father. My late father was &#8230; <a href="http://anthologyoi.com/blogish/looking-for-locksmith-will-pay-550-thousand-dollars.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2300/2043280462_fdf7c7fefb_t.jpg" alt="" style="float:left; padding: 5px"/></a> I was going to help this poor man, but &#8220;offortunitely,&#8221; I don&#8217;t have a hammer.  Maybe you can?</p>
<blockquote><p>Dear Sir,</p>
<p>This is john kamara from Liberia West Africa. I am the only son of my father. My late father was the managing director of gold and diamond company in my country. And he use his position then to make away for me and my only mother.</p>
<p>Right now. I am in Ghana and I came dawn with a consignment worth 5.5million dollars. At the moment. The consignment is right here with me in my hotel room.Upen my arrival yesterday in Ghana.i tried to open the box but offortunitely. The key get brook on my hands.</p>
<p>This evening i decided to go the internet cafe to search for a God fearing somebody that can assist me to open the box and he will also invest the funds for me .I am ready to give %10 of the total funds to you before any investment. if you can assist me to open the box. Please do get back to me as you read my message Or call me on my private number 1023343590672</p>
<p>I look forward to hear from you soonest.<br />
Thanks and God bless you.<br />
John. </p></blockquote>
<p><small><img src="http://anthologyoi.com/wp-content/plugins/photo_dropper//images/cc.gif" alt="Creative Commons License"  /> Image credit: <a href="http://www.flickr.com/people/Pi production/" title="Pi production">Pi production</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/looking-for-locksmith-will-pay-550-thousand-dollars.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sobe Life Water Dancing Lizards Super Bowl Commercial</title>
		<link>http://anthologyoi.com/blogish/asides/best-super-bowl-ever-sobe-life-water.html</link>
		<comments>http://anthologyoi.com/blogish/asides/best-super-bowl-ever-sobe-life-water.html#comments</comments>
		<pubDate>Mon, 04 Feb 2008 00:37:58 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[reptiles]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[Super Bowl]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/best-super-bowl-ever-sobe-life-water.html</guid>
		<description><![CDATA[Sobe Life water is presenting a new website http://www.thrillicious.com/ and is using dancing Lizards to do it. I&#8217;m partial to reptiles, so this is one of the best commercials I&#8217;ve ever seen. Want to see the commercial? Watch it below &#8230; <a href="http://anthologyoi.com/blogish/asides/best-super-bowl-ever-sobe-life-water.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src='http://i240.photobucket.com/albums/ff319/Aaron_Harun/screenshot1.png' alt='Sobe Life Water' /></p>
<p>Sobe Life water is presenting a new website <a href="http://www.thrillicious.com/">http://www.thrillicious.com/</a> and is using dancing Lizards to do it. I&#8217;m partial to reptiles, so this is one of the best commercials I&#8217;ve ever seen. Want to see the commercial? Watch it below or go to the website and click on the Super Bowl Ad link. </p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/anLqu77uTH0&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/anLqu77uTH0&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Some More Pictures of this wonderful commercial:(All images are copyright their owners.)</p>
<p><img src='http://i240.photobucket.com/albums/ff319/Aaron_Harun/screenshot2.png' alt='Sobe Life Water Super Bowl Commercial' /></p>
<p><img src='http://i240.photobucket.com/albums/ff319/Aaron_Harun/screenshot8.png' alt='Sobe Life Water Super Bowl Commercial' /></p>
<p><img src='http://i240.photobucket.com/albums/ff319/Aaron_Harun/screenshot3.png' alt='Sobe Life Water Super Bowl Commercial' /></p>
<p><img src='http://i240.photobucket.com/albums/ff319/Aaron_Harun/screenshot5.png' alt='Sobe Life Water Super Bowl Commercial' /></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/best-super-bowl-ever-sobe-life-water.html/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>The future of the English language.</title>
		<link>http://anthologyoi.com/humanities/anthropology/linguistics/the-future-of-the-english-language.html</link>
		<comments>http://anthologyoi.com/humanities/anthropology/linguistics/the-future-of-the-english-language.html#comments</comments>
		<pubDate>Sun, 27 Jan 2008 22:56:11 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Linguistics]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[EU]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[language]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/anthropology/linguistics/the-future-of-the-english-language.html</guid>
		<description><![CDATA[The following was sent to me by a friend, the original source is unknown, and google wasn&#8217;t much of a help. The European Commission has just announced an agreement whereby English will be the official language of the European Union &#8230; <a href="http://anthologyoi.com/humanities/anthropology/linguistics/the-future-of-the-english-language.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The following was sent to me by a friend, the original source is unknown, and google wasn&#8217;t much of a help.</p>
<p>The European Commission has just announced an agreement whereby English will be the official language of the European Union rather than German, which was the other possibility.</p>
<p>As part of the negotiations, the British Government conceded that English spelling had some room for improvement and has accepted a 5- year phase-in plan that would become known as &#8216;Euro-English&#8217;.</p>
<p>In the first year, &#8216;s&#8217; will replace the soft &#8216;c&#8217;. Sertainly, this will make the sivil servants jump with joy.</p>
<p>The hard &#8216;c&#8217; will be dropped in favour of &#8216;k&#8217;. This should klear up konfusion, and keyboards kan have one less letter.</p>
<p>There will be growing publik enthusiasm in the sekond year when the troublesome &#8216;ph&#8217; will be replaced with &#8216;f&#8217;. This will make words like fotograf 20% shorter.</p>
<p>In the 3rd year, publik akseptanse of the new spelling kan be expekted to reach the stage where more komplikated changes are possible.</p>
<p>Governments will enkourage the removal of double letters which have always ben a deterent to akurate speling.</p>
<p>Also, al wil agre that the horibl mes of the silent &#8216;e&#8217; in the languag is disgrasful and it should go away.</p>
<p>By the 4th yer people wil be reseptiv to steps such as replasing &#8216;th&#8217; with &#8216;z&#8217; and &#8216;w&#8217;with &#8216;v&#8217;.</p>
<p>During ze fifz yer, ze unesesary &#8216;o&#8217; kan be dropd from vords kontaining &#8216;ou&#8217; and after ziz fifz yer, ve vil hav a reil sensibl riten styl.</p>
<p>Zer vil be no mor trubl or difikultis and evrivun vil find it ezi TU understand ech oza. Ze drem of a united urop vil finali kum tru.</p>
<p>Und efter ze fifz yer, ve vil al be speking German like zey vunted in ze forst plas.</p>
<p><em>fin</em></p>
<p>It is especially funny to me because I have always supported the simplification of the English language, and I&#8217;m currently learning German.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/humanities/anthropology/linguistics/the-future-of-the-english-language.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>TED: Think Globally, Act Locally</title>
		<link>http://anthologyoi.com/blogish/asides/ted-think-globally-act-locally.html</link>
		<comments>http://anthologyoi.com/blogish/asides/ted-think-globally-act-locally.html#comments</comments>
		<pubDate>Tue, 08 Jan 2008 00:45:57 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[biology]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[TED]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/ted-think-globally-act-locally.html</guid>
		<description><![CDATA[I&#8217;ve linked to TED for quite a while in my sidebar and I urge everyone to subscribe to TED&#8217;s video RSS feed if you are even remotely concerned about the world and people around you. TED talks tends to focus &#8230; <a href="http://anthologyoi.com/blogish/asides/ted-think-globally-act-locally.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve linked to <a href="http://ted.com">TED</a> for quite a while in my sidebar and I urge everyone to subscribe to <a href="http://feeds.feedburner.com/TEDTalks_video">TED&#8217;s video RSS feed</a> if you are even remotely concerned about the world and people around you. </p>
<p>TED talks tends to focus on the grand scheme of things, but this talk by <a href="http://en.wikipedia.org/wiki/Yossi_Vardi">Yossi Vardi</a> talks focuses acutely on the local issues that plague many bloggers. The topic of this talk effects at least 50% of bloggers and all bloggers who care about the future of the world should not only watch this video, but also take immediate action. (If you are not in this 50% you should probably pass it on to someone who is.) Warning this video is not for the faint of heart.</p>
<p><!--cut and paste--><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="432" height="285" id="VE_Player" align="middle"><param name="movie" value="http://static.videoegg.com/ted/flash/loader.swf"><PARAM NAME="FlashVars" VALUE="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/YOSSIVARDI-2007_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true"><param name="quality" value="high"><param name="allowScriptAccess" value="always"><param name="bgcolor" value="#FFFFFF"><param name="scale" value="noscale"><param name="wmode" value="window"><embed src="http://static.videoegg.com/ted/flash/loader.swf" FlashVars="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/YOSSIVARDI-2007_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true" quality="high" allowScriptAccess="always" bgcolor="#FFFFFF" scale="noscale" wmode="window" width="432" height="285" name="VE_Player" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object></p>
<p>It&#8217;s is nice to wake up once and a while to something this amusing in your feed reader isn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/ted-think-globally-act-locally.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tis the season&#8230;</title>
		<link>http://anthologyoi.com/blogish/asides/tis-the-season.html</link>
		<comments>http://anthologyoi.com/blogish/asides/tis-the-season.html#comments</comments>
		<pubDate>Tue, 18 Dec 2007 05:04:46 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[Higher Education]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/tis-the-season.html</guid>
		<description><![CDATA[Yup, it is that time again. The time when everybody looks back and things about what they have done in the last year. When everyone gets to relax. When everyone is filled with the spirit of happiness and brotherly love. &#8230; <a href="http://anthologyoi.com/blogish/asides/tis-the-season.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src='http://anthologyoi.com/wp-content/uploads/2007/12/lecturehall2.jpg' alt='Lecture hall' style="float:right; margin-left:5px;" /> Yup, it is that time again. The time when everybody looks back and things about what they have done in the last year. When everyone gets to relax. When everyone is filled with the spirit of happiness and brotherly love. When everyone can sit back and relax in what they have done well so far this year. So in this spirit I&#8217;d like to wish everyone a happy end-of-semester.</p>
<p>For anyone in higher education this time of year is not marked by commercialism or religious holidays: it is marked by the passing of courses, the giving of grades and the knowledge that you have done a good job and that you have done the impossible: you have survived another semester. </p>
<p>For the students who can now relax because they have completed, for better or worse (and too often worse), their courses for the semester.</p>
<p>For the Professors (including the poor and often forgotten Adjuncts who like to be called Professor, but are universally referred to with the abysmally unimportant title of &#8220;part-timers&#8221;) another herd of cattle has approached to feed at the trough of your knowledge; some have fed well and others are now starving by the side of the road blaming you for not having food that is interesting or important&#8230;er&#8230;tasty enough.</p>
<p>For the Deans who have had to wrestle demanding faculty and students, and be the mediators of accusations, often filled with half as many truths as untruths, ranging from unfair grading to cheating.</p>
<p>For the administrative staff who are only thought of when it is time to register for courses or pay bills, and take the brunt of the whining from both faculty and students when things don&#8217;t run smoothly, and are squirreled away in such impressive sounding caves as &#8220;Bursars&#8221;, &#8220;Admissions&#8221; and &#8220;Registrars.&#8221;</p>
<p>For the students refreshing their university&#8217;s websites (or checking their mailboxes) looking for their grades.</p>
<p>For the Administrative staff that have told those students a thousand times today alone when the grades will be posted.</p>
<p>For the Professors who are dreading submitting those self-same grades because of the barrage of emails and phone calls from panicked students who are sure to appear at their door&#8230;at 3a.m&#8230;.in the snow&#8230;crying&#8230;to have those grades changed.</p>
<p>For those students who already have coats, mittens and directions to their professors house ready.</p>
<p>For the Administrative Staff that is going as fast as it can with all the new transcript requests that simply _must_ be sent out today even though it clearly states a 3 week waiting period on the form. </p>
<p>For those student&#8217;s who forgot that one application had to be in by January not April like everywhere else.</p>
<p>For those professors who are already getting requests to write recommendations for students they barely got to know and barely remember beyond a name, face and grade &#8212; and sometimes not all three at the same time.</p>
<p>For those students who painstakingly write the review themselves and slips it under the Professor&#8217;s door to be signed.</p>
<p>For those High School students who are finishing up those wonderful early decisions application that give those administrative staff something to do during the break: like they didn&#8217;t have enough paperwork left over from the last batch of papers.</p>
<p>For those same administrative staff who wonder why they have to be back to work on January 3rd while those damn over-glorified teachers don&#8217;t have be back for three or four weeks.</p>
<p>For those Masters students who are getting ready to teach their first course.</p>
<p>For the PhD students wondering how they are ever going to finish the most important paper they will ever right.</p>
<p>For those students who are already scoping out the <del datetime="2007-12-18T05:01:12+00:00">best</del> easiest professors on ratemyprofessor.com.</p>
<p>For those professors who have the dubious honor of being rated the easiest in the school.</p>
<p>For the bookstore workers who watch as students spend hard-earned cash on books that you know are over-priced.</p>
<p>For the families of those professors and students who are theoretically related to you, but you haven&#8217;t seen in over 3 month.</p>
<p>For those mothers who wonder how their son/daughter could possible have so much laundry: No, they did not wash any clothes this semester.</p>
<p>For those students who forgot what home-cooking tastes like and who began to believe that Ramen and grease where the only two food groups.</p>
<p>For those professors who are beginning to realize that that freshmen aren&#8217;t getting younger: you got older.</p>
<p>For those freshmen who realize they were woefully unprepared for college and in three months had to grow up more that they did in the last four years. </p>
<p>For those seniors who see that all that studying finally is paying off and they are almost done.</p>
<p>For all those that enjoy education for what it is: an enrichment experience.</p>
<p>For everyone else who is forgotten just as I forgot you.</p>
<p>Congratulations: you have survived another semester only one more before you get arrive at that point of nirvana where the past year is a memory and the next year is a long way off, and the most important thing on your mind is lemonade or ice tea.</p>
<p>Oh and there are a few other minor events that are happening too like Christmas, Hanukkah, Eid ul-Adha, Kwanzaa, Winter Solstice, Festivus, Sinterklaas, a few Independence days and a host of other holidays, so Happy and Merry those too.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/tis-the-season.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>With a population of 300 million, you can&#8217;t help one or two.</title>
		<link>http://anthologyoi.com/blogish/asides/with-a-population-of-300-million-you-cant-help-one-or-two.html</link>
		<comments>http://anthologyoi.com/blogish/asides/with-a-population-of-300-million-you-cant-help-one-or-two.html#comments</comments>
		<pubDate>Mon, 26 Nov 2007 14:17:16 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/with-a-population-of-300-million-they-cant-help-one-or-two.html</guid>
		<description><![CDATA[Statistics states that the group tends towards the medium. Thankfully, this person is not within the group or the average IQ of the entire world would be quite-a-bit lower.]]></description>
			<content:encoded><![CDATA[<p>Statistics states that the group tends towards the medium. Thankfully, this person is not within the group or the average IQ of the entire world would be quite-a-bit lower.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/juOQhTuzDQ0&#038;rel=1&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/juOQhTuzDQ0&#038;rel=1&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/with-a-population-of-300-million-you-cant-help-one-or-two.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>News Flash: Everyone who reads this site is a genius!</title>
		<link>http://anthologyoi.com/blogish/asides/news-flash-everyone-who-reads-this-site-is-a-genius.html</link>
		<comments>http://anthologyoi.com/blogish/asides/news-flash-everyone-who-reads-this-site-is-a-genius.html#comments</comments>
		<pubDate>Mon, 19 Nov 2007 18:56:28 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[memes]]></category>

		<guid isPermaLink="false">http://anthologyoi.com/blogish/asides/news-flash-everyone-who-reads-this-site-is-a-genius.html</guid>
		<description><![CDATA[(I would watch out though&#8230;the automatic code they use for the widget includes spam links.)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.criticsrant.com/bb/reading_level.aspx" ref="nofollow"><img style="border: none;" src="http://www.criticsrant.com/bb/readinglevel/img/genius.jpg" /></a></p>
<p>(I would watch out though&#8230;the automatic code they use for the widget includes spam links.)</p>
]]></content:encoded>
			<wfw:commentRss>http://anthologyoi.com/blogish/asides/news-flash-everyone-who-reads-this-site-is-a-genius.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

