<?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>itlivewire dev blog</title>
	<atom:link href="http://itlivewire.com/devblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://itlivewire.com/devblog</link>
	<description>Just another web development blog...</description>
	<lastBuildDate>Fri, 05 Mar 2010 03:10:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP file stream</title>
		<link>http://itlivewire.com/devblog/2010/02/19/php-file-stream/</link>
		<comments>http://itlivewire.com/devblog/2010/02/19/php-file-stream/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 06:48:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/02/19/php-file-stream/</guid>
		<description><![CDATA[The code below shows how to open a file from the server which cannot be accessed by the web server

$path = &#34;/home/files/documents.doc&#34;;
   header(&#34;Cache-Control: pre-check=0, post-check=0, max-age=0&#34;);
   header('Content-Type: application/octet-stream');
   header(&#34;Content-Disposition: attachment; filename=documents.doc);
   header(&#34;Content-Description: File Transfer&#34;);
   header(&#34;Content-Type:documents.doc);
   header(&#34;Last-Modified: &#34; . now());
echo readfile($path);

]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F19%2Fphp-file-stream%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F19%2Fphp-file-stream%2F" height="61" width="51" /></a></div><p>The code below shows how to open a file from the server which cannot be accessed by the web server</p>
<pre class="brush: php;">
$path = &quot;/home/files/documents.doc&quot;;
   header(&quot;Cache-Control: pre-check=0, post-check=0, max-age=0&quot;);
   header('Content-Type: application/octet-stream');
   header(&quot;Content-Disposition: attachment; filename=documents.doc);
   header(&quot;Content-Description: File Transfer&quot;);
   header(&quot;Content-Type:documents.doc);
   header(&quot;Last-Modified: &quot; . now());
echo readfile($path);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/02/19/php-file-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zenburn dreamweaver</title>
		<link>http://itlivewire.com/devblog/2010/02/04/zenburn-dreamweaver/</link>
		<comments>http://itlivewire.com/devblog/2010/02/04/zenburn-dreamweaver/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:21:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/02/04/zenburn-dreamweaver/</guid>
		<description><![CDATA[
A code view theme for dreamweaver based on zenburn low contrast console theme more info on zenburn official site.
To use in dreamweaver here are the Instructions:
1. Download file here
2. Go to  C:\Documents and Settings\\Application Data\Adobe\Dreamweaver CS3\Configuration\CodeColoring
3. Backup first the original Colors.xml rename it as Colors-back.xml
4. Then paste our downloaded Colors.xml file
5. In your dreamweaver [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F04%2Fzenburn-dreamweaver%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F04%2Fzenburn-dreamweaver%2F" height="61" width="51" /></a></div><p><img src="http://farm3.static.flickr.com/2728/4330489386_59f246a2af.jpg" alt="" /><br />
A code view theme for<strong> dreamweaver </strong>based on <strong>zenburn </strong>low contrast console theme more info on <a href="http://slinky.imukuppi.org/zenburnpage/">zenburn official site</a>.</p>
<p><strong>To use in dreamweaver here are the Instructions:</strong><br />
1. Download file <a href="http://jquerymulticolumnselectbox.googlecode.com/files/Colors.xml">here</a><br />
2. Go to  C:\Documents and Settings\<PCUSER>\Application Data\Adobe\Dreamweaver CS3\Configuration\CodeColoring<br />
3. Backup first the original <strong>Colors.xml</strong> rename it as <strong>Colors-back.xml</strong><br />
4. Then paste our downloaded Colors.xml file<br />
5. In your dreamweaver go to edit->preferences->code coloring then change your background color to #3f3f3f</p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/02/04/zenburn-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mediawiki image link to an article</title>
		<link>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/</link>
		<comments>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 05:01:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mediawiki]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/?p=317</guid>
		<description><![CDATA[Images  on a MediaWiki wiki will by default, link to the description page
Here is a work around that when you click an image it will link to an ariticle
[[Image:Wiki.png&#124;50px&#124;link=MediaWiki]]
Note: The code above will work in mediawiki version 1.14 and above only
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
Here is the workaround for older versions
Edit the Common.css
.imagelink_somename a {
  width:100px;
  [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F02%2Fmediawiki-image-link-to-an-article%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F02%2F02%2Fmediawiki-image-link-to-an-article%2F" height="61" width="51" /></a></div><p>Images  on a MediaWiki wiki will by default, link to the description page<br />
Here is a work around that when you click an image it will link to an ariticle</p>
<pre class="brush: php;">[[Image:Wiki.png|50px|link=MediaWiki]]</pre>
<p>Note: The code above will work in mediawiki version 1.14 and above only<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Here is the workaround for older versions<br />
Edit the <strong>Common.css</strong></p>
<pre class="brush: php;">.imagelink_somename a {
  width:100px;
  height:100px;
  display:block;
  text-decoration:none;
  background-image: url(&quot;http://fullurltoimage&quot;)
}</pre>
<p>In your wiki code:</p>
<pre class="brush: php;">&lt;div class=&quot;imagelink_somename&quot;&gt;[[Some link|&amp;nbsp;]]&lt;/div&gt;</pre>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Or try the quick way</p>
<pre class="brush: php;">
&lt;div style=&quot;position: relative; width: {{{width}}}; height: {{{height}}}; overflow: hidden;&quot;&gt;
&lt;div style=&quot;position: absolute; top: 0px; left: 0px; font-size: 100px; overflow: hidden; line-height: 100px; z-index: 3;&quot;&gt;[[{{{link}}}|&amp;nbsp;&amp;nbsp;&amp;nbsp;]]&lt;/div&gt;
&lt;div style=&quot;position: absolute; top: 0px; left: 0px; z-index: 2;&quot;&gt;[[Image:{{{image}}}|{{{width}}}|{{{link}}}]]&lt;/div&gt;
&lt;/div&gt;
</pre>
<p>More workarounds found at mediawiki docs<br />
<a href="http://www.mediawiki.org/wiki/Help:Linked_images#link.3D_Syntax_available_since_version_1.14">http://www.mediawiki.org/wiki/Help:Linked_images#link.3D_Syntax_available_since_version_1.14</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/02/02/mediawiki-image-link-to-an-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Lotus Notes notes:// protocol in mediawiki</title>
		<link>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/</link>
		<comments>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 07:29:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[lotus notes]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/</guid>
		<description><![CDATA[Edit the LocalSettings.php
add the notes:// protocol
where you find this line (add it as an array item)
$wgUrlProtocols = array( 'http://', 'https://', 'mailto:' ,'notes://');
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F28%2Fenable-lotus-note-notes-protocol-in-mediawiki%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F28%2Fenable-lotus-note-notes-protocol-in-mediawiki%2F" height="61" width="51" /></a></div><p>Edit the <strong>LocalSettings.php</strong><br />
add the <strong>notes://</strong> protocol<br />
where you find this line (add it as an array item)</p>
<pre class="brush: php;">$wgUrlProtocols = array( 'http://', 'https://', 'mailto:' ,'notes://');</pre>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/01/28/enable-lotus-note-notes-protocol-in-mediawiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mt_rand</title>
		<link>http://itlivewire.com/devblog/2010/01/25/mt_rand/</link>
		<comments>http://itlivewire.com/devblog/2010/01/25/mt_rand/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 11:25:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/01/25/mt_rand/</guid>
		<description><![CDATA[The mt_rand() function is a drop-in replacement for rand().
It uses a random number generator with known characteristics using the Mersenne Twister from the php docs website
I somehow noticed php rand() has a pattern, So I dug up the php docs for a better rand function and end up discovering this neat random function
Use mt_rand()
&#60;?php
echo mt_rand() [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F25%2Fmt_rand%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F25%2Fmt_rand%2F" height="61" width="51" /></a></div><p>The <strong>mt_rand()</strong> function is a drop-in replacement for rand().<br />
It uses a <strong>random number generator</strong> with known characteristics using the Mersenne Twister from the <a href="http://php.net/manual/en/function.mt-rand.php">php docs </a>website</p>
<p>I somehow noticed php rand() has a pattern, So I dug up the php docs for a better rand function and end up discovering this neat random function</p>
<p><strong>Use mt_rand()</strong></p>
<pre class="brush: php;">&lt;?php
echo mt_rand() . &quot;\n&quot;;
echo mt_rand() . &quot;\n&quot;;

echo mt_rand(5, 15);

?&gt;</pre>
<p><strong>Output</strong></p>
<pre class="brush: php;">
1604716014
1478613278
6
</pre>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/01/25/mt_rand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use Simple_html_dom php library with codeigniter</title>
		<link>http://itlivewire.com/devblog/2010/01/22/use-simple_html_dom-php-library-with-codeigniter/</link>
		<comments>http://itlivewire.com/devblog/2010/01/22/use-simple_html_dom-php-library-with-codeigniter/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 09:37:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/?p=286</guid>
		<description><![CDATA[
I was able to figure out how to run Simple_html_dom php library on codeigniter
Download the simple html dom library here simple html dom
I copied the file Simple_html_dom.php to
/system/libraries
Then in my controller I call it using
require_once(&#8217;Simple_html_dom.php&#8217;); 
To use it, I initialized it using this line
$html = new Simple_html_dom();
Load a page or link using the line
$html->load_file(&#8217;http://www.google.com&#8217;);
and parse [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F22%2Fuse-simple_html_dom-php-library-with-codeigniter%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F22%2Fuse-simple_html_dom-php-library-with-codeigniter%2F" height="61" width="51" /></a></div><p><img src="http://t0.gstatic.com/images?q=tbn:yuqMAbcQ5fAVCM:http://www.allfacebook.com/images/codeigniter-lg.gif" alt="" /></p>
<p>I was able to figure out how to run Simple_html_dom php library on codeigniter</p>
<p>Download the simple html dom library here <a href="http://sourceforge.net/projects/simplehtmldom/files/">simple html dom</a></p>
<blockquote><p>I copied the file <strong>Simple_html_dom.php</strong> to</p>
<p><strong>/system/libraries</strong></p>
<p>Then in my controller I call it using</p>
<p><strong>require_once(&#8217;Simple_html_dom.php&#8217;); </strong></p>
<p>To use it, I initialized it using this line</p>
<p><strong>$html = new Simple_html_dom();</strong></p>
<p>Load a page or link using the line</p>
<p><strong>$html->load_file(&#8217;http://www.google.com&#8217;);</strong></p>
<p>and parse or find elements using this line</p>
<p><strong>$html->find(&#8217;table tr td&#8217;)->plaintext;</strong></p>
</blockquote>
<p>works fine and fits right to what I needed to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/01/22/use-simple_html_dom-php-library-with-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Celebrates greets Newton’s happy birthday Animated Logo</title>
		<link>http://itlivewire.com/devblog/2010/01/04/google-celebrates-greets-newton%e2%80%99s-happy-birthday-animated-logo/</link>
		<comments>http://itlivewire.com/devblog/2010/01/04/google-celebrates-greets-newton%e2%80%99s-happy-birthday-animated-logo/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 14:00:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[newton]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2010/01/04/google-celebrates-greets-newton%e2%80%99s-happy-birthday-animated-logo/</guid>
		<description><![CDATA[Visit google today and see an animated logo of a falling apple


http://www.google.com
Newton himself often told the story that he was inspired to formulate his theory of gravitation by watching the fall of an apple from a tree.
Cartoons have gone further to suggest the apple actually hit Newton&#8217;s head.
GRAVITY&#8230;&#8230;&#8230; and there goes the apple
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F04%2Fgoogle-celebrates-greets-newton%25e2%2580%2599s-happy-birthday-animated-logo%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2010%2F01%2F04%2Fgoogle-celebrates-greets-newton%25e2%2580%2599s-happy-birthday-animated-logo%2F" height="61" width="51" /></a></div><p>Visit <a href="http://www.google.com">google</a> today and see an animated logo of a falling apple<br />
<a href="http://www.google.com"><br />
<img src="http://itlivewire.com/devblog/wp-content/uploads/2010/01/newton10-tree.jpg" alt="newton10-tree" title="newton10-tree" width="384" height="138" class="alignnone size-full wp-image-280" /></a><br />
<a href="http://www.google.com">http://www.google.com</a></p>
<p><strong>Newton</strong> himself often told the story that he was inspired to formulate his theory of gravitation by watching the fall of an apple from a tree.<br />
<strong>Cartoons</strong> have gone further to suggest the apple actually hit Newton&#8217;s head.</p>
<p>GRAVITY&#8230;&#8230;&#8230; and there goes the apple</p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2010/01/04/google-celebrates-greets-newton%e2%80%99s-happy-birthday-animated-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>top jquery plugins of 2009</title>
		<link>http://itlivewire.com/devblog/2009/12/27/top-jquery-plugins-of-2009/</link>
		<comments>http://itlivewire.com/devblog/2009/12/27/top-jquery-plugins-of-2009/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 15:08:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2009/12/27/top-jquery-plugins-of-2009/</guid>
		<description><![CDATA[woorkup features the top jquery plugins of 2009 
http://woorkup.com/2009/12/27/10-popular-jquery-plugins-in-2009-you-can%E2%80%99t-miss/
includes the very impressive mapbox and jqtouch

]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F27%2Ftop-jquery-plugins-of-2009%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F27%2Ftop-jquery-plugins-of-2009%2F" height="61" width="51" /></a></div><p><strong><a href="http://woorkup.com/2009/12/27/10-popular-jquery-plugins-in-2009-you-can%E2%80%99t-miss/">woorkup</a></strong> features the top jquery plugins of 2009 </p>
<p><a href="http://woorkup.com/2009/12/27/10-popular-jquery-plugins-in-2009-you-can%E2%80%99t-miss/">http://woorkup.com/2009/12/27/10-popular-jquery-plugins-in-2009-you-can%E2%80%99t-miss/</a></p>
<p>includes the very impressive <strong><a href="http://wayfarerweb.com/jquery/plugins/mapbox/">mapbox</a></strong> and <strong><a href="http://www.jqtouch.com/">jqtouch</a></strong><br />
<a href="http://woorkup.com/2009/12/27/10-popular-jquery-plugins-in-2009-you-can%E2%80%99t-miss/"><img src="http://woorkup.com/wp-content/uploads/2009/12/jqp14.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2009/12/27/top-jquery-plugins-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>looking for an icon?</title>
		<link>http://itlivewire.com/devblog/2009/12/15/looking-for-an-icon/</link>
		<comments>http://itlivewire.com/devblog/2009/12/15/looking-for-an-icon/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:05:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2009/12/15/looking-for-an-icon/</guid>
		<description><![CDATA[
You&#8217;re busy coding finishing your web app, you need to put a santa icon or coffecup icon , though google might help save you&#8217;re search time.
Youre hoping there is website out there with enough icon archive ready for download and use.
www.iconarchive.com is the answer
From their website:
The Icon Archive is a categorized collection of high quality [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F15%2Flooking-for-an-icon%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F15%2Flooking-for-an-icon%2F" height="61" width="51" /></a></div><p><img src="http://www.iconarchive.com/images/logo/logo.gif" alt="" /><br />
<strong>You&#8217;re busy coding finishing your web app</strong>, you need to put a <strong>santa icon</strong> or <strong>coffecup icon </strong>, though google might help save you&#8217;re search time.<br />
Youre hoping there is <strong>website out there</strong> with enough <strong>icon archive ready for download and use.</strong></p>
<p><a href="http://www.iconarchive.com">www.iconarchive.com</a> is the answer</p>
<p><strong>From their website:</strong><br />
The Icon Archive is a categorized collection of high quality desktop &#038; web icon sets. We currently host over<br />
27,300 icons in 971 sets from 226 icon authors. Icons can be used for Windows (XP, Vista, etc.), Macintosh (OSX, OS) and Linux (as PNG Files). Copyright of icons belong to original authors. Public usage license can be found on each icon set page. </p>
<p><img src="http://www.iconarchive.com/icons/icons-land/vista-hardware-devices/icons.jpg" alt="" /><br />
<strong>What impressed me with the site</strong><br />
&#8211; quick find on icons.<br />
&#8211; rare icons like (ex. giraffe or toaster). is available<br />
&#8211; They have apps icons, icons we see usually on apps (save,add,delete update,trash bin).<br />
&#8211; quick download, right click save, you&#8217;re done, copyright applies read copyright first.<br />
&#8211; FILE FORMAT is only at png some have .ico but most of the time I will need a transparent png for my web app buttons or tool bars</p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2009/12/15/looking-for-an-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>recommended syntax highlighter wordpress plugin</title>
		<link>http://itlivewire.com/devblog/2009/12/15/recommended-syntax-highlighter-wordpress-plugin/</link>
		<comments>http://itlivewire.com/devblog/2009/12/15/recommended-syntax-highlighter-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 10:09:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://itlivewire.com/devblog/2009/12/15/recommended-syntax-highlighter-wordpress-plugin/</guid>
		<description><![CDATA[syntaxhighlighter by Alex Gorbatchev.
clean
simple
and easy to use,
install it then you&#8217;re of to go
what i like the most are the color themes
Here is an example:
&#60;?php
$os = array(&#34;Mac&#34;, &#34;NT&#34;, &#34;Irix&#34;, &#34;Linux&#34;);
if (in_array(&#34;Irix&#34;, $os)) {
    echo &#34;Got Irix&#34;;
}
if (in_array(&#34;mac&#34;, $os)) {
    echo &#34;Got mac&#34;;
}
?&#62;

Download at wordpress.com:
http://wordpress.org/extend/plugins/syntaxhighlighter/
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F15%2Frecommended-syntax-highlighter-wordpress-plugin%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fitlivewire.com%2Fdevblog%2F2009%2F12%2F15%2Frecommended-syntax-highlighter-wordpress-plugin%2F" height="61" width="51" /></a></div><p><strong>syntaxhighlighter by <a href="http://alexgorbatchev.com/">Alex Gorbatchev</a>.</strong><br />
clean<br />
simple<br />
and easy to use,<br />
install it then you&#8217;re of to go<br />
what i like the most are the color themes</p>
<p>Here is an example:</p>
<pre class="brush: php;">&lt;?php
$os = array(&quot;Mac&quot;, &quot;NT&quot;, &quot;Irix&quot;, &quot;Linux&quot;);
if (in_array(&quot;Irix&quot;, $os)) {
    echo &quot;Got Irix&quot;;
}
if (in_array(&quot;mac&quot;, $os)) {
    echo &quot;Got mac&quot;;
}
?&gt;
</pre>
<p>Download at wordpress.com:<strong><br />
<a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">http://wordpress.org/extend/plugins/syntaxhighlighter/</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://itlivewire.com/devblog/2009/12/15/recommended-syntax-highlighter-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
