<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title>nicinabox</title>
  <link href="http://nicinabox.com/atom.xml" rel="self"/>
  <link href="http://nicinabox.com/"/>
  <updated>2011-09-16T10:21:00-05:00</updated>
  <id>http://nicinabox.com/</id>
  <author>
    <name>Nic Aitch</name>
    
  </author>

  
  <entry>
    <title>Shortcutting Heroku Deployments</title>
    <link href="http://nicinabox.com/blog/2011/09/12/shortcutting-heroku-deployments/"/>
    <updated>2011-09-12T10:53:00-05:00</updated>
    <id>http://nicinabox.com/blog/2011/09/12/shortcutting-heroku-deployments</id>
    <content type="html">&lt;p&gt;If you familiar with Heroku you may know that deploying is as easy as pushing to their remote repository:&lt;/p&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;$ git push heroku&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;p&gt;But this can get really monotonous, especially if you&amp;#8217;re frequently pushing to a staging app (then you have to specify the branch name as well). To make things a little easier I whipped up this little shell function to make deployments a snap.&lt;/p&gt;
&lt;p&gt;We always name our heroku remotes &lt;em&gt;staging&lt;/em&gt; and &lt;em&gt;production&lt;/em&gt;. To deploy to staging, for instance, just pass the branch name you want to deploy:&lt;/p&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;$ deploy dev&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s the function. Just drop it in your &lt;code&gt;.bashrc&lt;/code&gt; (or whatever shell config you use).&lt;/p&gt;
&lt;div&gt;&lt;script src=&#8217;https://gist.github.com/1072008.js?file=&#8217;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;# $ deploy dev  // Deploys to staging
# $ deploy      // Deploys to production
function deploy() {
  if [[ $@ != &amp;amp;quot;&amp;amp;quot; ]]; then
    git push staging $@:master
  else
    git push production
  fi
}
&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;</content>
  </entry>
  
  <entry>
    <title>Building a Kegerator</title>
    <link href="http://nicinabox.com/blog/2011/08/16/building-a-kegerator/"/>
    <updated>2011-08-16T11:51:00-05:00</updated>
    <id>http://nicinabox.com/blog/2011/08/16/building-a-kegerator</id>
    <content type="html">&lt;p&gt;A couple months ago I decided I&amp;#8217;d had enough of drinking stale, bottled beer and that the solution to this problem would be to build a kegerator and get the brewery to fill my keg with fresh brew. Of course, later on I found out that none of the breweries will actually fill personal kegs, at least here in Chicago. C&amp;#8217;est la vie. I&amp;#8217;ll be brewing my own batch soon to fill it instead.&lt;/p&gt;
