<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jedidiah's Blog</title>
	<atom:link href="http://jedidiahreeser.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://jedidiahreeser.com/blog</link>
	<description>Technology Information Exchange</description>
	<lastBuildDate>Wed, 22 Jul 2009 02:24:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Accessing Multiple Databases in CodeIgniter</title>
		<link>http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/</link>
		<comments>http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 00:23:30 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[jedidiah reeser]]></category>
		<category><![CDATA[krystal reeser]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[multiple database]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=62</guid>
		<description><![CDATA[This video tutorial will show you how to connect multiple databases with CodeIgniter. Tutorial by Jedidiah Reeser and Krystal Reeser of JedidiahMedia.com.]]></description>
			<content:encoded><![CDATA[<p><object width="800" height="600" data="http://jedidiahreeser.com/blog/wp-content/uploads/2009/07/multipledatabasesincodeigniter.swf" type="application/x-shockwave-flash"><param name="quality" value="high" /><param name="scale" value="noborder" /><param name="wmode" value="transparent" /><param name="src" value="http://jedidiahreeser.com/blog/wp-content/uploads/2009/07/multipledatabasesincodeigniter.swf" /></object><br />
<h3>Multiple Databases In Codeigniter</h3>
<p>Here is the general transcript from the video, however the video includes a lot more:</p>
<p>
Hello, this is Jedidiah Reeser from <a href="http://www.jedidiahmedia.com">JedidiahMedia.com</a>. Today, I&#8217;m going to show you how to connect to multiple databases in CodeIgniter.</p>
<p>
<strong>Step 1</strong><br /> I am going to add the secondary database details in the config folder. I will open database.php in the config folder which is found in the application folder. I will copy and paste the database settings and change default to second_db.</p>
<p>
<strong>Step 2</strong> <br />Next, I will go to the controller and add the code to load the model.</p>
<pre class="brush: php;">
 $this-&gt;load-&gt;model('example','', TRUE);
</pre>
<p><strong>Step 3</strong> <br />Then I will go to the model and make it connect to the second database. To do this, I will add a private variable in the class. In the constructor function I will load the second database. I will create a function  to run a query using the second database.</p>
<pre class="brush: php; highlight: [3,8,14];">

class Example extends Model
{
  private $second_db;

  function Example()
  {
      parent::Model();
      $this-&gt;second_db = $this-&gt;load-&gt;database('second_db', TRUE);
  }

function get_latest()
{
    $info = '';
    $query = $this-&gt;second_db-&gt;query('SELECT * FROM wp_posts limit 3');

    if ($query-&gt;num_rows() &gt; 0 ){
      $info .= '&lt;ul&gt;';
       foreach ($query-&gt;result() as $row)
        {
            $info .= '
            &lt;li&gt;
              &lt;h3&gt;'.$row-&gt;post_title.'&lt;/h3&gt;
            &lt;br /&gt;
            &lt;div&gt;'.$row-&gt;post_excerpt.'&lt;/div&gt;
           &lt;/li&gt;
            ';
        }
        $info .= '&lt;/ul&gt;';
    }

    return $info;

    }
}
</pre>
<p><strong>Step 4</strong> <br />After that I will open the controller and send the information to the view.</p>
<pre class="brush: php; highlight: [7];">
 $this-&gt;load-&gt;model('example','', TRUE);

 $data['posts'] = '
     &lt;div id=&quot;blogposts&quot;&gt;
    &lt;h2&gt;Recent Posts&lt;/h2&gt;
    ';
    $data['posts'] .= $this-&gt;example-&gt;get_latest();

    $data['posts'] .= '&lt;/div&gt;';

    $this-&gt;load-&gt;view('welcome_message', $data);
</pre>
<p><strong>Step 5</strong> <br />Then, I will go to the view and display the information.</p>
<pre class="brush: php;">
    &lt;?=$posts;?&gt;
</pre>
<p><strong>Thanks for watching!</strong> I hope that you have found this video tutorial helpful. For more tips or information, please visit my sites at: <a href="http://jedidiahreeser.com/">jedidiahreeser.com</a> and <a href="http://jedidiahmedia.com/">jedidiahmedia.com</a>. And a special thanks to <a href="http://krystalreeser.com/">Krystal Reeser</a> for helping me create this video.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Accessing Multiple Databases in CodeIgniter" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Accessing+Multiple+Databases+in+CodeIgniter" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;Title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter&amp;desc=Multiple%20Databases%20In%20Codeigniter%0D%0A%0D%0AHere%20is%20the%20general%20transcript%20from%20the%20video%2C%20however%20the%20video%20includes%20a%20lot%20more%3A%0D%0A%0D%0A%0D%0AHello%2C%20this%20is%20Jedidiah%20Reeser%20from%20JedidiahMedia.com.%20Today%2C%20I%27m%20going%20to%20show%20you%20how%20to%20connect%20to%20multiple%20databases%20in%20CodeIgniter.%0D%0A%0D%0A%0D%0AStep%201%20I%20am%20going%20to%20add%20the%20s" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;submitHeadline=Accessing+Multiple+Databases+in+CodeIgniter&amp;submitSummary=Multiple%20Databases%20In%20Codeigniter%0D%0A%0D%0AHere%20is%20the%20general%20transcript%20from%20the%20video%2C%20however%20the%20video%20includes%20a%20lot%20more%3A%0D%0A%0D%0A%0D%0AHello%2C%20this%20is%20Jedidiah%20Reeser%20from%20JedidiahMedia.com.%20Today%2C%20I%27m%20going%20to%20show%20you%20how%20to%20connect%20to%20multiple%20databases%20in%20CodeIgniter.%0D%0A%0D%0A%0D%0AStep%201%20I%20am%20going%20to%20add%20the%20s&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;t=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;t=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Accessing+Multiple+Databases+in+CodeIgniter+-+http://tinyurl.com/mznzv9" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Accessing%20Multiple%20Databases%20in%20CodeIgniter&amp;body=Multiple%20Databases%20In%20Codeigniter%0D%0A%0D%0AHere%20is%20the%20general%20transcript%20from%20the%20video%2C%20however%20the%20video%20includes%20a%20lot%20more%3A%0D%0A%0D%0A%0D%0AHello%2C%20this%20is%20Jedidiah%20Reeser%20from%20JedidiahMedia.com.%20Today%2C%20I%27m%20going%20to%20show%20you%20how%20to%20connect%20to%20multiple%20databases%20in%20CodeIgniter.%0D%0A%0D%0A%0D%0AStep%201%20I%20am%20going%20to%20add%20the%20s - http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter&amp;summary=Multiple%20Databases%20In%20Codeigniter%0D%0A%0D%0AHere%20is%20the%20general%20transcript%20from%20the%20video%2C%20however%20the%20video%20includes%20a%20lot%20more%3A%0D%0A%0D%0A%0D%0AHello%2C%20this%20is%20Jedidiah%20Reeser%20from%20JedidiahMedia.com.%20Today%2C%20I%27m%20going%20to%20show%20you%20how%20to%20connect%20to%20multiple%20databases%20in%20CodeIgniter.%0D%0A%0D%0A%0D%0AStep%201%20I%20am%20going%20to%20add%20the%20s&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;h=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Multiple%20Databases%20In%20Codeigniter%0D%0A%0D%0AHere%20is%20the%20general%20transcript%20from%20the%20video%2C%20however%20the%20video%20includes%20a%20lot%20more%3A%0D%0A%0D%0A%0D%0AHello%2C%20this%20is%20Jedidiah%20Reeser%20from%20JedidiahMedia.com.%20Today%2C%20I%27m%20going%20to%20show%20you%20how%20to%20connect%20to%20multiple%20databases%20in%20CodeIgniter.%0D%0A%0D%0A%0D%0AStep%201%20I%20am%20going%20to%20add%20the%20s&amp;posturl=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;posttitle=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;bm_description=Accessing+Multiple+Databases+in+CodeIgniter&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;t=Accessing+Multiple+Databases+in+CodeIgniter&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/&amp;title=Accessing+Multiple+Databases+in+CodeIgniter" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/07/accessing-multiple-databases-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Page Peel jQuery Plugin</title>
		<link>http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/</link>
		<comments>http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:56:14 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[note]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[turn page]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=47</guid>
		<description><![CDATA[JQuery Plugin gives you page-peel look.]]></description>
			<content:encoded><![CDATA[<p>Here is a jQuery plugin that gives you a page peel look, with lots of options. Can be used for an ad, with a click-able link. Top and bottom peels available.</p>
<p><a href="http://www.smple.com/pagePeel/">http://www.smple.com/pagePeel/</a></p>
<p>Example:</p>
<p><img class="alignleft size-full wp-image-50" title="page-peel-21" src="http://jedidiahreeser.com/blog/wp-content/uploads/2009/03/page-peel-21.png" alt="page-peel-21" width="236" height="228" /></p>
<p><img class="alignleft size-full wp-image-51" title="page-peel-example" src="http://jedidiahreeser.com/blog/wp-content/uploads/2009/03/page-peel-example.png" alt="page-peel-example" width="240" height="248" /></p>
<p>Thanks to John McMullen for posting his page peel plugin on his website at: <a href="http://smple.com/">http://smple.com/</a>. Check out John&#8217;s website for more plugins and tutorials!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Page Peel jQuery Plugin" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Page+Peel+jQuery+Plugin" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;Title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin&amp;desc=Here%20is%20a%20jQuery%20plugin%20that%20gives%20you%20a%20page%20peel%20look%2C%20with%20lots%20of%20options.%20Can%20be%20used%20for%20an%20ad%2C%20with%20a%20click-able%20link.%20Top%20and%20bottom%20peels%20available.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.smple.com%2FpagePeel%2F%0D%0A%0D%0AExample%3A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AThanks%20to%20John%20McMullen%20for%20posting%20his%20page%20peel%20plugin%20on%20his%20website%20at%3A%20http%3A%2F%2Fsm" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;submitHeadline=Page+Peel+jQuery+Plugin&amp;submitSummary=Here%20is%20a%20jQuery%20plugin%20that%20gives%20you%20a%20page%20peel%20look%2C%20with%20lots%20of%20options.%20Can%20be%20used%20for%20an%20ad%2C%20with%20a%20click-able%20link.%20Top%20and%20bottom%20peels%20available.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.smple.com%2FpagePeel%2F%0D%0A%0D%0AExample%3A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AThanks%20to%20John%20McMullen%20for%20posting%20his%20page%20peel%20plugin%20on%20his%20website%20at%3A%20http%3A%2F%2Fsm&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;t=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;t=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Page+Peel+jQuery+Plugin+-+http://tinyurl.com/lxsrcy" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Page%20Peel%20jQuery%20Plugin&amp;body=Here%20is%20a%20jQuery%20plugin%20that%20gives%20you%20a%20page%20peel%20look%2C%20with%20lots%20of%20options.%20Can%20be%20used%20for%20an%20ad%2C%20with%20a%20click-able%20link.%20Top%20and%20bottom%20peels%20available.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.smple.com%2FpagePeel%2F%0D%0A%0D%0AExample%3A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AThanks%20to%20John%20McMullen%20for%20posting%20his%20page%20peel%20plugin%20on%20his%20website%20at%3A%20http%3A%2F%2Fsm - http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin&amp;summary=Here%20is%20a%20jQuery%20plugin%20that%20gives%20you%20a%20page%20peel%20look%2C%20with%20lots%20of%20options.%20Can%20be%20used%20for%20an%20ad%2C%20with%20a%20click-able%20link.%20Top%20and%20bottom%20peels%20available.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.smple.com%2FpagePeel%2F%0D%0A%0D%0AExample%3A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AThanks%20to%20John%20McMullen%20for%20posting%20his%20page%20peel%20plugin%20on%20his%20website%20at%3A%20http%3A%2F%2Fsm&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;h=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Here%20is%20a%20jQuery%20plugin%20that%20gives%20you%20a%20page%20peel%20look%2C%20with%20lots%20of%20options.%20Can%20be%20used%20for%20an%20ad%2C%20with%20a%20click-able%20link.%20Top%20and%20bottom%20peels%20available.%0D%0A%0D%0Ahttp%3A%2F%2Fwww.smple.com%2FpagePeel%2F%0D%0A%0D%0AExample%3A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AThanks%20to%20John%20McMullen%20for%20posting%20his%20page%20peel%20plugin%20on%20his%20website%20at%3A%20http%3A%2F%2Fsm&amp;posturl=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;posttitle=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;bm_description=Page+Peel+jQuery+Plugin&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;t=Page+Peel+jQuery+Plugin&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/&amp;title=Page+Peel+jQuery+Plugin" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/04/page-peel-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Format Phone Numbers with PHP</title>
		<link>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 02:15:25 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[area code]]></category>
		<category><![CDATA[country code]]></category>
		<category><![CDATA[eleven digit number]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[jedidiah]]></category>
		<category><![CDATA[long distance call]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[prefix]]></category>
		<category><![CDATA[sscanf]]></category>
		<category><![CDATA[ten digit number]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=41</guid>
		<description><![CDATA[Using PHP, this little bit of code parses and formats numbers by putting parentheses and a hyphen into the phone number. This code handles 10 digit phone numbers and even eleven digits (with the country code).
]]></description>
			<content:encoded><![CDATA[<p>Using PHP, this little bit of code parses and formats numbers by putting parentheses and a hyphen into the phone number. This code handles 10 digit phone numbers and even eleven digits (with the country code).</p>
<p><span style="color: #008000;"><strong>Example: </strong> <strong>Changes this</strong> 1234567890  <strong>into this</strong> (123) 456-7890</span></p>
<pre class="brush: php;">
function formatphone($phone){
if (empty($phone)) return "";

if (strlen($phone) == 7) {
    sscanf($phone, "%3s%4s", $prefix, $exchange);
} else if (strlen($phone) == 10) {
    sscanf($phone, "%3s%3s%4s", $area, $prefix, $exchange);
} else if (strlen($phone) > 10) {
    if(substr($phone,0,1)=='1') {
        sscanf($phone, "%1s%3s%3s%4s", $country, $area, $prefix, $exchange);
    } else {
        sscanf($phone, "%3s%3s%4s%s", $area, $prefix, $exchange, $extension);
    }
} else {
    return $phone;
}

$out = "";
$out .= isset($country) ? $country.' ' : '';
$out .= isset($area) ? '(' . $area . ') ' : '';
$out .= $prefix . '-' . $exchange;
$out .= isset($extension) ? ' x' . $extension : '';
return $out;
}
</pre>
<div class="ii gt">I would like to thank Justin Cook for posting his code on <a href="http://justin-cook.com">justin-cook.com</a>. By changing a few lines of Justin&#8217;s code, I was able to get it to work for me. To view the original code or to see Justin&#8217;s blog, visit:<a href="http://www.justin-cook.com/wp/2006/11/17/parse-and-format-phone-numbers-with-php/"> http://www.justin-cook.com/wp/2006/11/17/parse-and-format-phone-numbers-with-php/</a>. Justin describes his blog as &#8220;A web, technology, programming and SEO blog by Justin Cook.&#8221; Nice work, Justin!</div>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Format Phone Numbers with PHP" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Format+Phone+Numbers+with+PHP" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;Title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP&amp;desc=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;submitHeadline=Format+Phone+Numbers+with+PHP&amp;submitSummary=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Format+Phone+Numbers+with+PHP+-+http://tinyurl.com/mhcqko" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Format%20Phone%20Numbers%20with%20PHP&amp;body=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php - http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP&amp;summary=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;h=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;posturl=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;posttitle=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;bm_description=Format+Phone+Numbers+with+PHP&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FavIcon Generator</title>
		<link>http://jedidiahreeser.com/blog/2009/03/favicon-generator/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/favicon-generator/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 01:48:22 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[address bar]]></category>
		<category><![CDATA[dynamic drive]]></category>
		<category><![CDATA[FavIcon]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=31</guid>
		<description><![CDATA[Today, I am covering another gift to programmers from Dynamic Drive.com. Dynamic Drive&#8217;s FavIcon Generator creates a 16&#215;16 image to fit on the address bar and can entice your surfers to bookmark your website.
Upload an image in one of these formats: gif, jpg, png, or bmp. Click &#8220;create icon&#8221; and view the preview image. Then, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I am covering another gift to programmers from <a href="http://www.dynamicdrive.com/">Dynamic Drive.com</a>. Dynamic Drive&#8217;s FavIcon Generator creates a 16&#215;16 image to fit on the address bar and can entice your surfers to bookmark your website.</p>
<p>Upload an image in one of these formats: gif, jpg, png, or bmp. Click &#8220;create icon&#8221; and view the preview image. Then, follow the instructions for inserting the generated code in your webpage.</p>
<p>Check out the FavIcon Generator at the Dynamic Drive!</p>
<p><a href="http://tools.dynamicdrive.com/favicon/">http://tools.dynamicdrive.com/favicon/</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for FavIcon Generator" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+FavIcon+Generator" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;Title=FavIcon+Generator" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator&amp;desc=Today%2C%20I%20am%20covering%20another%20gift%20to%20programmers%20from%20Dynamic%20Drive.com.%20Dynamic%20Drive%27s%20FavIcon%20Generator%20creates%20a%2016x16%20image%20to%20fit%20on%20the%20address%20bar%20and%20can%20entice%20your%20surfers%20to%20bookmark%20your%20website.%0D%0A%0D%0AUpload%20an%20image%20in%20one%20of%20these%20formats%3A%20gif%2C%20jpg%2C%20png%2C%20or%20bmp.%20Click%20%22create%20icon%22%20and%20" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;submitHeadline=FavIcon+Generator&amp;submitSummary=Today%2C%20I%20am%20covering%20another%20gift%20to%20programmers%20from%20Dynamic%20Drive.com.%20Dynamic%20Drive%27s%20FavIcon%20Generator%20creates%20a%2016x16%20image%20to%20fit%20on%20the%20address%20bar%20and%20can%20entice%20your%20surfers%20to%20bookmark%20your%20website.%0D%0A%0D%0AUpload%20an%20image%20in%20one%20of%20these%20formats%3A%20gif%2C%20jpg%2C%20png%2C%20or%20bmp.%20Click%20%22create%20icon%22%20and%20&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/favicon-generator/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;t=FavIcon+Generator" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;t=FavIcon+Generator" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+FavIcon+Generator+-+http://tinyurl.com/ll6ujo" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=FavIcon%20Generator&amp;body=Today%2C%20I%20am%20covering%20another%20gift%20to%20programmers%20from%20Dynamic%20Drive.com.%20Dynamic%20Drive%27s%20FavIcon%20Generator%20creates%20a%2016x16%20image%20to%20fit%20on%20the%20address%20bar%20and%20can%20entice%20your%20surfers%20to%20bookmark%20your%20website.%0D%0A%0D%0AUpload%20an%20image%20in%20one%20of%20these%20formats%3A%20gif%2C%20jpg%2C%20png%2C%20or%20bmp.%20Click%20%22create%20icon%22%20and%20 - http://jedidiahreeser.com/blog/2009/03/favicon-generator/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/favicon-generator/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator&amp;summary=Today%2C%20I%20am%20covering%20another%20gift%20to%20programmers%20from%20Dynamic%20Drive.com.%20Dynamic%20Drive%27s%20FavIcon%20Generator%20creates%20a%2016x16%20image%20to%20fit%20on%20the%20address%20bar%20and%20can%20entice%20your%20surfers%20to%20bookmark%20your%20website.%0D%0A%0D%0AUpload%20an%20image%20in%20one%20of%20these%20formats%3A%20gif%2C%20jpg%2C%20png%2C%20or%20bmp.%20Click%20%22create%20icon%22%20and%20&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;h=FavIcon+Generator" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Today%2C%20I%20am%20covering%20another%20gift%20to%20programmers%20from%20Dynamic%20Drive.com.%20Dynamic%20Drive%27s%20FavIcon%20Generator%20creates%20a%2016x16%20image%20to%20fit%20on%20the%20address%20bar%20and%20can%20entice%20your%20surfers%20to%20bookmark%20your%20website.%0D%0A%0D%0AUpload%20an%20image%20in%20one%20of%20these%20formats%3A%20gif%2C%20jpg%2C%20png%2C%20or%20bmp.%20Click%20%22create%20icon%22%20and%20&amp;posturl=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;posttitle=FavIcon+Generator" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/favicon-generator/title=FavIcon+Generator" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;bm_description=FavIcon+Generator&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;t=FavIcon+Generator&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/favicon-generator/&amp;title=FavIcon+Generator" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/favicon-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Corner Ribbon Banner Generator  II</title>
		<link>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 19:07:35 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[diagonal]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[ribbon]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=34</guid>
		<description><![CDATA[Another diagonal banner generator webpage creates sharp-looking image and can also embed a link!]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I blogged about a diagonal ribbon banners and how they are useful. I also gave an example of a web-tool that you can use to create diagonal banners.</p>
<p>Today, I found an additional web-tool that also creates diagonal ribbon banners that I recommend you take a look at. This webpage works similarly to the first one: you enter in information, pick out some colors, and the webpage generates code for you to enter into your blog.</p>
<div id="attachment_35" class="wp-caption alignleft" style="width: 240px"><a href="http://quickribbon.com"><img class="size-full wp-image-35" title="ribbon-gen-example2" src="http://jedidiahreeser.com/blog/wp-content/uploads/2009/03/ribbon-gen-example2.jpg" alt="quickribbon.com" width="230" height="203" /></a><p class="wp-caption-text">quickribbon.com</p></div>
<p>I wanted to share this tool with you because the banner it generates is very <em>sharp-looking</em> and you can also choose to <em>add a URL</em> link or hyperlink to be embedded in the banner. Check it out!</p>
<p><a href="http://www.quickribbon.com/">http://www.quickribbon.com/</a></p>
<p>My other blog article on diagonal ribbon banners can be found here:</p>
<p><a href="http://jedidiahreeser.com/blog/?p=25">http://jedidiahreeser.com/blog/?p=25</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Corner Ribbon Banner Generator  II" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Corner+Ribbon+Banner+Generator++II" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;Title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II&amp;desc=Yesterday%2C%20I%20blogged%20about%20a%20diagonal%20ribbon%20banners%20and%20how%20they%20are%20useful.%20I%20also%20gave%20an%20example%20of%20a%20web-tool%20that%20you%20can%20use%20to%20create%20diagonal%20banners.%0D%0A%0D%0AToday%2C%20I%20found%20an%20additional%20web-tool%20that%20also%20creates%20diagonal%20ribbon%20banners%20that%20I%20recommend%20you%20take%20a%20look%20at.%20This%20webpage%20works%20s" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;submitHeadline=Corner+Ribbon+Banner+Generator++II&amp;submitSummary=Yesterday%2C%20I%20blogged%20about%20a%20diagonal%20ribbon%20banners%20and%20how%20they%20are%20useful.%20I%20also%20gave%20an%20example%20of%20a%20web-tool%20that%20you%20can%20use%20to%20create%20diagonal%20banners.%0D%0A%0D%0AToday%2C%20I%20found%20an%20additional%20web-tool%20that%20also%20creates%20diagonal%20ribbon%20banners%20that%20I%20recommend%20you%20take%20a%20look%20at.%20This%20webpage%20works%20s&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;t=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;t=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Corner+Ribbon+Banner+Generator++II+-+http://tinyurl.com/nmodhm" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Corner%20Ribbon%20Banner%20Generator%20%20II&amp;body=Yesterday%2C%20I%20blogged%20about%20a%20diagonal%20ribbon%20banners%20and%20how%20they%20are%20useful.%20I%20also%20gave%20an%20example%20of%20a%20web-tool%20that%20you%20can%20use%20to%20create%20diagonal%20banners.%0D%0A%0D%0AToday%2C%20I%20found%20an%20additional%20web-tool%20that%20also%20creates%20diagonal%20ribbon%20banners%20that%20I%20recommend%20you%20take%20a%20look%20at.%20This%20webpage%20works%20s - http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II&amp;summary=Yesterday%2C%20I%20blogged%20about%20a%20diagonal%20ribbon%20banners%20and%20how%20they%20are%20useful.%20I%20also%20gave%20an%20example%20of%20a%20web-tool%20that%20you%20can%20use%20to%20create%20diagonal%20banners.%0D%0A%0D%0AToday%2C%20I%20found%20an%20additional%20web-tool%20that%20also%20creates%20diagonal%20ribbon%20banners%20that%20I%20recommend%20you%20take%20a%20look%20at.%20This%20webpage%20works%20s&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;h=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Yesterday%2C%20I%20blogged%20about%20a%20diagonal%20ribbon%20banners%20and%20how%20they%20are%20useful.%20I%20also%20gave%20an%20example%20of%20a%20web-tool%20that%20you%20can%20use%20to%20create%20diagonal%20banners.%0D%0A%0D%0AToday%2C%20I%20found%20an%20additional%20web-tool%20that%20also%20creates%20diagonal%20ribbon%20banners%20that%20I%20recommend%20you%20take%20a%20look%20at.%20This%20webpage%20works%20s&amp;posturl=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;posttitle=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;bm_description=Corner+Ribbon+Banner+Generator++II&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;t=Corner+Ribbon+Banner+Generator++II&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/&amp;title=Corner+Ribbon+Banner+Generator++II" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-generator-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Corner Ribbon Banner Thing &#8211; Generator</title>
		<link>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 19:42:28 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=25</guid>
		<description><![CDATA[Learn to make a diagonal ribbon banner!]]></description>
			<content:encoded><![CDATA[<p>Here is a pretty quick and nifty way to add a quick announcement or to draw attention to a certain update on your website or blog -</p>
<p>Use this tool to generate code for a diagonal ribbon in the corner of you website: <img src="file:///C:/DOCUME~1/JEDIDI~1/LOCALS~1/Temp/moz-screenshot.jpg" alt="" /><a href="http://www.websiteribbon.com/">http://www.websiteribbon.com/</a></p>
<p>All you have to do is go to the website, enter your message, choose font size and color, choose banner type, click &#8220;generate&#8221; and then place the generated code in your webpage.</p>
<p>Here is an example that I made using this cool little tool:</p>
<div id="attachment_28" class="wp-caption alignleft" style="width: 250px"><img class="size-full wp-image-28" title="diag_banner" src="http://jedidiahreeser.com/blog/wp-content/uploads/2009/03/diag_banner.jpg" alt="Create your own at: http://www.websiteribbon.com/" width="240" height="244" /><p class="wp-caption-text">Create your own at: http://www.websiteribbon.com/</p></div>
<p>Enjoy!</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Corner Ribbon Banner Thing - Generator" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Corner+Ribbon+Banner+Thing+-+Generator" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;Title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator&amp;desc=Here%20is%20a%20pretty%20quick%20and%20nifty%20way%20to%20add%20a%20quick%20announcement%20or%20to%20draw%20attention%20to%20a%20certain%20update%20on%20your%20website%20or%20blog%20-%0D%0A%0D%0AUse%20this%20tool%20to%20generate%20code%20for%20a%20diagonal%20ribbon%20in%20the%20corner%20of%20you%20website%3A%20http%3A%2F%2Fwww.websiteribbon.com%2F%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20go%20to%20the%20website%2C%20enter%20yo" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;submitHeadline=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator&amp;submitSummary=Here%20is%20a%20pretty%20quick%20and%20nifty%20way%20to%20add%20a%20quick%20announcement%20or%20to%20draw%20attention%20to%20a%20certain%20update%20on%20your%20website%20or%20blog%20-%0D%0A%0D%0AUse%20this%20tool%20to%20generate%20code%20for%20a%20diagonal%20ribbon%20in%20the%20corner%20of%20you%20website%3A%20http%3A%2F%2Fwww.websiteribbon.com%2F%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20go%20to%20the%20website%2C%20enter%20yo&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;t=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;t=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator+-+http://tinyurl.com/l22van" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Corner%20Ribbon%20Banner%20Thing%20%26%238211%3B%20Generator&amp;body=Here%20is%20a%20pretty%20quick%20and%20nifty%20way%20to%20add%20a%20quick%20announcement%20or%20to%20draw%20attention%20to%20a%20certain%20update%20on%20your%20website%20or%20blog%20-%0D%0A%0D%0AUse%20this%20tool%20to%20generate%20code%20for%20a%20diagonal%20ribbon%20in%20the%20corner%20of%20you%20website%3A%20http%3A%2F%2Fwww.websiteribbon.com%2F%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20go%20to%20the%20website%2C%20enter%20yo - http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator&amp;summary=Here%20is%20a%20pretty%20quick%20and%20nifty%20way%20to%20add%20a%20quick%20announcement%20or%20to%20draw%20attention%20to%20a%20certain%20update%20on%20your%20website%20or%20blog%20-%0D%0A%0D%0AUse%20this%20tool%20to%20generate%20code%20for%20a%20diagonal%20ribbon%20in%20the%20corner%20of%20you%20website%3A%20http%3A%2F%2Fwww.websiteribbon.com%2F%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20go%20to%20the%20website%2C%20enter%20yo&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;h=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Here%20is%20a%20pretty%20quick%20and%20nifty%20way%20to%20add%20a%20quick%20announcement%20or%20to%20draw%20attention%20to%20a%20certain%20update%20on%20your%20website%20or%20blog%20-%0D%0A%0D%0AUse%20this%20tool%20to%20generate%20code%20for%20a%20diagonal%20ribbon%20in%20the%20corner%20of%20you%20website%3A%20http%3A%2F%2Fwww.websiteribbon.com%2F%0D%0A%0D%0AAll%20you%20have%20to%20do%20is%20go%20to%20the%20website%2C%20enter%20yo&amp;posturl=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;posttitle=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;bm_description=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;t=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/&amp;title=Corner+Ribbon+Banner+Thing+%26%238211%3B+Generator" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/corner-ribbon-banner-thing-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP is for the PowerHungryProgrammer</title>
		<link>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 21:13:32 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=24</guid>
		<description><![CDATA[PHP is a great code that I frequently suggest to other programmer friends to use on various types of projects. However, some programmers still shy away from this versatile and powerful code.  For those of you who are unfamiliar with PHP or are not sure if it should be considered for you next project, [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is a great code that I frequently suggest to other programmer friends to use on various types of projects. However, some programmers still shy away from this versatile and powerful code.  For those of you who are unfamiliar with PHP or are not sure if it should be considered for you next project, consider this:</p>
<ul>
<li>PHP is compatible with Unix, Linux, and Windows.</li>
<li>PHP allows you to organize the code the way you want (start imagining how this could be a good thing)</li>
<li>PHP has a strong community and has many pre-built open source applications that are waiting for you to intergrate into your project (saving you millions of years sitting in front of your computer)</li>
<li>Connects easily to a variety of databases</li>
<li>Its OpenSource, so you got freedom!</li>
<li>PHP is great for start-ups and side projects because of low-cost, though this should be appealing to everyone.</li>
<li>PHP code is hidden from web surfers (only html is visible)</li>
<li>PHP can create .pdf&#8217;s and excel files on the fly</li>
<li>PHP was used to program other awesome and powerful projects (facebook.com, youtube.com, wikipedia.com*)</li>
</ul>
<p><em>In conclusion, the correct time to consider using PHP is when you are hungry to create powerful websites!</em></p>
<div style="font-size: 90%;"></div>
<div style="font-size: 90%;">Check out more great reasons to use PHP at Krystian Hoffman&#8217;s blog:</div>
<div style="font-size: 90%;"><a href="http://krillz.com/10-reasons-why-i-use-php/">http://krillz.com/10-reasons-why-i-use-php/</a> *reference David Hurst&#8217;s blog: <a href="http://www.davidhurst.co.uk/2009/02/25/famous-websites-that-use-php-andor-mysql/">http://www.davidhurst.co.uk/2009/02/25/famous-websites-that-use-php-andor-mysql/</a></div>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for PHP is for the PowerHungryProgrammer" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+PHP+is+for+the+PowerHungryProgrammer" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;Title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer&amp;desc=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;submitHeadline=PHP+is+for+the+PowerHungryProgrammer&amp;submitSummary=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+PHP+is+for+the+PowerHungryProgrammer+-+http://tinyurl.com/l95cbv" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=PHP%20is%20for%20the%20PowerHungryProgrammer&amp;body=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project - http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer&amp;summary=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;h=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;posturl=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;posttitle=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;bm_description=PHP+is+for+the+PowerHungryProgrammer&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlogOrlando 2008</title>
		<link>http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/</link>
		<comments>http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 22:04:46 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=23</guid>
		<description><![CDATA[



BlogOrlando 2008

Originally uploaded by hyperlinkguerrilla


BlogOrlando 2008 was an awesome event. Just what I needed to motivate me to get back to regularly blogging.
Nice to hear from some other motivated bloggers out there!
http://www.blogorlando.com/
Can you find me in the picture?

Buy Me a CoffeeSubmit this to Script &#38; StyleShare this on BlinklistShare this on del.icio.usDigg this!Post this on [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
<a href="http://www.flickr.com/photos/hyperg/2894061162/" title="photo sharing"><img src="http://farm4.static.flickr.com/3015/2894061162_a0ed15b1cf_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
<span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/hyperg/2894061162/">BlogOrlando 2008</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/hyperg/">hyperlinkguerrilla</a><br />
</span>
</div>
<p>BlogOrlando 2008 was an awesome event. Just what I needed to motivate me to get back to regularly blogging.</p>
<p>Nice to hear from some other motivated bloggers out there!</p>
<p>http://www.blogorlando.com/</p>
<p>Can you find me in the picture?<br />
<br clear="all" /></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for BlogOrlando 2008" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+BlogOrlando+2008" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;Title=BlogOrlando+2008" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008&amp;desc=%0A%0A%0A%0ABlogOrlando%202008%0A%0AOriginally%20uploaded%20by%20hyperlinkguerrilla%0A%0A%0ABlogOrlando%202008%20was%20an%20awesome%20event.%20Just%20what%20I%20needed%20to%20motivate%20me%20to%20get%20back%20to%20regularly%20blogging.%0A%0ANice%20to%20hear%20from%20some%20other%20motivated%20bloggers%20out%20there%21%0A%0Ahttp%3A%2F%2Fwww.blogorlando.com%2F%0A%0ACan%20you%20find%20me%20in%20the%20picture%3F%0A" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;submitHeadline=BlogOrlando+2008&amp;submitSummary=%0A%0A%0A%0ABlogOrlando%202008%0A%0AOriginally%20uploaded%20by%20hyperlinkguerrilla%0A%0A%0ABlogOrlando%202008%20was%20an%20awesome%20event.%20Just%20what%20I%20needed%20to%20motivate%20me%20to%20get%20back%20to%20regularly%20blogging.%0A%0ANice%20to%20hear%20from%20some%20other%20motivated%20bloggers%20out%20there%21%0A%0Ahttp%3A%2F%2Fwww.blogorlando.com%2F%0A%0ACan%20you%20find%20me%20in%20the%20picture%3F%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;t=BlogOrlando+2008" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;t=BlogOrlando+2008" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+BlogOrlando+2008+-+http://tinyurl.com/nsyfqs" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=BlogOrlando%202008&amp;body=%0A%0A%0A%0ABlogOrlando%202008%0A%0AOriginally%20uploaded%20by%20hyperlinkguerrilla%0A%0A%0ABlogOrlando%202008%20was%20an%20awesome%20event.%20Just%20what%20I%20needed%20to%20motivate%20me%20to%20get%20back%20to%20regularly%20blogging.%0A%0ANice%20to%20hear%20from%20some%20other%20motivated%20bloggers%20out%20there%21%0A%0Ahttp%3A%2F%2Fwww.blogorlando.com%2F%0A%0ACan%20you%20find%20me%20in%20the%20picture%3F%0A - http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008&amp;summary=%0A%0A%0A%0ABlogOrlando%202008%0A%0AOriginally%20uploaded%20by%20hyperlinkguerrilla%0A%0A%0ABlogOrlando%202008%20was%20an%20awesome%20event.%20Just%20what%20I%20needed%20to%20motivate%20me%20to%20get%20back%20to%20regularly%20blogging.%0A%0ANice%20to%20hear%20from%20some%20other%20motivated%20bloggers%20out%20there%21%0A%0Ahttp%3A%2F%2Fwww.blogorlando.com%2F%0A%0ACan%20you%20find%20me%20in%20the%20picture%3F%0A&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;h=BlogOrlando+2008" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=%0A%0A%0A%0ABlogOrlando%202008%0A%0AOriginally%20uploaded%20by%20hyperlinkguerrilla%0A%0A%0ABlogOrlando%202008%20was%20an%20awesome%20event.%20Just%20what%20I%20needed%20to%20motivate%20me%20to%20get%20back%20to%20regularly%20blogging.%0A%0ANice%20to%20hear%20from%20some%20other%20motivated%20bloggers%20out%20there%21%0A%0Ahttp%3A%2F%2Fwww.blogorlando.com%2F%0A%0ACan%20you%20find%20me%20in%20the%20picture%3F%0A&amp;posturl=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;posttitle=BlogOrlando+2008" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/title=BlogOrlando+2008" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;bm_description=BlogOrlando+2008&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;t=BlogOrlando+2008&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/&amp;title=BlogOrlando+2008" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2008/09/blogorlando-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edit photos without downloading software</title>
		<link>http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/</link>
		<comments>http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 18:43:56 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=17</guid>
		<description><![CDATA[Use picnik.com for fast photo manipulation on the go. No need to download software. All the basics features and more are in your tool chest.
Use Picasa Web Albums or Flickr? No need to upload from your computer! Just sign in.
Easy to use. Learn to navigate in seconds if you are familiar with similar applications.
Me on [...]]]></description>
			<content:encoded><![CDATA[<p>Use picnik.com for fast photo manipulation on the go. No need to download software. All the basics features and more are in your tool chest.</p>
<p>Use Picasa Web Albums or Flickr? No need to upload from your computer! Just sign in.</p>
<p>Easy to use. Learn to navigate in seconds if you are familiar with similar applications.</p>
<p>Me on picknik:<br />
<a href="http://jedidiahreeser.com/blog/wp-content/uploads/2008/07/none3.jpg"><img class="alignnone size-thumbnail wp-image-21" title="none3" src="http://jedidiahreeser.com/blog/wp-content/uploads/2008/07/none3.jpg" alt="" width="150" height="149" /></a></p>
<p>Try <a href="http://picknik.com">Picknik.com</a> !</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Edit photos without downloading software" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Edit+photos+without+downloading+software" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;Title=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software&amp;desc=Use%20picnik.com%20for%20fast%20photo%20manipulation%20on%20the%20go.%20No%20need%20to%20download%20software.%20All%20the%20basics%20features%20and%20more%20are%20in%20your%20tool%20chest.%0D%0A%0D%0AUse%20Picasa%20Web%20Albums%20or%20Flickr%3F%20No%20need%20to%20upload%20from%20your%20computer%21%20Just%20sign%20in.%0D%0A%0D%0AEasy%20to%20use.%20Learn%20to%20navigate%20in%20seconds%20if%20you%20are%20familiar%20with%20s" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;submitHeadline=Edit+photos+without+downloading+software&amp;submitSummary=Use%20picnik.com%20for%20fast%20photo%20manipulation%20on%20the%20go.%20No%20need%20to%20download%20software.%20All%20the%20basics%20features%20and%20more%20are%20in%20your%20tool%20chest.%0D%0A%0D%0AUse%20Picasa%20Web%20Albums%20or%20Flickr%3F%20No%20need%20to%20upload%20from%20your%20computer%21%20Just%20sign%20in.%0D%0A%0D%0AEasy%20to%20use.%20Learn%20to%20navigate%20in%20seconds%20if%20you%20are%20familiar%20with%20s&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;t=Edit+photos+without+downloading+software" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;t=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Edit+photos+without+downloading+software+-+http://tinyurl.com/mf2729" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Edit%20photos%20without%20downloading%20software&amp;body=Use%20picnik.com%20for%20fast%20photo%20manipulation%20on%20the%20go.%20No%20need%20to%20download%20software.%20All%20the%20basics%20features%20and%20more%20are%20in%20your%20tool%20chest.%0D%0A%0D%0AUse%20Picasa%20Web%20Albums%20or%20Flickr%3F%20No%20need%20to%20upload%20from%20your%20computer%21%20Just%20sign%20in.%0D%0A%0D%0AEasy%20to%20use.%20Learn%20to%20navigate%20in%20seconds%20if%20you%20are%20familiar%20with%20s - http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software&amp;summary=Use%20picnik.com%20for%20fast%20photo%20manipulation%20on%20the%20go.%20No%20need%20to%20download%20software.%20All%20the%20basics%20features%20and%20more%20are%20in%20your%20tool%20chest.%0D%0A%0D%0AUse%20Picasa%20Web%20Albums%20or%20Flickr%3F%20No%20need%20to%20upload%20from%20your%20computer%21%20Just%20sign%20in.%0D%0A%0D%0AEasy%20to%20use.%20Learn%20to%20navigate%20in%20seconds%20if%20you%20are%20familiar%20with%20s&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;h=Edit+photos+without+downloading+software" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Use%20picnik.com%20for%20fast%20photo%20manipulation%20on%20the%20go.%20No%20need%20to%20download%20software.%20All%20the%20basics%20features%20and%20more%20are%20in%20your%20tool%20chest.%0D%0A%0D%0AUse%20Picasa%20Web%20Albums%20or%20Flickr%3F%20No%20need%20to%20upload%20from%20your%20computer%21%20Just%20sign%20in.%0D%0A%0D%0AEasy%20to%20use.%20Learn%20to%20navigate%20in%20seconds%20if%20you%20are%20familiar%20with%20s&amp;posturl=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;posttitle=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/title=Edit+photos+without+downloading+software" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;bm_description=Edit+photos+without+downloading+software&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;t=Edit+photos+without+downloading+software&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/&amp;title=Edit+photos+without+downloading+software" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2008/07/edit-photos-without-downloading-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colorzilla</title>
		<link>http://jedidiahreeser.com/blog/2008/07/colorzilla/</link>
		<comments>http://jedidiahreeser.com/blog/2008/07/colorzilla/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 20:17:53 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=13</guid>
		<description><![CDATA[While colorzilla is an old favorite for me, I know some of my programming friends still aren&#8217;t using this great little tool. Colorzilla is an add-on to the Firefox browser.
I use colorzilla&#8217;s &#8220;eyedropper&#8221; to select a color from a particular point in my browser. Next, I can take that color, adjust the color, and then [...]]]></description>
			<content:encoded><![CDATA[<p>While colorzilla is an old favorite for me, I know some of my programming friends still aren&#8217;t using this great little tool. Colorzilla is an add-on to the Firefox browser.</p>
<p>I use colorzilla&#8217;s &#8220;eyedropper&#8221; to select a color from a particular point in my browser. Next, I can take that color, adjust the color, and then use my new color in my code. If I&#8217;m making an image in Inkscape, I often copy the color&#8217;s number into the fill and stroke dialog and adjust the transparency.</p>
<p>If you are trying to get colors that are compatible with your design, install colorzilla now before you mix  #7FFF00<tt> with </tt>#DF73FF!  (chartreuse with heliotrope)</p>
<p>Need colors to match your theme? Instead of picking a random green and purple. Pick a complimentary green and purple out of a picture or webpage. Adjust them to your liking. And go from this&#8230;to this! (see below)</p>
<p><a href="http://jedidiahreeser.com/blog/wp-content/uploads/2008/07/flowroot3194.png"><img class="alignnone size-medium wp-image-16" title="flowroot3194" src="http://jedidiahreeser.com/blog/wp-content/uploads/2008/07/flowroot3194-300x195.png" alt="" width="300" height="195" /></a></p>
<p>Get Colorzilla Now!</p>
<p><a title="Colorzilla" href="https://addons.mozilla.org/en-US/firefox/addon/271">https://addons.mozilla.org/en-US/firefox/addon/271</a></p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Colorzilla" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Colorzilla" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;Title=Colorzilla" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla&amp;desc=While%20colorzilla%20is%20an%20old%20favorite%20for%20me%2C%20I%20know%20some%20of%20my%20programming%20friends%20still%20aren%27t%20using%20this%20great%20little%20tool.%20Colorzilla%20is%20an%20add-on%20to%20the%20Firefox%20browser.%0D%0A%0D%0AI%20use%20colorzilla%27s%20%22eyedropper%22%20to%20select%20a%20color%20from%20a%20particular%20point%20in%20my%20browser.%20Next%2C%20I%20can%20take%20that%20color%2C%20adjust" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;submitHeadline=Colorzilla&amp;submitSummary=While%20colorzilla%20is%20an%20old%20favorite%20for%20me%2C%20I%20know%20some%20of%20my%20programming%20friends%20still%20aren%27t%20using%20this%20great%20little%20tool.%20Colorzilla%20is%20an%20add-on%20to%20the%20Firefox%20browser.%0D%0A%0D%0AI%20use%20colorzilla%27s%20%22eyedropper%22%20to%20select%20a%20color%20from%20a%20particular%20point%20in%20my%20browser.%20Next%2C%20I%20can%20take%20that%20color%2C%20adjust&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2008/07/colorzilla/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;t=Colorzilla" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;t=Colorzilla" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Colorzilla+-+http://tinyurl.com/lcn2t2" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Colorzilla&amp;body=While%20colorzilla%20is%20an%20old%20favorite%20for%20me%2C%20I%20know%20some%20of%20my%20programming%20friends%20still%20aren%27t%20using%20this%20great%20little%20tool.%20Colorzilla%20is%20an%20add-on%20to%20the%20Firefox%20browser.%0D%0A%0D%0AI%20use%20colorzilla%27s%20%22eyedropper%22%20to%20select%20a%20color%20from%20a%20particular%20point%20in%20my%20browser.%20Next%2C%20I%20can%20take%20that%20color%2C%20adjust - http://jedidiahreeser.com/blog/2008/07/colorzilla/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2008/07/colorzilla/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla&amp;summary=While%20colorzilla%20is%20an%20old%20favorite%20for%20me%2C%20I%20know%20some%20of%20my%20programming%20friends%20still%20aren%27t%20using%20this%20great%20little%20tool.%20Colorzilla%20is%20an%20add-on%20to%20the%20Firefox%20browser.%0D%0A%0D%0AI%20use%20colorzilla%27s%20%22eyedropper%22%20to%20select%20a%20color%20from%20a%20particular%20point%20in%20my%20browser.%20Next%2C%20I%20can%20take%20that%20color%2C%20adjust&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;h=Colorzilla" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=While%20colorzilla%20is%20an%20old%20favorite%20for%20me%2C%20I%20know%20some%20of%20my%20programming%20friends%20still%20aren%27t%20using%20this%20great%20little%20tool.%20Colorzilla%20is%20an%20add-on%20to%20the%20Firefox%20browser.%0D%0A%0D%0AI%20use%20colorzilla%27s%20%22eyedropper%22%20to%20select%20a%20color%20from%20a%20particular%20point%20in%20my%20browser.%20Next%2C%20I%20can%20take%20that%20color%2C%20adjust&amp;posturl=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;posttitle=Colorzilla" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2008/07/colorzilla/title=Colorzilla" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;bm_description=Colorzilla&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2008/07/colorzilla/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;t=Colorzilla&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2008/07/colorzilla/&amp;title=Colorzilla" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2008/07/colorzilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
