<?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>JoshMoles</title>
	<atom:link href="http://joshmoles.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshmoles.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 11 Feb 2011 21:36:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='joshmoles.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>JoshMoles</title>
		<link>http://joshmoles.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://joshmoles.wordpress.com/osd.xml" title="JoshMoles" />
	<atom:link rel='hub' href='http://joshmoles.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Supercharge the Ubuntu MOTD</title>
		<link>http://joshmoles.wordpress.com/2009/01/21/supercharge-the-ubuntu-motd/</link>
		<comments>http://joshmoles.wordpress.com/2009/01/21/supercharge-the-ubuntu-motd/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 15:33:27 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[motd]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=552</guid>
		<description><![CDATA[The Message of the Day (MOTD) is the first thing you see when you log in to a Linux machine on the command prompt. If you see it every time you log in, why not make some changes to actually make it useful? I find it useful to have my MOTD display some system information [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=552&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Message of the Day (MOTD) is the first thing you see when you log in to a Linux machine on the command prompt. If you see it every time you log in, why not make some changes to actually make it useful? I find it useful to have my MOTD display some system information (like uptime, disk usage, etc.) when I first log-in to my server. Here is some info about the MOTD and how to make it a little more dynamic.</p>
<p><span id="more-552"></span></p>
<h2>/etc/motd and /etc/motd.tail</h2>
<p>These two files are the basic part of the MOTD. On every boot up, the /etc/motd file is erased and regenerated from the contents of /etc/motd.tail. If you want to display a message that is only seen until the next time your system restarts, then put it in /etc/motd. Unless you have multiple users logging into your server and want to give them a message on the prompt, you generally will not need to edit /etc/motd. I have an ASCII art of the server&#8217;s name <a href="http://www.network-science.de/ascii/">ASCII Generator</a> in /etc/motd.tail and generally don&#8217;t modify /etc/motd.</p>
<h2>System Information with landscape-sysinfo</h2>
<p>I won&#8217;t go into detail about what <a href="http://www.canonical.com/projects/landscape">Canoncial&#8217;s Landscape</a> is besides the fact there is a tool  have a tool that can generate a nice MOTD with system information like the one here:</p>
<pre class="brush: bash;">
System load:    0.01                  Swap usage:  0%           Users logged in: 1
Usage of /home: 15.5% of 4.62GB    Temperature: 40 C
Memory usage:   41%                  Processes:   149
</pre>
<p>This addition to the MOTD is easy to add and only requires the installation of the landscape-common package. This can be done by running:</p>
<pre class="brush: bash;">sudo apt-get install landscape-common</pre>
<p>Now, log out, log in again, and then you should now see the same information above on your MOTD.</p>
<h2>Custom Scripts with update-motd</h2>
<p>If you installed landscape-common on the previous step, update-motd was also installed on your system. This package allows you to make your own scripts to display information on the MOTD.</p>
<p>First, you must install update-motd by running (note, if you installed landscape-common, it is already installed):</p>
<pre class="brush: bash;">sudo apt-get install update-motd</pre>
<p>After the install finishes, go to the directory /etc/update-motd.d/. This directory contains the scripts that are ran when the MOTD is generated. They are ran and displayed in the MOTD in lexical sort order. The safest way to control the order they appear is to prefix the files with numbers. As an example, I made a file called 10-server-info and put the following in it:</p>
<pre class="brush: bash;">
#!/bin/sh
echo "Disk Usage:"
df -h
echo "System Uptime:"
uptime
</pre>
<p>This script will add the hard drive usage and the system uptime to my MOTD and it will run and display in the MOTD. Don&#8217;t forget to make it executeable before continuing:</p>
<pre class="brush: bash;">
sudo chmod +x 10-server-info
</pre>
<p>So let&#8217;s say I wanted to also display the time before the disk usage and uptime. I could do this by making a file called 09-time and put the following in it:</p>
<pre class="brush: bash;">
#!/bin/sh
echo "Current Time:"
date
</pre>
<p>To have it display the time after the first script (10-server-info), I could just name it something with a number greater than 10, like 11-time.<br />
After you are happy with all of the scripts, finally run the following to turn on update-motd and have it start generating updated MOTD:</p>
<pre class="brush: bash;">sudo update-motd --enable</pre>
<p>Log out, log back in, and you should see the updated MOTD. In the future, if you add or remove scripts, you can have the MOTD updated by running:</p>
<pre class="brush: bash;">sudo update-motd</pre>
<p>update-motd is powerful because you can run pretty much any shell script you can come up with and display the results on the MOTD. If you aren&#8217;t too familiar with shell scripts, check out the <a href="http://tldp.org/LDP/abs/html/">Advanced Bash-Scripting Guide</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/552/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/552/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/552/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=552&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2009/01/21/supercharge-the-ubuntu-motd/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>FeedBurner MyBrand Fix</title>
		<link>http://joshmoles.wordpress.com/2009/01/19/feedburner-mybrand-fix/</link>
		<comments>http://joshmoles.wordpress.com/2009/01/19/feedburner-mybrand-fix/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 15:48:12 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=593</guid>
		<description><![CDATA[Last night, I linked my FeedBurner account with my Google Account. After doing so and follwing the instructions to update my CNAME records for MyBrand, I was getting 404 errors on all of the feeds. This post describes how I got them working again. To get it working again after you transfer your FeedBurner account [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=593&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last night, I linked my FeedBurner account with my Google Account. After doing so and follwing the instructions to update my CNAME records for MyBrand, I was getting 404 errors on all of the feeds. This post describes how I got them working again.</p>
<p><span id="more-593"></span><br />
To get it working again after you transfer your FeedBurner account over to your Google account, deactivating and reactivating MyBrand seems to get it going again. Here are the steps on how to do that:</p>
<ol>
<li> Login to the new FeedBurner control panel (http://feedburner.google.com/)</li>
<li>Click on &#8220;My Account&#8221; at the top</li>
<li>Click on &#8220;MyBrand&#8221; on the left</li>
<li>Take note of your feed specific domains and then click &#8220;Deactivate&#8221; at the bottom</li>
<li>Reactivate the service</li>
<li>Retype in all of your feed specific domains and click Save</li>
<li>Update your CNAME records to the new Google ones (shown on the MyBrand page on step 2)</li>
</ol>
<p>Seems like the transition is still somewhat in beta, but at least now subscribers should still be able to get the feed!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/593/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/593/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/593/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=593&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2009/01/19/feedburner-mybrand-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Toss the Mouse with Keystroke Launchers</title>
		<link>http://joshmoles.wordpress.com/2008/11/22/toss-the-mouse-with-keystroke-launchers/</link>
		<comments>http://joshmoles.wordpress.com/2008/11/22/toss-the-mouse-with-keystroke-launchers/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 14:49:38 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=21</guid>
		<description><![CDATA[Clicking through the Start or Applications menu looking for the application you want to launch is so old school. There are some great tools out there that let you find the application you want to launch in seconds all without even having to take your hands off the keyboard. What exactly is a keystroke launcher? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=21&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Clicking through the Start or Applications menu looking for the application you want to launch is so old school. There are some great tools out there that let you find the application you want to launch in seconds all without even having to take your hands off the keyboard.</p>
<p><span id="more-21"></span></p>
<p>What exactly is a keystroke launcher? It is tool that lets you hit a couple keys (like Alt + Space) and it pulls up a little box that you start typing the name of the program you want to run. Quite simply, think of it as search on steroids. Most of the time, they are intelligent as well and start to put common programs towards the top of your search. If you have used Windows Vista, it is similar to the search box at the bottom of the start menu.</p>
<p>Let&#8217;s go through the three that I use across the various OS flavors.</p>
<p><strong>Launchy &#8211; Windows</strong></p>
<p><strong></p>
<div id="attachment_827" class="wp-caption alignnone" style="width: 310px"><strong><a href="http://joshmoles.files.wordpress.com/2008/11/launchy.png"><img class="size-medium wp-image-827" title="Launchy" src="http://joshmoles.files.wordpress.com/2008/11/launchy.png?w=300&#038;h=120" alt="Screenshot of Launchy" width="300" height="120" /></a></strong><p class="wp-caption-text">Launchy Screenshot</p></div>
<p></strong></p>
<p>Launchy is the simplest to get up and running with out of the three. Just install it and the rest of the setup is pretty much automatic. It indexes the shortcuts to applications on your computer and then makes them just a few key presses away. Alt + Space pulls up launchy and presents you with a box similar to the above. Launchy also has support for different skins and plugins that let it do more than just launch programs, but I am happy with the base install. Launchy also says it works on Linux, but I have not had much luck in getting it up and running.</p>
<p><a href="http://www.launchy.net/">Launchy</a></p>
<p><strong>Quicksilver &#8211; Mac</strong></p>
<p><strong></p>
<div id="attachment_828" class="wp-caption alignnone" style="width: 310px"><strong><a href="http://joshmoles.files.wordpress.com/2008/11/quicksilver.png"><img class="size-medium wp-image-828" title="Quicksilver" src="http://joshmoles.files.wordpress.com/2008/11/quicksilver.png?w=300&#038;h=177" alt="Quicksilver Screenshot" width="300" height="177" /></a></strong><p class="wp-caption-text">Screenshot of Quicksilver</p></div>
<p></strong></p>
<p>Quicksilver does more than just launch applications, but still is great for not having to mess with the dock or browse through the applications folder. Quicksilver has the capabilities to let you do all sorts of stuff on your computer like send e-mails with attachments, control iTunes, and even upload files all without having to do much more than type a few commands. Quicksilver has a plethora of add-ons, but has a bit of a learning curve to it I found. You can almost think of it as a graphical command prompt, but if you are looking for a keystroke launcher for Mac, it is king.</p>
<p><a href="http://www.blacktree.com/">Quicksilver by Blacktree</a></p>
<p><strong>GNOME + Do &#8211; Ubuntu/Linux</strong></p>
<p><strong></p>
<div id="attachment_826" class="wp-caption alignnone" style="width: 310px"><strong><a href="http://joshmoles.files.wordpress.com/2008/11/gnomedo.png"><img class="size-medium wp-image-826" title="Gnome Do" src="http://joshmoles.files.wordpress.com/2008/11/gnomedo.png?w=300&#038;h=167" alt="Screenshot of Gnome Do" width="300" height="167" /></a></strong><p class="wp-caption-text">Gnome + Do Screenshot</p></div>
<p></strong></p>
<p>Last but not least, GNOME + Do is my favorite on Ubuntu. It is pretty much a linux port of Quicksilver, but it is much more intuitive. The base install only launches applications, but it too has a large collection of add-ons that let it do much more than just applciation launching. Despite its name, it works on ther window managers besides GNOME; however, I have only used it on GNOME in Ubuntu 8.10. Between Launchy and Quicksilver, I have to say that this one is my favorite.</p>
<p>GNOME + Do is also in the Ubuntu 8.10 repository under Add/Remove Applications if you have &#8220;All Open Source Applications&#8221; selected.</p>
<p><a href="http://do.davebsd.com/">GNOME + Do Home</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=21&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/11/22/toss-the-mouse-with-keystroke-launchers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>

		<media:content url="http://joshmoles.files.wordpress.com/2008/11/launchy.png?w=300" medium="image">
			<media:title type="html">Launchy</media:title>
		</media:content>

		<media:content url="http://joshmoles.files.wordpress.com/2008/11/quicksilver.png?w=300" medium="image">
			<media:title type="html">Quicksilver</media:title>
		</media:content>

		<media:content url="http://joshmoles.files.wordpress.com/2008/11/gnomedo.png?w=300" medium="image">
			<media:title type="html">Gnome Do</media:title>
		</media:content>
	</item>
		<item>
		<title>ANIMOTO</title>
		<link>http://joshmoles.wordpress.com/2008/05/28/animoto/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/28/animoto/#comments</comments>
		<pubDate>Thu, 29 May 2008 01:42:09 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Animoto]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=138</guid>
		<description><![CDATA[A few days ago, I stumbled across a video on YouTube that was an amazing photo slide show.  ANIMOTO is a service that allows you to upload your own photos, add some music, and it will &#8220;analyze&#8221; the music to create a photo video that moves to the music.  Take a look at the video [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=138&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few days ago, I stumbled across a video on YouTube that was an amazing photo slide show.  ANIMOTO is a service that allows you to upload your own photos, add some music, and it will &#8220;analyze&#8221; the music to create a photo video that moves to the music.  Take a look at the video I created in a few minutes with some pictures of mine and friend&#8217;s pets.</p>
<p><span id="more-138"></span></p>
<p>The above video only took me around 5 minutes to upload the pictures, pick out the music, and then it took ANIMOTO about another 5 to render the photos and music into a flash video.  ANIMOTO has a library of music that users can choose from or upload their own music (it must be &#8220;legit&#8221; though, not copyrighted)</p>
<p>ANIMOTO allows users to create a 30 second video with photos and custom music at no charge.  To create a longer video, users are required to buy &#8220;credits&#8221; (currently $3 each) or all-you-can make for $30/year.</p>
<p>The service is a snappy flash interface that uses Amazon Web Services (AWS) to render the videos.  The service is easy to figure out how to use and definitely seems like something that I can see becoming popular with teens to embed on MySpace, Facebook, etc.  As a matter of fact, the service already has the ability to help you put the videos on YouTube, Facebook, MySpace, and Blogger just to name a few.</p>
<p>I could see problems with copyrighted music being uploaded and that becoming an obstacle for ANIMOTO in the near future. Hopefully users will stay honest and not upload music they don&#8217;t have the copyright to.</p>
<p>Give them a shot today!</p>
<p><a href="http://www.animoto.com">ANIMOTO</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/138/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/138/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=138&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/28/animoto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Yummy, Del.icio.us Tips!</title>
		<link>http://joshmoles.wordpress.com/2008/05/23/yummy-delicious-tips/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/23/yummy-delicious-tips/#comments</comments>
		<pubDate>Fri, 23 May 2008 17:32:09 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/2008/05/23/yummy-delicious-tips/</guid>
		<description><![CDATA[Del.icio.us is currently the best way to keep track of your bookmarks between computers, on the Internet, and share them with friends. Del.icio.us has a small learning curve associated with using it because it changes the way that you think about and use your bookmarks. Most of us are used to using the classic bookmarks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=124&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Del.icio.us is currently the best way to keep track of your bookmarks between computers, on the Internet, and share them with friends.  Del.icio.us has a small learning curve associated with using it because it changes the way that you think about and use your bookmarks.</p>
<p><span id="more-124"></span></p>
<p>Most of us are used to using the classic bookmarks menu integrated into our web browser to get to our favorite web sites.  The problem with the classic bookmark managers in web browsers is that they poorly organize your bookmarks.  You are forced to pick one folder to put a bookmark in and then remember exactly where that bookmark is or else you can never get back to it.  This system seems to work fine for awhile, but what happens when you start to get hundreds or even thousands of bookmarks?  This is where del.icio.us shines.</p>
<p>Del.icio.us is a web site that allows you to basically save bookmarks and be able to get back to them easily as well as share them with others.  Here are a few different ways on how to get the most from del.icio.us and make it work well for you.</p>
<h2>Tagging</h2>
<p>Rather than put bookmarks in a single folder, you can apply tags (like keywords) to a bookmark that make it much easier to find a bookmark later.  For example, you may give Google a few tags like search, web, or Google.  So, on your del.icio.us account, you could look at any of the three previously listed tags and Google would appear there!</p>
<p>Remember, finding your bookmarks later is only as good as the tagging you do when you first find the bookmark.  If you put too few or poor tags on a bookmark it may be difficult to find it later.  I generally find it better to put too many tags rather than too few because you can always remove some later.</p>
<p>You can also take the tagging aspect a step further and look at some other bookmarks that others on the del.icio.us community have tagged.  In this way, del.icio.us could almost be used as sort of a search engine to find bookmarks related to keywords of something you may be looking for.</p>
<h2>Browser Integration</h2>
<p>This is the reason that I started to use del.icio.us in the first place.  Del.icio.us has a plugin that allows it to work alongside the bookmark system on Internet Explorer or Firefox.  The IE version of the plugin is still experimental, but the Firefox version is mature and I have had no troubles with it.  The browser plugin has the option to have a toolbar that is like the bookmarks toolbar folder on steroids.  It allows you to display recently bookmarked items, most visited bookmarks, or a list of favorite tags.  I personally like the most visited option because it allows me to easily get to the web sites that I visit often.</p>
<p>The integrated tool also allows you to bookmark new items as well as browse all of the bookmarks that you have on del.icio.us right in your browser.  The browser plugin also lets you find while you type for bookmarks or tags.  This makes it where I am generally a matter of seconds away from a bookmark rather than having to browse through several folders like the bookmark tools built into web browsers.</p>
<h2>Sync and Sharing</h2>
<p>Last, but not least, the innate use of the browser tool or even just the del.icio.us web site automatically backs up your bookmarks because they are stored on Yahoo&#8217;s servers (del.icio.us is owned by Yahoo!).  This makes it where any computer you use the browser tool on will always have the most up-to-date bookmarks and the del.icio.us web site will have your bookmarks as well.</p>
<p>If you choose to make your bookmarks public, you can also share them all with your friends.  In a way, del.icio.us can be a micro blog where friends could see web sites you have discovered recently.  Also, you can share bookmarks with other del.icio.us users that you are a mutual friend with.</p>
<h2>Conclusion</h2>
<p>Del.icio.us seems like the future of bookmarks and I love being able to get to my bookmarks anytime, anywhere.  Also, having the ability to let anyone see my bookmarks makes it where friends can easily find a web site that I might of mentioned if I don&#8217;t happen to remember the URL.  Check out del.icio.us today!</p>
<p><a href="http://del.icio.us">Del.icio.us Home</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/124/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/124/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=124&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/23/yummy-delicious-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Better Gmail 2: Firefox Add-on</title>
		<link>http://joshmoles.wordpress.com/2008/05/14/better-gmail-2-firefox-add-on/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/14/better-gmail-2-firefox-add-on/#comments</comments>
		<pubDate>Wed, 14 May 2008 18:10:37 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=111</guid>
		<description><![CDATA[Better Gmail 2 is a Firefox add-on by Lifehacker that adds several bells and whistles to the way Gmail looks to make it a little bit more powerful. Better Gmail 2 is actually a compilation of several famous grease monkey scripts that change the way that a web page looks. Lets take a look at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=111&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Better Gmail 2 is a Firefox add-on by Lifehacker that adds several bells and whistles to the way Gmail looks to make it a little bit more powerful.  Better Gmail 2 is actually a compilation of several famous grease monkey scripts that change the way that a web page looks. Lets take a look at some of my favorite features in Better Gmail 2.</p>
<p><span id="more-111"></span></p>
<h3>Force HTTPS</h3>
<p>Better Gmail 2 can force Gmail to always connect through an https connection.  This is by far the largest reason that I use better Gmail 2.  Whenever I am on a public Wi-Fi network (like at school or a coffee shop), the wireless connection is not encrypted.  If you are not viewing a web site through https, everything that you are doing on that web site is sent in clear text which means anyone can view what you are doing, or in this case your email, with the right tools on their computer.</p>
<h3>Folders4Gmail</h3>
<p>Trying to keep your Gmail organized can be difficult when you start to get lots of labels.  I have around 40 labels and they can take up almost half the screen if I didn&#8217;t have Folders4Gmail.  Folders4Gmail makes it where if you add a forward slash in a label, it will make it appear with a plus next to it like it is in a folder. For example, the label I have below is actually &#8220;Orders/Amazon&#8221;, but Folders4Gmail puts the plus next to Orders and lists Amazon under it.</p>
<h3>Attachment Icons</h3>
<p>Better Gmail 2 also can put little icons that let you see what type of file is attached rather than the generic paper clip from Gmail. The icons support several different formats including pictures, Word, Excel, PowerPoint, PDF, and text files just to name a few.</p>
<h3>Conclusion</h3>
<p>Better Gmail 2 also supports a few other features like macros, highlighting, and adding a little icon you an click next to an e-mail to quickly search for all conversations from that sender.  All of these features can be turned on or off in the options of the add-on so you can customize Better Gmail 2 to do whatever you want.</p>
<p>Lifehacker does a pretty good job with keeping the extension up to date.  Better Gmail 2 is a great tool to improve the already revolutionary interface of Gmail.</p>
<p><a title="Better Gmail 2" href="http://lifehacker.com/software/exclusive-lifehacker-download/better-gmail-2-firefox-extension-for-new-gmail-320618.php">Better Gmail 2 on Lifehacker</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/111/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/111/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=111&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/14/better-gmail-2-firefox-add-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Free redbox Rentals</title>
		<link>http://joshmoles.wordpress.com/2008/05/09/free-redbox-rentals/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/09/free-redbox-rentals/#comments</comments>
		<pubDate>Fri, 09 May 2008 16:12:36 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[redbox]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=112</guid>
		<description><![CDATA[This month, redbox is offering free movie rental codes to those who sign up for their SMS alert network. They have offered the free rental code for Monday nights for quite a while, but for the month of May, they are adding Wednesday nights. That means you can get 6 more free rentals this month [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=112&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This month, redbox is offering free movie rental codes to those who sign up for their SMS alert network.  They have offered the free rental code for Monday nights for quite a while, but for the month of May, they are adding Wednesday nights.  That means you can get 6 more free rentals this month at no charge from redbox!</p>
<p>Those not familiar with redbox, it is an automated movie rental kiosk that is popping up around the nation.  They require you to use your credit card to rent movies and it costs $1 per night that you have the movie.  It works great for people (like me) who generally rent movies for one night anyways and don&#8217;t watch it again after seeing it that one time.</p>
<p>redbox is also convenient if you have multiple of them around you because you can return them to any redbox, nation wide.  I have once rented one from Kansas City and returned it the next day in Oklahoma without any snags.</p>
<p>Sign up here to get the free rental codes by joining the SMS alert network.  You can even see what movies are available at the redbox locations and if it is on stock on their web site as well.</p>
<p><a title="redbox SMS Alerts Signup" href="http://www.redbox.com/Help/Signup.aspx">redbox SMS Alerts Signup</a> (lower part of page)<a title="redbox Home" href="http://www.redbox.com/"><br />
redbox Home</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/112/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/112/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=112&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/09/free-redbox-rentals/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Digsby Adds Facebook Chat</title>
		<link>http://joshmoles.wordpress.com/2008/05/06/digsby-adds-facebook-chat/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/06/digsby-adds-facebook-chat/#comments</comments>
		<pubDate>Tue, 06 May 2008 17:47:39 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Chat]]></category>
		<category><![CDATA[digsby]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=118</guid>
		<description><![CDATA[Last week, I was talking about Facebook chat and saying that I probably wouldn&#8217;t use it because it is just on Facebook&#8217;s web site and there is not a desktop client.  My favorite desktop chat client, Digsby, has come to the rescue and added support for Facebook chat.  The chat seems to work well enough [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=118&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week, I was <a title="My Article on Facebook Chat" href="http://www.josh.warthog.cc/2008/04/24/facebook-chat-first-impression/">talking about</a> Facebook chat and saying that I probably wouldn&#8217;t use it because it is just on Facebook&#8217;s web site and there is not a desktop client.  My favorite desktop chat client, Digsby, has come to the rescue and added support for Facebook chat.  The chat seems to work well enough in Digsby and works just like any of the other supported IM services in Digsby.</p>
<p>With this addition, I think that this should get a few people interested in using Facebook chat.  With such a large user base on Facebook, I think that it is a welcomed feature by the users, but Digsby supporting it makes just one less application or web site I have to have open to communicate with friends.</p>
<p>Check out my previous write up of how I liked Digsby <a title="My Previous Digsby Article" href="http://www.josh.warthog.cc/2008/03/21/digsby/">here</a>.  I highly recommend Digsby as your ultimate desktop chat app and you will enjoy it after you give it a shot!</p>
<p><a title="Digsby Home" href="http://www.digsby.com">Digsby Home</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/118/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/118/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=118&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/06/digsby-adds-facebook-chat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>Drop.io &#8211; Temporary File Sharing</title>
		<link>http://joshmoles.wordpress.com/2008/05/01/dropio-temporary-file-sharing/</link>
		<comments>http://joshmoles.wordpress.com/2008/05/01/dropio-temporary-file-sharing/#comments</comments>
		<pubDate>Thu, 01 May 2008 16:01:28 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=108</guid>
		<description><![CDATA[Drop.io is a service that lets users make a temporary &#8220;drop&#8221; to share files with other people. Drop.io is a flexible service that allows you to upload files to the drops in several different ways. The conventional way to get files to drop.io is to upload them through the web, but you can also e-mail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=108&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Drop.io is a service that lets users make a temporary &#8220;drop&#8221; to share files with other people.  Drop.io is a flexible service that allows you to upload files to the drops in several different ways.  The conventional way to get files to drop.io is to upload them through the web, but you can also e-mail files, call and leave a voice recording/memo, fax a document in, or put a widget on your web site to let people &#8220;drop&#8221; files to you.  This can all be done without any registration required on their web site</p>
<p>To get a drop setup, you just specify a URL that will be at drop.io/something where something is the name you can specify for your drop.  Then you just start uploading files to the drop, password protect it (if you so choose), set how long the drop will be there (1 day up to 1 year), and set permissions on the drop.  Permissions are customizable and allow you to make it read only or make it where users can add or delete files as well.  After that is all setup, you can share the URL (drop.io/something) and people can start getting files from the drop in the smooth interface.</p>
<p>The largest use I have for drop.io is when I want to send something to more than one person or send something that is too large to send via e-mail.  It is also handy if you want to share something that you don&#8217;t need to keep hosted forever.  Right now, drop.io has a limit of 100 MB of space, but you can upgrade the size of a drop to 1GB for $10.</p>
<p><a title="drop.io Home" href="http://www.drop.io/" target="_self">drop.io Home</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/108/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/108/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=108&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/05/01/dropio-temporary-file-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#039;s Live Mesh?</title>
		<link>http://joshmoles.wordpress.com/2008/04/29/whats-live-mesh/</link>
		<comments>http://joshmoles.wordpress.com/2008/04/29/whats-live-mesh/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 15:41:46 +0000</pubDate>
		<dc:creator>Josh Moles</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[FolderShare]]></category>
		<category><![CDATA[mesh]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows live]]></category>

		<guid isPermaLink="false">http://josh.warthog.cc/?p=103</guid>
		<description><![CDATA[Last week, Microsoft introduced a new &#8220;web connected&#8221; framework known as Live Mesh. The technology is just a tech preview, but I, like others, was sort of confused when I read the article announcing Live Mesh and talking about it. I got a chance over the weekend to play around with Live Mesh and see [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=103&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week, Microsoft introduced a new &#8220;web connected&#8221; framework known as Live Mesh.  The technology is just a tech preview, but I, like others, was sort of confused when I read <a href="http://dev.live.com/blogs/devlive/archive/2008/04/22/279.aspx">the article announcing</a> Live Mesh and talking about it.  I got a chance over the weekend to play around with Live Mesh and see what it does, right now.  So, just what is Live Mesh?</p>
<p><span id="more-103"></span></p>
<h2>File Synchronization</h2>
<p>Keeping files up-to-date across multiple devices seems to be one of the main aspects of Mesh.  Mesh allows you to setup folders that you want to be synced across multiple computers and it does it pretty much behind the scenes without requiring much intervention from the user (besides putting them in the right folders).</p>
<p>The file sync seems to work like other products already out on the market.  You don&#8217;t have to look too far for a similar product: Microsoft Live <a href="http://www.foldershare.com">FolderShare</a>.  I will be curious to see if Microsoft plans on merging FolderShare into part of Mesh or continue to run them as separate products.</p>
<p>There are a couple of differences between Mesh and FolderShare though that I find are improvements over FolderShare.  First, you can edit who has access to the libraries on files on your computer rather than having to go through a web interface.  Second, there is now a &#8220;history&#8221; of the files called &#8220;News&#8221; that lets you see whenever something has changed in the meshed folder.  This is handy when sharing files with multiple people and you want to see recent changes.  It pops up next to the view of a folder whenever you are viewing the contents.</p>
<h2>Remote Desktop</h2>
<p>Another part to mesh is remote desktop that seems to work through routers, firewalls, and the such.  It has a feel that is similar to <a title="LogMeIn Home" href="https://secure.logmein.com/home.asp?lang=en">LogMeIn</a>.  The remote desktop seems fairly functional and allows you to run any application on your computer assuming it doesn&#8217;t use DirectX (and probably OpenGL).  So don&#8217;t plan on playing your games over the remote desktop, but you can run some oddball applications that you may not have installed on a remote computer or have access to your computer like you are sitting in front of it.  Mesh does seem to have some lag associated to it though if you are using a slower connection.</p>
<p>I am sure it has to do with the fact that what you are doing is <strong>literally </strong>occurring on the remote computer.  Just like LogMeIn (and unlike Windows Remote Desktop) whatever you are doing on your local screen is actually visible on the remote screen so make sure to click on &#8220;Hide Desktop on Remote Computer&#8221; if you are doing top secret work.</p>
<h2>Browser Access</h2>
<p>Now here is the best part about mesh.  Both of the above mentioned can be done through your web browser.  You can get to the files in your synchronized directories or remote desktop to your computer from your web browser.  When you go to the Mesh web site and log in, you will be greeted with the little hula hoop with all your devices floating on it.  Unfortunately, the Remote Desktop does require you to have an ActiveX control to run which means that you must use Internet Explorer, but the remote file access does not.</p>
<p>Going to the &#8220;Live Desktop&#8221; in your mesh devices allows you to get to files that you choose to synchronize to your &#8220;Live Desktop&#8221;.  What files that are placed on the Live Desktop are selected using the desktop client when a new folder is added to Mesh.</p>
<h2>Future of Mesh</h2>
<p>Mesh looks like a product that may hold the future of what Microsoft is wanting to do.  The Mesh framework right now doesn&#8217;t look much beyond a remote desktop and file sync tool, but that looks like it could just be the beginning.  The things that Microsoft hints at on the <a title="Mesh announcment" href="http://dev.live.com/blogs/devlive/archive/2008/04/22/279.aspx">Live Dev blog article</a> is that they have plans to expand Mesh to do more than just file work and perhaps run applications one day.  Fully functional Office online one day, maybe?</p>
<p>Their site also hints at expanding to supporting Macs and mobile devices.  I also hope that they can expand their software to be fully functional in other web browsers like Firefox, Opera, and Safari.  Also, I will be anxious to see if they do follow up with a Mac version and mobile device support for Mesh.</p>
<p>Right now, Mesh has a brief wait in order to join it (details on their site).  I do have a few invites left if you want to give Mesh a shot.  Just leave a comment that you want an invite and make sure to use your real e-mail address if you are interested in one!</p>
<p><a title="Windows Live Mesh Home" href="http://www.mesh.com">Mesh Home</a><br />
<a title="Introducing Live Mesh at Windows Live Dev" href="http://dev.live.com/blogs/devlive/archive/2008/04/22/279.aspx">Windows Live Dev: Introducing Live Mesh</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/joshmoles.wordpress.com/103/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/joshmoles.wordpress.com/103/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joshmoles.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joshmoles.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joshmoles.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joshmoles.wordpress.com&amp;blog=9802819&amp;post=103&amp;subd=joshmoles&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://joshmoles.wordpress.com/2008/04/29/whats-live-mesh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a35247c8797f821386b365e79d79f31?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jjosh2004</media:title>
		</media:content>
	</item>
	</channel>
</rss>
