<?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"
	>

<channel>
	<title>rowast</title>
	<atom:link href="http://rowast.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rowast.com</link>
	<description>personally impersonable</description>
	<pubDate>Sun, 17 Aug 2008 07:30:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>google reader css</title>
		<link>http://rowast.com/2008/08/17/google-reader-css/</link>
		<comments>http://rowast.com/2008/08/17/google-reader-css/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:30:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[reader]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=149</guid>
		<description><![CDATA[Like many people I use Google Reader, and like many people I share stories that I find particularly interesting with my friends on reader.  However when redesigning my blog I wanted a way to incorporate reader into it.  I looked at various wordpress plug-ins that could get the job done, but none seemed [...]]]></description>
			<content:encoded><![CDATA[<p>Like many people I use <a href="http://reader.google.com">Google Reader</a>, and like many people I share stories that I find particularly interesting with my friends on reader.  However when redesigning my blog I wanted a way to incorporate reader into it.  I looked at various wordpress plug-ins that could get the job done, but none seemed to fit my needs precisely right.</p>
<p>I finally found what I was looking for at Google Reader itself, via their add a clip feature (you can find this link by clicking on in the left side navigation area).  When you use google reader they give you everything you could ask for, title, color scheme, number of shared items to post and whether or not to post item sources.  You can find google reader stylized for my site, in my sidebar (as of this writing).</p>
<p>All of this is wonderful except for one minor thing, google provides no assistance at all when it comes to the option of no color scheme.  That means no xhtml source to examine or css source.  You could get around that with firefox&#8217;s view selection source feature, however if you don&#8217;t have firefox this provides no help at all.</p>
<p>It is with that in mind that I am writing this post, below is sample xhtml source code, that I will explain after the code is posted.</p>
<p><code><br />
&lt;div id="readerpublishermodule0" class="reader-publisher-module"&gt;<br />
&lt;h3&gt;robert’s shared items&lt;/h3&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;<br />
&lt;a class="i" title="Happy Birthday, iMac" href="#"&gt;Happy Birthday, iMac&lt;/a&gt;<br />
&lt;div class="s"&gt;<br />
from &lt;a href="#"&gt;The Unofficial Apple Weblog (TUAW)&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a class="i" title="Happy Birthday, iMac" href="#"&gt;Happy Birthday, iMac&lt;/a&gt;<br />
&lt;div class="s"&gt;<br />
from &lt;a href="#"&gt;The Unofficial Apple Weblog (TUAW)&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a class="i" title="Happy Birthday, iMac" href="#"&gt;Happy Birthday, iMac&lt;/a&gt;<br />
&lt;div class="s"&gt;<br />
from &lt;a href="#"&gt;The Unofficial Apple Weblog (TUAW)&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a class="i" title="Happy Birthday, iMac" href="#"&gt;Happy Birthday, iMac&lt;/a&gt;<br />
&lt;div class="s"&gt;<br />
from &lt;a href="#"&gt;The Unofficial Apple Weblog (TUAW)&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;<br />
&lt;li&gt;<br />
&lt;a class="i" title="Happy Birthday, iMac" href="#"&gt;Happy Birthday, iMac&lt;/a&gt;<br />
&lt;div class="s"&gt;<br />
from &lt;a href="#"&gt;The Unofficial Apple Weblog (TUAW)&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;div class="f"&gt;<br />
&lt;a href="#"&gt;Read more…&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>The primary container for the shared items is a selector named &#8220;reader-publisher-module&#8221;, it contains everything provided by google reader.  The header provided by google is contained in a h3 element inside of the main container.  Each headline link and source link is contained inside of a list element inside of the main container as well.  The headline link is held inside this list item in a selector with the name &#8220;i&#8221;.  The source is held inside this list element in a container named &#8220;s&#8221;.  The read more link is contained inside of a selector named &#8220;f&#8221; inside of the main container.</p>
<p>Listed below is the css used in my current theme to make google reader appear appropriately, hopefully it can help you if you need it.</p>
<p><code><br />
/* google reader from section */<br />
.reader-publisher-module .s {<br />
	text-indent: 5px;<br />
}<br />
<br/><br />
/* from link */<br />
.reader-publisher-module .s a {<br />
	color: #660505;<br />
	text-decoration: none;<br />
}<br />
<br/><br />
/* headline link */<br />
.reader-publisher-module .i {<br />
	font-size: 10pt;<br />
	font-weight: bold;<br />
	line-height: 10pt;<br />
	text-decoration: none;<br />
	display: block;<br />
}<br />
<br/><br />
/* google reader read more section */<br />
.reader-publisher-module .f {<br />
	display: none;<br />
}<br />
<br/><br />
.reader-publisher-module .f  a {<br />
}<br />
</code></p>
<p>This information was hard for me to find, so hopefully listing it here will help someone, if you need any further assistance post a comment, and I will see what I do do.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/08/17/google-reader-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>gitmo on the platte</title>
		<link>http://rowast.com/2008/08/15/gitmo-on-the-platte/</link>
		<comments>http://rowast.com/2008/08/15/gitmo-on-the-platte/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 17:20:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[movies]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=145</guid>
		<description><![CDATA[
Doesn&#8217;t this offend you?
Well it shouldn&#8217;t, we already do this at Guantanamo Bay.  
I get it some people need to be locked up for their crimes, but not like this, not in subhuman conditions like this.  
Some protesters will undoubtedly commit criminal acts and should be arrested but the overwhelming majority just want [...]]]></description>
			<content:encoded><![CDATA[<p><object data="http://www.youtube.com/v/oQEc3ejHIaM&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" class="youtube"><param name="movie" value="http://www.youtube.com/v/oQEc3ejHIaM&amp;hl=en&amp;fs=1"/><param name="allowFullScreen" value="true"/></object></p>
<p>Doesn&#8217;t this offend you?</p>
<p>Well it shouldn&#8217;t, we already do this at Guantanamo Bay.  </p>
<p>I get it some people need to be locked up for their crimes, but not like this, not in subhuman conditions like this.  </p>
<p>Some protesters will undoubtedly commit criminal acts and should be arrested but the overwhelming majority just want to speak their peace and there is nothing wrong or illegal about that.</p>
<p>What is wrong are these so called &#8220;free speech zones&#8221; they&#8217;re setting up at the convention sites but that&#8217;s a rant for another time&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/08/15/gitmo-on-the-platte/feed/</wfw:commentRss>
		</item>
		<item>
		<title>fixing iLindsay&#8217;s tumblr</title>
		<link>http://rowast.com/2008/07/30/fixing-ilindsays-tumblr/</link>
		<comments>http://rowast.com/2008/07/30/fixing-ilindsays-tumblr/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 09:08:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[friends]]></category>

		<category><![CDATA[tumblr]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=111</guid>
		<description><![CDATA[This post is going to be actually something I have never done before, and I don&#8217;t know if I will ever do again.  It&#8217;s a post meant for one, as it&#8217;s code to fix their tumblr.  If you don&#8217;t know what a tumblr is get one, it&#8217;s a wonderful service.  This is [...]]]></description>
			<content:encoded><![CDATA[<p>This post is going to be actually something I have never done before, and I don&#8217;t know if I will ever do again.  It&#8217;s a post meant for one, as it&#8217;s code to fix their <a href="http://www.tumblr.com">tumblr</a>.  If you don&#8217;t know what a tumblr is get one, it&#8217;s a wonderful service.  This is basically just css, however I did slice out some code from the original page (page breaks for example) and replaced it with css where applicable.</p>
<p>I will try to provide some description so that if you want to read on it will be of some use to you, however I will be addressing Lindsay directly in this post, so don&#8217;t be mad at me if I call you Lindsay, I assure you it&#8217;s nothing personal.</p>
<p><strong>Before continuing Lindsay I would highly recomend you somehow back up your code, as who knows I could make an error or you could make an error and I don&#8217;t want you to ruin what already is working just in case.</strong></p>
<p>Anyways Lindsay the code snippet you will see below is css that should be able to be added at the end of your existing css without causing any issues for your existing page.  The &#8220;twitter_div&#8221; id selector simply takes the enclosing div and adds that graphic to it as a background image, it also seperates it from the marquee above, as well as spacing it out the inner ul from the background image so your tweet does not cover up the background image in any way.</p>
<p>The &#8220;twitter_update_list&#8221; is listed with &#8220;header&#8221; before it to overwrite the inherited css from the previous &#8220;header ul&#8221; declaration.  Chiefly this declaration affects the tweet&#8217;s appearance, however it also removes padding and margins from the previous declaration as well.</p>
<p>The &#8220;twitter_update_list a&#8221; id is simply used to take the time stamp link and place it on it&#8217;s own line below the tweet itself.</p>
<p><code style="display: block; height: 200px; overflow: auto;"><br />
/* div that contains entire tweet */<br />
#twitter_div {background-image: url(http://img71.imageshack.us/img71/4161/birdnu1.png); background-repeat: no-repeat; margin-top: 10px; padding-left: 35px;}<br/><br/><br />
/* contains just tweet */<br />
#header #twitter_update_list {font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; letter-spacing: 0px; line-height: 110%; font-weight: normal; color: #000000; text-transform: none; margin: 0px; padding: 0px;}<br/><br/><br />
/* timestamp link */<br />
#twitter_update_list a {display: block;}<br />
</code></p>
<p>Lastly here is the code as I edited it, going from the closing marquee tag to the ending div for the header container.  The only major change I made was removing the line breaks from the presenation as it was replaced with a margin declaration in the css.</p>
<p><code style="display: block; height: 200px; overflow: auto;"><br />
&lt;/marquee&gt;<br />
&lt;!-- Your Twitter code starts here --&gt;<br />
&lt;div id="twitter_div"&gt;<br />
&lt;ul id="twitter_update_list"&gt;&lt;/ul&gt;&lt;/div&gt;<br />
&lt;script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript" src="http://twitter.com/statuses/user_timeline/9131132.json?callback=twitterCallback2&#038;count=1"&gt;&lt;/script&gt;<br />
&lt;!-- Your Twitter code ends here --&gt;<br />
&lt;/div&gt;<br />
<br/><br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;/mobile&#8221;&gt;Mobile&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;/archive&#8221;&gt;Archive&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;http://ilindsay.tumblr.com/rss&#8221;&gt;RSS&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;/random&#8221;&gt;Random&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>I really hope this all went fine for you, if not you know where to find me.</p>
<p>Good Luck Lindsay.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/30/fixing-ilindsays-tumblr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iTunes Issues</title>
		<link>http://rowast.com/2008/07/28/itunes-issues/</link>
		<comments>http://rowast.com/2008/07/28/itunes-issues/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 06:09:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[iTunes]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[problems]]></category>

		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=109</guid>
		<description><![CDATA[We&#8217;ve all been there, been stuck with a computer error that seems to be exclusive to our machines.  We consult support forums, publications, friends and other computers to no avail and then resort to pulling our hair out and generally being mad that our exspensive computer has flat out died in some small way.
Well for [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all been there, been stuck with a computer error that seems to be exclusive to our machines.  We consult support forums, publications, friends and other computers to no avail and then resort to pulling our hair out and generally being mad that our exspensive computer has flat out died in some small way.</p>
<p>Well for the past week this has been me, and to make it worse it has been an issue with a mac, a system I am not extensively experienced with.  For no reason at all iTunes would crash within a minute of opening, and it was the only piece of software experiencing this issue.  I consulted another mac in our house, and it had no problems, so finally I resorted to drawing straws.</p>
<p>I tried rebooting with no positive results, looked at re-installing iTunes on top of the existing install and it didn&#8217;t change a thing.  I even removed iTunes entirely and installed it again without it helping things.  That is when I effectively gave up because I was out of ideas.</p>
<p>That is until it ocurred to me to try an old Windows trick, I copied the iTunes library files to the desktop and deleted them and fired up iTunes, and boom it worked.  I am not sure why this helped but I don&#8217;t care.</p>
<p>So if you have an issue with iTunes don&#8217;t fret and as a last resort no matter the OS, kill the library and restart the program, then paste back in the library so you don&#8217;t lose your library and hopefully you will be back in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/28/itunes-issues/feed/</wfw:commentRss>
		</item>
		<item>
		<title>links for 2008-07-19</title>
		<link>http://rowast.com/2008/07/19/links-for-2008-07-19/</link>
		<comments>http://rowast.com/2008/07/19/links-for-2008-07-19/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 15:35:32 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
		
		<category><![CDATA[2]]></category>

		<guid isPermaLink="false">http://rowast.com/2008/07/19/links-for-2008-07-19/</guid>
		<description><![CDATA[

baybeh, yo daddy musta been a « Lolcats ‘n’ Funny Pictures of Cats - I Can Has Cheezburger?
great new lolcat pick up line
(tags: funny lolcat pickupline)


The Associated Press: Md. ACLU releases docs detailing police monitoring
ACLU attorney David Rocah said documents released Thursday show state police violated federal laws prohibiting departments that receive federal funds from [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://icanhascheezburger.com/2008/07/18/funny-pictures-been-a-cheeszburger-cause-i-cud-nom-you-all-night/">baybeh, yo daddy musta been a « Lolcats ‘n’ Funny Pictures of Cats - I Can Has Cheezburger?</a></div>
<div class="delicious-extended">great new lolcat pick up line</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/newfoundnoise82/funny">funny</a> <a href="http://del.icio.us/newfoundnoise82/lolcat">lolcat</a> <a href="http://del.icio.us/newfoundnoise82/pickupline">pickupline</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://ap.google.com/article/ALeqM5i0ssqKjzcAq6AaODAf6KLdZjTf5AD91VSK2G1">The Associated Press: Md. ACLU releases docs detailing police monitoring</a></div>
<div class="delicious-extended">ACLU attorney David Rocah said documents released Thursday show state police violated federal laws prohibiting departments that receive federal funds from maintaining databases with information about political activities and affiliations.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/newfoundnoise82/politics">politics</a> <a href="http://del.icio.us/newfoundnoise82/news">news</a> <a href="http://del.icio.us/newfoundnoise82/freedom">freedom</a> <a href="http://del.icio.us/newfoundnoise82/articles">articles</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/19/links-for-2008-07-19/feed/</wfw:commentRss>
		</item>
		<item>
		<title>mccain enjoys a lack of intelligence</title>
		<link>http://rowast.com/2008/07/15/mccain-enjoys-a-lack-of-intelligence/</link>
		<comments>http://rowast.com/2008/07/15/mccain-enjoys-a-lack-of-intelligence/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 06:21:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[ignorance]]></category>

		<category><![CDATA[mccain]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[politics]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=1507</guid>
		<description><![CDATA[This is practically reason enough not to vote for McCain, he finds a lack of knowledge to be a source of pride and humor.  Enjoy!

]]></description>
			<content:encoded><![CDATA[<p>This is practically reason enough not to vote for McCain, he finds a lack of knowledge to be a source of pride and humor.  Enjoy!</p>
<p><object style="width: 425px; height: 344px;" data="http://www.youtube.com/v/srbX26vp57c&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash"><param name="movie" value="http://www.youtube.com/v/srbX26vp57c&#038;hl=en&#038;fs=1"/><param name="allowFullScreen" value="true"/></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/15/mccain-enjoys-a-lack-of-intelligence/feed/</wfw:commentRss>
		</item>
		<item>
		<title>mobile me should not be</title>
		<link>http://rowast.com/2008/07/15/mobile-me-should-not-be/</link>
		<comments>http://rowast.com/2008/07/15/mobile-me-should-not-be/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 21:36:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[mobileme]]></category>

		<category><![CDATA[rants]]></category>

		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=1506</guid>
		<description><![CDATA[I love apple, I absolutely adore my macbook and I think OS X is an extremely superior operating system to any version of windows or linux that I have used, however apple is extremely wrong.  They continue to be wrong however.  When upgrading iTunes they have forced safari onto windows users and while [...]]]></description>
			<content:encoded><![CDATA[<p>I love apple, I absolutely adore my macbook and I think OS X is an extremely superior operating system to any version of windows or linux that I have used, however apple is extremely wrong.  They continue to be wrong however.  <a href="http://weblogs.mozillazine.org/asa/archives/2008/03/john_is_absolut.html">When upgrading iTunes they have forced safari onto windows users</a> and while it is a better browser in my opinion it is still wrong, and even when they remedied that, they didn&#8217;t because safari was still auto checked in the update.  I remembered these instances when I was on my vista machine today and noticed a new icon that I had never seen before.</p>
<p><a href="http://www.flickr.com/photos/newfoundnoise82/2672528576/" title="mobileme shouldnt be by rowast, on Flickr"><img src="http://farm4.static.flickr.com/3155/2672528576_d342999f2c.jpg" alt="mobileme shouldnt be" /></a></p>
<p>The icon for mobileme (or is it mobile me?), apples anticipated update to .mac, it sounds like a wonderful service in many ways just definitely not for me so I knew I didn&#8217;t download this.  So who did?  I know I have updated iTunes on the machine recently, and I think Safari may have been updated as well, either way I am certain it was apple who initiated the download and install without asking me at all (or giving me a way to remove it).</p>
<p>So what does it do?  For those with mobile me, it&#8217;s an entry into the service and for those that <strong>NEVER WANTED IT IN THE FIRST PLACE</strong> well it&#8217;s an ad, so much so that the learn more button simply links you to apple.com/mobileme.  It&#8217;s a bad move by apple, but hey maybe they will get a few more customers for mobile me, but it won&#8217;t be me.</p>
<p>Now if you&#8217;ll excuse me I have to get back to the products I received from apple today and monitoring the shipping of a new macbook.</p>
<p>I am such a hypocrite&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/15/mobile-me-should-not-be/feed/</wfw:commentRss>
		</item>
		<item>
		<title>wordle.fm</title>
		<link>http://rowast.com/2008/07/14/wordlefm/</link>
		<comments>http://rowast.com/2008/07/14/wordlefm/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 19:24:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[lastfm]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[pictures]]></category>

		<category><![CDATA[wordle]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=1505</guid>
		<description><![CDATA[Everyone and their mom seems to be doing wordle&#8217;s these days for various issues, and if not its a twitter text cloud of your most used phrases.  What is a wordle you might ask?  well wordle lists it is &#8220;a toy for generating “word clouds” from text that you provide. The clouds give [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone and their mom seems to be doing <a href="http://wordle.net/">wordle</a>&#8217;s these days for various issues, and if not its a <a href="http://rowast.com/2008/04/12/tweetclouds/">twitter text cloud</a> of your most used phrases.  What is a wordle you might ask?  well wordle lists it is &#8220;<cite>a toy for generating “word clouds” from text that you provide. The clouds give greater prominence to words that appear more frequently in the source text.</cite>&#8220;, in other words it is anything that you want it to be, you feed it lists of words it will spit a wordle back at ya.  At first I bucked the wordle trend, but I finally gave in to the temptation and here is my wordle, if you want to give in and make your own last.fm wordle you can easily <a href="http://www.mastergiraffe.com/index.php/music/turn-your-lastfm-profile-into-a-wordle-image/">create one</a>.</p>
<p><a href="http://www.flickr.com/photos/newfoundnoise82/2666688171/" title="last.fm wordle by rowast, on Flickr"><img src="http://farm4.static.flickr.com/3167/2666688171_a6186e7cf4_o.jpg" width="724" height="506" alt="last.fm wordle" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/14/wordlefm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Independence Day!</title>
		<link>http://rowast.com/2008/07/03/happy-independence-day/</link>
		<comments>http://rowast.com/2008/07/03/happy-independence-day/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 06:46:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[muppets]]></category>

		<category><![CDATA[patriotic]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=1504</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><object style="width: 425px; height: 344px;" data="http://www.youtube.com/v/kDA9NbPAK8o&amp;hl=en"  type="application/x-shockwave-flash"><param name="movie" value="http://www.youtube.com/v/kDA9NbPAK8o&#038;hl=en"></param><param name="wmode" value="transparent"></param>
</object></p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/07/03/happy-independence-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>democrats.org vs gop.com</title>
		<link>http://rowast.com/2008/06/10/democratsorg-vs-gopcom/</link>
		<comments>http://rowast.com/2008/06/10/democratsorg-vs-gopcom/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 01:05:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rowast.com/?p=1502</guid>
		<description><![CDATA[In this election we are presented with non stop negative stories, &#8220;don&#8217;t vote for them because of [fill in the blank issue]&#8220;, rather than &#8220;vote for me because of my stance on [fill in the blank issue]&#8220;.  I always figured if you went to the political parties web sites it would be a little [...]]]></description>
			<content:encoded><![CDATA[<p>In this election we are presented with non stop negative stories, &#8220;don&#8217;t vote for them because of [fill in the blank issue]&#8220;, rather than &#8220;vote for me because of my stance on [fill in the blank issue]&#8220;.  I always figured if you went to the political parties web sites it would be a little more nuanced and positive about both their candidates and politics, boy was I wrong.</p>
<p><a href="http://www.flickr.com/photos/newfoundnoise82/2568463629/" title="GOP.com positive vs negative by rowast, on Flickr"><img src="http://farm4.static.flickr.com/3033/2568463629_d05fcee3ab.jpg"  alt="GOP.com positive vs negative" /></a></p>
<p>At <a href="http://www.gop.com">gop.com</a> you are presented with the above image, a fairly well designed site for the Republican Party, however what you are not presented with is much about their candidate.</p>
<p>Sure we have one graphic linking you to a post about Sen. McCain&#8217;s policy about climate change, but that is only one issue that relates to him, compared to six negative links about Obama.  Those links are as follows:</p>
<ol>
<li>Obama&#8217;s Disgraceful Duo -  A story about some of Obama&#8217;s supporters</li>
<li>Meet Barack Obama</li>
<li>The Rezko Judgement - A story about a one time Obama fundraiser</li>
<li>Democrats vs Obama - A story about what other Democratic presidential candidates said about Obama during the primary</li>
<li>Obama&#8217;s Bad Week In Review</li>
<li>Days Since Obama Visited Iraq Clock</li>
</ol>
<p>However, the Democrats are not much better.</p>
<p><a href="http://www.flickr.com/photos/newfoundnoise82/2569290284/" title="democrats.org positive vs. negative by rowast, on Flickr"><img src="http://farm4.static.flickr.com/3074/2569290284_fe034b74ba.jpg" alt="democrats.org positive vs. negative" /></a></p>
<p>Sure they are better in the count of positive postings compared to negative, however at <a href="http://www.democrats.org">democrats.org</a>they only have one more positive story about their nominee, and that is only due to the fact that they have a large graphic dedicated to their new nominee.</p>
<p>Their first two links are dedicated to McCain bashing, and the last link is about correcting what they now see as a past discretion, only the third link can be seen as truely positive, that would be the link about &#8220;Change We Can Believe In&#8221;.</p>
<p>I am not naive, I know elections are always about the horror the other side would bring, but I thought someone some where would try to appeal to our sense of good, rather than our sense of evil.  I posted this to show that this is not the fact, at least at the home of our two major political parties.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/06/10/democratsorg-vs-gopcom/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
