<?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>Wannabe</title>
	<atom:link href="http://wannabe.contropa.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wannabe.contropa.com</link>
	<description>Kinda sorta - but not quite</description>
	<lastBuildDate>Fri, 27 Jan 2012 19:20:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Exclude SlideDeck posts in WordPress</title>
		<link>http://wannabe.contropa.com/exclude-slidedeck-posts-in-wordpress/645/</link>
		<comments>http://wannabe.contropa.com/exclude-slidedeck-posts-in-wordpress/645/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 18:39:48 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[custom metatag]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SlideDeck]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=645</guid>
		<description><![CDATA[On a WordPress site I&#8217;ve been working on I&#8217;m using SlideDeck as a feature article slider on the homepage.  The only problem was I have additional articles populating underneath it and the articles from the SlideDeck were showing up down there as well. We didn&#8217;t want that behavior so I researched how to filter out [...]]]></description>
			<content:encoded><![CDATA[<p>On a WordPress site I&#8217;ve been working on I&#8217;m using SlideDeck as a feature article slider on the homepage.  The only problem was I have additional articles populating underneath it and the articles from the SlideDeck were showing up down there as well.</p>
<p>We didn&#8217;t want that behavior so I researched how to filter out SlideDeck posts from the post loop.  At this time, it&#8217;s apparently easy to filter for content that has a custom meta-tag, but you can&#8217;t easily filter for content that doesn&#8217;t have a custom meta-tag applied to it.  It&#8217;s because when a post doesn&#8217;t have a custom met-tag attached to it that custom meta-tag doesn&#8217;t come up as &#8220;null&#8221; or &#8220;0&#8243;  it simply doesn&#8217;t come up at all.  So there&#8217;s no way to use <em>query_posts</em> to filter out SlideDeck posts, you have to make custom database query and use <em>$wpdb-&gt;get_results.</em></p>
<p><a href="http://support.slidedeck.com/slidedeck/topics/wp_query_a_list_of_posts_not_featured_in_the_slide_deck?from_gsfn=true" target="_blank">This post </a>from SlideDeck&#8217;s customer support website did most of the heavy lifting for me in putting together the exact query I needed to filter out only SlideDeck posts.  The only problem was that this gave me no insight as to how I could paginate the posts.  Thankfully google came to rescue once again and I found <a href="http://wordpress.org/support/topic/custom-loop-pagination" target="_blank">this post</a> and <a href="http://www.scriptygoddess.com/archives/2011/02/23/wordpress-pagination-woes-solved-i-hope/" target="_blank">this post</a> which helped me piece together the script.  I posted my findings on SlideDeck&#8217;s customer service website, but I&#8217;m posted it here as well so I can easily find it again if I need it.</p>
<p>So for the code, inside<em> loop.php</em> before <em>have_posts()</em> I put&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">//query_posts(array( 'meta_key' =&gt; 'slidedeck_post_featured') );</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$ppp</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span>get_query_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'posts_per_page'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000088;">$paged</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>get_query_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'paged'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> ? get_query_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'paged'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$offset</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$paged</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #000088;">$ppp</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT p.*
        FROM <span style="color: #006699; font-weight: bold;">{$wpdb-&gt;posts}</span> AS p
        LEFT JOIN <span style="color: #006699; font-weight: bold;">{$wpdb-&gt;postmeta}</span> AS pm
        ON pm.post_id = p.ID AND pm.meta_key = <span style="color: #009933; font-weight: bold;">%s</span>
        WHERE p.post_status = <span style="color: #009933; font-weight: bold;">%s</span> AND p.post_type = <span style="color: #009933; font-weight: bold;">%s</span> AND pm.meta_value IS NULL
	ORDER BY p.post_date desc
        LIMIT <span style="color: #006699; font-weight: bold;">$offset</span>, <span style="color: #006699; font-weight: bold;">$ppp</span>&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$posts</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prepare</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$sql</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'_slidedeck_post_featured'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'publish'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post'</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><em>if(is_home())</em>  will make it so it will only filter out SlideDeck posts on the homepage, and apparently the <em>have_posts()</em> works exactly as it normally does even when I change the loop using <em>$wpdb-&gt;get_results,</em> which means I don&#8217;t have to do much to the rest of the page in order for this to work.  WordPress, you rock &lt;3</p>
<p>This will paginate the posts according to the number of items I have set in the WordPress settings, but for some reason when I did this on the last page it printed out empty posts to fill out that page.</p>
<p>For instance, say I only have 7 posts left on the last page, but I have it set to show a maximum of 10 posts per page &#8211; it would print out 3 empty posts on that page.</p>
<p>To combat this I put the following code inside <em>have_posts()</em> so it wouldn&#8217;t print anything if the post ID was null.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">//html for posts</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Pretty straight forward and everything has been working great so far <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><strong>References</strong></p>
<p><a href="http://support.slidedeck.com/slidedeck/topics/wp_query_a_list_of_posts_not_featured_in_the_slide_deck?from_gsfn=true" target="_blank">http://support.slidedeck.com/slidedeck/topics/wp_query_a_list_of_posts_not_featured_in_the_slide_deck?from_gsfn=true</a><br />
<a href="http://wordpress.org/support/topic/custom-loop-pagination" target="_blank"></p>
<p>http://wordpress.org/support/topic/custom-loop-pagination</a></p>
<p><a href="http://www.scriptygoddess.com/archives/2011/02/23/wordpress-pagination-woes-solved-i-hope/" target="_blank">http://www.scriptygoddess.com/archives/2011/02/23/wordpress-pagination-woes-solved-i-hope/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/exclude-slidedeck-posts-in-wordpress/645/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MyRealFont iPhone App</title>
		<link>http://wannabe.contropa.com/myrealfont-iphone-app/635/</link>
		<comments>http://wannabe.contropa.com/myrealfont-iphone-app/635/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 19:32:20 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=635</guid>
		<description><![CDATA[A neat little App I found through Chris Pirillo is called &#8220;MyRealFont.&#8221;  With this App you can make your own font by drawing in each letter on your iPhone, then you can e-mail it to yourself as an actual TTF file you can install and use on your computer! The interface was really simple and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/12/mzl.jywsrytz.175x175-75.jpg" rel="lightbox[635]"><img class="alignleft  wp-image-638" style="margin: 0px 10px;" title="mzl.jywsrytz.175x175-75" src="http://wannabe.contropa.com/wp-content/uploads/2011/12/mzl.jywsrytz.175x175-75.jpg" alt="" width="138" height="138" /></a>A neat little App I found through <a href="http://chris.pirillo.com/" target="_blank">Chris Pirillo</a> is called &#8220;<a href="http://itunes.apple.com/il/app/myrealfont/id468064374" target="_blank">MyRealFont</a>.&#8221;  With this App you can make your own font by drawing in each letter on your iPhone, then you can e-mail it to yourself as an actual TTF file you can install and use on your computer! <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The interface was really simple and easy to use, but it&#8217;s difficult to draw anything really nice ^^;  I&#8217;d like to see if you could get a nice handwritten style font from this from using the iPad with a stylus.</p>
<p>But until I find myself with an iPad I&#8217;ll have to live with the scribbly font I made with my iPod x3</p>
<p><a href="http://itunes.apple.com/il/app/myrealfont/id468064374" target="_blank">Download the App on iTunes</a></p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/12/Scribble-Foxu.zip" target="_blank">Download the font I made</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/myrealfont-iphone-app/635/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Facebook RSS Widget</title>
		<link>http://wannabe.contropa.com/custom-facebook-rss-widget/634/</link>
		<comments>http://wannabe.contropa.com/custom-facebook-rss-widget/634/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 22:26:42 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=634</guid>
		<description><![CDATA[For a project we wanted to bring in outside links and display them in a box on the homepage.  Instead of building out a whole custom system to handle the link, I suggested posing them through Facebook. So in order to be able to style the feed however we wanted I put together a simple [...]]]></description>
			<content:encoded><![CDATA[<p>For a project we wanted to bring in outside links and display them in a box on the homepage.  Instead of building out a whole custom system to handle the link, I suggested posing them through Facebook.</p>
<p>So in order to be able to style the feed however we wanted I put together a simple Curl code in PHP to pull in the Facebook Page RSS feed (every page has a feed it&#8217;ll be formated like this =&gt; http://www.facebook.com/feeds/page.php?id=245091913103&amp;format=rss20).</p>
<p>This will check if there&#8217;s a link inside the body of the status update and use that, but then default to the link to the status message in Facebook if that doesn&#8217;t exist.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
        <span style="color: #000088;">$curl</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;http://www.facebook.com/feeds/page.php?id=245091913103&amp;format=rss20&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_CONNECTTIMEOUT<span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_FOLLOWLOCATION<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #339933;">,</span> CURLOPT_USERAGENT<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$xmlTwitter</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #990000;">curl_close</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$curl</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$xmlObjTwitter</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$xmlTwitter</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$tempCounter</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$xmlObjTwitter</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$item</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>                    
            <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$tempCounter</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">9</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                <span style="color: #990000;">preg_match</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/(http|https|ftp)(.*?) (id|target)/i'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">description</span><span style="color: #339933;">,</span> <span style="color: #000088;">$matches</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&quot; id'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li&gt;&lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> ? <span style="color: #000088;">$matches</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; target=&quot;_blank&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;
                &lt;div&gt;'</span><span style="color: #339933;">.</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'F jS, Y'</span><span style="color: #339933;">,</span><span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">pubDate</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/div&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
            <span style="color: #000088;">$tempCounter</span> <span style="color: #339933;">+=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/custom-facebook-rss-widget/634/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Pocky day!</title>
		<link>http://wannabe.contropa.com/happy-pocky-day/629/</link>
		<comments>http://wannabe.contropa.com/happy-pocky-day/629/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 01:09:16 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=629</guid>
		<description><![CDATA[As some of you may know 11/11 is the unofficial Pocky Day :3 So in order to celebrated what some have called the &#8220;Ultimate Pocky Day&#8220;, a.k.a. 11/11/11,  I am&#8230;eating Pocky :3 (but only the fancy kind!) &#160;]]></description>
			<content:encoded><![CDATA[<p>As some of you may know 11/11 is the unofficial Pocky Day :3 So in order to celebrated what some have called the &#8220;<strong>Ultimate Pocky Day</strong>&#8220;, a.k.a. 11/11/11,  I am&#8230;eating Pocky :3 (but only the fancy kind!)</p>
<p>&nbsp;</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/11/AeAv1Y-CAAERJS3.jpg" rel="lightbox[629]"><img class="aligncenter size-medium wp-image-631" title="AeAv1Y-CAAERJS3" src="http://wannabe.contropa.com/wp-content/uploads/2011/11/AeAv1Y-CAAERJS3-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/happy-pocky-day/629/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inspiring photoshop templates</title>
		<link>http://wannabe.contropa.com/inspiring-photoshop-templates/588/</link>
		<comments>http://wannabe.contropa.com/inspiring-photoshop-templates/588/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 15:56:49 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=588</guid>
		<description><![CDATA[I stumbled upon a site &#8220;PSD Station&#8221; which blew me away with some really slick looking PSD templates   Looking though their archives I felt really inspired and I think it&#8217;s really handy to have some many nice looking designs and different versions of normal elements that are easy to take for granted. I was [...]]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon a site &#8220;PSD Station&#8221; which blew me away with some really slick looking PSD templates <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Looking though their archives I felt really inspired and I think it&#8217;s really handy to have some many nice looking designs and different versions of normal elements that are easy to take for granted.</p>
<p>I was mostly impressed with all the variations of signup forms they had.  There were some interesting variations that I have seen before but it really made me think about all the different ways you can present that information by seeing so many different samples in one place.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/banner.jpg" rel="lightbox[588]"><img class="aligncenter size-medium wp-image-620" title="banner" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/banner-300x85.jpg" alt="" width="300" height="85" /></a></p>
<p><a href="http://www.psdstation.com/" target="_blank">http://www.psdstation.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/inspiring-photoshop-templates/588/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Good looking static 728&#215;90 banners</title>
		<link>http://wannabe.contropa.com/50-good-looking-static-728x90-banners/500/</link>
		<comments>http://wannabe.contropa.com/50-good-looking-static-728x90-banners/500/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 22:41:52 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=500</guid>
		<description><![CDATA[I found myself in the need for some inspiration, so here is a small collection of some nice looking 728&#215;90 banners:]]></description>
			<content:encoded><![CDATA[<p>I found myself in the need for some inspiration, so here is a small collection of some nice looking 728&#215;90 banners:</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/3FSLMUQHHZF3ZGSHGFBTCR.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-504" title="3FSLMUQHHZF3ZGSHGFBTCR" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/3FSLMUQHHZF3ZGSHGFBTCR-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/728X90_neo_cow.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-505" title="728X90_neo_cow" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/728X90_neo_cow-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/728X90_neo_value.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-506" title="728X90_neo_value" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/728X90_neo_value-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/1310477491728x90_freerice_cambodia.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-508" title="1310477491728x90_freerice_cambodia" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/1310477491728x90_freerice_cambodia-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/1311157051728x90_HOA.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-509" title="1311157051728x90_HOA" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/1311157051728x90_HOA-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/c0190a61e2f204e131ff1a9be6b805da.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-510" title="c0190a61e2f204e131ff1a9be6b805da" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/c0190a61e2f204e131ff1a9be6b805da-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/PID_1355736_audi_points_no_flash.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-511" title="PID_1355736_audi_points_no_flash" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/PID_1355736_audi_points_no_flash-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/ST_Test1_BTS_2_728x90.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-512" title="ST_Test1_BTS_2_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/ST_Test1_BTS_2_728x90-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/1-en_728x90_food_leaderboard.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-515" title="1-en_728x90_food_leaderboard" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/1-en_728x90_food_leaderboard-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/1311372003728x90_hoa_hungertest.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-516" title="1311372003728x90_hoa_hungertest" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/1311372003728x90_hoa_hungertest-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Kohls_728x90_Adults_8.9.11.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-517" title="Kohls_728x90_Adults_8.9.11" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Kohls_728x90_Adults_8.9.11-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/la_diesel_728x90_v2-time-is-running-out.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-518" title="la_diesel_728x90_v2-time-is-running-out" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/la_diesel_728x90_v2-time-is-running-out-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/MailChimp_Jul2011.20110727.red_.728x90.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-519" title="MailChimp_Jul2011.20110727.red.728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/MailChimp_Jul2011.20110727.red_.728x90-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/media600623.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-520" title="media600623" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/media600623-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-14.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-521" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-14-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/600341.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-522" title="600341" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/600341-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/612443.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-523" title="612443" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/612443-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/FS_728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-525" title="FS_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/FS_728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/TGFPYAB7VNGIROCQDPPEN2.png" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-526" title="TGFPYAB7VNGIROCQDPPEN2" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/TGFPYAB7VNGIROCQDPPEN2-300x37.png" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/rnBanner_728x90_v01.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-527" title="rnBanner_728x90_v01" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/rnBanner_728x90_v01-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/PRG_Reward60_728x90_40k.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-528" title="PRG_Reward60_728x90_40k" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/PRG_Reward60_728x90_40k-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Books_Free30Day.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-531" title="728x90_Books_Free30Day" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Books_Free30Day-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/20110803_sc_mashable_banner_728x90_animated.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-532" title="20110803_sc_mashable_banner_728x90_animated" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/20110803_sc_mashable_banner_728x90_animated-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/DTV150_dispnfla_nat_728x90_R2_DEFAULT_8.17.11.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-533" title="DTV150_dispnfla_nat_728x90_R2_DEFAULT_8.17.11" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/DTV150_dispnfla_nat_728x90_R2_DEFAULT_8.17.11-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/hoover_freeShipping_0811_728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-534" title="hoover_freeShipping_0811_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/hoover_freeShipping_0811_728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-535" title="imgad" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad.png" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-536" title="imgad" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad-300x37.png" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/prfb728x90ad8.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-537" title="prfb728x90ad8" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/prfb728x90ad8-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Vichy_Healthy_v2_081911.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-561" title="728x90_Vichy_Healthy_v2_081911" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Vichy_Healthy_v2_081911-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Vichy_ThermalSpaWater_FreeSamples_SN_060911.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-564" title="728x90_Vichy_ThermalSpaWater_FreeSamples_SN_060911" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/728x90_Vichy_ThermalSpaWater_FreeSamples_SN_060911-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/13001-83639-26109-5.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-562" title="13001-83639-26109-5" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/13001-83639-26109-5-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/lockup_728x90_4.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-563" title="lockup_728x90_4" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/lockup_728x90_4-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/BTR_PREMIUM_728x90v7.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-565" title="BTR_PREMIUM_728x90v7" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/BTR_PREMIUM_728x90v7-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/f0f4a8e4b390ff2c3edb89dfbdd93c39.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-566" title="f0f4a8e4b390ff2c3edb89dfbdd93c39" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/f0f4a8e4b390ff2c3edb89dfbdd93c39-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad1.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-567" title="imgad" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/imgad1-300x32.jpg" alt="" width="300" height="32" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/smallcanbebig_100_728x90_013009.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-568" title="smallcanbebig_100_728x90_013009" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/smallcanbebig_100_728x90_013009-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/UTI_Auto_Legacy_LTRE_728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-569" title="UTI_Auto_Legacy_LTRE_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/UTI_Auto_Legacy_LTRE_728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/WS_0803_Cookware_Staub_728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-579" title="WS_0803_Cookware_Staub_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/WS_0803_Cookware_Staub_728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/1-Adobe_SendNow_Ease_728x90_IMG.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-604" title="1-Adobe_SendNow_Ease_728x90_IMG" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/1-Adobe_SendNow_Ease_728x90_IMG-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/7.13_ASPCA_728X90_chilli18.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-605" title="7.13_ASPCA_728X90_chilli18" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/7.13_ASPCA_728X90_chilli18-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/9f02b3478e2c6d6522fb2773585c223c.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-606" title="9f02b3478e2c6d6522fb2773585c223c" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/9f02b3478e2c6d6522fb2773585c223c-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/6958_PZ_Dodge_728x90EN_static.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-609" title="6958_PZ_Dodge_728x90EN_static" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/6958_PZ_Dodge_728x90EN_static-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/11584-1260352626.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-610" title="11584-1260352626" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/11584-1260352626-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/621718.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-611" title="621718" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/621718-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/621722.gif" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-612" title="621722" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/621722-300x37.gif" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/boys_and_girls_club_80018_begreat_728x90_022409.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-613" title="boys_and_girls_club_80018_begreat_728x90_022409" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/boys_and_girls_club_80018_begreat_728x90_022409-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/CY+RTW+525+728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-614" title="CY+RTW+525+728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/CY+RTW+525+728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/df6fb1cb8d0983e433c5ef556c515c5c.png" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-615" title="df6fb1cb8d0983e433c5ef556c515c5c" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/df6fb1cb8d0983e433c5ef556c515c5c-300x37.png" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/summerbogo_gold_728x90.jpg" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-616" title="summerbogo_gold_728x90" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/summerbogo_gold_728x90-300x37.jpg" alt="" width="300" height="37" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/uploadedBG.png" rel="lightbox[500]"><img class="aligncenter size-medium wp-image-617" title="uploadedBG" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/uploadedBG-300x37.png" alt="" width="300" height="37" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/50-good-looking-static-728x90-banners/500/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Please Start From the Beginning&#8230;</title>
		<link>http://wannabe.contropa.com/please-start-from-the-beginning/489/</link>
		<comments>http://wannabe.contropa.com/please-start-from-the-beginning/489/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 18:07:03 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=489</guid>
		<description><![CDATA[&#8220;Please start from the beginning&#8221; is a Podcast that interviews individuals about their jobs.  This podcast interviews individuals working with the web and goes through how they got to where they are today, what they do, and what their job title means. It&#8217;s interesting to hear about how people got their start and what led [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Please start from the beginning&#8221; is a Podcast that interviews individuals about their jobs.  This podcast interviews individuals working with the web and goes through how they got to where they are today, what they do, and what their job title means.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/Picture-21.jpg" rel="lightbox[489]"><img class="aligncenter size-medium wp-image-583" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/Picture-21-300x44.jpg" alt="" width="300" height="44" /></a>It&#8217;s interesting to hear about how people got their start and what led up to where they are today <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   There may even be a few pearls of wisdom here and there throughout the interviews.</p>
<p><a href="http://psftb.ryanhavoctaylor.com/" target="_blank">http://psftb.ryanhavoctaylor.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/please-start-from-the-beginning/489/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails for Zombies</title>
		<link>http://wannabe.contropa.com/rails-for-zombies/580/</link>
		<comments>http://wannabe.contropa.com/rails-for-zombies/580/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 17:32:22 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=580</guid>
		<description><![CDATA[I recently completed the Ruby on Rails tutorial &#8220;Rails for Zombies.&#8221; I really like it&#8217;s &#8220;edutainment&#8221; zombie filled format, and on top of that it&#8217;s a very well written and easy to follow tutorial. The tutorial consists of five &#8220;chapters.&#8221; Each chapter is broken up into an approximately 10 minute video and then a lab [...]]]></description>
			<content:encoded><![CDATA[<p>I recently completed the Ruby on Rails tutorial &#8220;<a href="http://railsforzombies.org/" target="_blank">Rails for Zombies</a>.&#8221; I really like it&#8217;s &#8220;edutainment&#8221; zombie filled format, and on top of that it&#8217;s a very well written and easy to follow tutorial.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/09/Picture-2.jpg" rel="lightbox[580]"><img class="aligncenter size-medium wp-image-581" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/09/Picture-2-300x123.jpg" alt="" width="300" height="123" /></a></p>
<p>The tutorial consists of five &#8220;chapters.&#8221; Each chapter is broken up into an approximately 10 minute video and then a lab portion where you get to do exercises related to the video.  It&#8217;s really great to try out the code right after hearing about it, and I like that it doesn&#8217;t get drearily technical at the get go with needing to get Rails up and running.  A lot of RoR tutorials start with installing and runing your own local server, which a least for me is the least pleasant part.</p>
<p>A nice take away is the free PDF download it offers, which has all the slides from the video and is a nice reference back to everything you learned from the tutorial.  You also get a coupon for some paid rails tutorials after you finish.  They have &#8220;Rails for Zombies 2&#8243; in the works so I&#8217;m thinking of saving it for that :3</p>
<p>At their Code School website they also offer a &#8220;Rails best practices&#8221; class which sounds a little advanced for diving into right after Rails for Zombies, but if it&#8217;s anywhere as well put together as Rails for Zombies I&#8217;d like to come back to it later.</p>
<p><a href="http://railsforzombies.org/" target="_blank">http://railsforzombies.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/rails-for-zombies/580/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Images Cut Off in the WordPress Image Editor</title>
		<link>http://wannabe.contropa.com/images-cut-off-in-the-wordpress-image-editor/555/</link>
		<comments>http://wannabe.contropa.com/images-cut-off-in-the-wordpress-image-editor/555/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 17:50:45 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=555</guid>
		<description><![CDATA[So, I&#8217;ve just spent the last half hour tracking down this annoying bug in WordPress I&#8217;m really glad I use an outdated theme (or at least one without custom header support) so I could track this puppy down. I have been working on building a theme that is a child theme of good &#8216;ol 2010 [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve just spent the last half hour tracking down this annoying bug in WordPress <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I&#8217;m really glad I use an outdated theme (or at least one without custom header support) so I could track this puppy down.</p>
<p>I have been working on building a theme that is a child theme of good &#8216;ol 2010 (2011 wasn&#8217;t out when I started building <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> )</p>
<p>I uploaded a portrait image and noticed it got cut off in the image editor like so:</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-2.jpg" rel="lightbox[555]"><img class="aligncenter size-medium wp-image-556" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-2-300x214.jpg" alt="" width="300" height="214" /></a><br />
The editor&#8217;s will really need to be able to adjust that thumbnail image, so I went digging around and found that a theme called &#8220;Modfolio&#8221; had this exact same problem.  So, I figure, it&#8217;s gotta be something with the theme.  Especially since I didn&#8217;t get a whole lot of results&#8230;if it was a core issue and everyone was seeing this then I would assume there would be a lot more complaints.</p>
<p>I switched around from my child theme, to 2010, and even 2011, but the same error kept popping up :/  Then I figured I&#8217;d check it out in my blog here.  I&#8217;m currently using a slightly modified version of Uchilla theme &#8211; which hasn&#8217;t been updated in ages.  And lo-and-behold the image is coming up fine and dandy in the editor.  I could be wrong on this, but I believe the only file in a theme that can mess with the admin side of things is the functions.php file.  So I just kept hacking away at it until I found the bit of code that was causing me grief.</p>
<p>It&#8217;s lines 117 &amp; 188 in the functions file for 2010:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 198 ) );</pre></div></div>

<p>That was somehow adding a constraint to the editor preview and for me simply commenting out those two lines did the trick <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   <strong>I did have to re-upload all the affected images though&#8230;</strong></p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-3.jpg" rel="lightbox[555]"><img class="aligncenter size-medium wp-image-559" title="Picture 3" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-3-300x287.jpg" alt="" width="300" height="287" /></a></p>
<p>I don&#8217;t know what effect that might have on the custom headers&#8230;I&#8217;m not using them myself so it wasn&#8217;t an issue for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/images-cut-off-in-the-wordpress-image-editor/555/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Layer Tennis</title>
		<link>http://wannabe.contropa.com/layer-tennis/514/</link>
		<comments>http://wannabe.contropa.com/layer-tennis/514/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 17:15:33 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=514</guid>
		<description><![CDATA[Layer Tennis is an interesting &#8220;sport.&#8221;  What happens is that one designer starts off a Photoshop file, and then gives it over to another designer who makes a change or ads some elements.  This continues for 10 rounds, with some amusing commentary thrown in.  It sounds like a nice way to spend a Friday afternoon [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://layertennis.com/" target="_blank">Layer Tennis</a> is an interesting &#8220;sport.&#8221;  What happens is that one designer starts off a Photoshop file, and then gives it over to another designer who makes a change or ads some elements.  This continues for 10 rounds, with some amusing commentary thrown in.  It sounds like a nice way to spend a Friday afternoon <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-15.jpg" rel="lightbox[514]"><img class="aligncenter size-medium wp-image-529" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-15-300x90.jpg" alt="" width="300" height="90" /></a></p>
<p><a href="http://layertennis.com/" target="_blank">http://layertennis.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/layer-tennis/514/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try Ruby</title>
		<link>http://wannabe.contropa.com/try-ruby/501/</link>
		<comments>http://wannabe.contropa.com/try-ruby/501/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 17:51:28 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=501</guid>
		<description><![CDATA[I&#8217;m trying to come to grips with Ruby on Rails, and the website Try Ruby was suggested to me. &#160; It was a really impressive online tutorial set-up as a user prompt.  I really appreciate that it&#8217;s one Ruby tutorial that doesn&#8217;t require me to be download and installing packages willy-nilly to get started   [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to come to grips with Ruby on Rails, and the website <a href="http://tryruby.org/" target="_blank">Try Ruby</a> was suggested to me.</p>
<p>&nbsp;</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-13.jpg" rel="lightbox[501]"><img class="aligncenter size-medium wp-image-502" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-13-300x47.jpg" alt="" width="300" height="47" /></a></p>
<p>It was a really impressive online tutorial set-up as a user prompt.  I really appreciate that it&#8217;s one Ruby tutorial that doesn&#8217;t require me to be download and installing packages willy-nilly to get started <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />   It&#8217;s extremely newbie-friendly and is well written and utilizes some light humor to help you get through it <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I think the last chapter was a bit clumsy&#8230;but may have just had one too many typos along the way.</p>
<p>Regardless, I&#8217;d say the &#8220;15 minute&#8221; bit is no lie and well worth the time if you&#8217;re trying to get better acquainted with Ruby or RoR such as myself.</p>
<p><a href="http://tryruby.org/" target="_blank">http://tryruby.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/try-ruby/501/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free seamless patterns</title>
		<link>http://wannabe.contropa.com/free-seamless-patterns/495/</link>
		<comments>http://wannabe.contropa.com/free-seamless-patterns/495/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 19:26:16 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=495</guid>
		<description><![CDATA[Subtle Patterns is a lovely site featured some really great seamless patterns.  Best of all they&#8217;re commercial free so no worries about plugging these into your designs The patterns are all fairly muted.  Nothing really crazy.  They&#8217;re very well made and look professional.  I was really happy to find this site, and I&#8217;m planning on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://subtlepatterns.com/" target="_blank">Subtle Patterns</a> is a lovely site featured some really great seamless patterns.  Best of all they&#8217;re commercial free so no worries about plugging these into your designs <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-12.jpg" rel="lightbox[495]"><img class="aligncenter size-medium wp-image-499" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-12-300x58.jpg" alt="" width="300" height="58" /></a></p>
<p>The patterns are all fairly muted.  Nothing really crazy.  They&#8217;re very well made and look professional.  I was really happy to find this site, and I&#8217;m planning on using some of their textures in future designs.  Light textures like these are a great way to add a little more interest and depth to a piece of design without going overboard.</p>
<p>Plus patterns are &#8220;in&#8221; right now, and it&#8217;s always fun to be trendy <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://subtlepatterns.com/" target="_blank">http://subtlepatterns.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/free-seamless-patterns/495/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>350s gallery</title>
		<link>http://wannabe.contropa.com/350-gallery/491/</link>
		<comments>http://wannabe.contropa.com/350-gallery/491/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 17:36:18 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[CSS/HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=491</guid>
		<description><![CDATA[I randomly made this little webpage to showcase a lot of 350&#215;200 openers I made for online articles It&#8217;s a pretty simple script built on top of jquery: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 &#60;style type=&#34;text/css&#34;&#62; body {     margin:0; [...]]]></description>
			<content:encoded><![CDATA[<p>I randomly made this little webpage to showcase a lot of 350&#215;200 openers I made for online articles <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s a pretty simple script built on top of jquery:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;style type=&quot;text/css&quot;&gt;
body {
    margin:0;
    overflow:hidden;
}
&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
    $(&quot;div&quot;).mousemove(function(e){
      height = $(window).height();
        width = $(window).width();
        percent = e.clientY * 100 / height;
        move = ($(&quot;#box&quot;).height()-height) * percent / 100;
        $(&quot;body&quot;).scrollTop(move);
&nbsp;
        percent2 = e.clientX * 100 / width;
        move2 = ($(&quot;#box&quot;).width()-width) * percent2 / 100;
        $(&quot;body&quot;).scrollLeft(move2);
    });
});
&lt;/script&gt;</pre></td></tr></table></div>

<p>The CSS hides the scrollbars and removes the default margins from the body.</p>
<p>Then the Javascipt adds an event handler that will fire every time the mouse moves on top of a div &#8211; which is always since the page is pretty much just one giant div.  After that it determines what percent of the window you cursor is currently sitting at, and then translates that to the same percentage of the size of that giant div and scrolls the window accordingly.  So regardless of the size of the window you&#8217;ll be able to move it around to see all the contents of the div.</p>
<p>Scroll around the box below to see the random goodness:</p>
<p><iframe src="http://subeta.contropa.com/350s/" frameborder="0" width="100%" height="240"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/350-gallery/491/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert a website to PDF</title>
		<link>http://wannabe.contropa.com/convert-webpage-to-pdf/484/</link>
		<comments>http://wannabe.contropa.com/convert-webpage-to-pdf/484/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 17:27:58 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=484</guid>
		<description><![CDATA[Ever come across a website and wish you could save it for later?  For offline reading on an iPod &#8211; or just to save it for prosperity?  The you&#8217;re in luck   When I wanted to save a copy of an online tutorial I looked up the site Web 2 PDF.  It was easy to [...]]]></description>
			<content:encoded><![CDATA[<p>Ever come across a website and wish you could save it for later?  For offline reading on an iPod &#8211; or just to save it for prosperity?  The you&#8217;re in luck <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   When I wanted to save a copy of an online tutorial I looked up the site <a href="http://www.web2pdfconvert.com" target="_blank">Web 2 PDF</a>.  It was easy to use and only took a few seconds to turn an entire web page into a PDF.  I was impressed by how close it looked to the original and it kept all of the text selectable.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-11.jpg" rel="lightbox[484]"><img class="aligncenter size-medium wp-image-490" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-11-300x164.jpg" alt="" width="300" height="164" /></a></p>
<p>If you&#8217;re lucky enough to have a full version of Acrobat you can even combine all the PDFs together to make your very own DRM free eBook <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.web2pdfconvert.com/" target="_blank">http://www.web2pdfconvert.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/convert-webpage-to-pdf/484/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Japanese Color Guide</title>
		<link>http://wannabe.contropa.com/japanese-color-guide/479/</link>
		<comments>http://wannabe.contropa.com/japanese-color-guide/479/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 19:15:43 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Japanese]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=479</guid>
		<description><![CDATA[While attending my online Japanese class one of the other students shared a link to the lovely Japanese Color Guide site.  What is cool about this site is that it has translations for a heap of different colors next to a sample of the color itself.  They don&#8217;t have every color under the sun, but [...]]]></description>
			<content:encoded><![CDATA[<p>While attending my online Japanese class one of the other students shared a link to the lovely <a href="http://www.color-guide.com/e_index.shtml" target="_blank">Japanese Color Guide</a> site.  What is cool about this site is that it has translations for a heap of different colors next to a sample of the color itself.  They don&#8217;t have every color under the sun, but it&#8217;s a nice resource if you&#8217;ve ever wondered how to say vermillion in Japanese (Syu-iro by the way.)</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-1.jpg" rel="lightbox[479]"><img class="aligncenter size-medium wp-image-488" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/08/Picture-1-300x181.jpg" alt="" width="300" height="181" /></a></p>
<p><a href="http://www.color-guide.com/e_index.shtml" target="_blank">http://www.color-guide.com/e_index.shtml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/japanese-color-guide/479/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boag World Podcast</title>
		<link>http://wannabe.contropa.com/boag-world-podcast/468/</link>
		<comments>http://wannabe.contropa.com/boag-world-podcast/468/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 19:17:13 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=468</guid>
		<description><![CDATA[I&#8217;ve been on the lookout for a designer/developer podcast to help me keep up with new trends and improve my knowledge of the industry.  While trying out the Sitepoint Podcast they had Paul Boag as a guest on one of their older episodes and he spoke about his own Podcast, Boagworld, so I thought I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been on the lookout for a designer/developer podcast to help me keep up with new trends and improve my knowledge of the industry.  While trying out the <a href="http://www.sitepoint.com/podcast" target="_blank">Sitepoint Podcast </a>they had Paul Boag as a guest on one of their older episodes and he spoke about his own Podcast, <a href="http://boagworld.com/" target="_blank">Boagworld</a>, so I thought I&#8217;d mosey on over there and give it a try.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-12.jpg" rel="lightbox[468]"><img class="aligncenter size-medium wp-image-473" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-12-300x124.jpg" alt="" width="300" height="124" /></a></p>
<p>This podcast first started as your normal weekly deal, but recently the format has been completely re-hauled to be &#8220;season&#8221; based.  Where it has a group of episodes all revolving around one main topic.  Currently they are Podcasting the entire process of redesigning the website.  I love how transparent they&#8217;re being about the process, and it&#8217;s really great to learn about each step  in detail.  I&#8217;d highly recommend giving it a listen <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://boagworld.com/" target="_blank">http://boagworld.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/boag-world-podcast/468/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure CSS GUI icons</title>
		<link>http://wannabe.contropa.com/pure-css-gui-icons/467/</link>
		<comments>http://wannabe.contropa.com/pure-css-gui-icons/467/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 17:52:46 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[CSS/HTML]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=467</guid>
		<description><![CDATA[While I was listening to Sitepoint&#8217;s 118th Podcast the other day and they mentioned a very interesting CSS 3 experiment.  Sadly this won&#8217;t be working with IE just yet so it&#8217;s not something we can put to use right away, but the idea of Pure CSS icons is quite neat   The use of pseudo [...]]]></description>
			<content:encoded><![CDATA[<p>While I was listening to <a href="http://www.sitepoint.com/sitepoint-podcast-118-www-dot-www/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sitepoint-podcast-118-www-dot-www" target="_blank">Sitepoint&#8217;s 118th Podcast </a>the other day and they mentioned a very interesting CSS 3 experiment.  Sadly this won&#8217;t be working with IE just yet so it&#8217;s not something we can put to use right away, but the idea of <a href="http://nicolasgallagher.com/pure-css-gui-icons/" target="_blank">Pure CSS icons</a> is quite neat <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   The use of pseudo elements to create the icons out of pure CSS is truly innovative and makes me start to think about all the code that could be cleaned up by taking advantage of pseudo elements as opposed to adding in more DIVs to get certain background and border effects&#8230;</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-11.jpg" rel="lightbox[467]"><img class="aligncenter size-medium wp-image-469" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-11-228x300.jpg" alt="" width="228" height="300" /></a></p>
<p>Regardless, it&#8217;s an interesting peek in to what we&#8217;ll be able to achieve once CSS 3 is fully supported</p>
<p><a href="http://nicolasgallagher.com/pure-css-gui-icons/demo/" target="_blank">http://nicolasgallagher.com/pure-css-gui-icons/demo/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/pure-css-gui-icons/467/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash on the iPod with Splashtop</title>
		<link>http://wannabe.contropa.com/flash-on-the-ipod-with-splashtop/459/</link>
		<comments>http://wannabe.contropa.com/flash-on-the-ipod-with-splashtop/459/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 18:18:33 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=459</guid>
		<description><![CDATA[I&#8217;ve tried out some remote control aps for my iPod, but most of them only act as a touchpad.  They will allow you to control your computer from anywhere within wireless range, which is cool, but recently I found something that&#8217;s even cooler.  Splashtop is an app that not only allow you to control your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/mzl.lhsjzyfi.175x175-75.jpg" rel="lightbox[459]"><img class="alignleft size-thumbnail wp-image-464" title="mzl.lhsjzyfi.175x175-75" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/mzl.lhsjzyfi.175x175-75-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;ve tried out some remote control aps for my iPod, but most of them only act as a touchpad.  They will allow you to control your computer from anywhere within wireless range, which is cool, but recently I found something that&#8217;s even cooler.  <a href="http://www.splashtop.com/remote" target="_blank">Splashtop</a> is an app that not only allow you to control your computer, but you can also see it&#8217;s full screen on your iPod!  It&#8217;s very handy for controlling your computer in places where you can&#8217;t actually see the screen and allows you to do pretty much anything that you can do on your computer in the palm of your hand.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/mzl.zqqctzox.320x480-75.jpg" rel="lightbox[459]"><img class="aligncenter size-full wp-image-465" title="mzl.zqqctzox.320x480-75" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/mzl.zqqctzox.320x480-75.jpg" alt="" width="320" height="480" /></a></p>
<p><a href="http://www.splashtop.com/remote" target="_blank">http://www.splashtop.com/remote</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/flash-on-the-ipod-with-splashtop/459/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anime Paper</title>
		<link>http://wannabe.contropa.com/anime-paper/412/</link>
		<comments>http://wannabe.contropa.com/anime-paper/412/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 18:00:10 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[anime]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=412</guid>
		<description><![CDATA[We&#8217;re going to look at something today that is near and dear to my heart &#8211; anime :3  But, anime wallpaper in particular.  You end up looking at your desktop every day, so why not make it something nice and unique?  Anime wallpapers can be breathtaking, and well, full of fandom goodness.  Two very nice [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re going to look at something today that is near and dear to my heart &#8211; anime :3  But, anime wallpaper in particular.  You end up looking at your desktop every day, so why not make it something nice and unique?  Anime wallpapers can be breathtaking, and well, full of fandom goodness.  Two very nice sites dedicated to the subject are <a href="http://www.animepaper.net/" target="_blank">Anime Paper</a> and <a href="http://www.minitokyo.net/" target="_blank">Minitokyo</a>.  So check them out if that&#8217;s your thing.  Also, <em>I&#8217;ve got an old <a href="http://foxumon.minitokyo.net/" target="_blank">account myself </a>on Minitokyo.</em></p>
<div id="attachment_462" class="wp-caption aligncenter" style="width: 310px"><a href="http://gallery.minitokyo.net/view/416537" target="_blank"><img class="size-medium wp-image-462 " title="416537" src="http://wannabe.contropa.com/wp-content/uploads/2011/02/416537-300x240.jpg" alt="" width="300" height="240" /></a><p class="wp-caption-text">Mystery night by Tekashime</p></div>
<p><a href="http://www.animepaper.net/" target="_blank">http://www.animepaper.net/</a><br />
<a href="http://www.minitokyo.net/" target="_blank">http://www.minitokyo.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/anime-paper/412/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the Font?</title>
		<link>http://wannabe.contropa.com/what-the-font/457/</link>
		<comments>http://wannabe.contropa.com/what-the-font/457/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 17:26:37 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=457</guid>
		<description><![CDATA[On occasion I&#8217;ve been handed work where I needed to replace some text in an image without any the original files.  It can be very time consuming to try and dig up the original font &#8211; or at least find a font that&#8217;s close enough.  That&#8217;s where My Fonts &#8220;What the Font?&#8221; can come in [...]]]></description>
			<content:encoded><![CDATA[<p>On occasion I&#8217;ve been handed work where I needed to replace some text in an image without any the original files.  It can be very time consuming to try and dig up the original font &#8211; or at least find a font that&#8217;s close enough.  That&#8217;s where My Fonts &#8220;<a href="http://new.myfonts.com/WhatTheFont/" target="_blank">What the Font?</a>&#8221; can come in handy.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-3.jpg" rel="lightbox[457]"><img class="aligncenter size-medium wp-image-460" title="Picture 3" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-3-300x230.jpg" alt="" width="300" height="230" /></a></p>
<p>You can upload an image of some text, then designate which parts of the image are what letters and the application will give you a list of fonts that are similar to the one in the picture.  A definite time saver <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://new.myfonts.com/WhatTheFont/" target="_blank">http://new.myfonts.com/WhatTheFont/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/what-the-font/457/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple HTML5 slideshows</title>
		<link>http://wannabe.contropa.com/simple-html5-slideshows/399/</link>
		<comments>http://wannabe.contropa.com/simple-html5-slideshows/399/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 18:57:49 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=399</guid>
		<description><![CDATA[Drop Mocks is a simple website that allows you to make slideshows by simply dragging and dropping images into your browser window.  You don&#8217;t need to sign in to make a slideshow, but then anyone will be able to change your slideshow from it&#8217;s URL.  You don&#8217;t need to make a new account for this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dropmocks.com/" target="_blank">Drop Mocks</a> is a simple website that allows you to make slideshows by simply dragging and dropping images into your browser window.  You don&#8217;t need to sign in to make a slideshow, but then anyone will be able to change your slideshow from it&#8217;s URL.  You don&#8217;t need to make a new account for this though, just sign in with your Google account and you&#8217;re good to go. Not so bad if you need some visual aids for a list minute presentation.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-1.jpg" rel="lightbox[399]"><img class="aligncenter size-medium wp-image-458" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/07/Picture-1-300x161.jpg" alt="" width="300" height="161" /></a>You can check out one I put together in under a minute from this URL: <a href="http://www.dropmocks.com/mXBaV" target="_blank">http://www.dropmocks.com/mXBaV</a></p>
<p><a href="http://www.dropmocks.com/" target="_blank">http://www.dropmocks.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/simple-html5-slideshows/399/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clay Figurines</title>
		<link>http://wannabe.contropa.com/clay-figurines/447/</link>
		<comments>http://wannabe.contropa.com/clay-figurines/447/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 19:19:32 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=447</guid>
		<description><![CDATA[These are some figures I put together with Sculpey   The quarter is there for a size comparison.]]></description>
			<content:encoded><![CDATA[<p>These are some figures I put together with Sculpey <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   The quarter is there for a size comparison.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/blu.jpg" rel="lightbox[447]"><img class="aligncenter size-full wp-image-451" title="blu" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/blu.jpg" alt="" width="500" height="338" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/hamster.jpg" rel="lightbox[447]"><img class="aligncenter size-full wp-image-452" title="hamster" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/hamster.jpg" alt="" width="500" height="338" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/jiggly.jpg" rel="lightbox[447]"><img class="aligncenter size-full wp-image-453" title="jiggly" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/jiggly.jpg" alt="" width="500" height="338" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/pabu.jpg" rel="lightbox[447]"><img class="aligncenter size-full wp-image-455" title="pabu" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/pabu.jpg" alt="" width="500" height="338" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/mew.jpg" rel="lightbox[447]"><img class="aligncenter size-full wp-image-454" title="mew" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/mew.jpg" alt="" width="500" height="338" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/clay-figurines/447/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advertising captcha</title>
		<link>http://wannabe.contropa.com/advertising-captcha/448/</link>
		<comments>http://wannabe.contropa.com/advertising-captcha/448/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 00:45:17 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[captcha]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=448</guid>
		<description><![CDATA[I was roaming about the internet the other day when I came across a captcha that had a company slogan instead of the typical distorted text.  I thought it was a pretty interesting concept and made my way over to Solve Media to check it out. According to their intro video adding your branding to [...]]]></description>
			<content:encoded><![CDATA[<p>I was roaming about the internet the other day when I came across a captcha that had a company slogan instead of the typical distorted text.  I thought it was a pretty interesting concept and made my way over to <a href="http://www.solvemedia.com/index.html" target="_blank">Solve Media</a> to check it out.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-2.jpg" rel="lightbox[448]"><img class="aligncenter size-medium wp-image-449" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-2-300x238.jpg" alt="" width="300" height="238" /></a></p>
<p>According to their intro video adding your branding to a captcha is much more engaging and results in a greater rate or retention for the user than traditional banner ads.  They also said that typing in slogans is faster for users than trying to type in that mushed up text that traditionally appears in captchas.  Sounds reasonable enough to me, but regardless I thought it was a really interesting concept to add in more advertising without adding more clutter.</p>
<p><a href="http://www.solvemedia.com/index.html">http://www.solvemedia.com/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/advertising-captcha/448/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web standards test</title>
		<link>http://wannabe.contropa.com/web-standards-test/262/</link>
		<comments>http://wannabe.contropa.com/web-standards-test/262/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 23:22:27 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=262</guid>
		<description><![CDATA[There&#8217;s not much you can do about what browsers support and don&#8217;t &#8211; or which browsers your users are on.  But there are some handy tools available online that will test your browser and give you details on it&#8217;s capabilities, or just let you know if your preferred browser is playing by the rules. http://acid3.acidtests.org/ [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s not much you can do about what browsers support and don&#8217;t &#8211; or which browsers your users are on.  But there are some handy tools available online that will test your browser and give you details on it&#8217;s capabilities, or just let you know if your preferred browser is playing by the rules.</p>
<div id="attachment_445" class="wp-caption aligncenter" style="width: 360px"><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-11.jpg" rel="lightbox[262]"><img class="size-full wp-image-445  " title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-11.jpg" alt="" width="350" height="250" /></a><p class="wp-caption-text">Acid 3 test on Firefox 4.0.1</p></div>
<p><a href="http://acid3.acidtests.org/" target="_blank">http://acid3.acidtests.org/</a><br />
<a href="http://html5test.com/" target="_blank">http://html5test.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/web-standards-test/262/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free certifications from Gild</title>
		<link>http://wannabe.contropa.com/free-certifications-from-gild/429/</link>
		<comments>http://wannabe.contropa.com/free-certifications-from-gild/429/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 17:00:48 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[gild]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=429</guid>
		<description><![CDATA[I was looking at those pricey w3schools certifications, but everywhere I asked said it was a big waste of money. So I decided to see what alternatives there were and see if there were any certifications that were especially well know that I should take. What I did find was the Gild website where you [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking at those pricey <a href="http://www.w3schools.com/" target="_blank">w3schools</a> certifications, but everywhere I asked said it was a big waste of money.  So I decided to see what alternatives there were and see if there were any certifications that were especially well know that I should take.</p>
<p>What I did find was the <a href="http://www.gild.com/" target="_blank">Gild website</a> where you can get certifications for free!</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-1.jpg" rel="lightbox[429]"><img class="aligncenter size-medium wp-image-442" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/Picture-1-300x260.jpg" alt="" width="300" height="260" /></a></p>
<p>The price is right, and if I learn something along the way then I say it&#8217;s definitely time well spent.  I am still considering the <a href="http://www.w3schools.com/" target="_blank">w3schools </a>certifications, but I&#8217;m going to start out with the free ones from <a href="http://www.gild.com/" target="_blank">Gild</a> and see where that takes me.</p>
<p><a href="http://www.gild.com/" target="_blank">http://www.gild.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/free-certifications-from-gild/429/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SelectORacle</title>
		<link>http://wannabe.contropa.com/selectoracle/438/</link>
		<comments>http://wannabe.contropa.com/selectoracle/438/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 16:21:45 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[CSS/HTML]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[sheet style]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=438</guid>
		<description><![CDATA[I stumbled across a website called SelectORacle. What it does is you input a style sheet and it breaks down exactly what is going on! Not too much help for me, but a nice resource to hold on to for newbies. http://gallery.theopalgroup.com/selectoracle/]]></description>
			<content:encoded><![CDATA[<p>I stumbled across a website called <a href="http://gallery.theopalgroup.com/selectoracle/" target="_blank">SelectORacle</a>. What it does is you input a style sheet and it breaks down exactly what is going on! Not too much help for me, but a nice resource to hold on to for newbies.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/selectorale.jpg" rel="lightbox[438]"><img class="aligncenter size-medium wp-image-441" title="selectorale" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/selectorale-300x186.jpg" alt="" width="300" height="186" /></a></p>
<p><a href="http://gallery.theopalgroup.com/selectoracle/" target="_blank">http://gallery.theopalgroup.com/selectoracle/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/selectoracle/438/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fonts in use</title>
		<link>http://wannabe.contropa.com/fonts-in-use/413/</link>
		<comments>http://wannabe.contropa.com/fonts-in-use/413/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 20:38:13 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=413</guid>
		<description><![CDATA[Fonts in use is a blog that features, well&#8230; fonts in use!  It&#8217;s fairly self explanatory.  It&#8217;s a treasure trove of typographic examples.  Every post spotlight one or more fonts being put to use in real world examples and includes details about the font&#8217;s name and origins &#8211; which I appreciate.  If you an aficionado [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://fontsinuse.com/" target="_blank">Fonts in use</a> is a blog that features, well&#8230; fonts in use!  It&#8217;s fairly self explanatory.  It&#8217;s a treasure trove of typographic examples.  Every post spotlight one or more fonts being put to use in real world examples and includes details about the font&#8217;s name and origins &#8211; which I appreciate.  If you an aficionado of typography like myself you may want to take a peek <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/06/fonts.jpg" rel="lightbox[413]"><img class="aligncenter size-medium wp-image-437" title="fonts" src="http://wannabe.contropa.com/wp-content/uploads/2011/06/fonts-300x249.jpg" alt="" width="300" height="249" /></a></p>
<p><a href="http://fontsinuse.com/" target="_blank">http://fontsinuse.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/fonts-in-use/413/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF resources online</title>
		<link>http://wannabe.contropa.com/pdf-resources-online/257/</link>
		<comments>http://wannabe.contropa.com/pdf-resources-online/257/#comments</comments>
		<pubDate>Tue, 24 May 2011 20:01:33 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=257</guid>
		<description><![CDATA[PDFs are a great way to send out a document knowing that it anyone will be able to see the document as you indented and won&#8217;t be able to make their own changes to it.  But, if you loose the original document and want to make some changes to your PDF yourself you&#8217;ll find yourself [...]]]></description>
			<content:encoded><![CDATA[<p>PDFs are a great way to send out a document knowing that it anyone will be able to see the document as you indented and won&#8217;t be able to make their own changes to it.  But, if you loose the original document and want to make some changes to your PDF yourself you&#8217;ll find yourself in quite a pickle.  Thankfully there are some free PDF converters available online, the one I&#8217;ve had the most success with is <a href="http://www.pdftoword.com/" target="_blank">PDF-to-Word</a>.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-2.jpg" rel="lightbox[257]"><img class="aligncenter size-medium wp-image-436" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-2-300x278.jpg" alt="" width="300" height="278" /></a></p>
<p><a href="http://www.pdftoword.com/" target="_blank">http://www.pdftoword.com/</a></p>
<p>Also, there&#8217;s another useful online application that will let you quickly merge two PDFs together</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-12.jpg" rel="lightbox[257]"><img class="aligncenter size-medium wp-image-435" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-12-300x54.jpg" alt="" width="300" height="54" /></a></p>
<p><a href="http://www.mergepdf.net/" target="_blank">http://www.mergepdf.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/pdf-resources-online/257/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QR code generators</title>
		<link>http://wannabe.contropa.com/qr-code-generator/242/</link>
		<comments>http://wannabe.contropa.com/qr-code-generator/242/#comments</comments>
		<pubDate>Wed, 18 May 2011 18:36:08 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[generators]]></category>
		<category><![CDATA[QR]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=242</guid>
		<description><![CDATA[QR codes are bar codes that can hold secret messages or URL&#8217;s that you can create and then read with a smart phone.  All someone needs to read a QR code is a smart phone with a camera and a free app like Red Laser.  QR codes can be a convenient way to transfer a [...]]]></description>
			<content:encoded><![CDATA[<p>QR codes are bar codes that can hold secret messages or URL&#8217;s that you can create and then read with a smart phone.  All someone needs to read a QR code is a smart phone with a camera and a free app like <a href="http://redlaser.com/" target="_blank">Red Laser</a>.  QR codes can be a convenient way to transfer a long URL to a cell phone.  They can be used on print advertisements or can be scanned directly from a computer screen.  Best of all QR codes are free and easy to make!</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-11.jpg" rel="lightbox[242]"><img class="aligncenter size-medium wp-image-434" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-11-300x157.jpg" alt="" width="300" height="157" /></a></p>
<p><strong>QR Code Generators:</strong><br />
<a href="http://qrcode.kaywa.com/" target="_blank">http://qrcode.kaywa.com/</a><br />
<a href="http://invx.com/" target="_blank">http://invx.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/qr-code-generator/242/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make photos look miniature</title>
		<link>http://wannabe.contropa.com/make-photos-look-minuture/264/</link>
		<comments>http://wannabe.contropa.com/make-photos-look-minuture/264/#comments</comments>
		<pubDate>Wed, 11 May 2011 17:22:10 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=264</guid>
		<description><![CDATA[I found a very cute application called TiltShift Maker that will make your photos look like miniature play-set versions of themselves. It&#8217;s very simple and easy to use, you can upload any photo to your computer and you&#8217;ll get an instant preview of how it will look miniaturized.  You can adjust many aspects of the [...]]]></description>
			<content:encoded><![CDATA[<p>I found a very cute application called <a href="http://tiltshiftmaker.com/photo-editing.php" target="_blank">TiltShift Maker</a> that will make your photos look like miniature play-set versions of themselves.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-1.jpg" rel="lightbox[264]"><img class="aligncenter size-medium wp-image-430" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/Picture-1-300x266.jpg" alt="" width="300" height="266" /></a></p>
<p>It&#8217;s very simple and easy to use, you can upload any photo to your computer and you&#8217;ll get an instant preview of how it will look miniaturized.  You can adjust many aspects of the blurb and designate where the focal point of your image is.  After adjusting the settings click on the preview button to see what they&#8217;ll look like before getting your final photo.  You can get a  480&#215;640 and 720&#215;960 size of your miniaturized photo for free or pony up some cash to get larger sizes.  I plugged in a photo I took from the Japanese Friendship Garden in San Diego and here are the results:</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/5306988475_89cdf60dcd_b-tiltshift.jpg" rel="lightbox[264]"><img class="aligncenter size-medium wp-image-431" title="5306988475_89cdf60dcd_b-tiltshift" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/5306988475_89cdf60dcd_b-tiltshift-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>That&#8217;s pretty gosh darn adorable if I do say so myself!</p>
<p><a href="http://tiltshiftmaker.com/photo-editing.php">http://tiltshiftmaker.com/photo-editing.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/make-photos-look-minuture/264/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hourly Rates</title>
		<link>http://wannabe.contropa.com/hourly-rates/191/</link>
		<comments>http://wannabe.contropa.com/hourly-rates/191/#comments</comments>
		<pubDate>Mon, 02 May 2011 22:49:06 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[job]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=191</guid>
		<description><![CDATA[It&#8217;s always pretty hard to quote someone for a project, which made me pretty happy when I came across this article.  BuildInternet.com took a survey of 107 readers and asked them what they charge as an hourly rate. They break down the results into a nice and simple pie chart and discuss some of the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always pretty hard to quote someone for a project, which made me pretty happy when I came across this article.  BuildInternet.com took a survey of 107 readers and asked them what they charge as an hourly rate.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/05/hourly-rate-piechart.png" rel="lightbox[191]"><img class="aligncenter size-medium wp-image-433" title="hourly-rate-piechart" src="http://wannabe.contropa.com/wp-content/uploads/2011/05/hourly-rate-piechart-300x250.png" alt="" width="300" height="250" /></a></p>
<p>They break down the results into a nice and simple pie chart and discuss some of the reasons for those rates and give you some tips on how to quote your work.</p>
<p><a href="http://buildinternet.com/2009/12/a-discussion-on-hourly-rates-in-web-design/">A Discussion on Hourly Rates in Web Design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/hourly-rates/191/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article posting sites</title>
		<link>http://wannabe.contropa.com/article-posting-sites/407/</link>
		<comments>http://wannabe.contropa.com/article-posting-sites/407/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 18:02:13 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[syndication]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=407</guid>
		<description><![CDATA[A simple way to gain some syndication for your online articles is to submit them to websites that will post it on their sites.  Just make sure to brand the article and add a link back to your website. www.iSnare.com www.GoArticles.com www.eHow.com www.EasyArticles.com www.ArticleDashBoard.com www.Article99.com www.ValuableContent.com www.EzineArticles.com]]></description>
			<content:encoded><![CDATA[<p>A simple way to gain some syndication for your online articles is to submit them to websites that will post it on their sites.  Just make sure to brand the article and add a link back to your website.</p>
<p><a href="http://www.iSnare.com">www.iSnare.com</a><br />
<a href="http://www.GoArticles.com">www.GoArticles.com</a><br />
<a href="http://www.eHow.com">www.eHow.com</a><br />
<a href="http://www.EasyArticles.com">www.EasyArticles.com</a><br />
<a href="http://www.ArticleDashBoard.com">www.ArticleDashBoard.com</a><br />
<a href="http://www.Article99.com">www.Article99.com</a><br />
<a href="http://www.ValuableContent.com">www.ValuableContent.com</a><br />
<a href="http://www.EzineArticles.com">www.EzineArticles.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/article-posting-sites/407/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colour Contrast Check</title>
		<link>http://wannabe.contropa.com/colour-contrast-check/424/</link>
		<comments>http://wannabe.contropa.com/colour-contrast-check/424/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 17:57:59 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[color]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=424</guid>
		<description><![CDATA[When I&#8217;m making sure that text is legible I usually just eyeball it, but apparently there are set standards from the Web Content Accessibility Guidelines (WCAG) concerning how much contrast you need between your text and background colors.  I came across this nifty little tool that will allow you to check if your colors are [...]]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m making sure that text is legible I usually just eyeball it, but apparently there are set standards from the <em>Web Content Accessibility Guidelines</em> (<em>WCAG</em>) concerning how much contrast you need between your text and background colors.  I came across this <a href="http://snook.ca/technical/colour_contrast/colour.html" target="_blank">nifty little tool</a> that will allow you to check if your colors are compliant.  You can move around the sliders or copy/paste your hex colors and it&#8217;ll tell you if you have enough contrast.  It&#8217;s not much to look at, but it gets the job done.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/04/Picture-2.jpg" rel="lightbox[424]"><img class="aligncenter size-medium wp-image-426" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/04/Picture-2-300x143.jpg" alt="" width="300" height="143" /></a></p>
<p><a href="http://snook.ca/technical/colour_contrast/colour.html" target="_blank">http://snook.ca/technical/colour_contrast/colour.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/colour-contrast-check/424/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMYK in Safari</title>
		<link>http://wannabe.contropa.com/cmyk-in-safari/418/</link>
		<comments>http://wannabe.contropa.com/cmyk-in-safari/418/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 19:45:27 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[CMYK]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=418</guid>
		<description><![CDATA[I found this odd behavior in Safari by accident by uploading a CMYK image without changing it to RGB.  It looks fine in Firefox &#8211; but in Safari the colors are inverted! Images shouldn&#8217;t be uploaded to the internet as CMYK anyway, but I thought it as odd how safari handled the image mode like [...]]]></description>
			<content:encoded><![CDATA[<p>I found this odd behavior in Safari by accident by uploading a CMYK image without changing it to RGB.  It looks fine in Firefox &#8211; but in Safari the colors are inverted!</p>
<p>Images shouldn&#8217;t be uploaded to the internet as CMYK anyway, but I thought it as odd how safari handled the image mode like that.</p>
<p>Screenshot:</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/03/Picture-5.png" rel="lightbox[418]"><img class="aligncenter size-medium wp-image-422" title="Picture 5" src="http://wannabe.contropa.com/wp-content/uploads/2011/03/Picture-5-300x276.png" alt="" width="300" height="276" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/cmyk-in-safari/418/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retro Handheld Gaming</title>
		<link>http://wannabe.contropa.com/retro-handheld-gaming/416/</link>
		<comments>http://wannabe.contropa.com/retro-handheld-gaming/416/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 17:20:42 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[retro]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=416</guid>
		<description><![CDATA[Pica-pic is a cute little site that allows you to play flash versions of old stand-alone handheld games.  These are a little before my time, but the layout is very imaginative and intuitive http://www.pica-pic.com/]]></description>
			<content:encoded><![CDATA[<p>Pica-pic is a cute little site that allows you to play flash versions of old stand-alone handheld games.  These are a little before my time, but the layout is very imaginative and intuitive <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/03/Picture-1.png" rel="lightbox[416]"><img class="aligncenter size-medium wp-image-419" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/03/Picture-1-300x133.png" alt="" width="300" height="133" /></a></p>
<p><a href="http://www.pica-pic.com/" target="_blank">http://www.pica-pic.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/retro-handheld-gaming/416/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Directories</title>
		<link>http://wannabe.contropa.com/twitter-directories/405/</link>
		<comments>http://wannabe.contropa.com/twitter-directories/405/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 19:31:55 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=405</guid>
		<description><![CDATA[You can get some free exposure for your Twitter account by submitting it to Twitter Directories!  It certainly won&#8217;t make a big impact on your followers, but it only takes a few minutes to get set-up. http://wefollow.com http://www.twellow.com http://justtweetit.com http://www.mytwitterdirectory.com/]]></description>
			<content:encoded><![CDATA[<p>You can get some free exposure for your Twitter account by submitting it to Twitter Directories!  It certainly won&#8217;t make a big impact on your followers, but it only takes a few minutes to get set-up.</p>
<p><a href="http://wefollow.com" target="_blank">http://wefollow.com</a><br />
<a href="http://www.twellow.com" target="_blank">http://www.twellow.com</a><br />
<a href="http://justtweetit.com" target="_blank">http://justtweetit.com</a><br />
<a href="http://www.mytwitterdirectory.com/" target="_blank">http://www.mytwitterdirectory.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/twitter-directories/405/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Shorter Thesaurus</title>
		<link>http://wannabe.contropa.com/the-shorter-thesaurus/408/</link>
		<comments>http://wannabe.contropa.com/the-shorter-thesaurus/408/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 00:44:48 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=408</guid>
		<description><![CDATA[This is a super simple but pretty nifty little site. All you do is enter a long word and get a list of smaller ones Could come in handy when you need to skim down some ad copy &#60;3 http://www.ironicsans.com/thsrs/]]></description>
			<content:encoded><![CDATA[<p>This is a super simple but pretty nifty little site.  All you do is enter a long word and get a list of smaller ones <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Could come in handy when you need to skim down some ad copy &lt;3</p>
<p style="text-align: center;"><a href="http://wannabe.contropa.com/wp-content/uploads/2011/02/Picture-1.png" rel="lightbox[408]"><a href="http://wannabe.contropa.com/wp-content/uploads/2011/02/Picture-1-e1297903542664.png" rel="lightbox[408]"><img class="aligncenter size-full wp-image-410" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/02/Picture-1-e1297903542664.png" alt="" width="416" height="396" /></a><br />
</a></p>
<p><a href="http://www.ironicsans.com/thsrs/" target="_blank">http://www.ironicsans.com/thsrs/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/the-shorter-thesaurus/408/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Commons Music</title>
		<link>http://wannabe.contropa.com/creative-commons-music/403/</link>
		<comments>http://wannabe.contropa.com/creative-commons-music/403/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 19:57:25 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=403</guid>
		<description><![CDATA[These are a few sites that offer music that you can use for free with video projects.  How the authors need to be attributed can vary with each site &#8211; so check out the Legal bits before using anything!  7SXEW5Y6C6XG http://free-loops.com/ http://www.flashkit.com/loops/ http://www.partnersinrhyme.com/ http://www.newgrounds.com/audio/ http://www.freesound.org/ http://incompetech.com/m/c/royalty-free/]]></description>
			<content:encoded><![CDATA[<p>These are a few sites that offer music that you can use for free with video projects.  How the authors need to be attributed can vary with each site &#8211; so check out the Legal bits before using anything!  7SXEW5Y6C6XG</p>
<p><a href="http://free-loops.com/" target="_blank">http://free-loops.com/</a><br />
<a href="http://www.flashkit.com/loops/" target="_blank">http://www.flashkit.com/loops/</a><br />
<a href="http://www.partnersinrhyme.com/" target="_blank">http://www.partnersinrhyme.com/</a><br />
<a href="http://www.newgrounds.com/audio/" target="_blank">http://www.newgrounds.com/audio/</a><br />
<a href="http://www.freesound.org/" target="_blank">http://www.freesound.org/</a><br />
<a href="http://incompetech.com/m/c/royalty-free/" target="_blank">http://incompetech.com/m/c/royalty-free/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/creative-commons-music/403/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP database backup</title>
		<link>http://wannabe.contropa.com/php-database-backup/387/</link>
		<comments>http://wannabe.contropa.com/php-database-backup/387/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 20:15:13 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=387</guid>
		<description><![CDATA[I recently added in a way for admin users to download a backup of the database to a CMS I work on.  I came up with something between this solution and this one.  Add this little snippet after a database connection and change &#8220;table_1&#8243; and &#8220;table_2&#8243; to whichever tables you&#8217;d like to output, and add [...]]]></description>
			<content:encoded><![CDATA[<p>I recently added in a way for admin users to download a backup of the database to a CMS I work on.  I came up with something between <a href="http://davidwalsh.name/backup-mysql-database-php" target="_blank">this solution</a> and <a href="http://www.developertutorials.com/tutorials/php/backup-mysql-database-php-050409-1300/" target="_blank">this one</a>.  Add this little snippet after a database connection and change &#8220;table_1&#8243; and &#8220;table_2&#8243; to whichever tables you&#8217;d like to output, and add as many tables as you need.</p>
<p>What I like about this script is that it doesn&#8217;t save a copy to the server so folks can&#8217;t nab it if they know the entire URL, but it can be easily integrated to a web based interface.  It also uses &#8220;create table if not exists&#8221; which was missing from the other two scripts.  I think a backup should create tables in case you loose the table structure, but it shouldn&#8217;t delete the existing data.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> datadump <span style="color: #009900;">&#40;</span><span style="color: #000088;">$table</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;# Dump of <span style="color: #006699; font-weight: bold;">$table</span> <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;# Dump DATE : &quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;d-M-Y&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    
    <span style="color: #000088;">$row2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_row</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SHOW CREATE TABLE '</span><span style="color: #339933;">.</span><span style="color: #000088;">$table</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'CREATE TABLE'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'CREATE TABLE IF NOT EXISTS'</span><span style="color: #339933;">,</span><span style="color: #000088;">$row2</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
    
    <span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;select * from <span style="color: #006699; font-weight: bold;">$table</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$num_fields</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span><span style="color: #990000;">mysql_num_fields</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$numrow</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_num_rows</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    
    <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$numrow</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_row</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;INSERT INTO &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$table</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; VALUES(&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$j</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$num_fields</span><span style="color: #339933;">;</span> <span style="color: #000088;">$j</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">addslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">ereg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                
                <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$j</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$row</span>[<span style="color: #006699; font-weight: bold;">$j</span>]<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #339933;">;</span> <span style="color: #b1b100;">else</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$j</span><span style="color: #339933;">&lt;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$num_fields</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;,&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
            <span style="color: #000088;">$result</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;);<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$result</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> datadump<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'table_1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>datadump<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'table_2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$file_name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;database_backup.sql&quot;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">Header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-type: application/octet-stream&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">Header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-Disposition: attachment; filename=<span style="color: #006699; font-weight: bold;">$file_name</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/php-database-backup/387/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter App Directories</title>
		<link>http://wannabe.contropa.com/twitter-app-directories/398/</link>
		<comments>http://wannabe.contropa.com/twitter-app-directories/398/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 18:07:11 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=398</guid>
		<description><![CDATA[I recently released a small Twitter App called Twitter Critter and in order to generate some traffic for my new site I decided to submit it to various Twitter App Directories.  It&#8217;s n easy way to generate some outside links to my site and get the word out, all the working directories I could sniff [...]]]></description>
			<content:encoded><![CDATA[<p>I recently released a small Twitter App called <a href="http://twitter-critter.contropa.com/" target="_blank">Twitter Critter</a> and in order to generate some traffic for my new site I decided to submit it to various Twitter App Directories.  It&#8217;s n easy way to generate some outside links to my site and get the word out, all the working directories I could sniff out are listed below:</p>
<p><a href="http://twitdom.com/" target="_blank">http://twitdom.com/</a><br />
<a href="http://twitterlittlestar.com/" target="_blank">http://twitterlittlestar.com/</a><br />
<a href="http://twittown.com" target="_blank">http://twittown.com</a><br />
<a href="http://oneforty.com/" target="_blank">http://oneforty.com/</a><br />
<a href="http://tw1tter.com/" target="_blank">http://tw1tter.com/</a><br />
<a href="http://bustatweet.com/" target="_blank">http://bustatweet.com/</a><br />
<a href="http://www.twit-apps.com/" target="_blank">http://www.twit-apps.com/</a><br />
<a href="http://www.twtbase.com/" target="_blank">http://www.twtbase.com/</a></p>
<p>Know any other directories?  Please let me know in the comments <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/twitter-app-directories/398/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barcode Kanojo</title>
		<link>http://wannabe.contropa.com/barcode-kanojo/382/</link>
		<comments>http://wannabe.contropa.com/barcode-kanojo/382/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 18:54:07 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=382</guid>
		<description><![CDATA[Barcode Kanojo is an interesting iPhone game I&#8217;ve been wanting to try out for a while.  Only recently was it released to the iPod touch so now I&#8217;m able to give it a whirl! How it works is that you scan in barcodes from items you&#8217;ve bought and if no one has ever scanned that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/mzi.plmjsfof.175x175-75.jpg" rel="lightbox[382]"><img class="alignleft size-thumbnail wp-image-388" title="mzi.plmjsfof.175x175-75" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/mzi.plmjsfof.175x175-75-150x150.jpg" alt="" width="72" height="72" /></a>Barcode Kanojo is an interesting iPhone game I&#8217;ve been wanting to try out for a while.  Only recently was it released to the iPod touch so now I&#8217;m able to give it a whirl!</p>
<p>How it works is that you scan in barcodes from items you&#8217;ve bought and if no one has ever scanned that barcode before you can generate a Kanojo (Girlfriend), but if someone has already scanned in that barcode you can follow their generated Kanojo and try to steal her away!  Also, when you scan in the barcode you can take a photo of the item itself.  Then you can see your item as well as other peoples photos of the same thing.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/kanojo1.jpg" rel="lightbox[382]"><img class="aligncenter size-medium wp-image-393" title="kanojo1" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/kanojo1-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>In order to steal other&#8217;s Kanojos you can visit them and flirt with them to make their love for their boyfriend drop and when it&#8217;s all gone their yours <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Every 4 hours your energy is recharged and you can use it to create new Kanojo&#8217;s, spend time with you Kanojos(so they won&#8217;t get stolen!), and spend time with other&#8217;s Kanojos to try and steal them away.  I seems you&#8217;ll eventually level up, and there&#8217;s a &#8220;collections&#8221; portion of the game, but I haven&#8217;t gotten that far yet.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/kanojo2.jpg" rel="lightbox[382]"><img class="aligncenter size-medium wp-image-394" title="kanojo2" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/kanojo2-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>I can see myself getting bored of this pretty quickly&#8230;but for now it&#8217;s a fun distraction, and I really like how they&#8217;ve working in the multi-player portions of the game.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-22.png" rel="lightbox[382]"><img class="aligncenter size-medium wp-image-389" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-22-300x208.png" alt="" width="300" height="208" /></a></p>
<p><a href="http://www.barcodekanojo.com/" target="_blank">www.barcodekanojo.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/barcode-kanojo/382/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Twitter Critter</title>
		<link>http://wannabe.contropa.com/twitter-critter/376/</link>
		<comments>http://wannabe.contropa.com/twitter-critter/376/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 18:29:48 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Time Wasters]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[generators]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=376</guid>
		<description><![CDATA[I recently just finished a project called &#8220;Twitter Critter&#8221; It&#8217;s a simple program that works with Twitter to generate an avatar.  All you have to do is enter in your own username, or anyone&#8217;s username, and it will create an avatar based on your Tweets. It searches through your latest 200 tweets and uses those [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-1.png" rel="lightbox[376]"><img class="aligncenter size-medium wp-image-384" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-1-300x161.png" alt="" width="300" height="161" /></a></p>
<p>I recently just finished a project called &#8220;<a href="http://twitter-critter.contropa.com" target="_blank">Twitter Critter</a>&#8221; It&#8217;s a simple program that works with Twitter to generate an avatar.  All you have to do is enter in your own username, or anyone&#8217;s username, and it will create an avatar based on your Tweets.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-21.png" rel="lightbox[376]"><img class="aligncenter size-medium wp-image-385" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-21-300x234.png" alt="" width="300" height="234" /></a></p>
<p>It searches through your latest 200 tweets and uses those words to determine what color, critter, and what accessories your Twitter Critter will have.  It also generates a cute bio for that Critter based on those choices.  There are thousands of possible combinations, and if you come back after doing some Tweeting your result will change!  You can also Tweet out a permalink to the specific Twitter Critter your generated, and with one click you can set it as you avatar on Twitter.</p>
<p><a href="http://twitter-critter.contropa.com/" target="_blank">Click here to get started!  http://twitter-critter.contropa.com/</a></p>
<p><strong>Related Blogs:</strong></p>
<p><a href="http://rakugakiman.blog6.fc2.com/blog-entry-2827.html" target="_blank">http://rakugakiman.blog6.fc2.com/blog-entry-2827.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/twitter-critter/376/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ge.tt File sharing</title>
		<link>http://wannabe.contropa.com/ge-tt-file-sharing/377/</link>
		<comments>http://wannabe.contropa.com/ge-tt-file-sharing/377/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 20:02:59 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[transfer]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=377</guid>
		<description><![CDATA[Ge.tt is a new &#8220;unlimited&#8221; file sharing service.  It&#8217;s super simple, no size limits, no sign-up required.  If it sounds too good to be true, then we&#8217;re on the same page.  This is not the first &#8220;unlimited&#8221; file sharing service to come around, but hopefully this one will last longer than it&#8217;s predecessors.  The ability [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-2.png" rel="lightbox[377]"><img class="aligncenter size-medium wp-image-380" title="Picture 2" src="http://wannabe.contropa.com/wp-content/uploads/2011/01/Picture-2-300x178.png" alt="" width="300" height="178" /></a></p>
<p><a href="http://ge.tt/" target="_blank">Ge.tt</a> is a new &#8220;unlimited&#8221; file sharing service.  It&#8217;s super simple, no size limits, no sign-up required.  If it sounds too good to be true, then we&#8217;re on the same page.  This is not the first &#8220;unlimited&#8221; file sharing service to come around, but hopefully this one will last longer than it&#8217;s predecessors.  The ability to send large files without hassle or cost would be a huge convenience.</p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/ge-tt-file-sharing/377/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Contest Listings</title>
		<link>http://wannabe.contropa.com/twitter-contest-listings/378/</link>
		<comments>http://wannabe.contropa.com/twitter-contest-listings/378/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 19:38:17 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=378</guid>
		<description><![CDATA[Planning on running a Twitter Contest?  I&#8217;ve complied a list of some of the contest listing services I&#8217;ve used to try and get the word out! http://workinmypajamas.com/give-a-little-gain-a-lot/ http://www.contestlisting.com/ http://www.tweetgiveaway.com/about/ http://www.squidoo.com/online_contests http://www.contestblogger.com/ http://www.myblogcontest.com/post-your-contest/ http://www.contestbeat.com/contest-submission/ http://www.submityourcontest.com/submit-contest/ http://theblackcell.com/blogs/index.php/submit-a-giveawaysweepscontest/ http://doubleprizes.com/ http://acontestblog.com http://www.contest-corner.com http://mommosttraveled.com http://www.momstakeonthings.com/?page_id=7 http://www.contestcanada.net/get-involved/add-contest/ http://www.sweepstakeslovers.com/suggest-a-sweepstakes/ http://www.econtests.tv/ http://www.grandmajam.com/submit.htm http://www.bigsweeps.com http://freebloggiveaways.com/ http://www.shoppingbookmarks.com/deals/ http://www.100megsfree3.com/arlana/form4.htm http://www.bloggerlinkup.com/giveaway http://www.hypersweep.com/ http://www.sweepsgoat.com/upcoming/UnlimitedEntry http://www.sweepstakes.bz/addasweeps.asp http://forums.about.com/n/pfx/forum.aspx?folderId=15&#38;listMode=13&#38;nav=messages&#38;webtag=ab-contests http://blogconteststation.com/ http://www.facebook.com/pages/Contest-Listing/143921791266?v=wall [...]]]></description>
			<content:encoded><![CDATA[<p>Planning on running a Twitter Contest?  I&#8217;ve complied a list of some of the contest listing services I&#8217;ve used to try and get the word out!</p>
<p><a href="http://workinmypajamas.com/give-a-little-gain-a-lot/" target="_blank">http://workinmypajamas.com/give-a-little-gain-a-lot/</a><br />
<a href="http://www.contestlisting.com/" target="_blank">http://www.contestlisting.com/</a><br />
<a href="http://www.tweetgiveaway.com/about/" target="_blank">http://www.tweetgiveaway.com/about/</a><br />
<a href="http://www.squidoo.com/online_contests" target="_blank">http://www.squidoo.com/online_contests</a><br />
<a href="http://www.contestblogger.com/" target="_blank">http://www.contestblogger.com/</a><br />
<a href="http://www.myblogcontest.com/post-your-contest/" target="_blank">http://www.myblogcontest.com/post-your-contest/</a><br />
<a href="http://www.contestbeat.com/contest-submission/" target="_blank">http://www.contestbeat.com/contest-submission/</a><br />
<a href="http://www.submityourcontest.com/submit-contest/" target="_blank">http://www.submityourcontest.com/submit-contest/</a><br />
<a href="http://theblackcell.com/blogs/index.php/submit-a-giveawaysweepscontest/" target="_blank">http://theblackcell.com/blogs/index.php/submit-a-giveawaysweepscontest/</a><br />
<a href="http://doubleprizes.com/" target="_blank">http://doubleprizes.com/</a><br />
<a href="http://acontestblog.com" target="_blank">http://acontestblog.com</a><br />
<a href="http://www.contest-corner.com" target="_blank">http://www.contest-corner.com</a><br />
<a href="http://mommosttraveled.com" target="_blank">http://mommosttraveled.com</a><br />
<a href="http://www.momstakeonthings.com/?page_id=7" target="_blank">http://www.momstakeonthings.com/?page_id=7</a><br />
<a href="http://www.contestcanada.net/get-involved/add-contest/" target="_blank">http://www.contestcanada.net/get-involved/add-contest/</a><br />
<a href="http://www.sweepstakeslovers.com/suggest-a-sweepstakes/" target="_blank">http://www.sweepstakeslovers.com/suggest-a-sweepstakes/</a><br />
<a href="http://www.econtests.tv/" target="_blank">http://www.econtests.tv/</a><br />
<a href="http://www.grandmajam.com/submit.htm" target="_blank">http://www.grandmajam.com/submit.htm</a><br />
<a href="http://www.bigsweeps.com" target="_blank">http://www.bigsweeps.com</a><br />
<a href="http://freebloggiveaways.com/" target="_blank">http://freebloggiveaways.com/</a><br />
<a href="http://www.shoppingbookmarks.com/deals/" target="_blank">http://www.shoppingbookmarks.com/deals/</a><br />
<a href="http://www.100megsfree3.com/arlana/form4.htm" target="_blank">http://www.100megsfree3.com/arlana/form4.htm</a><br />
<a href="http://www.bloggerlinkup.com/giveaway" target="_blank">http://www.bloggerlinkup.com/giveaway</a><br />
<a href="http://www.hypersweep.com/" target="_blank">http://www.hypersweep.com/</a><br />
<a href="http://www.sweepsgoat.com/upcoming/UnlimitedEntry" target="_blank">http://www.sweepsgoat.com/upcoming/UnlimitedEntry</a><br />
<a href="http://www.sweepstakes.bz/addasweeps.asp" target="_blank">http://www.sweepstakes.bz/addasweeps.asp</a></p>
<p><a href="http://forums.about.com/n/pfx/forum.aspx?folderId=15&amp;listMode=13&amp;nav=messages&amp;webtag=ab-contests" target="_blank">http://forums.about.com/n/pfx/forum.aspx?folderId=15&amp;listMode=13&amp;nav=messages&amp;webtag=ab-contests</a><br />
<a href="http://blogconteststation.com/" target="_blank">http://blogconteststation.com/</a><br />
<a href="http://www.facebook.com/pages/Contest-Listing/143921791266?v=wall" target="_blank">http://www.facebook.com/pages/Contest-Listing/143921791266?v=wall</a><br />
<a href="http://enteronlinesweeps.com/category/giveaways/" target="_blank">http://enteronlinesweeps.com/category/giveaways/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/twitter-contest-listings/378/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test your connection speed</title>
		<link>http://wannabe.contropa.com/test-your-connection-speed/289/</link>
		<comments>http://wannabe.contropa.com/test-your-connection-speed/289/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 17:33:03 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=289</guid>
		<description><![CDATA[I came across this website that measures your internet connection speed so I thought it should give it a shot. Interestingly enough when I first ran this test the server that it pinged was provided by Dreamhost! Same people who host my website &#8211; it&#8217;s nice to see them out there doing digital good I [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this website that measures your internet connection speed so I thought it should give it a shot.</p>
<p>Interestingly enough when I first ran this test the server that it pinged was provided by Dreamhost! Same people who host my website &#8211; it&#8217;s nice to see them out there doing digital good <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tried it out with two different providers and here are the results:</p>
<p><strong>SAVVIS communtiations: </strong>Download 33Mbs Upload 28Mbs<br />
<strong>Road Runner</strong>: Download 12Mbs Upload .86Mbs</p>
<p><a href="http://www.speedtest.net/" target="_self">http://www.speedtest.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/test-your-connection-speed/289/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Japanese Dictionaries</title>
		<link>http://wannabe.contropa.com/japanese-dictionaries/358/</link>
		<comments>http://wannabe.contropa.com/japanese-dictionaries/358/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 18:38:55 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Japanese]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=358</guid>
		<description><![CDATA[I know a few good (and free) Japanese Dictionaries that are available via the web and iPhone.  They&#8217;re both based on Jim Breen&#8217;s WWWJDIC, which is one of the most well known and trusted dictionaries available.  Although using Jim Breen&#8217;s dictionary straight from it&#8217;s own website never gives me the results I&#8217;m looking for :/  [...]]]></description>
			<content:encoded><![CDATA[<p>I know a few good (and free) Japanese Dictionaries that are available via the web and iPhone.  They&#8217;re both based on <a href="http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1C" target="_blank">Jim Breen&#8217;s WWWJDIC</a>, which is one of the most well known and trusted dictionaries available.  Although using Jim Breen&#8217;s dictionary straight from it&#8217;s own website never gives me the results I&#8217;m looking for :/  So that&#8217;s why I have these two alternatives that are a little more user friendly.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/Picture-1.png" rel="lightbox[358]"><img class="aligncenter size-medium wp-image-390" title="Picture 1" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/Picture-1-300x156.png" alt="" width="300" height="156" /></a></p>
<p>The first dictionary I want to talk about is <a href="http://jisho.org" target="_self">Jisho.org</a>.  It&#8217;s one of the best designed Japanese dictionaries I&#8217;ve seen.  And 90% of the time I&#8217;ll get the result I&#8217;m looking for when searching it&#8217;s database, it also checks for you if you&#8217;re using Romanji and will find results based on that without you needing to specify if you&#8217;re searching for English or Romanji words.  You can search by radicals, and it has stroke order for all the Kanji in the Database.  One thing though, it&#8217;s error messages could use a little work.  When you search for a word that it&#8217;s doesn&#8217;t have any entries for instead of saying something like &#8220;No matches found&#8221; it goes to an error page that says &#8220;Please come back later.&#8221;  When I first saw this I thought the site had gone down, but I had simply misspelled the word  was looking for.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/kotoba.jpg" rel="lightbox[358]"><img class="aligncenter size-medium wp-image-392" title="kotoba" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/kotoba-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The other dictionary I want to talk about is <a href="http://itunes.apple.com/us/app/kotoba-japanese-dictionary/id288499125?mt=8" target="_blank">Kotoba</a> for the iPhone.  It&#8217;s just as good as Jisho with all the same features, but with better error messages.  This one is only available on the iPhone though.  It&#8217;s great when you&#8217;re away from home and you don&#8217;t need an internet connection to use it so you can search away on you iPod Touch without worry of WiFi.  The only issue I have with Kotoba is when I&#8217;m using an App that has a word I want to look up I have to close that out and then open up Kotoba to check it.  That is why I have Jisho as a backup &#8211; so I can have it open on a computer while using an App on my iPod.</p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/japanese-dictionaries/358/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free books online</title>
		<link>http://wannabe.contropa.com/free-books-online/207/</link>
		<comments>http://wannabe.contropa.com/free-books-online/207/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 18:19:40 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Time Wasters]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=207</guid>
		<description><![CDATA[If you&#8217;re a book lover then you&#8217;re in luck!  There are many free books available online, and not only are there full verions of classic novels but also thousands of poems, essays, and short stories are available at readprint.com. Also, with the new release of Google Books the amount of free literature available online has [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a book lover then you&#8217;re in luck!  There are many free books available online, and not only are there full verions of classic novels but also thousands of poems, essays, and short stories are available at <a href="http://www.readprint.com/" target="_blank">readprint.com</a>. Also, with the new release of <a href="http://books.google.com/ebooks" target="_blank">Google Books</a> the amount of free literature available online has increased with Google&#8217;s own assortment of free books.</p>
<p>So if you&#8217;re looking for more reading materials on a tight budget &#8211; you&#8217;ll know where to go <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/free-books-online/207/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninja Words</title>
		<link>http://wannabe.contropa.com/ninja-words/360/</link>
		<comments>http://wannabe.contropa.com/ninja-words/360/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 19:17:40 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Japanese]]></category>
		<category><![CDATA[japanese]]></category>
		<category><![CDATA[kanji]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=360</guid>
		<description><![CDATA[I recently picked up an app called &#8220;Ninja Words&#8220;  It&#8217;s normally $2.99, but I got it on special for $.99   It has a free version too, so you can get a feel for it before putting any money down. It&#8217;s a very nice game for studying Kanji, I&#8217;ve played Slime Forest Adventure before and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/mzi.wtkzctqu.175x175-75.jpg" rel="lightbox[360]"><img class="alignleft size-thumbnail wp-image-361" title="mzi.wtkzctqu.175x175-75" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/mzi.wtkzctqu.175x175-75-150x150.jpg" alt="" width="90" height="90" /></a></p>
<p>I recently picked up an app called &#8220;<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=389715309&amp;mt=8&amp;ign-mpt=uo%3D6" target="_blank">Ninja Words</a>&#8220;  It&#8217;s normally $2.99, but I got it on special for $.99 <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   It has a free version too, so you can get a feel for it before putting any money down.</p>
<p>It&#8217;s a very nice game for studying Kanji, I&#8217;ve played <a href="http://lrnj.com/" target="_blank">Slime Forest Adventure</a> before and the quality and price of Ninja Words is a lot better.  Although, Ninja Words only goes over 500 Kanji and no Kana.  The graphics and storyline and very cute, and I&#8217;m finding that the typical grinding style RPG gameplay is pretty well suited for studying.  I really like that it has a storyline involved so there&#8217;s some motivation to move through the game.</p>
<p>There&#8217;s one bad thing though, that I&#8217;ve noticed with other Kanji studying tools too.  It doesn&#8217;t have any sample words or furigana <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   If you care to learn how to speak the words you&#8217;ll have to keep a dictionary handy.</p>
<p><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/1.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-363" title="1" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/1.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/2.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-364" title="2" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/2.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/3.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-365" title="3" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/3.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/4.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-366" title="4" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/4.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/5.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-367" title="5" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/5.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/6.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-368" title="6" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/6.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/7.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-369" title="7" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/7.jpg" alt="" width="200" height="300" /></a><a href="http://wannabe.contropa.com/wp-content/uploads/2010/12/8.jpg" rel="lightbox[360]"><img class="alignleft size-full wp-image-370" title="8" src="http://wannabe.contropa.com/wp-content/uploads/2010/12/8.jpg" alt="" width="200" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/ninja-words/360/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a clue</title>
		<link>http://wannabe.contropa.com/get-a-clue/350/</link>
		<comments>http://wannabe.contropa.com/get-a-clue/350/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 17:15:36 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[clue]]></category>
		<category><![CDATA[report]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=350</guid>
		<description><![CDATA[Clue is a website that will take a screen shot, show it to users for a few seconds and ask them what they saw.  It&#8217;s a way to get some input on the first impression your website gives.  But when most of the answers relate to color I&#8217;m not sure how much you can glean [...]]]></description>
			<content:encoded><![CDATA[<p>Clue is a website that will take a screen shot, show it to users for a few seconds and ask them what they saw.  It&#8217;s a way to get some input on the first impression your website gives.  But when most of the answers relate to color I&#8217;m not sure how much you can glean from that information&#8230;</p>
<p>Still, it&#8217;s free and super easy to set-up.  And you might discover some interesting reactions to your website.</p>
<p><a href="http://www.clueapp.com/" target="_blank">http://www.clueapp.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/get-a-clue/350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spamlists and WordPress</title>
		<link>http://wannabe.contropa.com/fspamlist-and-wordpress/351/</link>
		<comments>http://wannabe.contropa.com/fspamlist-and-wordpress/351/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 19:30:04 +0000</pubDate>
		<dc:creator>Foxumon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[fspamlist]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wannabe.contropa.com/?p=351</guid>
		<description><![CDATA[I&#8217;ve been getting dozens of e-mails with spam posts to this blog and it&#8217;s become far to annoying to ignore any further!  I&#8217;ve been using WordPress&#8217;s integrated blacklist tool, but it&#8217;s time consuming to maintain and only protects against past threats.  I took a look at the database and I&#8217;ve managed to collect over 3,000 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been getting dozens of e-mails with spam posts to this blog and it&#8217;s become far to annoying to ignore any further!  I&#8217;ve been using WordPress&#8217;s integrated blacklist tool, but it&#8217;s time consuming to maintain and only protects against past threats.  I took a look at the database and I&#8217;ve managed to collect over 3,000 spam comments that take up more than 20 mbs of database space&#8230;which is quite a lot IMO.</p>
<p>In the past the best prevention I&#8217;ve found against spammers is to use spam lists.  One I like in particular is <a href="http://www.fspamlist.com/" target="_blank">FSpamlist.com</a>.  You have to sign-up to get an API key, but after that using it is very straight forward.   <a href="http://www.stopforumspam.com/" target="_blank">Stop Forum Spam</a> is a big one too, you don&#8217;t need an API key to check for spammers so it was even easier to add.  I put a simple WordPress plugin together to integrate the lists with my blog.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Plugin Name: Spamlist
Plugin URI: http://wannabe.contropa.com/fspamlist-and-wordpress/351/
Description: Uses spamlists to stop spammers
Version: 1.0
Author: Foxumon
Author URI: http://www.contropa.com
License: GPL2
*/</span>
&nbsp;
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_blacklist_check'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'spamlist'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span> <span style="color: #339933;">,</span> <span style="color: #cc66cc;">6</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> spamlist<span style="color: #009900;">&#40;</span><span style="color: #000088;">$author</span><span style="color: #339933;">,</span> <span style="color: #000088;">$email</span><span style="color: #339933;">,</span> <span style="color: #000088;">$url</span><span style="color: #339933;">,</span> <span style="color: #000088;">$comment</span><span style="color: #339933;">,</span> <span style="color: #000088;">$user_ip</span><span style="color: #339933;">,</span> <span style="color: #000088;">$user_agent</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$author</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$email</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$email</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">//$ip = $user_ip;</span>
    
    <span style="color: #000088;">$fspamcheck</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.fspamlist.com/xml.php?key=######&amp;spammer='</span><span style="color: #339933;">.</span><span style="color: #000088;">$email</span><span style="color: #339933;">.</span><span style="color: #0000ff;">','</span><span style="color: #339933;">.</span><span style="color: #000088;">$username</span><span style="color: #339933;">.</span><span style="color: #0000ff;">','</span><span style="color: #339933;">.</span><span style="color: #000088;">$ip</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fspamcheck</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;isspammer&gt;true&lt;/isspammer&gt;'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">FALSE</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        wp_die<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Your e-mail address has been marked as spam.  You may request that it be removed here: http://www.temerc.com/forums/viewforum.php?f=72'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'spam'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    
    <span style="color: #000088;">$fspamcheck</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.stopforumspam.com/api?email='</span><span style="color: #339933;">.</span><span style="color: #000088;">$email</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;username='</span><span style="color: #339933;">.</span><span style="color: #000088;">$username</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$fspamcheck</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;appears&gt;yes&lt;/appears&gt;'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">FALSE</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        wp_die<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Your e-mail address has been marked as spam.  You may request that it be removed here: http://stopforumspam.com/removal'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'spam'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>I&#8217;m currently not planning on submitting it to the WordPress plugins directory or anything like that, but you want to try it out too you just save the code as &#8220;spamlist.php&#8221; add it to a &#8220;spamlist&#8221; folder in your plug-ins directory and then it ought to show up in your admin where you can active it.</p>
<p>It&#8217;s currently not set to report the spam that it blocks in any way&#8230;I&#8217;m not sure if I want it to or not.  I&#8217;m currently looking at over 3k of spam comments that are just sitting around taking up room in my database, but at the same time I don&#8217;t want to get any legitimate posters blocked without anyway of knowing.  Anyways, I&#8217;m going to test it out for now and see how it goes <img src='http://wannabe.contropa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wannabe.contropa.com/fspamlist-and-wordpress/351/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

