<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>the Idea Shower &#187; What I&#8217;ve Learned</title>
	<link>http://www.ideashower.com</link>
	<description>A launchpad for new ideas for the web</description>
	<lastBuildDate>Tue, 19 Aug 2008 14:55:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Find the Files/Folders Taking Up the Most Space in Unix</title>
		<description>If you're logged into your server and trying to pin down what folders are taking up the most space on your hard drive, there are simple commands to compile an organized list.

First, to see the disk space usage of your drives and partition, run:
df
This will output a list of all ...</description>
		<link>http://www.ideashower.com/learned/find-the-filesfolders-taking-up-the-most-space-in-unix/</link>
			</item>
	<item>
		<title>Quick Way to Help Optimize Mysql Databases</title>
		<description>The Analyse procedure built into MySql can give you a wealth of information about your database tables, making it easy to find tables that can be tightened up.

If you query:
SELECT * FROM table_name PROCEDURE ANALYSE()
You'll get a result back with the minimum/maximum value, minimum/maximum length, number of empty or zero ...</description>
		<link>http://www.ideashower.com/learned/quick-way-to-help-optimize-mysql-databases/</link>
			</item>
	<item>
		<title>Layer XUL Elements/Images/Backgrounds in Firefox 3 Extensions Using Stack</title>
		<description>

While working on the Read It Later Firefox Extension, I wanted a way to layer multiple background images on a toolbar button so I could create a nice looking notification indicator like on the iPhone. (Note I opt-ed later to use a simpler look, but this method might still be ...</description>
		<link>http://www.ideashower.com/learned/layer-xul-elementsimagesbackgrounds-in-firefox-3-extensions-using-stack/</link>
			</item>
	<item>
		<title>Replace Standard Menupop in XUL</title>
		<description>I came across a time I needed to open a different element then a standard popup menu when clicking the dropdown selector on a toolbar button.  I wanted to open a panel instead.  To open a different element and hide the popup you can do something similar to ...</description>
		<link>http://www.ideashower.com/learned/replace-standard-menupop-in-xul/</link>
			</item>
	<item>
		<title>How To Disable &#8216;will not be installed because it does not provide secure updates&#8217; Warning in Firefox 3</title>
		<description>By default, Firefox 3 prevents users from installing any extensions that do not offer a secure connection for automatic updates.  This prevents users from being victims of hijacked update URLs.

But for developers or people installing extensions they know they can trust, it is a pain.

Luckily it is easily disabled by:

	Enter ...</description>
		<link>http://www.ideashower.com/learned/how-to-disable-will-not-be-installed-because-it-does-not-provide-secure-updates-warning-in-firefox-3/</link>
			</item>
	<item>
		<title>Flash Sees Text Inside &#60;b&#62; Tag as Seperate Font and Must Be Embedded</title>
		<description>In flash, if text inside html tags like &#60;b&#62; or &#60;i&#62; is not appearing in your dynamic textfields, you need to embed the stylized font.  Flash/Actionscript sees the text inside as a seperate font and therefore it also needs to be embedded.

For example, if you have a dynamic textfield ...</description>
		<link>http://www.ideashower.com/learned/flash-sees-text-inside-tag-as-seperate-font-and-must-be-embedded/</link>
			</item>
	<item>
		<title>When Dynamically Generating CSV, Don&#8217;t Forget the Quotes</title>
		<description>I was generating CSV files with PHP so that a client could easily export their mailing list from the database when I hit a snag with loading the generated files on a Mac.

I received the error message:

"SYLK: file format is not valid." when opening the file in Excel on OS ...</description>
		<link>http://www.ideashower.com/learned/when-dynamically-generating-csv-dont-forget-the-quotes/</link>
			</item>
	<item>
		<title>Get Rid of Those Dotted Lines Around Links in Firefox</title>
		<description>I just always assumed that these were a fact of life with Firefox.

They are meant to give an idea to the user where their focus is if they are using the keyboard to get around the page.  But when you use text-indent to do image swaps for navigation elements ...</description>
		<link>http://www.ideashower.com/learned/get-rid-of-those-dotted-lines-around-links-in-firefox/</link>
			</item>
	<item>
		<title>Cleaner Print Command in PHP</title>
		<description>Stumbled upon this by accident and I haven't been able to find anything in the PHP documentation because you can't search for non-alpha characters, but this find has cleaned up my code a ton.
&#60;?php print 'Hello World'; ?&#62;
Works the same as:
&#60;?= 'Hello World' ?&#62;
I'm using PHP 5, so I don't ...</description>
		<link>http://www.ideashower.com/learned/cleaner-print-command-in-php/</link>
			</item>
	<item>
		<title>Images in RSS Feeds Should Have an Absolute URL</title>
		<description>If you have images in your blog posts.  When you enter them in, be sure to use an absolute URL or they may not show up correctly in RSS feed readers.

So instead of a relative URL like:

/images/myimage.jpg

Use an absolute URL like:

http://www.ideashower.com/images/myimage.jpg

Found out the hard way when I realized my ...</description>
		<link>http://www.ideashower.com/learned/images-in-rss-feeds-should-have-absolute-url/</link>
			</item>
</channel>
</rss>