&lt;p&gt;Here is a little walkthrough of disassembling the the fridge and modifications that I made. I&amp;#8217;m using a &lt;a href=&quot;http://goo.gl/700Lb&quot;&gt;Frigidaire FFPH44M4LB fridge&lt;/a&gt;. It&amp;#8217;s 4.4 cu. ft. and will fit 2 Cornelius kegs and a 5lb C02 tank in the back.&lt;br /&gt;
&lt;!&#8211;more&#8211;&gt;&lt;/p&gt;
&lt;h2&gt;Gather your parts&lt;/h2&gt;
&lt;p&gt;I sourced my parts from a couple different places. I bought a conversion kit from &lt;a href=&quot;http://www.beveragefactory.com/&quot;&gt;Beverage Factory&lt;/a&gt; and a 5 gallon pin lock keg (used) from &lt;a href=&quot;http://www.midwestsupplies.com/&quot;&gt;Midwest Supplies&lt;/a&gt;. All total it was about $240.&lt;/p&gt;
&lt;h2&gt;Disassemble the fridge&lt;/h2&gt;
&lt;p&gt;My fridge had a freezer/icebox in the top of it. It popped right out by removing a couple screws on the door and sliding out the shelf. I knew that since it had a freezer in the top, it probably had a gas line above it. &lt;strong&gt;If you drill and you cut the line you will ruin the fridge.&lt;/strong&gt; Better safe than sorry.&lt;/p&gt;
&lt;h2&gt;Remove the lid&lt;/h2&gt;
&lt;p&gt;This is probably the hardest part. It&amp;#8217;s glued down tight to the foam insulation and the sides of the fridge. Use a pry tool to slowly work your way around and remove it (You&amp;#8217;ll want to glue it back on after you&amp;#8217;re finished).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm6.static.flickr.com/5061/5846507268_d80bfc06a0_z.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Find the line&lt;/h2&gt;
&lt;p&gt;I found &lt;a href=&quot;http://www.homebrewtalk.com/f51/frigidaire-model-frc445gb-mini-fridge-kegerator-conversion-89013/&quot;&gt;this thread&lt;/a&gt; on Home Brew Talk to be extremely helpful. I found where the safe places to mount the tap probably were (in the front), but I wanted mine in the back. It was necessary to cut the insulation out to find the line (carefully, of course) so I could drill around it. I used a spatula, Leatherman, and a bicycle tire iron to remove the insulation.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm6.static.flickr.com/5151/5846506072_957fdab1da_z.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm6.static.flickr.com/5076/5846499630_0c94547e1a_z.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3310/5846498544_7743e459fb_z_d.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Drill your holes for the tap&lt;/h2&gt;
&lt;p&gt;You&amp;#8217;ll want to line up everything so you can drill through to mount the tower. Run your lines through and put some excess insulation back in. I mounted a small piece of wood under the lid to help stabilize the tower. Remember, measure, and then measure again. And then do it again just for good measure.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm6.static.flickr.com/5187/5845943675_077f35b96d_z_d.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Cleanup, and fill it&lt;/h2&gt;
&lt;p&gt;Once you fill the keg you&amp;#8217;ll want to let it sit for close to 24 hours while it settles or else you&amp;#8217;ll lose a lot of beer in foam, and no one likes that. You&amp;#8217;ll probably need to tweak a bit a first to get it flowing nice. I keep a little thermometer in a cup of water to measure the temp.&lt;/p&gt;
&lt;p&gt;Keg pressure: 10-12 psi&lt;br /&gt;
Temperature: 38 degrees&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://farm7.static.flickr.com/6192/6049843861_605360b98a_z_d.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;</content>
  </entry>
  
  <entry>
    <title>Geektool Scripts</title>
    <link href="http://nicinabox.com/blog/2009/04/19/geektool-scripts/"/>
    <updated>2009-04-19T22:29:00-05:00</updated>
    <id>http://nicinabox.com/blog/2009/04/19/geektool-scripts</id>
    <content type="html">&lt;p id=&quot;update&quot;&gt;&lt;strong&gt;&lt;span class=&quot;caps&quot;&gt;UPDATE&lt;/span&gt; 8/15/2011:&lt;/strong&gt; Most of these scripts have been &lt;a href=&quot;http://rubygems.org/gems/geeklets2&quot;&gt;repackaged in a gem&lt;/a&gt; available on rubygems.org&lt;/p&gt;
&lt;nav class=&quot;try&quot;&gt;
&lt;a class=&quot;download&quot; href=&quot;https://github.com/nicinabox/Geektool-Scripts/zipball/master&quot;&gt;Download&lt;small&gt;v1.7 (Github)&lt;/small&gt;&lt;/a&gt;
&lt;/nav&gt;
&lt;p&gt;These are an ever growing compilation of scripts and code snippets that I have written or collected in a format that’s easy to understand and use. If you need help feel free to email me at &lt;a href=&quot;mailto:nic@nicinabox.com&quot;&gt;nic@nicinabox.com&lt;/a&gt;, &lt;strong&gt;but please read the documentation first&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I encourage you to checkout some of the Desktop screenshots on Flickr (some are very nice!) for ideas.If you have a script or something clever you&amp;#8217;d like to add to this collection, please contact me.&lt;/p&gt;
&lt;p&gt;These commands require that you actually install the scripts. Some are built into the system, but most are custom. For more information, check &lt;code&gt;readme.html&lt;/code&gt; included in the download. &lt;br /&gt;
&lt;!&#8211;more&#8211;&gt;&lt;br /&gt;
This package includes the following:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Network info&lt;/li&gt;
	&lt;li&gt;Unread Gmail&lt;/li&gt;
	&lt;li&gt;Uptime&lt;/li&gt;
	&lt;li&gt;Calendar (with current day denoted)&lt;/li&gt;
	&lt;li&gt;Weather&lt;/li&gt;
	&lt;li&gt;System Stats&lt;/li&gt;
	&lt;li&gt;Recent Music plays&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Installing the scripts&lt;/h2&gt;
