<?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>Creative-Le Studios &#187; coding</title>
	<atom:link href="http://creative-le.com/tag/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://creative-le.com</link>
	<description>Inspiration, Resources, and Experience of a Web Designer</description>
	<lastBuildDate>Thu, 29 Jul 2010 16:00:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress in its own Directory</title>
		<link>http://creative-le.com/coding-snippets/wordpress-in-its-own-directory/</link>
		<comments>http://creative-le.com/coding-snippets/wordpress-in-its-own-directory/#comments</comments>
		<pubDate>Thu, 13 May 2010 20:14:48 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Coding Snippets]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://creative-le.com/?p=1343</guid>
		<description><![CDATA[So as times go by, and I began adding more domains and subdomains to my hosting, I&#8217;ve come to the conclusion that it was getting crowded.  I deleted over half of my subdomains that I wasn&#8217;t using since they were used mainly for client use, and my root folder was getting messy.  Naturally [...]]]></description>
			<content:encoded><![CDATA[<p>So as times go by, and I began adding more domains and subdomains to my hosting, I&#8217;ve come to the conclusion that it was getting crowded.  I deleted over half of my subdomains that I wasn&#8217;t using since they were used mainly for client use, and my root folder was getting messy.  Naturally I didn&#8217;t care about that until the last 2 hours when I suddenly got irked by it, so I researched on how to move <strong>wordpress to it&#8217;s own directory</strong>, and I&#8217;ll give you a review of the process <strong>step by step</strong> instead of you having to read through some mess.</p>
<p><span id="more-1343"></span></p>
<h2>Step 1 &#8211; Making your folder</h2>
<p>The first thing you want to start with is to make the <u>directory folder</u> that you want your wordpress files to go into.  Some people call it <strong>blog</strong>, <strong>site</strong>, <strong>wordpress</strong>, or <strong>for security reasons</strong>, give it a name that has nothing to do with your site.  The reason for that is because all wordpress admins are usually accessible by going to &#8220;<strong>/wp-admin</strong>&#8221; address of your site.  To further protect your site and blog, <strong>why not give those hackers a hard time finding where you stored your files</strong>?</p>
<h2>Step 2 &#8211; Go to your Wordpress Admin Settings</h2>
<p>The next thing is to tell wordpress where you&#8217;re going to move it.  So access your admin just like normal, and go to <strong>Settings > General</strong> and do the following.</p>
<p><img src="http://creative-le.com/admin/wp-content/uploads/2010/05/step2.jpg" alt="" title="step2" width="660" height="350" class="aligncenter size-full wp-image-1349" /></p>
<p><strong>Wordpress address (URL)</strong> &#8211; The URL of the folder that you just made in <strong>Step 1</strong>.  So if you made a <strong>folder called blog</strong>, then you put in <strong>http://yourdomain.com/blog</strong>.</p>
<p><strong>Blog address (URL)</strong> &#8211; The URL of your site.  So if you want your Wordpress blog/site to show up when they go to <strong>http://yourdomain.com</strong>, then you put <strong>http://yourdomain.com</strong> in there.</p>
<p>Save changes, and you&#8217;ll get some <strong>ugly stuff</strong> going on.  <strong>Don&#8217;t worry about it, the settings are saved</strong>, and now that you told Wordpress that it&#8217;s located somewhere else, it&#8217;s trying to find the files in that place, but we haven&#8217;t moved it yet so that&#8217;s why you get the ugly stuff.</p>
<h2>Step 3 &#8211; Moving the Wordpress Files</h2>
<p>Now simply move all Wordpress related files into that new folder.  The files you will be moving are listed below:</p>
<ul>
<li>wp-admin</li>
<li>wp-includes</li>
<li>wp-content</li>
<li>All files with <strong>wp-</strong> in front of the file name such as <strong>wp-config.php</strong>, <strong>wp-feed.php</strong>, <strong>wp-rss.php</strong>, etc&#8230;</li>
</ul>
<p>So basically all Wordpress files except for <strong>index.php</strong> and <strong>.htaccess</strong> (if you have one).  Leave those behind in the root directory.</p>
<h2>Step 4 &#8211; Editing index.php to redirect to the right place</h2>
<p>If you checked out your site, you&#8217;ll probably see an unstylized form of your blog, so the next thing to do is to tell that <strong>index.php</strong> that you left in the root where your Wordpress files are located.</p>
<p>Go to your <u>root directory</u> and <strong>open/edit index.php</strong> with Notepad or any text editor.  You&#8217;ll notice the following line:</p>
<p><code>require('./wp-blog-header.php');</code></p>
<p>Now you want to edit that to reflect the new place you put that Wordpress file, so just simply add the folder you made in front like so:</p>
<p><code>require('./blog/wp-blog-header.php');</code></p>
<p>And save that to your FTP, transfer it, or whatever you do to normally upload files to your hosting, and you should be good to go.</p>
<h2>Problems with doing this Move</h2>
<p>So if you&#8217;re like me, and just did this thinking everything was fine with your old posts&#8230;.you got a lot heading for you.  Only do this if <strong>you&#8217;re content with the following</strong>:</p>
<p><strong>Leaving all the image uploads and attachments in the root</strong><br />
or<br />
<strong>Going through all your posts and linking them to the right place.</strong></p>
<p>So I ended up doing the latter, and it was a pain to go through all my images to add an extra directory to all my links.  If any of you guys know a better way to do that, then comment or leave a link to a tutorial or article about it, since that would be a lifesaver in the future.</p>
<p>Anyway, just showing my little experience with moving it to another directory and the problems that existed.  Just follow the steps above and everything will go smooth.</p>
]]></content:encoded>
			<wfw:commentRss>http://creative-le.com/coding-snippets/wordpress-in-its-own-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Web Design Tools to Start With</title>
		<link>http://creative-le.com/resources/top-10-web-design-tools-to-start-with/</link>
		<comments>http://creative-le.com/resources/top-10-web-design-tools-to-start-with/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 21:20:38 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[designers]]></category>
		<category><![CDATA[designing]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://creative-le.com/?p=279</guid>
		<description><![CDATA[Finally decided web design and development is the path you want to take?  Now you may ask yourself, where do I start?  Based on my experience, I will give you a list of tools that I use for all of my works.  In addition, this list has alternatives for those that can afford the price [...]]]></description>
			<content:encoded><![CDATA[<p>Finally decided <a href="http://creative-le.com/case-studies">web design and development</a> is the path you want to take?  Now you may ask yourself, <strong>where do I start</strong>?  Based on my experience, I will give you a list of tools that I use for all of my works.  In addition, this list has alternatives for those that can <strong>afford the price or for those that need something quick and free</strong>.</p>
<p><span id="more-279"></span></p>
<p>So you already picked web design and development as something you want to do in the future, or maybe you just want to pick a hobby to pass your time away.  Either way, there&#8217;s always a few tools or resources that everyone needs to complete the job.  And in most cases it would be the same tools or just different versions of the tools that do the same thing.  When starting web design, the process ultimately comes down to 5 basic steps.</p>
<p><strong>1.  Designing the Template<br />
2.  Slicing the Template<br />
3.  Coding the Template<br />
4.  Filling the Content<br />
5.  Final Clean-up</strong></p>
<p>I will eventually go over those steps in future <a href="http://creative-le.com/case-studies">case studies</a> and <a href="http://creative-le.com/tutorials">tutorials</a>.</p>
<p>For now, we should concentrate on the tools that help us with those steps, and without further ado, here is the list of <a href="http://creative-le.com/resources/top-10-web-design-tools-to-start-with">web design tools you should have in your arsenal</a>.  If you have any other recommendations, feel free to comment below and share them.</p>
<h1>Designing the Template</h1>
<p>For designing a template, you need a graphics editing program.  A program that can make gradients, boxes, shapes, etc&#8230;  Here are the list of tools that I recommend.</p>
<h2>1.  <a href="http://www.adobe.com/" target="_blank">Adobe Photoshop</a></h2>
<p><a href="http://adobe.com" target="_blank"><img class="aligncenter size-full wp-image-301" title="Adobe Photoshop - Web Design Tools" src="http://creative-le.com/admin/wp-content/uploads/2010/01/adobephotoshop.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>Probably the most popular image editing program would be <strong>Adobe&#8217;s Photoshop</strong> line.  The current version is Photoshop CS4, and may I add that it is quite expensive.  However, the saying goes, you get what you paid for, and certainly after dishing out the money for a license gives you one of the world&#8217;s greatest editing program (sounds very exaggerated, but really, it&#8217;s that good).  Photoshop is great not only for web design but for other fields and careers such as the art industry, photography, graphic design, print design, and pretty much anything that deals with pictures.</p>
<h2>2. <a href="http://www.gimp.org/" target="_blank"> GIMP</a></h2>
<p><a href="http://gimp.org" target="_blank"><img class="aligncenter size-full wp-image-302" title="GIMP - Web Design Tools for Beginning Designers" src="http://creative-le.com/admin/wp-content/uploads/2010/01/gimp.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>So what if you don&#8217;t have Photoshop or the budget to afford it?  GIMP is probably your next best bet.  It has layers like photoshop, and a few other features.  When I first tried GIMP when I was looking for other options since I couldn&#8217;t get my hands on Adobe Photoshop, I first thought the interface was really confusing (compared to Photoshop).  However, lo and behold, someone has made a plug-in for GIMP that makes GIMP&#8217;s interface just like Photoshop which is very useful for those that may have to downgrade from Photoshop.</p>
<h2>3.  Need more options?</h2>
<p>I recently stumbled over a post that I thought may be more helpful for others, and of course, I&#8217;m not into the whole copy and pasting other people&#8217;s hard written blog posts, so here are <a href="http://speckyboy.com/2009/04/06/19-amazing-free-graphic-and-image-editors-for-designers-and-photographers/" target="_blank">19 more free image editors</a> that you may like.  Visit the site and see if there&#8217;s anything in there that may help you.  There&#8217;s also more programs in that list that go beyond the <a href="top-10-web-design-tools-to-start-with" target="_blank">tools needed for web design</a>.</p>
<p>Also a reminder, you can slice your template with your graphic editor as well.  No need to get a separate program for that.</p>
<h1>Coding the Template</h1>
<p>After you have your template designed whether it be a simple portfolio site or a complicated e-commerce site, it&#8217;s now time to code it.  If you just want the most basic thing on the earth to code, then your computer already has it.  Notepad.  Since coding is just a language, all you need is a text editing program and you&#8217;re good to go.  I would refrain from using editors that automatically format like Microsoft Word since they tend to add a lot of weird formatting that may conflict with your coding.  Notepad, Wordpad, things like that is all you need.  However, what if you would like some help with your programming or perhaps a more visual look to your code?</p>
<h2>1.  <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Notepad++</a></h2>
<p><a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank"><img class="aligncenter size-full wp-image-303" title="Notepad++ - Web Design Tools for Beginning Designers" src="http://creative-le.com/admin/wp-content/uploads/2010/01/notepad.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>Notepad++ is a great editor for coding.  It supports multiple languages and highlights certain syntax code words so it is easier to spot a mistake if you make one.  It also has tabbing so you can open multiple files, and one of the good features I like about it is when you open it, it opens the last couple of files that you worked with on your last session.  Very handy when you accidentally close it, or figuring out the next day on what you have to work on next.  There is A LOT of features on <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_self">Notepad++</a> that I don&#8217;t even use, but perhaps you will find a use for them sometime, or simply forget about them like me.</p>
<h2>2. <a href="http://www.scintilla.org/SciTE.html" target="_self">Scite</a></h2>
<p><a href="http://www.scintilla.org/SciTE.html" target="_blank"><img class="aligncenter size-full wp-image-304" title="Scite - Web Design Tools for Beginning Designers" src="http://creative-le.com/admin/wp-content/uploads/2010/01/scite.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>Scite is another text editor that I use a lot.  I interchange with either programs.  Honestly, there&#8217;s no difference except Scite doesn&#8217;t automatically open files in new tabs and it doesn&#8217;t save your last known session.  However, it&#8217;s a lightweight program, that&#8217;s really nice to have.</p>
<h2>3.  <a href="http://www.panic.com/coda/" target="_self">Panic Coda</a></h2>
<p><a href="http://www.panic.com/coda/" target="_blank"><img class="aligncenter size-full wp-image-305" title="Panic Coda - Web Design Tools for Beginning Designers" src="http://creative-le.com/admin/wp-content/uploads/2010/01/panic.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>Since I&#8217;m also a Mac user, I can&#8217;t forget to give this program some credit.  Panic Coda is probably one of the greatest code editors for the Mac right now.  It is costly, <strong>starting at $99</strong> but the <em>price is worth it in my personal opinion</em>.  Although there&#8217;s a lot of alternatives, this is probably the most user friendly.  You can connect to your files with your FTP information, upload, save files instantly, edit your files there, and even preview them.  Very handy.</p>
<h2>4.  <a href="http://creative-le.com/resources/firefox-plugins-you-should-have/" target="_blank">Mozilla Web Development Plug-ins and Add-Ons</a></h2>
<p><a href="http://creative-le.com/resources/firefox-plugins-you-should-have/" target="_blank"><img class="aligncenter size-full wp-image-306" title="Firefox - Web Design Tools for Beginning Designers" src="http://creative-le.com/admin/wp-content/uploads/2010/01/firefox.jpg" alt="Web Design Tools for Beginning Designers" width="660" height="250" /></a></p>
<p>Another method of editing code and seeing how it works would be using Mozilla Firefox&#8217;s plug-ins and add-ons.  I&#8217;ve already listed some really <a href="http://creative-le.com/resources/firefox-plugins-you-should-have/">good plugins for web developers</a> in a previous post.  Using those in combination with text editors to save to your ftp will result in faster coding.  It may be quite obvious, but I&#8217;ll make sure I show you guys my process in editing code in a video cast later.</p>
<h1>Other Useful Tools to have</h1>
<p>There&#8217;s a lot of extra tools you might need to finish your development or make your design much more efficient.  One important tool would be an FTP client.  There are tons of FTP clients, and I&#8217;ve tried many of them and pretty much they all do what is needed for the most part.  Some may have extra features or fancy interface, but all you need is a client that connects to your server or the client&#8217;s server, and you can upload and download from it.  My favorite FTP programs would have to be either <a href="http://fireftp.mozdev.org/" target="_self">FireFTP</a> which is an add-on for Firefox to use an FTP right in the browser or <a href="http://filezilla-project.org/" target="_blank">FileZilla</a> which is a standalone client and supports multiple connections.</p>
<p>Here&#8217;s a link as well to even <a href="http://pelfusion.com/tools/25-important-web-design-tools/">more web design tools</a> you may or may not use, but personally here is my final list of <a href="http://creative-le.com/resources/top-10-web-design-tools-to-start-with">web tools that are good for starters</a>.</p>
<p>Since I use both <strong>Mac and PC</strong>, I&#8217;ll put what I use for both.</p>
<p><strong>PC</strong></p>
<p>1. <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_self"> Notepad++</a> (Text Editor)<br />
2.  <a href="http://filezilla-project.org/" target="_blank">Filezilla (FTP)</a><br />
3.  <a href="http://creative-le.com/resources/firefox-plugins-you-should-have/">Mozilla Firefox Web Development Add-ons</a> &#8211; Includes Firebug, Web Developer, etc..<br />
4. <a href="http://adobe.com" target="_blank"> Adobe Creative Suite CS4</a> (Photoshop, Flash, and Illustrator)</p>
<p><strong>MAC</strong></p>
<p>1.  <a href="http://www.panic.com/coda/" target="_blank">Panic Coda</a> (Text Editor/FTP in one)<br />
2.  <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> (I use it sometimes for faster uploading)<br />
3.  <a href="http://creative-le.com/resources/firefox-plugins-you-should-have/">Mozilla Firefox Web Development Add-ons</a> &#8211; Includes Firebug, Web Developer, etc..<br />
4.  <a href="http://adobe.com" target="_blank">Adobe Creative Suite CS4</a> (Photoshop, Flash, and Illustrator)</p>
<p>Alright, so that&#8217;s definitely more than 10 and of course there may be better programs out there.  I wouldn&#8217;t waste my time with getting the advanced programs.  Wait until you&#8217;re comfortable with coding since the more you know, the more you&#8217;ll be able to use the extra features.   So don&#8217;t waste your time trying to research it all out.  I&#8217;ve already done it for you.  Come back for more case studies and <a href="http://creative-le.com">resources for beginning web designers</a>.</p>
<p><strong>P.S</strong> I&#8217;d like to thank those that contributed to my <a href="http://creative-le.com/news/help-out-creative-le-and-haiti/">comment and contribute for Haiti entry</a>.  A total of $5, but I&#8217;ll throw in another $5 to make it an even $10.  I&#8217;ll do the transaction tonight and will post an update to that post later tonight.  Thank you for your cooperation, and stay tuned for more ways to participate and even win some prizes.</p>
]]></content:encoded>
			<wfw:commentRss>http://creative-le.com/resources/top-10-web-design-tools-to-start-with/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Firefox Plugins You Should Have</title>
		<link>http://creative-le.com/resources/firefox-plugins-you-should-have/</link>
		<comments>http://creative-le.com/resources/firefox-plugins-you-should-have/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 20:13:57 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://creative-le.com/?p=235</guid>
		<description><![CDATA[Back in the days, developing and coding websites has always been a pain.  From hard coding websites and looking at them locally through our screens, it&#8217;s really tough for developers to see how their code works online and in an actual browser.
Microsoft did a decent job with it&#8217;s WYSIWYG Frontpage editor and Adobe did an [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the days, developing and coding websites has always been a pain.  From hard coding websites and looking at them locally through our screens, it&#8217;s really tough for developers to see how their code works online and in an actual browser.</p>
<p>Microsoft did a decent job with it&#8217;s <strong>WYSIWYG Frontpage editor</strong> and Adobe did an excellent job with its <strong>DreamWeaver</strong> products.  However&#8230;what if you didn&#8217;t like the abilities of Frontpage and couldn&#8217;t afford the Adobe suite?<br />
<span id="more-235"></span><br />
Technology these days have increased and thanks to other developers that think alike, we have come across essential plugins that were made for Mozilla Firefox to make it a browser that everyone should be using.  Check out these <a href="http://creative-le.com/resources/firefox-plugins-you-should-have">5 plugins that every web developer</a> should have in their disposal!</p>
<h2>1. <a href="http://getfirebug.com/" target="_blank">Firebug</a></h2>
<p><a href="http://getfirebug.com/" target="_blank">Firebug</a> is a really neat tool that helps find errors in your coding and also displays what each element is contributing to the website.  All of this live on the site.  No need to go through your files and open up a program like Dreamweaver.  Just head to the web address of your site and click the <a href="http://getfirebug.com/" target="_blank">Firebug</a> icon and you&#8217;ll be able to see your code and everything else working behind the design such as HTML/CSS/Javascript, etc&#8230;</p>
<p><a href="http://getfirebug.com/" target="_blank">Link to Firebug download.</a></p>
<h2>2.  <a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer 1.1.8</a></h2>
<p><a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer</a> is much like Firebug, but contains more tools that are helpful to developers.  Things like marking certain forms in the site, editing CSS, or even validating the html and css according to W3C standards can all be found in this toolbar.  And of course, all of this right here on the site that you&#8217;re working on.  Use it on other sites and see how they code their sites.  Learn how they tackled a certain part of the blog or site.  I&#8217;ll show you how to use some tools in a later review of this plugin.  Overall, <a href="http://chrispederick.com/work/web-developer/" target="_blank">Web Developer</a> has everything you can possibly need to see the changes live&#8230;of course, you&#8217;ll have to save the changes and then upload them.</p>
<p><a href="http://chrispederick.com/work/web-developer/" target="_blank">Link to Web Developer download.</a></p>
<h2>3.  <a href="http://www.kevinfreitas.net/extensions/" target="_blank">MeasureIt</a></h2>
<p><a href="http://www.kevinfreitas.net/extensions/" target="_blank">MeasureIt</a> is a neat program in that it creates a little icon on the bottom left of your browser.  This button allows you to make a ruler over a website to measure the dimensions.  This is very useful when you have a design that you have to code from and you want the measurements to be close to the design composition.  Use this ruler to compare to the ruler on your design and you can get close to the design as possible.  Every pixel counts!</p>
<p><a href="http://www.kevinfreitas.net/extensions/" target="_blank">Link to MeasureIt download.</a></p>
<h2>4.  <a href="http://www.colorzilla.com/firefox/" target="_blank">ColorZilla</a></h2>
<p><a href="http://www.colorzilla.com/firefox/" target="_blank">ColorZilla</a> is probably one of the best tools out there, and it&#8217;s very time saving.  Is there a color out there that you want to know, but there&#8217;s no clue on what it is?  Instead of wasting time to open up a program and screen-capping the website, you can just click on this tool and pick out the color from the site itself.  No more guessing, no more screen-capping, just take it from the site live.</p>
<p><a href="http://www.colorzilla.com/firefox/" target="_blank">Link to ColorZilla download.</a></p>
<h2>5.  <a href="http://clearcachebutton.mozdev.org/" target="_blank">Clear Cache</a></h2>
<p><a href="http://clearcachebutton.mozdev.org/" target="_blank">Clear Cache</a> is probably the least known thing that people think about in web design.  Basically cache is the process of your computer memorizing how a site looks the more you visit the site.  If I had a banner , and I changed a few coding&#8230;more often than not you won&#8217;t actually see the new changes..why is that?  It&#8217;s because your computer is saving the old image as a memory.  Therefore, even though the site loads fast&#8230;sometimes it may not be the actual site.  With <a href="http://clearcachebutton.mozdev.org/" target="_blank">Clear Cache</a>, you can simply press the button and your cache is cleared and refresh the page to see the new site changes.  I&#8217;ve had many frustrations when I changed a coding and never see the changes&#8230;well, now I know it&#8217;s because of the cache.</p>
<p><a href="http://clearcachebutton.mozdev.org/" target="_blank">Link to Clear Cache download.</a></p>
<p>Thank you for viewing this entry, and if there&#8217;s other tools out there that you personally like for Firefox, give a comment about it, and I&#8217;ll include it in my future list.  Subscribe to my <a href="http://feeds.feedburner.com/creativele">RSS</a>, follow me on <a href="http://twitter.com/creativele" target="_blank">twitter</a>, and visit often for more <a href="http://creative-le.com/resources">resources</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://creative-le.com/resources/firefox-plugins-you-should-have/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
