<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Your Hometown .COM Company!</title>
	<atom:link href="http://mobasoft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mobasoft.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 28 Jan 2009 16:29:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mobasoft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Your Hometown .COM Company!</title>
		<link>http://mobasoft.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mobasoft.wordpress.com/osd.xml" title="Your Hometown .COM Company!" />
	<atom:link rel='hub' href='http://mobasoft.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Creating Graphs with PHP</title>
		<link>http://mobasoft.wordpress.com/2009/01/28/creating-graphs-with-php/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/28/creating-graphs-with-php/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 16:29:32 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=461</guid>
		<description><![CDATA[I don&#8217;t recall where I grabbed this snippet of code, but it&#8217;s a very straight forward way to create a vertical bar chart using PHP. Here&#8217;s the code: &#60;?php // create an array of values for the chart. These values &#8230; <a href="http://mobasoft.wordpress.com/2009/01/28/creating-graphs-with-php/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=461&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-465 alignnone" style="border:0 none;margin-left:10px;margin-right:120px;" title="graph" src="http://mobasoft.com/wordpress/wp-content/uploads/graph.png" alt="graph" width="500" height="200" /></p>
<p>I don&#8217;t recall where I grabbed this snippet of code, but it&#8217;s a very straight forward way to create a vertical bar chart using PHP.</p>
<p>Here&#8217;s the code:<br />
<code>&lt;?php<br />
</code></p>
<p>// create an array of values for the chart. These values<br />
// could come from anywhere, POST, GET, database etc.<br />
$values = array(23,32,35,57,12,3,36,23,32,35,57,12,3,36,54,32,15,43,24,30);</p>
<p>// now we get the number of values in the array. this will<br />
// tell us how many columns to plot<br />
$columns  = count($values);</p>
<p>// set the height and width of the graph image</p>
<p>$width = 500;<br />
$height = 200;</p>
<p>// Set the amount of space between each column<br />
$padding = 5;</p>
<p>// Get the width of 1 column<br />
$column_width = $width / $columns ;</p>
<p>// set the graph color variables<br />
$im        = imagecreate($width,$height);<br />
$gray      = imagecolorallocate ($im,0xcc,0xcc,0xcc);<br />
$gray_lite = imagecolorallocate ($im,0xee,0xee,0xee);<br />
$gray_dark = imagecolorallocate ($im,0x7f,0x7f,0x7f);<br />
$white     = imagecolorallocate ($im,0xff,0xff,0xff);</p>
<p>// set the background color of the graph<br />
imagefilledrectangle($im,0,0,$width,$height,$white);</p>
<p>// Calculate the maximum value we are going to plot<br />
$max_value = max($values);</p>
<p>// loop over the array of columns<br />
for($i=0;$i&lt;$columns;$i++)<br />
{<br />
// set the column hieght for each value<br />
$column_height = ($height / 100) * (( $values[$i] / $max_value) *100);<br />
// now the coords<br />
$x1 = $i*$column_width;<br />
$y1 = $height-$column_height;<br />
$x2 = (($i+1)*$column_width)-$padding;<br />
$y2 = $height;</p>
<p>// write the columns over the background<br />
imagefilledrectangle($im,$x1,$y1,$x2,$y2,$gray);</p>
<p>// This gives the columns a little 3d effect<br />
imageline($im,$x1,$y1,$x1,$y2,$gray_lite);<br />
imageline($im,$x1,$y2,$x2,$y2,$gray_lite);<br />
imageline($im,$x2,$y1,$x2,$y2,$gray_dark);<br />
}</p>
<p>// set the correct png headers<br />
header (&#8220;Content-type: image/png&#8221;);<br />
// spit the image out the other end<br />
imagepng($im);<br />
?&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/461/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/461/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/461/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=461&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/28/creating-graphs-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/graph.png" medium="image">
			<media:title type="html">graph</media:title>
		</media:content>
	</item>
		<item>
		<title>For Sale 1995 Chevrolet Blazer LT (SOLD)</title>
		<link>http://mobasoft.wordpress.com/2009/01/17/for-sale-1995-chevrolet-blazer-lt/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/17/for-sale-1995-chevrolet-blazer-lt/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 22:23:30 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=445</guid>
		<description><![CDATA[For sale: 1995 Chevrolet Blazer LT 4WD. SOLD 4.3L Vortec V6 engine. 111,648 Original Miles as of January 17th, 2009 Starts and runs fine. Full disclaimer: The ABS unit went out last August and I never checked in to how &#8230; <a href="http://mobasoft.wordpress.com/2009/01/17/for-sale-1995-chevrolet-blazer-lt/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=445&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><img class="alignleft size-full wp-image-446" title="sany0541" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0541.jpg" alt="sany0541" /> <img class="alignleft size-full wp-image-447" title="sany0542" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0542.jpg" alt="sany0542" /> <img class="alignleft size-full wp-image-448" title="sany0543" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0543.jpg" alt="sany0543" /> <img class="alignleft size-full wp-image-449" title="sany0544" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0544.jpg" alt="sany0544" /> <img class="alignleft size-full wp-image-450" title="sany0545" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0545.jpg" alt="sany0545" /> <img class="alignleft size-full wp-image-451" title="sany0547" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0547.jpg" alt="sany0547" /></td>
</tr>
<tr>
<td><img class="alignleft size-full wp-image-455" title="sany0550" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0550.jpg" alt="sany0550" /><br />
<img class="alignleft size-full wp-image-454" title="sany0549" src="http://mobasoft.com/wordpress/wp-content/uploads/sany0549.jpg" alt="sany0549" /></td>
</tr>
<tr>
<td><strong><span style="text-decoration:line-through;">For sale:</span> </strong>1995 Chevrolet Blazer LT  4WD. <strong>SOLD</strong><br />
4.3L Vortec V6 engine.</p>
<p>111,648 Original Miles as of January 17th, 2009</p>
<p>Starts and runs fine.</p>
<p><strong>Full disclaimer:</strong></p>
<p>The ABS unit went out last August and I never checked in to how much that would cost to get fixed.</p>
<p>The transmission shifts fine for normal driving, but the reverse gear is having some issues. I&#8217;ve been told that was a common problem for this vehicle.The transmission repair might cost around $800 or so.</p>
<p>The latch on the rear glass, which is normally glued to it, has come undone and I have tried using Gorilla Glue but it didn&#8217;t hold. You might know what it takes to fix it, or you could replace the whole rear glass for about $300.</p>
<p>It has a new set of tires, upper and lower u-joints are new, tie-rod ends are new, steering tension bar is new, radiator is new.</p>
<p>All of those part replacements were made because of normal wear.</p>
<p>With a little money put into it, you&#8217;d have a really clean and reliable vehicle for many miles to come. We&#8217;ve just acquired another vehicle and are no longer needing this one.</p>
<p><span style="text-decoration:line-through;"><strong>Asking Price: $2,100 cash<br />
</strong></span></p>
<p><span style="text-decoration:line-through;"><strong>Vehicle is in Independence, Missouri 64055</strong></span></p>
<p><strong>UPDATE: This vehicle has been sold. Thanks!<br />
</strong></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/445/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/445/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/445/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=445&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/17/for-sale-1995-chevrolet-blazer-lt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0541.jpg" medium="image">
			<media:title type="html">sany0541</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0542.jpg" medium="image">
			<media:title type="html">sany0542</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0543.jpg" medium="image">
			<media:title type="html">sany0543</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0544.jpg" medium="image">
			<media:title type="html">sany0544</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0545.jpg" medium="image">
			<media:title type="html">sany0545</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0547.jpg" medium="image">
			<media:title type="html">sany0547</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0550.jpg" medium="image">
			<media:title type="html">sany0550</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sany0549.jpg" medium="image">
			<media:title type="html">sany0549</media:title>
		</media:content>
	</item>
		<item>
		<title>If you knew, what would you do?</title>
		<link>http://mobasoft.wordpress.com/2009/01/15/if-you-knew-what-would-you-do/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/15/if-you-knew-what-would-you-do/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 20:29:51 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[compassion]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=443</guid>
		<description><![CDATA[Imagine that you were given the knowledge of exactly when someone that you know is going to die. Also, imagine that somehow if you told them about it, it would mean that you would instantly fall over dead. (tough criteria, &#8230; <a href="http://mobasoft.wordpress.com/2009/01/15/if-you-knew-what-would-you-do/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=443&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine that you were given the knowledge of exactly when someone that you know is going to die.</p>
<p>Also, imagine that somehow if you told them about it, it would mean that you would instantly fall over dead.</p>
<p>(<em>tough criteria, I know, but bear with me&#8230;</em>)</p>
<p>Now, image having lots of conversations with that person &#8211; let&#8217;s say that they are telling you all of their plans for some great new online application that they are making, or perhaps they are telling you all about this new house they are going to have built.</p>
<p>Given what you know about them, would you listen with intent and encouragement? Would you show compassion to them knowing that whatever their dreams or plans are would never be complete?</p>
<p>What would you do?</p>
<p>Ok, assuming that most of you said that yes, you would be as compassionate as possible and show them support, etc. the real question here is this &#8211; Since none of us really know exactly when that moment is going to come, why don&#8217;t we show the same level of compassion for each and everyone that we interact with?</p>
<p>Why would the value of their life seem greater if we knew exactly when it was going to end?</p>
<p>What were you thinking about when you were reading this post?</p>
<p>Please chime in with the comments &#8211; if you&#8217;d like to comment on Twitter, that&#8217;s fine, but please also do so here so that the conversation will have some sort of longevity.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=443&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/15/if-you-knew-what-would-you-do/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Maybe one day I will be a rockstar</title>
		<link>http://mobasoft.wordpress.com/2009/01/08/maybe-one-day-i-will-be-a-rockstar/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/08/maybe-one-day-i-will-be-a-rockstar/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 19:00:00 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Rockstar]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=438</guid>
		<description><![CDATA[httpv://www.youtube.com/watch?v=LRgbO7pOESU Sorry about the volume issue in the second half &#8211; I&#8217;ll need to figure out another way to record this if I do it again.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=438&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>httpv://www.youtube.com/watch?v=LRgbO7pOESU</p>
<p>Sorry about the volume issue in the second half &#8211; I&#8217;ll need to figure out another way to record this if I do it again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=438&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/08/maybe-one-day-i-will-be-a-rockstar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Aiming for a better bod</title>
		<link>http://mobasoft.wordpress.com/2009/01/08/aiming-for-a-better-bod/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/08/aiming-for-a-better-bod/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 18:05:21 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Workout]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=435</guid>
		<description><![CDATA[On December 26th, 2008 my wife and I, along with our two kids, took a trip to our local shopping mall where we visited the GNC nutritional supplement store and I purchased the GNC Pro Performance Maximum Hardcore Muscle Stack &#8230; <a href="http://mobasoft.wordpress.com/2009/01/08/aiming-for-a-better-bod/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=435&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On December 26th, 2008 my wife and I, along with our two kids, took a trip to our local shopping mall where we visited the GNC nutritional supplement store and I purchased the GNC Pro Performance Maximum Hardcore Muscle Stack kit.</p>
<p><a href="http://www.gnc.com/product/index.jsp?productId=3321734&amp;cp=2959945&amp;parentPage=family"><img class="alignleft size-full wp-image-436" style="border:0 none;margin:0;" title="gnc1-5314754dt" src="http://mobasoft.com/wordpress/wp-content/uploads/gnc1-5314754dt.jpg" alt="gnc1-5314754dt" width="500" height="500" /></a>I started taking it that afternoon and on December 27th, 2008 (the next day) I had my first workout in almost one year.</p>
<p>I workout every other day, so as of today I have had seven workouts.</p>
<p>I already feel more tone and I seem to be standing up straighter (simply because it now feels better than slouching).</p>
<p>My workout routine isn&#8217;t anything fancy. I have a set of free weights with two barbells, a dumbbell, a preacher bar and a weight bench. There&#8217;s about 320lbs of weights.</p>
<p>I am not doing any lower-body workouts, but I plan on adding that in about two months.</p>
<p>For abs, I do three sets of 13 crunches, while holding a 45lb weight against my chest. I also do three sets of leg lifts.</p>
<p>For the bench press, I do three sets of 8 reps and add more weight before each workout (I&#8217;ve added weight 6 times). I am currently bench pressing 130 lbs.</p>
<p>I also do curls with the dumbbells, again three sets of 8 reps each.  I have a few more exercises, but right now I&#8217;m not sure of what the common name is for them. One is for the triceps where you squat on the bench with one knee and hand and raise the dumbbell up and extend your arm backwards.</p>
<p>I&#8217;ve been focusing on Form over quantity of reps, so I&#8217;d rather have 6 good reps rather than 8 sloppy ones.</p>
<p>I imagine after I keep this up for awhile I will develop a more rigid routine and begin to target individual muscles, but for now, just making the workout routine a regular part of my life is my main goal.</p>
<p>Baby steps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/435/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=435&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/08/aiming-for-a-better-bod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/gnc1-5314754dt.jpg" medium="image">
			<media:title type="html">gnc1-5314754dt</media:title>
		</media:content>
	</item>
		<item>
		<title>2009 the year ahead</title>
		<link>http://mobasoft.wordpress.com/2009/01/02/2009-the-year-ahead/</link>
		<comments>http://mobasoft.wordpress.com/2009/01/02/2009-the-year-ahead/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 14:34:59 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=432</guid>
		<description><![CDATA[Happy New Year everyone &#8211; I hope that the next 12 months lead you even closer to whatever it is that you want. For me, it will be a continuation of a simplification process. As we no longer use credit &#8230; <a href="http://mobasoft.wordpress.com/2009/01/02/2009-the-year-ahead/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=432&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-296" style="border:0 none;margin:12px;" title="sonyvaio" src="http://mobasoft.com/wordpress/wp-content/uploads/sonyvaio.png" alt="sonyvaio" width="480" height="214" /><strong>Happy New Year</strong> everyone &#8211; I hope that the next 12 months lead you even closer to whatever it is that you want.</p>
<p>For me, it will be a continuation of a simplification process.</p>
<p>As we no longer use credit cards at all, we&#8217;ve pretty much gone to a cash-and-carry lifestyle (that&#8217;s helped out a bunch &#8211; impulse purchases aren&#8217;t really all that satisfying anyhow).</p>
<p><strong>Gadgets, gadgets, gadgets</strong> &#8211; somehow (as if I don&#8217;t know how ;^) over the last few years I&#8217;ve ended up with several digital cameras, about 5 mp3 players, 2 laptop computers and 4 desktop machines &#8211; I&#8217;m still on the quest to find a single machine and OS which I can use on a daily basis.</p>
<p>As many of you already know, my desk contains 3 machines &#8211; a Windows XP machine, a MacBook Pro and another machine running some flavor of Linux (currently, Kubuntu 8.10). I have yet to find a single platform which allows me to do everything that I need &#8211; they all get &#8220;close&#8221; but there are still things missing from one platform to the next. I&#8217;ll continue the search&#8230;</p>
<p><strong>MP3 players</strong> -of all of them (iRiver, Creative Zen Xtra 30GB, 8GB iPod Touch, iPod 30GB video) I prefer the Zen Xtra &#8211; I&#8217;m not really sure why, it has the largest physical size &#8211; perhaps it it reminiscent of my first Game Boy device (which I played for-evah!). For the rest of them, well &#8211; I added all of my CD&#8217;s to the Zune yesterday &#8211; but today I find myself copying that music library over to the Zen &#8211; I&#8217;ll need to get rid of the others (wife and kids first, sorry! ;^)</p>
<p><strong>Electricity</strong> &#8211; we&#8217;ve been using less and have also been replacing each light bulb in the house with the twistie compact fluorescents. Our electric bill was $44 less in December than it was in November and we used almost 500kW less power. Our goal would be to use less than 8kW on a daily basis. Part of our reduction was to elimate our use of a second freezer which we kept in the garage.</p>
<p><strong>MobaTalk</strong> &#8211; Dozens of iterations past, I have the system framed in and now it&#8217;s a matter of completing the coding and getting it released. Ever forward!</p>
<p>How&#8217;s your 2009 starting out so far? There are only 350 days left until 2010 &#8211; get crackin&#8217;! ;^)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/432/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=432&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2009/01/02/2009-the-year-ahead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/sonyvaio.png" medium="image">
			<media:title type="html">sonyvaio</media:title>
		</media:content>
	</item>
		<item>
		<title>Schulz Philosophy</title>
		<link>http://mobasoft.wordpress.com/2008/12/28/schulz-philosophy/</link>
		<comments>http://mobasoft.wordpress.com/2008/12/28/schulz-philosophy/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 20:08:17 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=430</guid>
		<description><![CDATA[I received the following in an email, and of course, I never &#8220;forward to 10 people&#8221; so here it is for all 48,000 of you who read this blog. The following is the philosophy of Charles Schulz, the creator of &#8230; <a href="http://mobasoft.wordpress.com/2008/12/28/schulz-philosophy/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=430&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>I received the following in an email, and of course, I never &#8220;forward to 10 people&#8221; so here it is for all 48,000 of you who read this blog.</em></p>
<p>The following is the philosophy of Charles Schulz, the creator of the &#8216;Peanuts&#8217; comic strip.</p>
<p>You  don&#8217;t have to actually answer the  questions.</p>
<p>Just read it straight through, and you&#8217;ll get the point.</p>
<ol>
<li>Name the five wealthiest people in the  world.</li>
<li>Name the last five Heisman trophy  winners.</li>
<li>Name the last five winners of the Miss America  pageant.</li>
<li>Name ten people who have won the Nobel or  Pulitzer  Prize.</li>
<li>Name the last half dozen Academy Award winners  for best actor and actress.</li>
<li>Name the last decade&#8217;s worth of World Series  winners.</li>
</ol>
<p><strong>How  did you  do?</strong></p>
<p>The point is, none of us remember the headliners of yesterday.</p>
<p>These are no second-rate achievers.</p>
<p>They are the best in their fields, but the applause dies&#8230;Awards tarnish&#8230;Achievements are forgotten.</p>
<p>Accolades and certificates are buried with their owners.</p>
<p><strong>Here&#8217;s another quiz.</strong></p>
<p>See how you do on this one:</p>
<ol>
<li>List a few teachers who aided your journey through school.</li>
<li>Name three friends who have helped you through a difficult time.</li>
<li>Name five people who have taught you something worthwhile.</li>
<li>Think of a few people who have made you feel appreciated and special!</li>
<li>Think of five people you enjoy spending time with.</li>
</ol>
<p><strong>Easier?</strong></p>
<p>The lesson:</p>
<p>The people who make a difference in your life are not the ones with the most credentials, the most money, or the most awards.</p>
<p>They simply are the ones who care the most.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/430/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=430&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2008/12/28/schulz-philosophy/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Thursday Business Giveaway: Social Destiny</title>
		<link>http://mobasoft.wordpress.com/2008/12/18/thursday-business-giveaway-social-destiny/</link>
		<comments>http://mobasoft.wordpress.com/2008/12/18/thursday-business-giveaway-social-destiny/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 22:18:39 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[Business Ops]]></category>
		<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=426</guid>
		<description><![CDATA[About one week ago, when I was thinking about social media and what it might one day become, the word Destiny popped into my head. I scurried on over to GoDaddy.com to check on available domain names using Destiny as &#8230; <a href="http://mobasoft.wordpress.com/2008/12/18/thursday-business-giveaway-social-destiny/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=426&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-427" style="border:0 none;margin:12px;" title="socialdestiny" src="http://mobasoft.com/wordpress/wp-content/uploads/socialdestiny.png" alt="socialdestiny" width="417" height="68" />About one week ago, when I was thinking about social media and what it might one day become, the word Destiny popped into my head. I scurried on over to GoDaddy.com to check on available domain names using Destiny as part of the word. Behold, SocialDestiny.com was (and still is) available.</p>
<p><strong>Ok, so the domain name is available, but what&#8217;s in a name?</strong></p>
<p>There certainly needed to be some substance in a site with a name such as that, but what would it be?</p>
<p>For the last week, I&#8217;ve thought about it on and off, trying to frame in exactly what it could be.</p>
<p>I&#8217;ve had a few different ideas, but mostly they circled around a central thought of being some type of portal.</p>
<p>Perhaps, in a quirky way, SocialDestiny could actually be a &#8220;starting point&#8221; for people looking for news, tips, events, and anything centered around the whole social media scene.</p>
<p><strong>It&#8217;s all up to you</strong></p>
<p>Sad but true. The only thing that I really have to offer you at this point is the opportunity to chime in here in the comments section. Oh, and the nifty site logo (feel free to grab it if you want it.  Merry Christmas.)</p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/426/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=426&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2008/12/18/thursday-business-giveaway-social-destiny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/socialdestiny.png" medium="image">
			<media:title type="html">socialdestiny</media:title>
		</media:content>
	</item>
		<item>
		<title>MobaTalk Interview on LifeInTheTubes</title>
		<link>http://mobasoft.wordpress.com/2008/12/12/mobatalk-interview-on-lifeinthetubes/</link>
		<comments>http://mobasoft.wordpress.com/2008/12/12/mobatalk-interview-on-lifeinthetubes/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 15:34:41 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[eMedia]]></category>
		<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Vidcasts]]></category>
		<category><![CDATA[mobatalk]]></category>
		<category><![CDATA[new media]]></category>
		<category><![CDATA[passion]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=418</guid>
		<description><![CDATA[Thanks to @TechGuyTom for inviting me in to talk about MobaTalk and for letting me share my vision and passion. Congratulations on your first three episodes of the LifeInTheTubes video podcast show and best wishes for all future episodes. I &#8230; <a href="http://mobasoft.wordpress.com/2008/12/12/mobatalk-interview-on-lifeinthetubes/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=418&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://twitter.com/TechGuyTom">@TechGuyTom</a> for inviting me in to talk about MobaTalk and for letting me share my vision and passion.</p>
<p>Congratulations on your first three episodes of the <a href="http://lifeinthetubes.com">LifeInTheTubes</a> video podcast show and best wishes for all future episodes.</p>
<p>I look forward to returning for a follow-up interview after MobaTalk Beta launches.</p>
<p>Thanks again,</p>
<p>Michael</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/418/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/418/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/418/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=418&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2008/12/12/mobatalk-interview-on-lifeinthetubes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Twitter Hashtags</title>
		<link>http://mobasoft.wordpress.com/2008/12/05/using-twitter-hashtags/</link>
		<comments>http://mobasoft.wordpress.com/2008/12/05/using-twitter-hashtags/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 13:46:11 +0000</pubDate>
		<dc:creator>mobasoft</dc:creator>
				<category><![CDATA[Business Ops]]></category>
		<category><![CDATA[eMedia]]></category>
		<category><![CDATA[My Notes]]></category>
		<category><![CDATA[PodCamp]]></category>
		<category><![CDATA[Resume]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[tips-n-tricks]]></category>
		<category><![CDATA[hashtags]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://mobasoft.com/wordpress/?p=409</guid>
		<description><![CDATA[Using Twitter Hashtags effectively requires just a little knowledge. Here are a few tips and some insight as to why people use #hashtags. The Basics What is a hashtag? The # symbol, is usually referred to as the pound symbol, &#8230; <a href="http://mobasoft.wordpress.com/2008/12/05/using-twitter-hashtags/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=409&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using Twitter Hashtags effectively requires just a little knowledge.<br />
Here are a few tips and some insight as to why people use #hashtags.</p>
<h3><strong>The Basics</strong></h3>
<ul>
<li>
<h3>What is a hashtag?</h3>
</li>
</ul>
<p>The # symbol, is usually referred to as the pound symbol, however it is also called the &#8220;Hash&#8221; symbol. A hashtag therefore is any word, phrase, or series of letters and numbers which is preceeded by a #.</p>
<p>A <a href="http://www.answers.com/hashtag">hashtag</a> is merely a <a href="http://www.answers.com/keywords">keyword</a>, and it is denoted on Twitter like this: #hashtaghere</p>
<ul>
<li>
<h3>Why are hashtags important?</h3>
</li>
</ul>
<p>The importance of Hashtags only comes into play when people are searching for what others are saying about a particular subject or event. I&#8217;ll show you a portion of two screenshots to illustrate the difference.</p>
<p>I went to <a title="Search Twitter" href="http://search.twitter.com">http://search.twitter.com</a> (formerly known as Summize.com) and searched for &#8220;hashtag&#8221; and then &#8220;#hashtag&#8221;. Here are the results.</p>
<p style="text-align:left;">
<div class="mceTemp"><img class="size-full wp-image-410" style="border:0 none;margin:12px;" title="wordhashtag" src="http://mobasoft.com/wordpress/wp-content/uploads/wordhashtag.png" alt="" width="500" height="280" /><a href="http://search.twitter.com/search?q=hashtag"><br />
Searching for the word Hashtag<br />
</a></div>
<div class="mceTemp"><img class="size-full wp-image-411" style="border:0 none;margin:12px;" title="withhashtag" src="http://mobasoft.com/wordpress/wp-content/uploads/withhashtag.png" alt="" width="500" height="280" /><a href="http://search.twitter.com/search?q=%23hashtag"><br />
Searching for the specific #hashtag</a></div>
<h3>Search Results</h3>
<p>As you can hopefully see, the use of the # symbol in the search has yielded different results.</p>
<p>In the first image are the results for people who where just using the word &#8220;hashtag&#8221; in their tweet, and the second image is the results for people specifically talking about the #hashtag.</p>
<p>Hashtags play a pretty signicant role when people are attending events, conferences, or meetups.</p>
<p>Using search.twitter.com during such events, and searching for the proper #hashtag, allows people to keep up with what people are saying. It also lets you discover new Twitterers who might be talking about the same thing.</p>
<h3>Choosing the Hashtag</h3>
<p>You might be wondering how you&#8217;ll know which word to use as the hashtag. Generally, a word or phrase is just agreed upon ahead of time by a few people and then everyone adopts it. It&#8217;s not a perfect system, but it works rather well.</p>
<p>–<br />
This blog post was written by Michael Bailey. Michael became interested in Social Media in the Summer of 2005 and has devoted thousands of hours towards the development of the <a title="MobaTalk Conversation Studio" href="http://mobatalk.com/">MobaTalk Conversation</a> Studio. He believes that the Context of Conversational data is quickly lost on the web using the currently available tools.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mobasoft.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mobasoft.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mobasoft.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mobasoft.wordpress.com&amp;blog=303740&amp;post=409&amp;subd=mobasoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mobasoft.wordpress.com/2008/12/05/using-twitter-hashtags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2454cb0d5ebf292786367caeae31c5aa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">mobasoft</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/wordhashtag.png" medium="image">
			<media:title type="html">wordhashtag</media:title>
		</media:content>

		<media:content url="http://mobasoft.com/wordpress/wp-content/uploads/withhashtag.png" medium="image">
			<media:title type="html">withhashtag</media:title>
		</media:content>
	</item>
	</channel>
</rss>