&lt;p&gt;Note: this step can be skipped if you&amp;#8217;re using the gem.&lt;/p&gt;
&lt;p&gt;Copy files to a directory in your &lt;span class=&quot;caps&quot;&gt;PATH&lt;/span&gt;. I recommend &lt;code&gt;/usr/local/bin&lt;/code&gt;. This will make the commands accessible by just typing the name of it, eg.&lt;br /&gt;
&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;$ airport&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#8217;s it!&lt;/p&gt;
&lt;h2&gt;Using the scripts&lt;/h2&gt;
&lt;p&gt;After you&amp;#8217;ve got them installed you&amp;#8217;ll want to pop open Geektool and enter the command in the Command field. You should immediately see output on your desktop. For time sensitive scripts like weather you&amp;#8217;ll probably want to set a refresh time of 30-60 seconds.&lt;/p&gt;
&lt;p&gt;If you&amp;#8217;re using the gem and &lt;span class=&quot;caps&quot;&gt;RVM&lt;/span&gt; you need to include and extra line in the command. Geektool runs in a subshell and does not use custom PATHs specified in your &lt;code&gt;.bash_profile&lt;/code&gt; or &lt;code&gt;.profile&lt;/code&gt;. Simply tell Geektool to use your profile as the source of the subshell (the period means &amp;#8220;source&amp;#8221;).&lt;/p&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;command.sh &lt;/span&gt;&lt;/figcaption&gt;
 &lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8217;sh&#8217;&gt;&lt;div class=&#8217;line&#8217;&gt;. /Users/nic/.bash_profile &lt;span class=&quot;c&quot;&gt;# be sure to include this part if using the gem&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;command.sh &lt;/span&gt;&lt;/figcaption&gt;
 &lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8217;sh&#8217;&gt;&lt;div class=&#8217;line&#8217;&gt;. /Users/nic/.bash_profile &lt;span class=&quot;c&quot;&gt;# be sure to include this part if using the gem&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;command.sh &lt;/span&gt;&lt;/figcaption&gt;&lt;br /&gt;
 &lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8217;sh&#8217;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;. /Users/nic/.bash_profile &amp;lt;span class=&quot;c&quot;&amp;gt;# be sure to include this part if using the gem&amp;lt;/span&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;weather -z 60614&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;p&gt;Obviously substitute my username for your own shortname.&lt;/p&gt;
