<rss version="0.92"><channel><title>Tangible</title>
<link>http://tangible.ca/</link>
<description>Life &amp; Tech</description>
<item><title>No hierarchical test suites in Selenium IDE. [1]</title>
<description>	&lt;p&gt;I’m writing a bunch of test suites using &lt;a href=&quot;http://seleniumhq.org/&quot;&gt;Selenium IDE&lt;/a&gt; right now, and while attempting to make some nice, modular test suites with reusable chunks of tests, I kept running into this error when trying to run the test suite in the IDE:&lt;/p&gt;
	&lt;p&gt;&lt;strong&gt;Error loading test case – no command found&lt;/strong&gt;&lt;/p&gt;
	&lt;p&gt;I was puzzled.  I poked around the documentation a bit and saw responses that said to make sure to open the test suite with the “Open Test Suite” command, which is what I was already doing.&lt;/p&gt;
	&lt;p&gt;What I didn’t see mentioned anywhere was that &lt;em&gt;test suites can not be hierarchical&lt;/em&gt;.&lt;/p&gt;
	&lt;p&gt;I had split up my constants into a few different files, based on what those constants were, and wanted to write one test suite to import all of them in the correct order.  I was then trying to call that test suite from within another test suite when I got the error.&lt;/p&gt;

 </description>
<link>http://tangible.ca/articles/48/no-hierarchical-test-suites-in-selenium-ide</link></item>
<item><title>Linux Launchy has arrived! [5]</title>
<description>	&lt;p&gt;One of the few things that’s really been holding me back from switching my home desktop machine from Vista to some flavor of Linux was that &lt;a href=&quot;http://www.launchy.net/&quot;&gt;Launchy,&lt;/a&gt; a program I use all the time, was only available on Windows.&lt;/p&gt;
	&lt;p&gt;But no more!  A Linux version of Launchy has been released.&lt;/p&gt;
	&lt;p&gt;I’m going to get it set up on my EeePC first and then make the switch to Linux on my desktop machine.&lt;/p&gt;
	&lt;p&gt;Get &lt;a href=&quot;http://launchy.net&quot;&gt;Launchy&lt;/a&gt;&lt;/p&gt;

 </description>
<link>http://tangible.ca/articles/47/linux-launchy-has-arrived</link></item>
<item><title>Goosh! [5]</title>
<description>	&lt;p&gt;If you’re a command line junkie and haven’t visited &lt;a href=&quot;http://goosh.org&quot;&gt;Goosh&lt;/a&gt;, you’re missing out.&lt;/p&gt;

 </description>
<link>http://tangible.ca/articles/46/goosh</link></item>
<item><title>Firefox 3 - Quick Impressions [3]</title>
<description>	&lt;ul&gt;
		&lt;li&gt;It was a little slow to load, but page load time seems faster.&lt;/li&gt;
		&lt;li&gt;I switched to the small icon set.  The big forward/back buttons were way too big for my tastes.&lt;/li&gt;
		&lt;li&gt;The page text feels crisper.&lt;/li&gt;
		&lt;li&gt;Lots of my favorite extensions, including Firebug, haven’t been updated to work with FF3 yet, which makes me a sad panda.&lt;/li&gt;
		&lt;li&gt;Love, love, love the new “remember this password” and bookmarking UIs.&lt;/li&gt;
		&lt;li&gt;I think I like the Awesome bar…but it’s just so…so…different.  It’ll take some time to really be sure.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;Haven’t got Firefox 3 yet?  The servers have re-grouped after the massive traffic attack from this morning at release time, so go &lt;a href=&quot;http://getfirefox.com&quot;&gt;get Firefox 3&lt;/a&gt; now!&lt;/p&gt;

 </description>
<link>http://tangible.ca/articles/45/firefox-3-quick-impressions</link></item>
<item><title>Snippet: jQuery Linkifier [2]</title>
<description>	&lt;p&gt;Here’s a very basic jQuery linkification snippet that I put together recently.&lt;br /&gt;
&lt;pre&gt;&lt;br /&gt;
$(document).ready(function() {
        var linkable_content = $(&#039;div#linkable&#039;).html().replace(/(https?:\/\/[^ ;|\\*&#039;&quot;!,()&lt;&gt;]+\/?)/g,&#039;&lt;a href=&quot;$1&quot;&gt;$1&lt;/a&gt;&#039;);
        $(&#039;div#linkable&#039;).html(linkable_content);
    });&lt;br /&gt;
&lt;/pre&gt;&lt;/p&gt;
	&lt;p&gt;Now, this can’t be used in all circumstances.  It doesn’t check to make sure that you’re not trying to make a link out of the href in a pre-existing link, so it should only really be used when you’re sure that it’s just plain text that you’ll be working with.&lt;/p&gt;
	&lt;p&gt;I could have done this server-side, but using jQuery to linkify the URLs prevents search engine bots from following the links, which got around the problem I had of wanting some links followed and others ignored.&lt;/p&gt;
	&lt;p&gt;Updating this snippet to work with a class (.linkable) instead of an id (#linkable), and to include ftp:// URLs is left as an exercise for the reader.  ;)&lt;/p&gt;

 </description>
<link>http://tangible.ca/articles/44/snippet-jquery-linkifier</link></item></channel></rss>