<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>splintor's blog</title>
	<atom:link href="http://splintor.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://splintor.wordpress.com</link>
	<description>My thoughts and stories about software, programming and geekery in general</description>
	<pubDate>Wed, 30 Jul 2008 05:21:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to write a ruby function that can accept either a string or a regular expression</title>
		<link>http://splintor.wordpress.com/2008/07/30/how-to-write-a-ruby-function-that-can-accept-either-a-string-or-a-regular-expression/</link>
		<comments>http://splintor.wordpress.com/2008/07/30/how-to-write-a-ruby-function-that-can-accept-either-a-string-or-a-regular-expression/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 04:44:25 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Watir]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/?p=82</guid>
		<description><![CDATA[While working on our unit test framework, I wanted to write a function that checks if a given Ext JS windoid is opened. The function should accept a title argument. This was easily implemented as:


	# title is a string with the exact windoid title
	def windoidDisplayed?(title)
		spans = $browser.spans
		t = $browser.length &#38;&#38; $browser.detect {&#124;i&#124; \
			i.class_name == &#039;x-window-header-text&#039; [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While working on our unit test framework, I wanted to write a function that checks if a given <a title="ExtJS Window class" href="http://extjs.com/deploy/dev/docs/?class=Ext.Window">Ext JS windoid</a> is opened. The function should accept a title argument. This was easily implemented as:</p>
<pre name="code" class="ruby">

	# title is a string with the exact windoid title
	def windoidDisplayed?(title)
		spans = $browser.spans
		t = $browser.length &amp;&amp; $browser.detect {|i| \
			i.class_name == &#039;x-window-header-text&#039; \
			&amp;&amp; title == i.text \
		}
		return t &amp;&amp; t.visible?
	end
</pre>
<p>I then realized that users might not have the full title of the window, and might only want to check for a windoid with a title that matches some regular expression. A simple and naive way to do it is</p>
<pre name="code" class="ruby">

	# title can be a string or a regular expression
	def windoidDisplayed?(title)
		spans = $browser.spans
		t = $browser.length &amp;&amp; $browser.detect {|i| \
			i.class_name == &#039;x-window-header-text&#039; \
				&amp;&amp; (title.kind_of?(String) \
					? (title == i.text) \
					: (title =~ i.text)) \
		}
		return t &amp;&amp; t.visible?
	end
</pre>
<p>However, I didn’t want to check in every loop iteration if the passed title argument is regular expression. Although performance is really a non-issue in our unit tests, it just seemed to be a cumbersome and ugly code. I thought of using the dynamic nature of ruby to add a method (e.g. &#8220;match?&#8221;) to both string and regular expression classes, so I can call it in a polymorphic way without having to detect the type of title:</p>
<pre name="code" class="ruby">

	class String
		def match?(x)
			return self == x
		end
	end

	class Regexp
		def match?(x)
			return self.match(x)
		end
	end

	# title can be a string or a regular expression
	def windoidDisplayed?(title)
		spans = $browser.spans
		t = $browser.length &amp;&amp; $browser.detect {|i| \
				i.class_name == &#039;x-window-header-text&#039; \
				&amp;&amp; title.match?(i.text) \
		}
	return t &amp;&amp; t.visible?
</pre>
<p>Before implementing it, I thought I’d check if a similar function already exists in Ruby&#8217;s Standard Library, and indeed, when I looked up the <a title="Programming Ruby - The Pragmatic Programmer's Guide" href="http://www.ruby-doc.org/docs/ProgrammingRuby">Ruby book</a> for functions that are in both String and Regexp classes, I run into &#8220;===&#8221; (the Case Equality operator), which is meant exactly for this kind of things. Unlike JavaScript, where the === operator is meant for <a title="The Curious Schemer - Really Understanding JavaScript’s Equality and Identity" href="http://rayfd.wordpress.com/2007/03/18/really-understanding-javascripts-equality-and-identity/">identity</a>, in Ruby, the === method is usually called in <a title="Programming Ruby - Case Expressions" href="http://www.ruby-doc.org/docs/ProgrammingRuby/language.html#caseexpressions">case expressions</a> to match the case target for each when clause. As said in the documentation, for the String class, <a title="Programming Ruby - String#=== method" href="http://www.ruby-doc.org/docs/ProgrammingRuby/ref_c_string.html#String._eq_eq_eq">=== method</a> tests for equality and is the same as ==, but for Regexp class, <a title="Programming Ruby - Regexp#=== method" href="http://www.ruby-doc.org/docs/ProgrammingRuby/ref_c_regexp.html#Regexp._eq_eq_eq">=== method</a> tests for matches, and is the same as =~. Exactly what I was looking for. So my little function can simply be implemented like:</p>
<pre name="code" class="ruby">

	# title can be a string or a regular expression
	def windoidDisplayed?(title)
		spans = $browser.spans
		t = $browser.length &amp;&amp; $browser.detect {|i| \
				i.class_name == &#039;x-window-header-text&#039; \
				&amp;&amp; title === i.text \
		}
		return t &amp;&amp; t.visible?
	end
</pre>
<p>BTW, while searching for that, I took a look at <a title="Watir - Web App Testing in Ruby" href="http://wtr.rubyforge.org/">Watir</a>&#8217;s sources, hoping to learn from the experts as I’m new to Ruby.<br />
I found that Watir source (<a href="https://svn.openqa.org/svn/watir/trunk/watir/watir.rb">watir.rb</a>, lines 50-70) does a similar trick to what I initially thought to do – define a new &#8220;matches&#8221; method (and not &#8220;match?&#8221; like the ruby convention that is also used in Watir in methods like &#8220;<a href="http://wtr.rubyforge.org/rdoc/classes/Watir/Element.html#M000322">exists?</a>&#8221; and &#8220;<a href="http://wtr.rubyforge.org/rdoc/classes/Watir/Element.html#M000300">visible?</a>&#8220;), and don’t use the === method.<br />
In addition, in several places in the code there are still explicit tests for String class, such as the verify_contains method in <a href="https://svn.openqa.org/svn/watir/trunk/watir/watir/input_elements.rb">input_elements.rb</a> and navigate_to_link_with_id and navigate_to_link_with_url methods in <a href="https://svn.openqa.org/svn/watir/trunk/watir/watir/watir_simple.rb">watir_simple.rb</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=82&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/07/30/how-to-write-a-ruby-function-that-can-accept-either-a-string-or-a-regular-expression/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Handling browser on test start and end</title>
		<link>http://splintor.wordpress.com/2008/07/23/handling-browser-on-test-start-and-end/</link>
		<comments>http://splintor.wordpress.com/2008/07/23/handling-browser-on-test-start-and-end/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 05:34:10 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[Unit Tests]]></category>

		<category><![CDATA[Watir]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/07/23/handling-browser-on-test-start-and-end/</guid>
		<description><![CDATA[When I started building a unit tests framework for our product, I decided that I want the browser to remain open through all tests, and only be closed at the end. This is because I don&#8217;t want a developer running these tests on his machine to be disturbed with many browser windows opened and closed.
However, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I started building a unit tests framework for our product, I decided that I want the browser to remain open through all tests, and only be closed at the end. This is because I don&#8217;t want a developer running these tests on his machine to be disturbed with many browser windows opened and closed.</p>
<p>However, as I quickly <a title="Is there a way to wrap setup and teardown methods around an entire suite?" href="http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/4d0514db603958b3">found out</a>, there is no easy way to run code at the beginning and end of a test suite. This seems to be intentional, as each test case should be separate and independent of other tests in the suite. The setup and teardown methods are run for each test case.</p>
<p>One simple solution was to drop it and simply start the browser on every test case and close it on end, but when I played with it a little more, I reached an even better solution. I’m starting the browser at the beginning of the test and assign it to a global $browser. Then, if the test fail (which can be detected by @test_passed), we set $browser to nil, so the browser window remains, and subsequent tests create and use a new browser window. If the test succeed, the browser window is reused through $browser. At the end of the test, we close the browser if $browser is not nil. With this constellation, after the test suite finishes running, we have a browser open for each failed test, so we can inspect what went wrong and how the application looks at the time of the fail.</p>
<p>Here is the code I used to implement it:</p>
<pre name="code" class="ruby">

# cleanup on close
END { # close browser at completion of the tests
	$browser.close if $browser &amp;&amp; $browser.exists? &amp;&amp; !ENV[&#039;DONT_CLOSE_BROWSER_AT_END&#039;]
	Watir::IE.quit
} 

module MyTestSuite &lt; Watir::TestCase
	#############################################################
	# setup method:
	# This setup function is called by the UnitTest framework before any test is run.
	# The function initialize the global $browser object if needed
	#############################################################
	def setup
		return if $browser
		$browser = Watir::IE.new
		$browser.speed = :fast
		$browser.add_checker(PageCheckers::NAVIGATION_CHECKER)
		$browser.maximize unless ENV[&#039;DO_NOT_MAXIMIZE_BROWSER&#039;]
	end

	#############################################################
	# teardown method:
	# This teardown function is called by the UnitTest framework after any test is run.
	# The function reset the global $browser object in case an error
	# occurred (unless NO_NEW_BROWSER_ON_ERROR), so
	# a new browser window will be created in case an error occurred.
	#############################################################
	def teardown
		$browser = nil unless @test_passed || ENV[&#039;NO_NEW_BROWSER_ON_ERROR&#039;]
	end 

	# ... test cases methods goes here
end
</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/70/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/70/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=70&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/07/23/handling-browser-on-test-start-and-end/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Watir - first impressions</title>
		<link>http://splintor.wordpress.com/2008/06/24/watir-first-impressions/</link>
		<comments>http://splintor.wordpress.com/2008/06/24/watir-first-impressions/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 19:58:02 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Ruby]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[Watir]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/06/24/watir-first-impressions/</guid>
		<description><![CDATA[Our product doesn’t have unit tests. There, I said it. For a long time I’ve been looking for a way to build unit tests. There are three factors that prevented me to do so until now:

It seems not to be really needed. When testing is needed, developers go over an installation and check that everything [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Our product doesn’t have unit tests. There, I said it. For a long time I’ve been looking for a way to build unit tests. There are three factors that prevented me to do so until now:</p>
<ol>
<li>It seems not to be really needed. When testing is needed, developers go over an installation and check that everything is working. Building a suite of tests to test all possible scenarios seems to be a huge task that doesn’t worth the effort.</li>
<li>This is a web application that is constantly changing, so it seems hard to write robust test that will not break on every change. In addition, it uses a session ID that is passed in the URL, so URLs are different on every run.</li>
<li>The data keeps changing. Our data is on the mainframe, and it is owned and used by other teams so we can’t expect to have the same data all the time, which makes it problematic to build solid tests.</li>
</ol>
<p>In the past I tried using <a title="Selenium Overview at Open QA" href="http://selenium.openqa.org/">Selenium</a>, but never really fell in love with it, and never got the time to deeply look into it and test it.<br />
Recently I saw <a title="Cool things in Ruby by Ofer Prat" href="http://bugfeature.blogspot.com/2008/05/cool-things-in-ruby.html">Ofer’s post</a> about Watir and decided to take a better look at it and see if we can use it. Since I’m fluent at Javascript, and had a recent experience with Perl working on an installation automation project for a few months, catching Ruby was quite easy. As Ofer observed, Ruby seems to be a really nice language, but I have some problems adapting to Watir. For example, it took me sometime to understand how Javascript code can be invoked from Watir, but now I know it is done using:</p>
<pre name="code" class="ruby">
$browser.ie.Document.parentWindow.execScript(js_expression)
</pre>
<p>At first, since I come from normal OO languages, I thought of creating a base <strong>ProductUnitTest</strong> class that derives from <strong>Watir::TestCase</strong>, and then, for each version or fix pack, we will create a <strong>VersionXXUnitTest</strong> class that will derive from <strong>ProductUnitTest</strong>. However, this doesn’t work well, since <strong>Test::Unit</strong> looks for all the included classes that derived from <strong>Test::Unit::TestCase</strong>, and since we would have to require <strong>ProductUnitTest</strong> in order to derived from it, <strong>Test::Unit</strong> will see two such class and will run the tests in <strong>ProductUnitTest</strong> twice – once for <strong>ProductUnitTest</strong>, and once for the derived <strong>VersionXXUnitTest</strong>.</p>
<p>Checking further, I came to the idea I have to use Ruby’s <strong>mixins</strong>, which is somewhat similar to Java’s interfaces, but more comfortable and easy to use, since Ruby is a dynamic language. So now, I define all basic tests and helper methods (like setup and teardown – see <a title="Handling browser on test start and end" href="http://splintor.wordpress.com/2008/07/23/handling-browser-on-test-start-and-end/">next post</a> for more details on this) in a module named <strong>ProductUnitTest</strong>, and then, for each version, I define a <strong>VersionXXUnitTest</strong> class that derive from <strong>Watir::TestCase</strong>, and then includes <strong>ProductUnitTest</strong> so all the tests (and helper methods) are there, but only invoked once, for <strong>VersionXXUnitTest</strong>.</p>
<p>To conclude, Watir seems like a very nice framework to test our web application, and this will probably solve problem #2 above. I plan to broaden its use when we start building our next fix pack, where we have specific things we need to fix, and whenever we fix something, we should write a unit test for it right away. This is easier then writing and maintaining unit tests for an entirely new version that keeps changing. I hope that once our developers get used to it and see how it can help integration and acceptance tests they will see its value and overcome problem #1 above. I still need to find a good way to bypass problem #3.</p>
<p>I already showed what I did to Amit from QA, and she really liked it and said it might be useful for them as well.</p>
<p>P.S.<br />
Another nice benefit of learning Ruby is that now I better understand some of the design made by the <a title="Prototype JavaScript Framework" href="http://www.prototypejs.org/">Prototype</a> team members, which were clearly thinking in Ruby, as they are using Ruby on Rails.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/63/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/63/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=63&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/06/24/watir-first-impressions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Macro to add a hyperlink to a mail message</title>
		<link>http://splintor.wordpress.com/2008/02/13/macro-to-add-a-hyperlink-to-a-mail-message/</link>
		<comments>http://splintor.wordpress.com/2008/02/13/macro-to-add-a-hyperlink-to-a-mail-message/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:19:42 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Office]]></category>

		<category><![CDATA[Outlook]]></category>

		<category><![CDATA[Tips]]></category>

		<category><![CDATA[VBA]]></category>

		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/02/13/macro-to-add-a-hyperlink-to-a-mail-message/</guid>
		<description><![CDATA[Today I wrote a mail to someone and wanted to add several links. It always annoyed me that Office&#8217;s Add Hyperlink is so bloated it takes sometime to open, and even more time to switch back to it from another application, where all I wanted was to make the selected text link to the URL [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today I wrote a mail to someone and wanted to add several links. It always annoyed me that Office&#8217;s Add Hyperlink is so bloated it takes sometime to open, and even more time to switch back to it from another application, where all I wanted was to make the selected text link to the URL I had in my keyboard. So I set out to write a macro that did it.</p>
<p>Since Outlook has no macro recorder, I started searching the Outlook Object Browser and revealed that there is no method to add a hyperlink or to get the content of the clipboard. So I borrowed the &#8220;Getting clipboard content&#8221; functionality from a VBS script I have, and I turned to Word to record a macro that adds a hyperlink to the selected text. Once I had this Word macro, I found out I can use ActiveInspector.WordEditor to issue the Word macro I created.</p>
<p>The final macro result is this:</p>
<pre name="code" class="vb">
Public Sub AddLinkFromClipboard()
    If ActiveInspector.EditorType = olEditorText Then
        MsgBox &quot;Can&#039;t add links to textual mail&quot;
        Exit Sub
    End If
    Dim objHTM As Object
    Dim ClipboardData As String
    Dim doc As Object
    Dim sel As Object
    Set objHTM = CreateObject(&quot;htmlfile&quot;)
    ClipboardData = objHTM.ParentWindow.ClipboardData.GetData(&quot;text&quot;)
    Set doc = ActiveInspector.WordEditor
    Set sel = doc.Application.Selection
    doc.Hyperlinks.Add Anchor:=sel.Range, _
        Address:=ClipboardData, _
        SubAddress:=&quot;&quot;, _
        ScreenTip:=&quot;&quot;, _
        TextToDisplay:=sel.Text
End Sub
</pre>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/62/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/62/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=62&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/02/13/macro-to-add-a-hyperlink-to-a-mail-message/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Xobni feedback: Missing tooltips</title>
		<link>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-tooltips/</link>
		<comments>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-tooltips/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 21:25:52 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[UI]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Xobni]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-tooltips/</guid>
		<description><![CDATA[In various areas in the sidebar, when there is not enough space for a string, ellipsis is used, but when I hover over it with my mouse, I expect to see a tooltip showing me the entire string, so I don&#8217;t have to make room for it to see what the string is. This is [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In various areas in the sidebar, when there is not enough space for a string, ellipsis is used, but when I hover over it with my mouse, I expect to see a tooltip showing me the entire string, so I don&#8217;t have to make room for it to see what the string is. This is common UI pattern, which is missing in Xobni.</p>
<p>Sample for such problems can be see in panes titles (such as &#8220;People connected to&#8230;&#8221;, &#8220;Conversation with&#8230;&#8221;), messages subjects and some more.</p>
<p>Xobni makes excessive use of &#8220;what&#8217;s this&#8221; tooltips at the upper part of the sidebar, explaining each of the items, and also when the links for a person (&#8221;schedule time with&#8230;&#8221;, &#8220;e-mail&#8230;&#8221;) are truncated in a narrow sidebar, the tooltip shows their full text, but that&#8217;s less important. The count in the end of a pane title, or a message&#8217;s full subject is much more important, and for this, Xobni fail to show tooltips.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=61&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-tooltips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Xobni feedback: Limited contact information</title>
		<link>http://splintor.wordpress.com/2008/01/16/xobni-feedback-limited-contact-information/</link>
		<comments>http://splintor.wordpress.com/2008/01/16/xobni-feedback-limited-contact-information/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 19:58:32 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[E-mail]]></category>

		<category><![CDATA[Xobni]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/16/xobni-feedback-limited-contact-information/</guid>
		<description><![CDATA[Xobni will only let you store one phone number per person. But what if someone has a work number, home number and a cell phone, and you decide what to use based of his daily schedule and the time of the day?
It would be very convenient to be able to assign several number to a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Xobni will only let you store one phone number per person. But what if someone has a work number, home number and a cell phone, and you decide what to use based of his daily schedule and the time of the day?</p>
<p>It would be very convenient to be able to assign several number to a person, and then, when this person is displayed in the Xobni side bar, all his numbers would be displayed, and you could choose what to use.</p>
<p>Another problem with person contact is that when you edit it and add a number, you loose the information Xobni collected from e-mails, so if you added a picture for a person, or mistakenly set a phone number for him, you have no way to ask Xobni to use the person contact details it gathered from e-mails.</p>
<p>There should be an option to tell Xobni to revert back to use data from e-mails, and also there should be a way to edit this information or to add data like picture without affecting this information.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/60/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/60/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=60&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/16/xobni-feedback-limited-contact-information/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Xobni feedback: Missing right-click menus</title>
		<link>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-right-click-menus/</link>
		<comments>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-right-click-menus/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 19:49:46 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Outlook]]></category>

		<category><![CDATA[Xobni]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-right-click-menus/</guid>
		<description><![CDATA[Although they bragged about adding right-click menu to the sidebar, I still miss having all the options from the relevant Outlook menu when I right click a message, a contact or an attachment.
For example - 

If I see an attachment in the Xobni bottom panel, I&#8217;d like to be able to save it to a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Although they bragged about adding right-click menu to the sidebar, I still miss having all the options from the relevant Outlook menu when I right click a message, a contact or an attachment.</p>
<p>For example - </p>
<ul>
<li>If I see an attachment in the Xobni bottom panel, I&#8217;d like to be able to save it to a file.</li>
<li>If I see someone name in the people pane, I&#8217;d like to be able to open it&#8217;s related Outlook contact.</li>
<li>If I see a message I&#8217;d like to be able to move it to a different folder (and also to know what folder it is currently in, but this is something for a separate post&#8230;)</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=59&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/16/xobni-feedback-missing-right-click-menus/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Xobni feedback: Almost no options at all</title>
		<link>http://splintor.wordpress.com/2008/01/16/xobni-feedback-almost-no-options-at-all/</link>
		<comments>http://splintor.wordpress.com/2008/01/16/xobni-feedback-almost-no-options-at-all/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 19:41:45 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[X1]]></category>

		<category><![CDATA[Xobni]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/16/xobni-feedback-almost-no-options-at-all/</guid>
		<description><![CDATA[It looks like Xobni is following Google in many ways. The recent Gmail-like invitation is an obvious example. 
The problem is that they also follow Google line of &#8220;we know better than you how our software should behave, so we won&#8217;t let you configure anything&#8221; (I already ranted about it here and there).
So currently, Xobni [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It looks like Xobni is following Google in many ways. The recent Gmail-like invitation is an obvious example. </p>
<p>The problem is that they also follow Google line of &#8220;we know better than you how our software should behave, so we won&#8217;t let you configure anything&#8221; (I already ranted about it <a href="http://splintor.wordpress.com/2007/04/18/email-indexing-moving-back-to-x1/">here</a> and <a href="http://splintor.wordpress.com/2007/03/20/office-picture-manager-and-other-programs/">there</a>).</p>
<p>So currently, Xobni doesn&#8217;t let you control what PST or folders will be indexed, and what times index should not work as you want your Outlook to be more responsive, etc.</p>
<p>It also doesn&#8217;t show you the current index status, so you don&#8217;t know if it finished going over all your mail, and I&#8217;m still not fully convinced about it&#8217;s search capabilities, and when I want to find something in my e-mail for sure, I still turn to X1. X1 also enables me to have advanced search such as all the e-mails sent by me which have &#8220;Xobni&#8221; in their subject. This can many times come handy, where just searching for &#8220;Xobni&#8221; isn&#8217;t good enough, as it brings too many results.</p>
<p>Xobni can really use an Advanced Search option</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=58&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/16/xobni-feedback-almost-no-options-at-all/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Xobni feedback: Tooltips for hidden text</title>
		<link>http://splintor.wordpress.com/2008/01/15/xobni-feedback-tooltips-for-hidden-text/</link>
		<comments>http://splintor.wordpress.com/2008/01/15/xobni-feedback-tooltips-for-hidden-text/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 22:57:28 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Xobni]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/15/xobni-feedback-subject-tooltips/</guid>
		<description><![CDATA[Well, here is my first post in a series of Xobni feedbacks. They have no meaningful order - it&#8217;s just the way I found them and had the time to put them as a post.
The Xobni sidebar puts data in categories. These categories&#8217; titles can be partially hidden if the sidebar is too narrow. It [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well, here is my first post in a series of Xobni feedbacks. They have no meaningful order - it&#8217;s just the way I found them and had the time to put them as a post.</p>
<p>The Xobni sidebar puts data in categories. These categories&#8217; titles can be partially hidden if the sidebar is too narrow. It would be nice if hovering over the title would show the entire title text in tooltip like one would expect, e.g. like it is in Outlook folder tree or messages list. When a text is not fully displayed, hovering over it should show a tooltip.</p>
<p>This will enable me to easily see how many people Xobni sees as related to someone, without having to widen the Xobni sidebar to see the entire title of the &#8220;People Connected&#8221; section.</p>
<p>Currently, it seems tooltips are only used in Xobni to explain some fields in the person details area.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/57/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/57/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=57&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/15/xobni-feedback-tooltips-for-hidden-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New tools</title>
		<link>http://splintor.wordpress.com/2008/01/15/new-tools/</link>
		<comments>http://splintor.wordpress.com/2008/01/15/new-tools/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 22:18:23 +0000</pubDate>
		<dc:creator>splintor</dc:creator>
		
		<category><![CDATA[Extensions]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Fireshot]]></category>

		<category><![CDATA[Miranda]]></category>

		<category><![CDATA[Outlook]]></category>

		<category><![CDATA[Xobni]]></category>

		<category><![CDATA[del.icio.us]]></category>

		<category><![CDATA[meebo]]></category>

		<guid isPermaLink="false">http://splintor.wordpress.com/2008/01/15/new-tools/</guid>
		<description><![CDATA[I recently came by several new neat tools:
del.icio.us Bookmarks (Firefox extension)
Evgeny asked me if I know of a way to synchronize his browser’s hierarchal bookmarks with his Google tagged bookmarks. I recommended him switching to del.icio.us, knowing that such a popular site must have a synchronizing extension. A little search revealed that after Yahoo purchased [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently came by several new neat tools:</p>
<p><a href="http://del.icio.us/help/firefox/bookmarks/overview"><strong>del.icio.us Bookmarks</strong></a><strong> </strong>(Firefox extension)</p>
<p>Evgeny asked me if I know of a way to synchronize his browser’s hierarchal bookmarks with his Google tagged bookmarks. I recommended him switching to del.icio.us, knowing that such a popular site must have a synchronizing extension. A little search revealed that after Yahoo purchased del.icio.us, they wrote a extension to do exactly what I looked for, and it seems to work extremely well.</p>
<p>One of the main benefits of the extension to me is the option to bookmark an opened Firefox tab while offline, counting on the extension to later synchronize it to del.icio.us when I’m back online.</p>
<p>The only problem is that I have used many, many tags, and this translates to a very long Tags menu. Obviously, the guys at Yahoo thought about it, and added the Favorite Tags feature, but still, if I look for a tag not in my favorites list, it can be annoying. I really need to clean up my list of bookmarks, but that&#8217;s not related to the del.icio.us Bookmarks. It would be better, though, if they could put the list of tabs in multiple-columns menu, like the programs menu in Windows&#8217; Start menu, but I don&#8217;t know how easy it is to do it in a Firefox extension.</p>
<p><strong><a href="http://www.miranda-im.org/">Miranda IM</a></strong></p>
<p>When I first realized I use several IM clients, and could use one tool that will aggregate them all, I started using <a href="http://www.meebo.com/">Meebo</a>, especially as I was impressed with the Web and AJAX abilities they demonstrated. But then I realized I prefer a non-browser solution, which will not depend on my browser (which is an important working tool for me), and will show me tray notification on events. I picked <a href="http://pidgin.im/">Pidgin</a> which looked nice.</p>
<p>But recently  I realized I&#8217;m having too many problems with it. It didn&#8217;t do Hebrew spell checking, it often got stuck while writing messages, it didn&#8217;t display Hebrew properly with talking with my boss via MSN, and some more. I started looking again, and found Miranda. Miranda look very nice, and it seem to have a plugin for anything I could think I need. I especially liked the <a title="SMS (ICQ) Miranda plugin" href="http://addons.miranda-im.org/details.php?action=viewfile&amp;id=589">SMS plugin</a> which sends SMS via ICQ for free I so liked it, I recommended it to friends, and even installed it on my wife&#8217;s machine, so she can use it for sending SMS (thought she is still using Google Talk for chatting).</p>
<p>The only current problem is that Miranda doesn&#8217;t handle Hebrew spell checking well as well. <a title="a comment in Spell Checker plugin discussion thread" href="http://forums.miranda-im.org/showpost.php?p=144141&amp;postcount=542">I posted something about it</a>. I hope it will sometime be fixed.</p>
<p><strong><a href="http://www.xobni.com/">Xobni</a></strong></p>
<p>When I saw the <a title="Xobni introduction tour on YouTube" href="http://www.youtube.com/watch?v=CYwNhyvCmuo">Xobni video</a> I fell in love and signed up to their closed beta. I recently got an invitation to the beta and started using it. Surprisingly, It doesn’t slow down my Outlook and seems to work very well. I do have some complaints, but because it is too long, I&#8217;ll post them in <a title="My posts in the Xobni category" href="http://splintor.wordpress.com/category/xobni/">separate posts</a>.</p>
<p><strong><a href="http://screenshot-program.com/fireshot/">Fireshot</a></strong> (Firefox extension)</p>
<p>I don&#8217;t use <a href="http://www.nitobi.com/products/">Nitobi&#8217;s products</a>, but after reading <a title="Taming the Fisheye by Alexei White" href="http://blogs.nitobi.com/alexei/?p=37">Alex&#8217;s explanation</a> of how he built the FishEye widget, I subscribed to <a href="http://blogs.nitobi.com/alexei/">his blog</a> which sometimes have interesting ideas or links. He <a title="Fireshot for Firefox - post from Alexei @ Nitobi blog" href="http://blogs.nitobi.com/alexei/?p=154">recently posted</a> about the Fireshot Firefox extension for taking screenshots from the browser. There are many screen capturing programs, and my favorite is  <a title="MWSnap, screen capture utility" href="http://www.mirekw.com/winfreeware/mwsnap.html">MWSnap</a>, but his extension allows you to easily edit the captured image - crop and blur areas, add annotations etc. I even used it to open an image captured outside of the browser with MWSnap, by opening the image in Firefox and re-capturing it, just for the editing.</p>
<p>The only problem I&#8217;m currently having with it doesn&#8217;t have an Undo feature, which means that if you made a mistake in your editing of the captured image, you have to re-capture and start all over again.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/splintor.wordpress.com/56/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/splintor.wordpress.com/56/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/splintor.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/splintor.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/splintor.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/splintor.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/splintor.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/splintor.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/splintor.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/splintor.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/splintor.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/splintor.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=splintor.wordpress.com&blog=19863&post=56&subd=splintor&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://splintor.wordpress.com/2008/01/15/new-tools/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>