&lt;h3&gt;Uptime&lt;/h3&gt;
&lt;p&gt;Displays your system&amp;#8217;s uptime.&lt;/p&gt;
&lt;p&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;uptime | awk &#8216;{print &quot;Uptime : &quot; $3 &quot; &quot; $4 &quot; &quot; $5 }&#8217; | sed -e &#8216;s/.$//g&#8217;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;uptime output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;Uptime : 25 days, 8:28&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;Network Info&lt;/h3&gt;
&lt;p&gt;Displays your Wifi or Ethernet IP. Also see IP script&lt;/p&gt;
&lt;h4&gt;Internal IP&lt;/h4&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;ifconfig en1 | grep &quot;inet &quot; | awk &#8216;{print $2}&#8217;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;network output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;192.168.1.2&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h4&gt;External IP&lt;/h4&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;curl -s www.whatismyip.com/automation/n09230945.asp | awk {&#8216;print &quot;External : &quot; $1&#8217;}&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;network output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;External: 72.45.123.12&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;Calendar&lt;/h3&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;cal | sed &quot;s/^/ /;s/$/ /;s/ $(date +%e) / $(date +%e | sed &#8216;s/./#/g&#8217;) /&quot;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;calendar output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;5&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;6&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;7&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;calendar output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;5&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;6&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;7&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;calendar output &lt;/span&gt;&lt;/figcaption&gt;&lt;br /&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;5&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;6&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;7&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;July 2009&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;Su Mo Tu We Th Fr Sa&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;          1  2  3  4&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt; 5  6  7  8  9 ## 11&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;12 13 14 15 16 17 18&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;19 20 21 22 23 24 25&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;26 27 28 29 30 31&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;Memory Usage&lt;/h3&gt;
&lt;p&gt;Prints out total Memory Usage&lt;/p&gt;
&lt;p&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;top -l 1 | awk &#8216;/PhysMem/ {print &quot;Used: &quot; $8}&#8217;&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;top -l 1 | awk &amp;#8216;/PhysMem/ {print &amp;quot;Inactive:  &amp;quot; $6+$10&amp;quot;M&amp;quot;}&amp;#8217;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;memory output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;memory output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;memory output &lt;/span&gt;&lt;/figcaption&gt;&lt;br /&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;Used:  1769M&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;Inactive:  688M&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt; Usage&lt;/h3&gt;
&lt;h4&gt;Horizontal&lt;/h4&gt;
&lt;p&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;top -l 1| awk &#8216;/CPU usage/ {print $6, $7, $8, $9, $10, $11, $12, $13}&#8217;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;CPU output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;CPU usage: 22.22% user, 71.11% sys, 6.67% idle&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h4&gt;Vertical&lt;/h4&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;echo CPU usage&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;top -l 1| awk &amp;#8216;/&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt; usage/ {print $8, $9}&amp;#8217;&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;top -l 1| awk &amp;#8216;/&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt; usage/ {print $10, $11}&amp;#8217;&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;top -l 1| awk &amp;#8216;/&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt; usage/ {print $12, $13}&amp;#8217;&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;CPU output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;CPU output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt; output &lt;/span&gt;&lt;/figcaption&gt;&lt;br /&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;3&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;4&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;CPU usage&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;22.22% user,&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;71.11% sys,&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;6.67% idle&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;Unread Gmail&lt;/h3&gt;
&lt;p&gt;This script requires a username and password. You must edit it before use. Replace &lt;code&gt;USERNAME&lt;/code&gt; &amp;amp; &lt;code&gt;PASSWORD&lt;/code&gt; with your username and password. &lt;em&gt;Credits to Greg Newman.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;gmail&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;Unread Gmail output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;3 Unread&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;/p&gt;
&lt;h3&gt;IP Address&lt;/h3&gt;
&lt;p&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;line&#8217;&gt;ipaddress&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/div&gt;&lt;/notextile&gt;&lt;br /&gt;
&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;notextile&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;IP Address output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;div class=&#8217;bogus-wrapper&#8217;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;IP Address output &lt;/span&gt;&lt;/figcaption&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&lt;figure role=code&gt;&lt;figcaption&gt;&lt;span&gt;IP Address output &lt;/span&gt;&lt;/figcaption&gt;&lt;br /&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;gutter&quot;&gt;&lt;pre class=&quot;line-numbers&quot;&gt;&lt;span class=&#8217;line&#8217;&gt;1&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#8217;line&#8217;&gt;2&lt;/span&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&#8217;code&#8217; width=&#8217;100%&#8217;&gt;&lt;pre&gt;&lt;code class=&#8221;&gt;&amp;lt;div class=&#8217;line&#8217;&amp;gt;Ethernet : INACTIVE&lt;/p&gt;
&lt;p&gt;&lt;/div&gt;&lt;div class=&#8217;line&#8217;&gt;Airport : 161.45.27.132&lt;/div&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/figure&gt;&lt;/notextile&gt;&lt;/p&gt;</content>
  </entry>
  
  <entry>
    <title>Color Palette</title>
    <link href="http://nicinabox.com/blog/2009/03/12/color-palette/"/>
    <updated>2009-03-12T19:36:00-05:00</updated>
    <id>http://nicinabox.com/blog/2009/03/12/color-palette</id>
    <content type="html">&lt;p&gt;This is a color palette that I&amp;#8217;ve compiled. I recommend using a tool like &lt;a href=&quot;http://0to255.com&quot;&gt;0to255&lt;/a&gt; to find shades of these colors to your liking. Enjoy!&lt;br /&gt;
