<?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>TechGeni.us</title>
	<atom:link href="http://techgeni.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://techgeni.us</link>
	<description>Dan Cannon is the TechGeni.us</description>
	<lastBuildDate>Mon, 13 Feb 2012 15:05:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Add Pinterest Button to WordPress</title>
		<link>http://techgeni.us/wordpress/add-pinterest-button-to-wordpress/</link>
		<comments>http://techgeni.us/wordpress/add-pinterest-button-to-wordpress/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 09:16:06 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Pinterest]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=408</guid>
		<description><![CDATA[I might package this up into a plugin at some point, but right now I&#8217;m just going to throw it up here for use in custom themes. Here is the code you can use to create a basic, horizontal Pinterest &#8230; <a href="http://techgeni.us/wordpress/add-pinterest-button-to-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-411" title="Pinterest_PrimaryLogo_Red_RGB" src="http://techgeni.us/wp-content/uploads/2012/02/Pinterest_PrimaryLogo_Red_RGB.jpg" alt="" width="196" height="197" /></p>
<p>I might package this up into a plugin at some point, but right now I&#8217;m just going to throw it up here for use in custom themes.</p>
<p>Here is the code you can use to create a basic, horizontal Pinterest share button on your site.<br />
<span id="more-408"></span><br />
This code assumes that it&#8217;s either on a single post page or in the loop. It assumes you want to use the full size featured post image as the Pin image. It assumes you want to use the post title as the Pin description. If those things aren&#8217;t true, you&#8217;ll need to modify the code below to suit your needs.</p>
<p>This might not be perfect, it&#8217;s down and dirty and should really only be used if you&#8217;re fairly comfortable modifying/working on your WordPress theme.</p>

<div class="wp_syntax"><div 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;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$pin_url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>has_post_thumbnail<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span> get_post_thumbnail_id<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'single-post-thumbnail'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$pin_url</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$image</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: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$pin_title</span> <span style="color: #339933;">=</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;a href=&quot;http://pinterest.com/pin/create/button/?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;media=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$pin_url</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;description=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$pin_title</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; class=&quot;pin-it-button&quot; count-layout=&quot;horizontal&quot;&gt;Pin It&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://assets.pinterest.com/js/pinit.js&quot;&gt;&lt;/script&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/add-pinterest-button-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Guild and Web Series in General</title>
		<link>http://techgeni.us/internet/the-guild-and-web-series-in-general/</link>
		<comments>http://techgeni.us/internet/the-guild-and-web-series-in-general/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 08:51:01 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[The Guild]]></category>
		<category><![CDATA[web series]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=401</guid>
		<description><![CDATA[I&#8217;ve recently decided to start blogging again. I need a different outlet than traditional writing and I have more info to share than I realistically can just through social media, so here I am again In this post I&#8217;m sort &#8230; <a href="http://techgeni.us/internet/the-guild-and-web-series-in-general/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-403" title="guild_logo" src="http://techgeni.us/wp-content/uploads/2012/02/guild_logo.png" alt="" width="186" height="76" />I&#8217;ve recently decided to start blogging again. I need a different outlet than traditional writing and I have more info to share than I realistically can just through social media, so here I am again <img src='http://techgeni.us/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>In this post I&#8217;m sort of covering two things:<br />
1. A review of The Guild web series<br />
2. My thoughts on the genre of web series/shows</p>
<p><span id="more-401"></span></p>
<p>First off, The Guild is simply hilarious. It stars Felicia Day as well as a great ensemble cast along with some pretty impressive cameos. The show follows the real life dealings of an MMORPG guild. I&#8217;ll let you do some searching if you don&#8217;t understand the words I used in that last sentence. However, even if you&#8217;ve never played an online RPG (role playing game) you can still enjoy the series universal nerd humor. There are currently 5 seasons. Each season consists of ~12 episodes that are 5-10 minutes long, so it&#8217;s not a huge commitment, but the episodes are long enough that the plot can move along and we can see some character development.</p>
<p>You can watch all five seasons here (season 6 is supposed to be coming soon): <a href="http://www.watchtheguild.com/">Watch The Guild Online</a></p>
<p>Now onto the more broad topic of web series in general.</p>
<p>I really like and support the idea of web series. It allows actors, producers and other content creators to really explore and build their pet projects. The Guild was originally written to be a TV show. I could see it gaining some traction as a TV show, but would it get enough viewers to stay on the air for multiple seasons? Probably not. It caters to a niche. That niche happens to spend a lot of time in front of their computers. This makes a web series a perfect fit for this audience. As of right now The Guild has several million (with an m) viewers. I don&#8217;t have the raw numbers, but I know during season 1 the numbers were a fraction of what they are now. The series was able to slowly grow by appealing to a niche audience and taking advantage of social media to spread the message. The first season was shot in standard definition across a few locations. The fourth and fifth seasons were shot on obviously (semi) professional sets and had some basic special effects mixed in as well. The production values are getting better and better as the show goes on.</p>
<p>Web series allow a show to slowly grow and tell a story, instead of forcing the show to get 5 million viewers per episode, simply to not get canceled on network television.</p>
<p>I am personally very excited about this emerging new genre/market and I especially look forward to the next season of The Guild.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/internet/the-guild-and-web-series-in-general/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sneak Peak of Gravity Forms Order Forms</title>
		<link>http://techgeni.us/wordpress/sneak-peak-of-gravity-forms-order-forms/</link>
		<comments>http://techgeni.us/wordpress/sneak-peak-of-gravity-forms-order-forms/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 18:08:50 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[gravity forms]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=395</guid>
		<description><![CDATA[Just ran across this video which showcases some of the upcoming Gravity Forms Order Form functionality. Pretty cool stuff. It&#8217;s pretty amazing how quickly the development of this plugin progresses. You can download Gravity Forms here.]]></description>
			<content:encoded><![CDATA[<p>Just ran across this video which showcases some of the upcoming <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&#038;c=ib&#038;aff=133514" title="Order Gravity Forms">Gravity Forms</a> Order Form functionality. Pretty cool stuff. It&#8217;s pretty amazing how quickly the development of this plugin progresses. You can <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&#038;c=ib&#038;aff=133514" title="Order Gravity Forms">download Gravity Forms here</a>.</p>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' /><param name='flashvars' value='i=106233' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=106233' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/sneak-peak-of-gravity-forms-order-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Game Review: Fruit Ninja</title>
		<link>http://techgeni.us/smart-phones/android-smart-phones/android-game-review-fruit-ninja/</link>
		<comments>http://techgeni.us/smart-phones/android-smart-phones/android-game-review-fruit-ninja/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 15:56:05 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=387</guid>
		<description><![CDATA[The extremely popular iPod/iPhone game Fruit Ninja has been ported over to Android so now we can enjoy fruit slicing good times as well. The game plays almost exactly the same as the it&#8217;s iPhone counterpart and is extremely fun. &#8230; <a href="http://techgeni.us/smart-phones/android-smart-phones/android-game-review-fruit-ninja/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-388" title="fruit1.jpg.display" src="http://techgeni.us/wp-content/uploads/2010/09/fruit1.jpg.display.jpg" alt="" width="192" height="192" />The extremely popular iPod/iPhone game Fruit Ninja has been ported over to Android so now we can enjoy fruit slicing good times as well. The game plays almost exactly the same as the it&#8217;s iPhone counterpart and is extremely fun.</p>
<p>A bargain in my opinion at only .99</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/smart-phones/android-smart-phones/android-game-review-fruit-ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 Savannah Craft Brew Fest</title>
		<link>http://techgeni.us/beer/2010-savannah-craft-brew-fest/</link>
		<comments>http://techgeni.us/beer/2010-savannah-craft-brew-fest/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 17:13:32 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Beer]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[savannah]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=360</guid>
		<description><![CDATA[This past Saturday (8/4/2010) I had the privilege of going to the Savannah Craft Brew Fest in Savannah, GA. The event was held at Savannah International Trade and Convention Center overlooking the Savannah River. Most people probably associate drinking events in Savannah &#8230; <a href="http://techgeni.us/beer/2010-savannah-craft-brew-fest/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-376" title="logo" src="http://techgeni.us/wp-content/uploads/2010/09/logo.png" alt="" width="281" height="186" />This past Saturday (8/4/2010) I had the privilege of going to the Savannah Craft Brew Fest in Savannah, GA. The event was held at Savannah International Trade and Convention Center overlooking the Savannah River.</p>
<p><span id="more-360"></span></p>
<p>Most people probably associate drinking events in Savannah to the (usually week long) St. Patrick&#8217;s Day festivities, which have an almost Mardi Gras atmosphere. The Craft Brew Fest was almost the opposite of this. There were no beads, no public indecency and no public urination.</p>
<p>There were only 3000+ people who love beer and a good time. If you happen to be in the Savannah area next September I highly recommend this event. The cost of tickets ($30-40 depending on how you buy) is well worth it due to the unlimited amount of quality beer you can [safely] consume.</p>
<p>Here are some pictures I took.</p>

<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/lp6/' title='Tasting Glass'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/lp6-150x150.jpg" class="attachment-thumbnail" alt="Tasting Glass" title="Tasting Glass" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/qd9y/' title='Shot of the Crowd'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/qd9y-150x150.jpg" class="attachment-thumbnail" alt="Shot of the Crowd" title="Shot of the Crowd" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/kg5i/' title='The Band'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/kg5i-150x150.jpg" class="attachment-thumbnail" alt="The Band" title="The Band" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/mtzx/' title='Amazing Smoked Turkey Leg'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/mtzx-150x150.jpg" class="attachment-thumbnail" alt="Amazing Smoked Turkey Leg" title="Amazing Smoked Turkey Leg" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/csom/' title='Finished up the day at Tybee Beach'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/csom-150x150.jpg" class="attachment-thumbnail" alt="Finished up the day at Tybee Beach" title="Finished up the day at Tybee Beach" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/1ndu/' title='Black Velvet when I got home'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/1ndu-150x150.jpg" class="attachment-thumbnail" alt="Black Velvet when I got home" title="Black Velvet when I got home" /></a>
<a href='http://techgeni.us/beer/2010-savannah-craft-brew-fest/attachment/logo/' title='logo'><img width="150" height="150" src="http://techgeni.us/wp-content/uploads/2010/09/logo-150x150.png" class="attachment-thumbnail" alt="logo" title="logo" /></a>

]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/beer/2010-savannah-craft-brew-fest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Celebrity Websites Running WordPress</title>
		<link>http://techgeni.us/wordpress/top-celebrity-websites-running-wordpress/</link>
		<comments>http://techgeni.us/wordpress/top-celebrity-websites-running-wordpress/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 15:29:41 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[celebrities]]></category>
		<category><![CDATA[nicasio]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=362</guid>
		<description><![CDATA[Yesterday I wrote a blog post featuring the Top 10 Celebrity Websites running WordPress. It&#8217;s over on the Nicasio Design Blog, so go check it out. Read More at Nicasio Design →]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-58" title="wordpress-logo-200" src="http://techgeni.us/wp-content/uploads/2010/02/wordpress-logo-200.png" alt="" width="200" height="200" />Yesterday I wrote a blog post featuring the Top 10 Celebrity Websites running WordPress.</p>
<p>It&#8217;s over on the Nicasio Design Blog, <a title="top 10 celebrity websites running WordPress" href="http://nicasiodesign.com/blog/wordpress/wordpress-news/top-10-celebrity-wordpress-sites/" target="_blank">so go check it out</a>.</p>
<p><a title="Celebrity WordPress Sites" href="http://nicasiodesign.com/blog/wordpress/wordpress-news/top-10-celebrity-wordpress-sites/" target="_blank">Read More at Nicasio Design →</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/top-celebrity-websites-running-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New, Personal URL Shortener</title>
		<link>http://techgeni.us/site-news/my-new-personal-url-shortener/</link>
		<comments>http://techgeni.us/site-news/my-new-personal-url-shortener/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 18:21:25 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=353</guid>
		<description><![CDATA[http://dc1.me is now up and running (although just going to that domain will just bring you right back to here). I now have my own personal URL shortener. No more flaky issues with the traditional shorteners. Now I get to &#8230; <a href="http://techgeni.us/site-news/my-new-personal-url-shortener/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-383" title="yourls-logo" src="http://techgeni.us/wp-content/uploads/2010/09/yourls-logo.png" alt="" width="205" height="94" />http://dc1.me is now up and running (although just going to that domain will just bring you right back to here). I now have my own personal URL shortener. No more flaky issues with the traditional shorteners. Now I get to have my own issues.</p>
<p>How I did it after the break.</p>
<p><span id="more-353"></span></p>
<p>It was pretty simple to get going. I searched for a domain name that worked (dc1.me), registered it and pointed it to my hosting account to get started.</p>
<p>Next I installed <a href="http://yourls.org/" target="_blank">YOURLS</a>, an open source URL shortening system, that I was able to very quickly install on my server. I just FTPed the files up, created the database, created a config file and I was good to go. Once I logged in I started playing around with creating new URLs and found everything working just fine right out of the box.</p>
<p>Now I had my own URL shortener, but without integration into my everyday life it wasn&#8217;t going to do me much good. I first set my new YOURL install to be my custom URL shortening service in Tweetdeck (my preferred desktop Twitter app). Those instructions can be found <a href="http://remkusdevries.com/how-to-setup-tweetdeck-with-yourls/" target="_blank">here</a>.</p>
<p>Next I installed the <a href="http://wordpress.org/extend/plugins/yourls-wordpress-to-twitter/" target="_blank">YOURLS plugin</a> on my WordPress sites. Adjusted a few settings and my new URL shortener is now WordPress&#8217;s default shortener. The plugin also has an option for auto tweeting with your new custom short-url, but I chose to have it only automatically generate the URL for now.</p>
<p>There is also a handy bookmarklet you can copy from the site admin area which you can place on your bookmarks toolbar. So now I&#8217;m good to go, total integration!</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/site-news/my-new-personal-url-shortener/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cForms vs Gravity Forms for WordPress</title>
		<link>http://techgeni.us/wordpress/cforms-vs-gravity-forms-for-wordpress/</link>
		<comments>http://techgeni.us/wordpress/cforms-vs-gravity-forms-for-wordpress/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:35:23 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cforms]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[gravity forms]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=343</guid>
		<description><![CDATA[Gravity Forms recently had a promotion to get a developer&#8217;s license for a little cheaper than normal. Looked like a pretty good deal for me so I jumped on it. I was previously using cForms on all of my personal &#8230; <a href="http://techgeni.us/wordpress/cforms-vs-gravity-forms-for-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=133514"><img class="alignleft size-full wp-image-345" title="gravityforms-logo" src="http://techgeni.us/wp-content/uploads/2010/08/gravityforms-logo.png" alt="" width="112" height="110" /></a><a title="Gravity Forms" href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=133514" target="_blank">Gravity Forms</a> recently had a promotion to get a developer&#8217;s license for a little cheaper than normal. Looked like a pretty good deal for me so I jumped on it. I was previously using <a title="cForms" href="http://www.deliciousdays.com/cforms-plugin/" target="_blank">cForms</a> on all of my personal sites, as well as on client sites for <a href="http://nicasiodesign.com" target="_blank">Nicasio</a>.</p>
<p>While cForms got the job done, there were several issues that bothered me. This is a brief comparison of the 2 plugins and why I will be using <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=133514" target="_blank">Gravity Forms</a> from now on.</p>
<p><span id="more-343"></span></p>
<h2>cForms Grievances</h2>
<p>Now keep in mind that cForms is a free plugin while Gravity Forms is paid, so we aren&#8217;t exactly comparing apples to apples here. I also resepect the developer(s) of cForms a lot and thank them for putting a robust plugin out there for free. That being said there were several things that cForms did that made me willing to drop a couple of Benjamins on Gravity Forms.</p>
<ol>
<li><strong>Easily corrupted data</strong> &#8211; I don&#8217;t know why, but any time I moved a site that used cForms (example: moving from a dev environment to a live environment), the cForms data would be come corrupted. This was extremely annoying and required several extra steps to get up and running</li>
<li><strong>Automatically inserted link back</strong> &#8211; Any cForms form you create automatically has a link back to the cForms site at the bottom.  As a plugin author myself, I see nothing wrong with getting a little link love, but you have to make it opt in rather than opt out (and the only way to opt out was to hide it with CSS).</li>
<li><strong>cForms does it&#8217;s own JS and CSS inclusions</strong> &#8211; There are functions in WordPress that allow plugins to include JavaScript and CSS code in the head area in such a way that it won&#8217;t interfere with other plugins, and is loaded in the correct manner. cForms justs adds their own stuff to the head which can be problematic. This is particularly annoying on e-commerce sites where you need to force SSL usage. You almost always get a warning because cForms JS and CSS files are loaded without https://</li>
<li><strong>Changing Styling Could be Tricky</strong> &#8211; cForms used its own styling system which made it slightly more annoying to customize the style and layout of forms.</li>
<li><strong>No Conditional Logic</strong> &#8211; Maybe I missed this somewhere in cForms, but I have never been able to find a way to easily implement conditional logic in a form with cForms.</li>
<li><strong>No Built in Support for Front End posting</strong> &#8211; This is more of a &#8220;missing feature&#8221; than a bug, but it is something that Gravity Forms has that I plan on making use of.</li>
</ol>
<h2>Cool Stuff About Gravity Forms</h2>
<ol>
<li><strong>Front End Posting</strong> &#8211; Unlike cForms, Gravity Forms allows you to create forms which allow for creating posts from the front end. I haven&#8217;t really had a chance to play with this too much, but I can already think of several places this would have come in handy on past projects.</li>
<li><strong>Solid Email Customizations</strong> &#8211; I really like how the notification system in Gravity Forms works. Simple interface with lots of customizations</li>
<li><strong>Database Tracking</strong> &#8211; While both cForms and Gravity Forms both have database tracking/export options, IMHO the Gravity Forms implementation wins out.</li>
<li><strong>Editor Button</strong> &#8211; For some reason the WordPress editor button in cForms always seems to interfere with some other plugin I&#8217;m running. I haven&#8217;t encountered anything like that with Gravity Forms.</li>
<li><strong>Support</strong> &#8211; This isn&#8217;t really a fair comparison since we&#8217;re talking free vs. paid, but the added support for Gravity Forms is nice. Being a developer I doubt that I&#8217;ll use the support that much, but it&#8217;s always nice to know that it&#8217;s there if you need it. cForms does have a decent little support forum, but it can be hit or miss.</li>
<li><strong>Add Ons</strong> &#8211; Probably one of the coolest thing about Gravity Forms are the add ons. Right now there are only 3, but according to the chatter on Twitter, several others are already in the works. Being able to tweak the plugin&#8217;s functionality with add ons on a site by site basis is a huge plus for me. cForms does have the ability to tie in custom functionality through a custom functions file, but this is more reminiscent of the old WordPress My Hacks functionality than the way modern plugins should work.</li>
</ol>
<h2>Conclusion</h2>
<p>So there you have it. The reasons that I switched from cForms to <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=133514" target="_blank">Gravity Forms</a>. Full disclosure, the links in this post are my affiliate link to Gravity Forms. If you read this blog or my posts at Nicasio, you know I almost never personally endorse anything, but I will if I use it and like it, as is the case with Gravity Forms <img src='http://techgeni.us/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/cforms-vs-gravity-forms-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Gotta Love Custom Post Types</title>
		<link>http://techgeni.us/wordpress/gotta-love-custom-post-types/</link>
		<comments>http://techgeni.us/wordpress/gotta-love-custom-post-types/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 17:51:37 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[for fun]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=340</guid>
		<description><![CDATA[I just converted my subject icons in each of my post headings to WordPress custom post types. I just registered the new type, added 2 custom fields &#8211; 1 for the PNG image and 1 for a category ID to &#8230; <a href="http://techgeni.us/wordpress/gotta-love-custom-post-types/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://techgeni.us/wp-content/uploads/2010/02/wordpress-logo-200.png"><img class="size-full wp-image-58 alignright" title="wordpress-logo-200" src="http://techgeni.us/wp-content/uploads/2010/02/wordpress-logo-200.png" alt="" width="200" height="200" /></a>I just converted my subject icons in each of my post headings to WordPress custom post types. I just registered the new type, added 2 custom fields &#8211; 1 for the PNG image and 1 for a category ID to each Icon post type, added some dynamically generated CSS to the headers and bam. Now it&#8217;s much quicker to add icons for new subjects (before I had to upload the image and manually make the CSS modification). I&#8217;m going to try to wrap it all in a plugin and automate it a bit. Will post the code when I get around to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/gotta-love-custom-post-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automating Your WordPress Plugin with WP-Cron</title>
		<link>http://techgeni.us/wordpress/automating-your-wordpress-plugin-with-wp-cron/</link>
		<comments>http://techgeni.us/wordpress/automating-your-wordpress-plugin-with-wp-cron/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 15:17:40 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[savannah]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[wp-cron]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=302</guid>
		<description><![CDATA[As I mentioned in a previous post I gave a presentation last weekend on Automating your WordPress plugin with WP-Cron. The code example can be downloaded here. Here are my slides from the presentation:]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in a previous post I gave a presentation last weekend on Automating your WordPress plugin with WP-Cron. The code example can be downloaded <a href="http://bit.ly/bhZyYU">here</a>. Here are my slides from the presentation:<br />
<center></p>
<div id="__ss_5025181" style="align:center;width: 525px;"><object id="__sse5025181" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="435" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=automatingyourplugin-100821091828-phpapp02&amp;stripped_title=automating-your-plugin-with-wpcron" /><param name="name" value="__sse5025181" /><param name="allowfullscreen" value="true" /><embed id="__sse5025181" type="application/x-shockwave-flash" width="525" height="435" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=automatingyourplugin-100821091828-phpapp02&amp;stripped_title=automating-your-plugin-with-wpcron" name="__sse5025181" allowscriptaccess="always" allowfullscreen="true"></embed></object>
</div>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/automating-your-wordpress-plugin-with-wp-cron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweetdeck for Android</title>
		<link>http://techgeni.us/smart-phones/android-smart-phones/tweetdeck-for-android/</link>
		<comments>http://techgeni.us/smart-phones/android-smart-phones/tweetdeck-for-android/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 20:00:26 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[tweetdeck]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=282</guid>
		<description><![CDATA[My new favorite Android app has to be Tweetdeck. I use Tweetdeck all the time on my desktop and I have been anxiously waiting until it was released for Android so I can have the same functionality with me anywhere &#8230; <a href="http://techgeni.us/smart-phones/android-smart-phones/tweetdeck-for-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-283 alignright" title="tweetdeck_fb" src="http://techgeni.us/wp-content/uploads/2010/08/tweetdeck_fb.jpg" alt="" width="280" height="238" />My new favorite Android app has to be Tweetdeck.</p>
<p>I use Tweetdeck all the time on my desktop and I have been anxiously waiting until it was released for Android so I can have the same functionality with me anywhere I go. Now I have it, as <a href="http://blog.tweetdeck.com/android-tweetdeck-one-week-in" target="_blank">Tweetdeck for Android Beta</a> is officially out.</p>
<p>This app has replaced Tweetcaster, Facebook, and Foursquare for me on my phone. Now I only have 1 sleek app running in the background at any given time. I love that I can get updates from all my social media services and share across all of them as well.</p>
<p>The only thing missing for me is support for Facebook Places which seems like it would be easy enough to integrate into a production version.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/smart-phones/android-smart-phones/tweetdeck-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I&#8217;ve Been Up To</title>
		<link>http://techgeni.us/wordpress/what-ive-been-up-to/</link>
		<comments>http://techgeni.us/wordpress/what-ive-been-up-to/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:03:46 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[tweetdeck]]></category>
		<category><![CDATA[tybee]]></category>
		<category><![CDATA[wcsav]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=270</guid>
		<description><![CDATA[Well, obviously I have been neglecting my personal blog the last couple of months. I do have somewhat good excuses though. I&#8217;ve released a new WordPress plugin called Related Posts by Category Widget. I spoke about Automating Your WordPress Plugins &#8230; <a href="http://techgeni.us/wordpress/what-ive-been-up-to/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-288 alignleft" title="speaker_badge_200" src="http://techgeni.us/wp-content/uploads/2010/08/speaker_badge_200.png" alt="" width="200" height="198" />Well, obviously I have been neglecting my personal blog the last couple of months.</p>
<p>I do have somewhat good excuses though. I&#8217;ve released a new WordPress plugin called <a href="http://wordpress.org/extend/plugins/related-posts-by-category-widget/" target="_blank">Related Posts by Category Widget</a>. I spoke about <a href="http://www.slideshare.net/dcannon1/automating-your-plugin-with-wpcron" target="_blank">Automating Your WordPress Plugins With WP-Cron</a> at <a href="http://2010.savannah.wordcamp.org/" target="_blank">WordCamp Savannah</a>. I&#8217;ve been working on custom web apps for Fortune 500 clients at <a href="http://nicasiodesign.com" target="_blank">Nicasio Design</a>. I&#8217;ve also been spending way too much time playing with the <a href="http://blog.tweetdeck.com/android-tweetdeck-one-week-in" target="_blank">new Tweetdeck for Android app</a>. I&#8217;ve also been trying to spend as much time as possible at <a href="http://twitpic.com/2epyrw" target="_blank">Tybee Beach</a> this summer.</p>
<p>So as you can see I&#8217;ve been pretty busy, and any blog negligence should be promptly excused.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/what-ive-been-up-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Move</title>
		<link>http://techgeni.us/site-news/site-move/</link>
		<comments>http://techgeni.us/site-news/site-move/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 05:05:32 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=267</guid>
		<description><![CDATA[I just moved this site, along with a few others, from my VPS over to the Grid service at Media Temple. So far, so good. Definitely seeing a performance increase so far.]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-292 alignright" title="server_room" src="http://techgeni.us/wp-content/uploads/2010/07/server_room-300x210.jpg" alt="" width="300" height="210" />I just moved this site, along with a few others, from my VPS over to the Grid service at Media Temple. So far, so good. Definitely seeing a performance increase so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/site-news/site-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Game Review</title>
		<link>http://techgeni.us/smart-phones/android-smart-phones/android-game-review/</link>
		<comments>http://techgeni.us/smart-phones/android-smart-phones/android-game-review/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 18:15:37 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[multiplayer]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=256</guid>
		<description><![CDATA[OK, so the Android platform isn&#8217;t known (yet) for it&#8217;s gaming prowess, but there are some really fun and addicting games out there. One that I&#8217;ve been playing recently is Cestos. It&#8217;s an online multiplayer game and the concept is &#8230; <a href="http://techgeni.us/smart-phones/android-smart-phones/android-game-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://techgeni.us/wp-content/uploads/2010/03/2p.jpg"><img class="size-medium wp-image-257 alignleft" title="Cestos for Android" src="http://techgeni.us/wp-content/uploads/2010/03/2p-300x198.jpg" alt="" width="300" height="198" /></a>OK, so the Android platform isn&#8217;t known (yet) for it&#8217;s gaming prowess, but there are some really fun and addicting games out there. One that I&#8217;ve been playing recently is Cestos. It&#8217;s an online multiplayer game and the concept is simple. Destroy the other person&#8217;s balls by moving yours. Unlock new avatar customizations as you advance. Different play modes/maps and since it is turned based it can be played without a high speed connection. My username is k0p</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/smart-phones/android-smart-phones/android-game-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flavors.Me → Quick and Easy Web Presence</title>
		<link>http://techgeni.us/social-media/flavors-me-quick-and-easy-web-presence/</link>
		<comments>http://techgeni.us/social-media/flavors-me-quick-and-easy-web-presence/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 16:26:51 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=249</guid>
		<description><![CDATA[Flavors.me is a cool little service I&#8217;ve been playing with this morning. It allows you to create a simple personal web page that can aggregate all of your social media into one place. It also allows you to have a &#8230; <a href="http://techgeni.us/social-media/flavors-me-quick-and-easy-web-presence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-250" title="thumbnail_flavors" src="http://techgeni.us/wp-content/uploads/2010/02/thumbnail_flavors-300x240.jpg" alt="" width="300" height="240" />Flavors.me is a cool little service I&#8217;ve been playing with this morning. It allows you to create a simple personal web page that can aggregate all of your social media into one place. It also allows you to have a lot of control over design, layout, colors, background, etc.</p>
<p>Not a bad little tool.</p>
<p><a href="http://flavors.me/dcannon1" target="_blank">My Flavors.me Page →</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/social-media/flavors-me-quick-and-easy-web-presence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and Web Design Chuck Norris Facts</title>
		<link>http://techgeni.us/wordpress/wordpress-and-web-design-chuck-norris-facts/</link>
		<comments>http://techgeni.us/wordpress/wordpress-and-web-design-chuck-norris-facts/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 16:12:25 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[chuck norris]]></category>
		<category><![CDATA[pain]]></category>
		<category><![CDATA[roundhouse]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=245</guid>
		<description><![CDATA[Here&#8217;s a link to an article I wrote for the Nicasio Design blog. Chuck Norris wrote a plugin once. It was called “Roundhouse Kick”. It had to be removed from the repository due to the number of fatalities. WordPress and &#8230; <a href="http://techgeni.us/wordpress/wordpress-and-web-design-chuck-norris-facts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-58" title="wordpress-logo-200" src="http://techgeni.us/wp-content/uploads/2010/02/wordpress-logo-200.png" alt="" width="200" height="200" />Here&#8217;s a link to an article I wrote for the Nicasio Design blog.</p>
<blockquote><p>Chuck Norris wrote a plugin once. It was called “Roundhouse Kick”. It  had to be removed from the repository due to the number of fatalities.</p></blockquote>
<p><a title="Chuck Norris Web Design and WordPress Facts" href="http://nicasiodesign.com/blog/wordpress/wordpress-chuck-norris-facts/">WordPress and Web Design Chuck Norris Facts →</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/wordpress/wordpress-and-web-design-chuck-norris-facts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30% of Americans Still on Dial Up</title>
		<link>http://techgeni.us/internet/30-of-americans-still-on-dial-up/</link>
		<comments>http://techgeni.us/internet/30-of-americans-still-on-dial-up/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:27:04 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[dial up]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[slow]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=238</guid>
		<description><![CDATA[CrunchGear is reporting the results of a new FCC study on Internet usage. The results are, well&#8230;bad. Apparently 1/3 of the country is still using dial up internet. The predominant dial up users are minorities and the elderly. While it&#8217;s &#8230; <a href="http://techgeni.us/internet/30-of-americans-still-on-dial-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://techgeni.us/wp-content/uploads/2010/02/slow_play_turtle.jpg"><img class="size-medium wp-image-239 alignright" title="Slow Internet is Bad" src="http://techgeni.us/wp-content/uploads/2010/02/slow_play_turtle-289x300.jpg" alt="" width="289" height="300" /></a>CrunchGear is reporting the results of a new FCC study on Internet usage. The results are, well&#8230;bad. Apparently 1/3 of the country is still using dial up internet. The predominant dial up users are minorities and the elderly. While it&#8217;s unfortunate that these groups can&#8217;t watch great YouTube videos like Cute Kitten, CrunchGear points out a more disturbing thought. How can we hope to close the gap of opportunity and education when the more affluent 2/3 of the country has access to almost the sum of human knowledge at their fingertips while 1/3 can probably not even access most modern websites in a timely manner.</p>
<p>Note that the sample size was only 5k people, so more research into this matter would help.</p>
<p><a href="http://www.crunchgear.com/2010/02/24/13-of-americans-dont-use-fast-internet/" target="_blank">More at CrunhGear →</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/internet/30-of-americans-still-on-dial-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android App Review: K-9 Mail</title>
		<link>http://techgeni.us/smart-phones/android-smart-phones/android-app-review-k-9-mail/</link>
		<comments>http://techgeni.us/smart-phones/android-smart-phones/android-app-review-k-9-mail/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 05:56:03 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=230</guid>
		<description><![CDATA[One of my only complaints about the Android platform is the native mail support (for both GMail and other email accounts). Fortunately, Google allows developers to build apps to replace native Android applications which is where K-9 Mail comes in. &#8230; <a href="http://techgeni.us/smart-phones/android-smart-phones/android-app-review-k-9-mail/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-231" title="K9 Mail Google Android App" src="http://techgeni.us/wp-content/uploads/2010/02/k9mail.png" alt="" width="160" height="160" />One of my only complaints about the Android platform is the native mail support (for both GMail and other email accounts). Fortunately, Google allows developers to build apps to replace native Android applications which is where K-9 Mail comes in.</p>
<p>K-9 Mail is almost everything I want in a mail client. Clean interface, multiple accounts, batch operations, configurable check times and more. This app is a must have if you&#8217;re an email junkie.</p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/smart-phones/android-smart-phones/android-app-review-k-9-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detailed Report on School Laptop Spying</title>
		<link>http://techgeni.us/online-privacy/detailed-report-on-school-laptop-spying/</link>
		<comments>http://techgeni.us/online-privacy/detailed-report-on-school-laptop-spying/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 23:49:42 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Online Privacy]]></category>
		<category><![CDATA[lower merion]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=221</guid>
		<description><![CDATA[Stryde Hax has a nice piece on the details of the technology and personnel behind the alleged spying on students at Lower Merion by school officials. Some very telling information here including info on the guy behind the program and &#8230; <a href="http://techgeni.us/online-privacy/detailed-report-on-school-laptop-spying/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://techgeni.us/wp-content/uploads/2010/02/1266986339_preferences-desktop-cryptography.png"><img class="alignright size-full wp-image-222" title="1266986339_preferences-desktop-cryptography" src="http://techgeni.us/wp-content/uploads/2010/02/1266986339_preferences-desktop-cryptography.png" alt="" width="128" height="128" /></a><a href="http://strydehax.blogspot.com/2010/02/spy-at-harrington-high.html" target="_blank">Stryde Hax</a> has a nice piece on the details of the technology and personnel behind the alleged spying on students at Lower Merion by school officials.</p>
<p>Some very telling information here including info on the guy behind the program and some new comments from past students.</p>
<p><a href="http://strydehax.blogspot.com/2010/02/spy-at-harrington-high.html" target="_blank">More at Stryde Hax→</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><a href="http://www.lmsd.org/">Lower Merion</a></div>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/online-privacy/detailed-report-on-school-laptop-spying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seatbelt Safety Goes Modern &amp; Viral</title>
		<link>http://techgeni.us/social-media/seatbelt-safety-goes-modern-viral/</link>
		<comments>http://techgeni.us/social-media/seatbelt-safety-goes-modern-viral/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 05:22:38 +0000</pubDate>
		<dc:creator>Dan Cannon</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[safety]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[viral]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://techgeni.us/?p=213</guid>
		<description><![CDATA[In a cool new video from the Sussex Safer Roads organization out of the UK, the usually boring and ignored message of seat-belt safety gets an artsy, modern twist. The video is being received as not only a positive message, &#8230; <a href="http://techgeni.us/social-media/seatbelt-safety-goes-modern-viral/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://techgeni.us/wp-content/uploads/2010/02/Seat_Belt_Extention.jpg"><img class="alignleft size-medium wp-image-228" title="Seat_Belt_Extention" src="http://techgeni.us/wp-content/uploads/2010/02/Seat_Belt_Extention-300x300.jpg" alt="" width="300" height="300" /></a>In a cool new video from the Sussex Safer Roads organization out of the UK, the usually boring and ignored message of seat-belt safety gets an artsy, modern twist. The video is being received as not only a positive message, but also a work of cinematographic art. The video has quickly gone viral, spreading across social media and picking up ~1.5 mil YouTube views in about 3 weeks.</p>
<p>Video after the break.</p>
<p><span id="more-213"></span></p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/h-8PBx7isoM&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/h-8PBx7isoM&#038;fs=1" type="application/x-shockwave-flash" width="640" height="385" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://techgeni.us/social-media/seatbelt-safety-goes-modern-viral/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

