<?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>calmighty &#187; Technology</title>
	<atom:link href="http://calmighty.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://calmighty.com</link>
	<description>creeping up on the internet like a mugger in an alley</description>
	<lastBuildDate>Fri, 17 Feb 2012 19:06:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Google Apps Script &#8211; Scheduled Tasks Replacement</title>
		<link>http://calmighty.com/google-apps-script-scheduled-tasks-replacement/</link>
		<comments>http://calmighty.com/google-apps-script-scheduled-tasks-replacement/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 18:25:10 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=103</guid>
		<description><![CDATA[I have a PHP application that is is on a shared hosting provider.  I have no access to cron or anything else to run a scheduled task.  I can&#8217;t fake cron by relying on a visitor to the application to call a PHP function to run the task.  So, I set up a scheduled task [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/googleapps/appsscript/"><img class="alignright size-full wp-image-106" title="appsscript-icon" src="http://calmighty.com/wp-content/uploads/2011/06/appsscript-icon.png" alt="Google Apps Script" width="140" height="140" /></a>I have a PHP application that is is on a shared hosting provider.  I have no access to cron or anything else to run a scheduled task.  I can&#8217;t fake cron by relying on a visitor to the application to call a PHP function to run the task.  So, I set up a scheduled task on my Windows server and wrote a quick VB script to to call the PHP script.  Problem solved?  Sure, but only if I wanted to rely on the availability of that particular server and Comcast business internet to <em>always</em> run my scheduled tasks.  And, who knows, maybe you don&#8217;t have access to a server to do this for you or have a computer that is always on and connected to the internet.</p>
<p>Now, I had heard of Google Apps Script, but I&#8217;m not a &#8220;real&#8221; programmer so I didn&#8217;t think much of it until I stumbled across a post the other day that made me investigate the API a little further.  It was quickly apparent that I could use Google Apps Script to replace my scheduled tasks.  Note in advance, if you need your task to fire at a precise time, this isn&#8217;t for you.  If, however, you can live with it running within a given hour read on.  Here&#8217;s an outline to get you started.  I&#8217;ve linked to the docs I used below.</p>
<ol>
<li>Go to Google Docs</li>
<li>Create New &gt; Spreadsheet</li>
<li>Go to Tools &gt; Script editor</li>
<li>A new window will open and you will see a function stubbed out for you</li>
<li>Rename your function to something meaningful</li>
<li>Add a method to fetch the URL of the script you wish to run</li>
<li>Go to Triggers &gt; All your triggers</li>
<li>You&#8217;ll be prompted to name your script</li>
<li>Now add your triggers to run your script</li>
</ol>
<p>For example, I have a function that runs a daily production report:</p>
<pre>function getProductionReport() {
   var response = UrlFetchApp.fetch("http://example.com/reports/production_report.php?token=sometoken")
}</pre>
<p>The reason I added a token to the URI is that I have the  script check for the correct token before running the report.  It won&#8217;t run without it and even if it did, no output is returned to the caller.</p>
<p>Next, I created the triggers.  When you open the All your triggers window, you&#8217;ll be prompted to name your script.  Do so.  Now, you will be able to add a new trigger.  Choose new and under run you&#8217;ll see a drop down with your function.  Next, change Events to Time-driven. Next choose your timer (Minutes, Hour, Day, Week) then choose the interval you desire.  If you only want your task to run on weekdays, you will have to create a separate trigger for each day of the week.  That&#8217;s pretty lame, but I&#8217;m sure Google will improve this as time goes on.  Choose save and that&#8217;s it, you&#8217;re done.</p>
<p>Add as many functions and timers as you like and let Google&#8217;s servers do the rest.  Oh, and here is the documentation from Google:</p>
<p><a title="Class UrlFetchApp" href="http://code.google.com/googleapps/appsscript/class_urlfetchapp.html">Class UrlFetchApp</a> and scroll down here for <a title="Events" href="http://code.google.com/googleapps/appsscript/guide_events.html">Time-driven triggers</a></p>
<p>When <em>I </em>have more time, I&#8217;m going to do a much deeper dive here.  It&#8217;s pretty crazy what you can do with Google Apps Script.  If you are using Google Apps Script for something trivial or complex, I&#8217;d love to hear about it.  Drop me a comment below.</p>
<p>One thing that hit me after I implemented this and saw it running day after day was that, out of everything else Google does every millisecond they always remember to run my little functions.  Pretty damn impressive.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/google-apps-script-scheduled-tasks-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jawbone ICON and My Support Experience</title>
		<link>http://calmighty.com/jawbone-icon-and-my-support-experience/</link>
		<comments>http://calmighty.com/jawbone-icon-and-my-support-experience/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 12:02:26 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=98</guid>
		<description><![CDATA[I bought the Jawbone ICON, &#8220;The Thinker&#8221;, in December 2010.  In fact, I&#8217;ve had every Jawbone they&#8217;ve offered save the new ERA which was just released.  Overall, the Jawbone&#8217;s have been the best bluetooth headsets I&#8217;ve ever owned and I&#8217;ve owned A LOT of them. Unfortunately, my ICON kept losing the pairing with my Droid [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jawbone.com"><img class="alignright size-medium wp-image-99" title="Jawbone_Icon" src="http://calmighty.com/wp-content/uploads/2011/03/Jawbone_Icon-300x173.jpg" alt="" width="300" height="173" /></a>I bought the <a href="http://jawbone.com">Jawbone</a> ICON, &#8220;The Thinker&#8221;, in December 2010.  In fact, I&#8217;ve had every Jawbone they&#8217;ve offered save the new ERA which was just released.  Overall, the Jawbone&#8217;s have been the best bluetooth headsets I&#8217;ve ever owned and I&#8217;ve owned A LOT of them.</p>
<p>Unfortunately, my ICON kept losing the pairing with my Droid X while on calls.  Normally, I think it just doesn&#8217;t work the way it should and by the time I&#8217;m frustrated to the point of  wanting to kick someone in the teeth, the next version is out and I buy that and move on.  Well, this connectivity issue became so annoying, I decided to submit my problem to Jawbone support.</p>
<p>I wasn&#8217;t thinking, &#8220;hey, this is a warranty issue.&#8221;  I just wanted to vent a little and see if anyone else was having similar problems.  Upon submitting the form, I was told they&#8217;d get back to me in 24 hours.  OK, we&#8217;ll see. Twenty-four hours later, I had a response from support.  The support email provided the steps to delete my BT profile and re-pair my Jawbone and encouraged me to either call them or write again if my problem wasn&#8217;t solved.</p>
<p>I followed their instructions knowing it wouldn&#8217;t work but wanted to give it (really anything) a try.  I made a test call and sure enough, the connection from the Jawbone to my phone dropped.  I emailed them back and received a response in a few hours asking me to call and telling me they&#8217;d walk me through the process of doing a master reset.</p>
<p>So, I called and waited on hold for a couple minutes until a friendly young lady picked up.  She walked me through the reset and took my mailing address in the even the reset didn&#8217;t work and they needed to process a warranty.  Now, by the time I called them, I was ready to fight for a replacement.  No fight necessary.  In fact, we scheduled a time for her to call me the next day to see if my problem persisted.</p>
<p>The next morning at the appointed time, I didn&#8217;t get my call and I had confirmed the reset didn&#8217;t solve my connectivity problem.  It&#8217;s OK, we all get busy and they had <em>just</em> launched the ERA.  I ended up calling in the afternoon and they answered the phone on the second ring.  I gave them my reference, told them the reset didn&#8217;t work and the support person started the warranty.  I received an email a couple minutes after hanging up and responded with a PDF of my receipt.  A couple hours later and they let me know they are sending my replacement.</p>
<p>It sounds like a lot to go through, but honestly it was one of the very best customer service experiences I&#8217;ve ever had.  That support interaction <em>saved me as a customer. </em>I&#8217;m looking forward to having a properly functioning ICON and also to waiting for a sale on the ERA.</p>
<p>Way to go Jawbone, you have a customer for life!</p>
<p><strong>UPDATE</strong>: I see a lot of people are looking for how to do the master reset of the jawbone.  Of course, I can&#8217;t remember and they didn&#8217;t email me the procedure.  If you find instructions telling you to tap the button 7 times as part of what you need to do, you&#8217;ve found the right way to hard reset it.  Definitely give them a call though &#8212; 1 800 JAWBONE.  I&#8217;m sure whoever answers will be happy to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/jawbone-icon-and-my-support-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Open Note to the Team at Google Voice</title>
		<link>http://calmighty.com/an-open-note-to-the-team-at-google-voice/</link>
		<comments>http://calmighty.com/an-open-note-to-the-team-at-google-voice/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 14:50:02 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=93</guid>
		<description><![CDATA[Dear Google Voice: Please buy PhoneTag and integrate their transcription technology immediately. That is all. V/R, Calmighty]]></description>
			<content:encoded><![CDATA[<p><a href="https://apps.simulscribe.com/signup/r/292055"><img class="alignright size-full wp-image-94" title="phonetag_200x50" src="http://calmighty.com/wp-content/uploads/2011/03/phonetag_200x50.jpg" alt="" width="200" height="50" /></a>Dear Google Voice:</p>
<p>Please buy <a href="https://apps.simulscribe.com/signup/r/292055 ">PhoneTag</a> and integrate their transcription technology immediately. That is all.</p>
<p>V/R,</p>
<p>Calmighty</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/an-open-note-to-the-team-at-google-voice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Contacts now Sync with Google Voice</title>
		<link>http://calmighty.com/google-contacts-now-sync-with-google-voice/</link>
		<comments>http://calmighty.com/google-contacts-now-sync-with-google-voice/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 15:10:16 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=88</guid>
		<description><![CDATA[I&#8217;ve been using Google Voice for a long time now.  Outside of the horrible voice transcription, my only gripe has been that contacts in Google were not synced to Google Voice.  I just added a contact to my Google account this morning and when I went to add it to Google Voice it was already [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://calmighty.com/wp-content/uploads/2010/12/google-voice.jpg"><img class="alignright size-medium wp-image-89" title="google-voice" src="http://calmighty.com/wp-content/uploads/2010/12/google-voice-300x186.jpg" alt="" width="300" height="186" /></a>I&#8217;ve been using Google Voice for a long time now.  Outside of the horrible voice transcription, my only gripe has been that contacts in Google were not synced to Google Voice.  I just added a contact to my Google account this morning and when I went to add it to Google Voice it was already there.  I can&#8217;t confirm this works with Gmail contacts as I&#8217;m using an email address under a Google Account.  The email address is on my own domain and is not the Google Account itself.</p>
<p>Now, if they&#8217;d only fix their transcription to work as well as PhoneTag&#8217;s, I&#8217;d be set.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/google-contacts-now-sync-with-google-voice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speculation on Android Rooting from a Know Nothing</title>
		<link>http://calmighty.com/speculation-on-android-rooting-from-a-know-nothing/</link>
		<comments>http://calmighty.com/speculation-on-android-rooting-from-a-know-nothing/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 17:25:37 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=83</guid>
		<description><![CDATA[That &#8220;know nothing&#8221; would be me.  Here&#8217;s a thought.  Before the z4Root app was released, you needed a tool and sbf file to flash your Android device.  This tool, RSDLite, and the proper SBF&#8217;s were supposedly leaked and found their way into the wild.  Posting of the RSDLite executable was met with DMCA takedown notices. [...]]]></description>
			<content:encoded><![CDATA[<p>That &#8220;know nothing&#8221; would be me.  Here&#8217;s a thought.  Before the <a title="z4Root" href="http://www.appbrain.com/app/z4root/com.z4mod.z4root">z4Root</a> app was released, you needed a tool and sbf file to flash your Android device.  This tool, RSDLite, and the proper SBF&#8217;s were supposedly leaked and found their way into the wild.  Posting of the RSDLite executable was met with DMCA takedown notices.  While it&#8217;s relatively simple to find it if you know where to look, most people won&#8217;t put forth the effort.  Plus, many people will not take the risk of bricking their phone to go through the process.</p>
<p>So, my thought here is that Motorola, Verizon, and Google are responsible for getting the leaks out.  Purposely.  Now, that&#8217;s just mere speculation on my part, but it makes sense when you consider that we&#8217;re not talking about thousands of employees having access to the tools or files to begin with.  Maybe I&#8217;m wrong.    Why not leak just enough for the rooting community to have their way with a number of the phones on their respective carriers?  At the same time, make it just hard enough that casual users who don&#8217;t know what they are doing won&#8217;t be bricking their phones left and right.</p>
<p>Prove me wrong in the comments or share your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/speculation-on-android-rooting-from-a-know-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xobni Makes My Inbox Happy</title>
		<link>http://calmighty.com/xobni-makes-my-inbox-happy/</link>
		<comments>http://calmighty.com/xobni-makes-my-inbox-happy/#comments</comments>
		<pubDate>Mon, 05 May 2008 23:01:39 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[xobni]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=58</guid>
		<description><![CDATA[I love Outlook.  It is probably the best thing that&#8217;s come out of Redmond.  Now, with Xobni, it&#8217;s even better.  Xobni is now in full public beta.  So, even though I have some invites, it appears you don&#8217;t have to ask me for one. What&#8217;s it do?  Simple, it aggregates all of your messages and [...]]]></description>
			<content:encoded><![CDATA[<p>I love Outlook.  It is probably the best thing that&#8217;s come out of Redmond.  Now, with <a href="http://www.xobni.com">Xobni</a>, it&#8217;s even better.  Xobni is now in full public beta.  So, even though I have some invites, it appears you don&#8217;t have to ask me for one.</p>
<p>What&#8217;s it do?  Simple, it aggregates all of your messages and attachments and presents them in a sidebar view so that it&#8217;s easy to keep organized.  Sick of cleaning out your inbox?  I was.  Now I don&#8217;t think I&#8217;ll even bother anymore.  Here&#8217;s the feature list:</p>
<ul>
<li>Fast email search</li>
<li>Rankings, graphs and statistics about how you and your contacts use email</li>
<li>Navigate email by people &#8212; who&#8217;s connected by email</li>
<li>Threaded conversations &#8212; click a message and see the entire thread</li>
<li>Looking for attachments to conversations?  Look no more &#8212; they&#8217;re right in the sidebar</li>
<li>Phone number are extracted from email and appear in the sidebar</li>
<li>And other stuff I haven&#8217;t even figure out yet</li>
</ul>
<p>I had to call a contact to day and clicked on her email message.  Her phone number jumped right out at me.  I have 500+ contacts and finding a phone number can be a pain.  Not anymore.</p>
<p>Part of being productive and successful boils down to how you manage your time.  Software like xobni will definitely make me more productive when it comes to managing my email.  Now, let&#8217;s see if it can make me even more successful.  That <strong>would</strong> be a crazy trick!  Using Xobni?  Tell me what you think in the comments below.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/xobni-makes-my-inbox-happy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Virtualization with Dexpot</title>
		<link>http://calmighty.com/desktop-virtualization-with-dexpot/</link>
		<comments>http://calmighty.com/desktop-virtualization-with-dexpot/#comments</comments>
		<pubDate>Thu, 01 May 2008 19:02:04 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[virtual desktop]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=55</guid>
		<description><![CDATA[I&#8217;m a huge fan of multitasking. At any given time I have ten or more programs, windows and widgets open on my desktop. Although desktop virtualization is common to Linux and Mac users, I didn&#8217;t realize there was a windows solution available. That is, until I found Dexpot. Dexpot allow you to have up to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a <strong>huge </strong>fan of multitasking.  At any given time I have ten or more programs, windows and widgets open on my desktop.  Although desktop virtualization is common to Linux and Mac users, I didn&#8217;t realize there was a windows solution available.  That is, until I found <a href="http://www.dexpot.de/index.php?lang=en">Dexpot</a>.</p>
<p>Dexpot allow you to have up to 20 virtual desktops at your fingertips.  A simple click on the Dexpot tray icon brings up a desktop selection window (see screenshot below).  Need a fresh desktop?  Just click an empty square, your desktop is created and you are taken directly to it.  Switching between desktops is as simple as clicking Alt+1 through Alt+4.  You can define numerous hotkeys to make managing your desktops a snap.</p>
<p style="text-align: center;"><a href="http://calmighty.com/wp-content/uploads/2008/05/dexpot_full_screen_preview.gif"><img class="alignnone size-medium wp-image-56 aligncenter" title="dexpot_full_screen_preview" src="http://calmighty.com/wp-content/uploads/2008/05/dexpot_full_screen_preview-300x240.gif" alt="" width="300" height="240" /></a></p>
<p>Efficiency experts will tell you to work on one task at a time.  I&#8217;m not buying it.  I move from task to task and focus my work based on two criteria a) priority b) mood.  If it&#8217;s super important, I&#8217;m getting it knocked out.  But, if it&#8217;s anything less than urgent I work on whatever suits my mood.  If I get bored I move to something else and come back to it later.  Now, Dexpot lets me segment all of my work into discreet virtual desktops each with their own purpose.</p>
<p>Dexpot runs on nearly every version of Windows (including XP and Vista) and is free for private, non-commercial use. I&#8217;ve been running it on XP using two monitors with no problems.  So, go get your geek on and grab a copy of <a href="http://www.dexpot.de/index.php?lang=en">Dexpot</a> for yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/desktop-virtualization-with-dexpot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5.1 &#8211; Update Now</title>
		<link>http://calmighty.com/wordpress-251-update-now/</link>
		<comments>http://calmighty.com/wordpress-251-update-now/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 01:50:35 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=46</guid>
		<description><![CDATA[An update to the recently released WordPress 2.5 is now available. If you&#8217;re like me and running WP, you need to update now as this release fixes an important security issue: We recommend everyone update immediately, particularly if your blog has open registration. The vulnerability is not public but it will be shortly. In addition [...]]]></description>
			<content:encoded><![CDATA[<p>An update to the recently released WordPress 2.5 is now available. If you&#8217;re like me and running WP, you need to update now as this release fixes an important security issue:</p>
<blockquote><p>We recommend everyone update immediately, particularly if your blog has open registration. The vulnerability is not public but it will be shortly. In addition to the security fix, 2.5.1 contains over 70 bug fixes.</p></blockquote>
<p>Be safe WordPressers!</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/wordpress-251-update-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a favicon on Blogger or Other Blog Hosts</title>
		<link>http://calmighty.com/favicon-forhosted-blogs/</link>
		<comments>http://calmighty.com/favicon-forhosted-blogs/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 17:29:36 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[hosted blogs]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=32</guid>
		<description><![CDATA[I wrote about the importance of a favicon for your blog or Website and how to get one, but left a crucial piece of the puzzle out. Want to use your own favicon on Blogger or another blog hosting service?  If you have access to a server or image sharing account, it&#8217;s pretty easy. Just [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote about the <a href="http://calmighty.com/favicon/">importance of a favicon</a> for your blog or Website and how to get one, but left a crucial piece of the puzzle out. Want to use your own favicon on Blogger or another blog hosting service?  If you have access to a server or image sharing account, it&#8217;s pretty easy.</p>
<p>Just edit the header of your theme/template and insert the following between the &lt;head&gt;&lt;/head&gt; tags:</p>
<p>&lt;link rel=&#8221;favicon&#8221; type=&#8221;image/ico&#8221; href=&#8221;http://example.com/yourfolder/favicon.ico&#8221; /&gt;</p>
<p>Note, you&#8217;ll have to figure out how to edit the header with your particular blog host.  For example, in Blogger, log in to your dashboard, choose layout, then choose the tab titled &#8220;Edit HTML&#8221;.  Insert your relative link to your favicon then save your template changes. </p>
<p>Depending on how you upload files to your image host or server, you&#8217;ll either FTP in or upload to your directory. If you need some for favicon hosting, here is a short list of <a title="free image hosting" href="http://www.findimagehost.com/ico-hosting.php">free image hosting</a> for your favicons.</p>
<p>Once you&#8217;ve made the changes, you will likely need to clear your browser&#8217;s cache before you&#8217;ll see your custom favicon in the address bar.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/favicon-forhosted-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kick Ass Email with FuseMail</title>
		<link>http://calmighty.com/kick-ass-email-with-fusemail/</link>
		<comments>http://calmighty.com/kick-ass-email-with-fusemail/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 17:43:20 +0000</pubDate>
		<dc:creator>c</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fusemail]]></category>

		<guid isPermaLink="false">http://calmighty.com/?p=27</guid>
		<description><![CDATA[Sure, you can use Gmail, Yahoo! Mail, Hotmail or whatever as your email provider and get good things like forwarding, your own domain, POP3 access, but if you want kick ass email you have to check out FuseMail. But, before you click, no it&#8217;s not free. However, it is super affordable. At $0.99 per email [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright alignnone size-medium wp-image-30" style="float: right; border: 0; margin-top: 18px; margin-bottom: 18px;" src="http://calmighty.com/wp-content/uploads/2008/04/fusemail.gif" alt="" width="150" height="81" /></p>
<p>Sure, you can use Gmail, Yahoo! Mail, Hotmail or whatever as your email provider and get good things like forwarding, your own domain, POP3 access, but if you want kick ass email you have to check out <a href="http://www.fusemail.com">FuseMail</a>. But, before you click, no it&#8217;s not free.</p>
<p>However, it is super affordable. At $0.99 per email account per month (minimum 10) and 1GB of storage, the price is looking right. But that&#8217;s not all. FuseMail has a <strong>ton</strong> of other sweet features. From a brand-able webmail client (that&#8217;s pretty slick I might add) to consolidating all of your other emails into one account to calendaring, contacts, notes, tasks, syncing &#8212; FuseMail has it all. Heck, I even use them as backup DNS for some of my sites. Their <a href="http://www.fusemail.com/features/">list of features</a> is ridiculous. Heck, I even use them as backup DNS for some of my sites.</p>
<p>I&#8217;ve been using them for just over a year now and there service and support is hands down the absolute best. Disclaimer: I&#8217;m writing this because I love them. I don&#8217;t know anyone at the company and am not paid a cent by sending you their way.</p>
<p>If you are looking for a crazy, rock solid email provider, you can&#8217;t go wrong with FuseMail.</p>
]]></content:encoded>
			<wfw:commentRss>http://calmighty.com/kick-ass-email-with-fusemail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