&lt;!&#8211;more&#8211;&gt;&lt;/p&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://nicinabox.com/partials/colors/stylesheets/styles.css&quot;&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;http://nicinabox.com/partials/colors/stylesheets/colors.css&quot;&gt;
&lt;ul id=&quot;colors&quot;&gt;
  &lt;li&gt;&lt;div class=&quot;color_30boxes_purple&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#5B5B95&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;30Boxes Purple &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_43_things_gold&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#C79810&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;43 Things Gold &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_43things_mustard&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#C69D18&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;43Things Mustard &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_basecamp_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#6BBA70&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;BaseCamp Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_blinklist_ghost_white&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F7F7FF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;BlinkList Ghost White &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_blinklist_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF6600&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;BlinkList Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_bloglines_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#1393C0&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;BlogLines Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_bloglines_turquoise&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#4CADD4&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;BlogLines Turquoise &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_boing_boing_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF0000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Boing Boing Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_box_net_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#277FBA&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Box.net Blue&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_calendarhub_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#57A9FD&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CalendarHub Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_chaamp_fire_brick&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#B71313&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Chaamp Fire Brick &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_clipmarks_dark_khaki&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#9AC65C&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;ClipMarks Dark Khaki &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_cocomment_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#0e63fd&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CoComment Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_confluence_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#99cc33&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Confluence Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_counterspot_pale_goldenrod&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D6EBAD&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CounterSpot Pale Goldenrod &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_counterspot_powder_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#ADE3EF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CounterSpot Powder Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_craigslist_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#3775e2&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CraigsList Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_crazyegg_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#8dbb01&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;CrazyEgg Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_daylife_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FFB640&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;DayLife Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_del_icio_us_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;EFEFEF&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Del.icio.us Grey&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_digg_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#1B5891&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Digg Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_digg_blue_2&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#356AA0&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Digg Blue 2 &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_digg_light_yellow&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FFF298&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Digg Light Yellow &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_dodgeball_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E24602&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;DodgeBall Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_drop_books_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#4CAAE4&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Drop Books Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ebay_yellow&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FFCC00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ebay Yellow &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_etsy_brown&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#CF5700&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Etsy Brown &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_etsy_vermillion&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D15600&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Etsy Vermillion &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_eventful_purple&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#5D82FF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Eventful Purple &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_eyespot_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#00BADA&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;EyeSpot Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_facebook_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#3B5999&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;FaceBook Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_feedburner_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#0170CA&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;FeedBurner Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_feedburner_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#EB003A&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Feedburner Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_feedster_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#98CC00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Feedster Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_firefox_maroon&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#BD1D01&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Firefox Maroon &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_flickr_light_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#0061DE&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Flickr Light Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_flickr_pink&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF0084&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Flickr Pink &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_flock_black&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#0F0F0F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Flock Black &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_flock_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#4096EE&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Flock Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_frappr_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#A71A10&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Frappr Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_furl_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#025AA2&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Furl Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_furl_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E84C1F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Furl Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_gimme20_hot_pink&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FD65C2&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Gimme20 Hot Pink &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_gmail_alice_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;EFEFFF&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Gmail Alice Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_gmail_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#C3D9FF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Gmail Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_gnoos_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D50000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Gnoos Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_google_white&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;FFFFFF&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Google White &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_hi5_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#EF9A19&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Hi5 Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_interactive_action_yellow&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FFFF88&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Interactive Action Yellow &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_jaiku_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#96C63F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Jaiku Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_judys_book_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#69DBFF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Judys Book Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_karmadu_gold&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FFC300&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Karmadu Gold &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_kiko_light_steel_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#9CB6DE&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Kiko Light Steel Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_last_fm_crimson&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D61C39&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Last.fm Crimson&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_last_fm_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D10039&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Last.fm Red&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_lifelog_pink&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FE198E&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Lifelog Pink &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_lijit_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#BEDB8A&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Lijit Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_linkedin_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#1A7FB3&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;LinkedIn Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_listable_coral&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF7B38&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Listable Coral &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_listable_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF7638&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Listable Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_live_journal_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#3D5381&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Live Journal Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ma_gnolia_creme&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F3F3CC&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ma.gnolia Creme&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ma_gnolia_yellow&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FEBF0F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ma.gnolia Yellow&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_magnolia_mag_nolia&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F9F7ED&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Magnolia Mag.nolia&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_mashable_pink&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F28FBF&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Mashable Pink &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_meebo_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF910D&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Meebo Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_meetup_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E51837&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;MeetUp Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_microsoft_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#87C1E7&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Microsoft Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_minti_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#009F59&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Minti Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_minutesinaminute_teal&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#00457B&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;MinutesInAMinute Teal &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_minutesinaminute_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#2971AD&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;MinutesInAMinute Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_moodmill_pastel&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FA9B65&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Moodmill Pastel &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_mozilla_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#3F4C6B&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Mozilla Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_mozilla_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF1A00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Mozilla Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_myspace_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#003399&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;MySpace Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_netscape_aqua&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#478898&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Netscape Aqua &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_netvibes_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#62B857&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;NetVibes Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_newsvine_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#006E2E&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;NewsVine Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_newsvine_green_2&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#00722D&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;NewsVine Green 2 &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ning_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#339900&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ning Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_odeo_pink&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#EC449B&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Odeo Pink &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_onmylist_brown&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#5A471C&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;OnMyList Brown &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_oodle_black&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#030303&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Oodle Black &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_openid_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF6200&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;OpenID Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_pageflakes_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D9DDE9&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Pageflakes Grey &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_pandora_antique_white&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;EFEBCE&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Pandora Antique White &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_pandora_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#295E92&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Pandora Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_pingomatic_lime_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#28CF21&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;PingOMatic Lime Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_pownce_black&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#383121&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Pownce Black &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_qoop_mint&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#CDEB8B&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Qoop Mint &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_reddit_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF4600&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Reddit Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_riya_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#6DC646&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Riya Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_rollyo_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#CC0000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Rollyo Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_rss_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF7400&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;&lt;span class=&quot;caps&quot;&gt;RSS&lt;/span&gt; Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ruby_on_rails_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#B02B2C&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ruby on Rails Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ryze_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E51905&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ryze Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_say_so_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#C00000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Say so Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_scouta_orange&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F78325&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Scouta Orange &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_seomoz_maroon&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#924357&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;SEOmoz Maroon &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_shadows_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#36393D&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Shadows Grey &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_shiny_silver&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;EEEEEE&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Shiny Silver &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_shopify_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#87BE2F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Shopify Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_skype_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#6CD0F6&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Skype Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_slashdot_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#03646A&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Slashdot Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_slide_share_aqua&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#00A8AA&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Slide Share Aqua &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_smug_mug_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#89C122&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Smug Mug Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_spoke_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#9AC80D&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Spoke Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_spotplex_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#6B9CC9&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;SpotPlex Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_spurl_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#6699CC&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Spurl Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_spurl_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#505050&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Spurl Grey &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_squidoo_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#21628C&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Squidoo Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_squidoo_mustard&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E5791E&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Squidoo Mustard &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_stumbleupon_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#057DB9&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;StumbleUpon Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_stumbleupon_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#2ACC54&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;StumbleUpon Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_swicki_black&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#000000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Swicki Black &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_tagworld_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#5EBE8F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Tagworld Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_tailrank_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#780000&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;TailRank Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_techcrunch_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#008C00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;TechCrunch Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_technorati_lime_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#4ABA00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Technorati Lime Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_the_broth_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#7F7F7F&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;The Broth Grey &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_thembid_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#EA0101&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;ThemBid Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_threadless_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#003368&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Threadless Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_twitter_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;AFEAEE&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Twitter Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_upcoming_yellow&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FCBD00&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Upcoming Yellow &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_vimeo_grey&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#E7E7DE&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Vimeo Grey &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_voo2do_com_lemon_chiffon&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;FFFFBD&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Voo2Do.com Lemon Chiffon&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_vox_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#D71920&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Vox Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_wayfaring_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#128F34&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Wayfaring Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_wikipedia_black&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#0F0E13&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;WikiPedia Black &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_wikipedia_lavender&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#&lt;span class=&quot;caps&quot;&gt;DEEBFF&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Wikipedia Lavender &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_wordpress_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#174C89&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;WordPress Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_writeboard_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#64BB69&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;WriteBoard Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_writely_olive&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#73880A&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Writely Olive &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_writely_sandy_brown&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#F3AE48&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Writely Sandy Brown &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_xanga_green&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#4DB848&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Xanga Green &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_yahoo_red&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FC0234&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Yahoo Red &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_youtube_tomato&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#FF6666&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;YouTube Tomato &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
  &lt;li&gt;&lt;div class=&quot;color_ziki_blue&quot;&gt;&lt;span class=&quot;color_hex&quot;&gt;#03A0FA&lt;/span&gt;&lt;span class=&quot;color_name&quot;&gt;Ziki Blue &lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
  </entry>
  
</feed>

