<?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>justaddwater.dk &#187; Software</title>
	<atom:link href="http://justaddwater.dk/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://justaddwater.dk</link>
	<description>Instant Usability &#38; Web Standards</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:51:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Remove smileys in messenger program (iChat for mac)</title>
		<link>http://justaddwater.dk/2009/08/13/remove-smileys-in-messenger-program-ichat-for-mac/</link>
		<comments>http://justaddwater.dk/2009/08/13/remove-smileys-in-messenger-program-ichat-for-mac/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 12:17:55 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=1106</guid>
		<description><![CDATA[It has long annoyed me that there is no intuitive, straightforward way to disable smileys in chat programs. Today I found that these two commands can do it for iChat for mac: $ cd /Applications/iChat.app/Contents/Resources/English.lproj/ $ mv SmileyTable.plist SmileyTable.plist.bak Restart iChat. (tip from MacOSXhints.com: Disable graphical smileys in iChat 3.0 but it works for me [...]]]></description>
			<content:encoded><![CDATA[<p>It has long annoyed me that there is no intuitive, straightforward way to disable smileys in chat programs.</p>
<p>Today I found that these two commands can do it for iChat for mac:</p>
<blockquote><p>$ cd /Applications/iChat.app/Contents/Resources/English.lproj/<br />
$ mv SmileyTable.plist SmileyTable.plist.bak</p></blockquote>
<p>Restart iChat. (tip from MacOSXhints.com: <a href="http://www.macosxhints.com/article.php?story=20050522145205539">Disable graphical smileys in iChat 3.0 </a> but it works for me on Mac OS X 10.5.8 with iChat 4.0.8 (619).</p>
<p>Now my conversations look like this:<br />
<img class="aligncenter size-medium wp-image-1108" title="ichat-messenger-with-smileys-disabled" src="http://justaddwater.dk/wp-content/uploads/2009/08/ichat-messenger-with-smileys-disabled-218x300.png" alt="ichat-messenger-with-smileys-disabled" width="218" height="300" /></p>
<p>Which reminds me that I better soon write a short article on the problem of having the wrong and obtrusive defaults in your applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2009/08/13/remove-smileys-in-messenger-program-ichat-for-mac/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Find Occurences of Text String in Files</title>
		<link>http://justaddwater.dk/2008/06/17/find-occurences-of-text-string-in-files/</link>
		<comments>http://justaddwater.dk/2008/06/17/find-occurences-of-text-string-in-files/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 12:54:11 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/?p=934</guid>
		<description><![CDATA[I had to search for occurences of string in particular files, and using Cygwin i did the following: find all files that ends on .js, .html or .ascx: $ find -regextype posix-extended -regex &#8220;.+\.(js&#124;html?&#124;ascx)$&#8221; Then search for lines that contain the following javascript construction for( var x in object) I ended up with this regular [...]]]></description>
			<content:encoded><![CDATA[<p>I had to search for occurences of string in particular files, and using Cygwin i did the following:</p>
<p>find all files that ends on .js, .html or .ascx:</p>
<div class="codesnip-container" >$ find -regextype posix-extended -regex &#8220;.+\.(js|html?|ascx)$&#8221;</div>
<p>Then search for lines that contain the following javascript construction
<div class="codesnip-container" >for( var x in object)</div>
<p>I ended up with this regular expression to match the javascript:
<div class="codesnip-container" >/for\s?\(.+?\bin\b.+?\)/</div>
<p>. Although not strictly necessary, i test for word-boundaries around
<div class="codesnip-container" >&#8220;in&#8221;</div>
<p> &#8212; it would be sufficient just to use spaces like this
<div class="codesnip-container" >&#8221; in &#8220;</div>
<p>. For grep to eat this its pack with parameters that show filename (-H), line number (-n), only matching part of line (-o), and use Pearl compatible regexps (-P):</p>
<div class="codesnip-container" >grep -nHoP &#8220;for\s?\(.+?\bin\b.+?\)&#8221;</div>
<p>Set this into a find expression where the -exec flag allows you to run the grep command on each file found:</p>
<div class="codesnip-container" >$ find -regextype posix-extended -regex &#8220;.+\.(js|html?|ascx)$&#8221;  -exec grep -nHoP &#8220;for\s?\(.+?\bin\b.+?\)&#8221; &#8216;{}&#8217; \;</div>
<p><strong>Choosing a -regextype for find</strong><br />
The regextype had to be changed and I found that these work with the chosen regexp:<br />
* posix-extended, posix-awk, and posix-egrep<br />
but posix-basic did not work.</p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/06/17/find-occurences-of-text-string-in-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Textmate Snippet: Convert HTML entities for viewing code</title>
		<link>http://justaddwater.dk/2008/01/01/e-texteditor-snippet-convert-html-entities-for-viewing-code/</link>
		<comments>http://justaddwater.dk/2008/01/01/e-texteditor-snippet-convert-html-entities-for-viewing-code/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 11:44:49 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2008/01/01/e-texteditor-snippet-convert-html-entities-for-viewing-code/</guid>
		<description><![CDATA[Happy New Year everybody. Here is a tiny Textmate or E-Texteditor Snippet: Convert HTML entities for viewing code. I created this recently for a HTML cookbook on a project, where we made HTML pages showing HTML example code. It converts &#38; to &#38;amp; &#60; to &#38;lt; &#62; to &#38;gt; That&#8217;s it. Basically, I made a [...]]]></description>
			<content:encoded><![CDATA[<p>Happy New Year everybody. Here is a tiny Textmate or E-Texteditor Snippet: Convert HTML entities for viewing code. I created this recently for a HTML cookbook on a project, where we made HTML pages showing HTML example code. It converts</p>
<ul>
<li>&amp; to &amp;amp;</li>
<li>&lt; to &amp;lt;</li>
<li>&gt; to &amp;gt;</li>
</ul>
<p><a href="http://justaddwater.dk/wp-content/uploads/2007/12/e-texteditor-bundle-editor-convert-html-entities.png" title="e-texteditor-bundle-editor-convert-html-entities.png"><img src="http://justaddwater.dk/wp-content/uploads/2007/12/e-texteditor-bundle-editor-convert-html-entities-thumb.png" alt="e-texteditor-bundle-editor-convert-html-entities-thumb.png" /></a></p>
<p>That&#8217;s it. Basically, I made a copy of one of the more complex snippets and simplified it.  Recently, it has been a real time-saver for me despite it&#8217;s simplicity.</p>
<p>In text here is the snippet:</p>
<dl>
<dt>Save:</dt>
<dd>Nothing</dd>
<dt>Environment: </dt>
<dd>Cygwin (generic)</dd>
<dt>Input:</dt>
<dd>[Selected Text] or [Document]</dd>
<dt>Output:</dt>
<dd>Replace Selected Text</dd>
<dt>Activation: </dt>
<dd>[Key Equivalent] Ctrl-Shift-6</dd>
<dt>Scope Selector: </dt>
<dd>text.html</dd>
<dt>Code: </dt>
<dd>
<pre>
<div class="codesnip-container" >#!/usr/bin/env ruby
# By Jesper Rønn-Jensen, 2007-12-19 (Last update: 2007-12-19)
# escape &amp;,&lt;,&gt; to show in HTML pages
$KCODE = &#039;U&#039;

$char_to_entity = { }
File.open(&quot;#{ENV[&#039;TM_BUNDLE_SUPPORT&#039;]}/entities.txt&quot;).read.scan(/^(\d+)\t(.+)$/) do |key, value|
  $char_to_entity[[key.to_i].pack(&#039;U&#039;)] = value
end

def encode (text)
  text.gsub(/[&lt;&gt;&amp;]/) do |ch|
    ent = $char_to_entity[ch]
    ent ? &quot;&amp;#{ent};&quot; : sprintf(&quot;%02X;&quot;, ch.unpack(&quot;U&quot;)[0])
  end
end

print encode(STDIN.read)</div>
</pre>
</dd>
</dl>
<p>The blog software messes up single/double quotes, so here is a link to the raw snippet file which I put in
<div class="codesnip-container" >/Bundles/HTML.tmbundle/Commands</div>
<p>. <small>On my E-texteditor/Windows install that is
<div class="codesnip-container" >C:\Documents and Settings\[username]\Application Data\e<br />
\Bundles\HTML.tmbundle\Commands .</div>
<p></small></p>
<p><strong>Here it is for you to download:</strong><br />
<a href="http://justaddwater.dk/wp-content/uploads/2007/12/entities-convert-html-for-html-output.tmCommand" title="entities-convert-html-for-html-output.tmCommand">entities-convert-html-for-html-output.tmCommand</a><br />
(last update: 2007-01-01)</p>
<p>I was very close to modify it further to wrap selection in &lt;pre&gt;&lt;/pre&gt; element, (because I always use the code that way). But decided not to: It&#8217;s only a keyboard shortcut more to wrap the selection:</p>
<p>Alt-Shift-W: Wrap selection in Open/Close Tag</p>
<p>PS. The editor usually messes up on some of the escaped HTML characters. Please refer to the attached file for the correct version. And please let me know if you find errors in the markup.<br /><p><small>Technorati Tags: <a href="http://technorati.com/tag/e-texteditor" rel="tag">e-texteditor</a>, <a href="http://technorati.com/tag/textmate" rel="tag"> textmate</a>, <a href="http://technorati.com/tag/" rel="tag"> </a>, <a href="http://technorati.com/tag/bundle" rel="tag"> bundle</a>, <a href="http://technorati.com/tag/snippet" rel="tag"> snippet</a>, <a href="http://technorati.com/tag/command" rel="tag"> command</a>, <a href="http://technorati.com/tag/convert" rel="tag"> convert</a>, <a href="http://technorati.com/tag/html" rel="tag"> html</a>, <a href="http://technorati.com/tag/entities" rel="tag"> entities</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2008/01/01/e-texteditor-snippet-convert-html-entities-for-viewing-code/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My First Rant Discussion &#8212; Ever</title>
		<link>http://justaddwater.dk/2007/12/13/my-first-rant-discussion-ever/</link>
		<comments>http://justaddwater.dk/2007/12/13/my-first-rant-discussion-ever/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 13:25:24 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Psychology]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/12/13/my-first-rant-discussion-ever/</guid>
		<description><![CDATA[How do you manage to help discussions being constructive and treating people with mutual respect? I just had this strange experience. You pay $34.95 for a text editor, and suddenly you&#8217;re allowed to yell and swear aththe developers. WHAT? I&#8217;m an eager follower on the E-texteditor forum as it is a good place to follow [...]]]></description>
			<content:encoded><![CDATA[<p>How do you manage to help discussions being constructive and treating people with mutual respect? I just had this strange experience. You pay $34.95 for a text editor, and suddenly you&#8217;re allowed to yell and swear aththe developers. WHAT?</p>
<p>I&#8217;m an eager follower on the <a href="http://www.e-texteditor.com/forum/">E-texteditor forum</a> as it is a good place to follow along and report bugs. This way, the editor can mature as fast as possible and an open forum can help the process of making visible which bugs are the most annoying. Most of the tiny usability improvements, new ideas and bugs are reported and confirmed in the forum.</p>
<p>However, some comments just don&#8217;t help the open process. Take this, for instance. A thread in &#8220;bug reports&#8221; called &#8220;<a href="http://www.e-texteditor.com/forum/viewtopic.php?t=1897">Age old bugs STILL NOT FIXED: selection and window size&#8230;</a>&#8220;:</p>
<p>prencher:</p>
<blockquote><p>I&#8217;ve paid money for this, and I have to deal with these fscking annoying bugs every single time I open the damn editor? Many versions have come out since reported, and they&#8217;ve been there since beta.</p>
<p>I honestly don&#8217;t care about startup time when I have to resize the window every time I use the editor and can&#8217;t properly select stuff when it&#8217;s more than what fits in the window (and god forbid you select horizontally outside of the window size..)</p>
<p>Enough is enough. Fix the goddamned bugs.</p></blockquote>
<p>I could not resist trying to pull a frustrated user in a direction where I felt the discussion would be better, so I added  following reply:</p>
<p>jesperrr:</p>
<blockquote><p>PS. The fact that paying 35$ does not grant license to yell at the developer&#8230; At least it&#8217;s not anywhere in the license agreement.</p></blockquote>
<p>Within 15 minutes I was suddenly involved and ranted upon as well:</p>
<p>prencher:</p>
<blockquote><p>And please don&#8217;t tell me what I can and cannot do. It&#8217;s hard to be patient when you encounter the same bugs every single day in a paid product, particularly after you&#8217;ve gone through the effort of reporting them, only to see a performance release, rather than bugfixes.</p></blockquote>
<p>There are other threads with a similar tone, for instance &#8220;<span class="blacklink"><a href="http://www.e-texteditor.com/forum/viewtopic.php?t=1934">:( Bugs i hate</a>&#8221; and &#8220;</span><a href="http://www.e-texteditor.com/forum/viewtopic.php?p=7953&amp;highlight=#7953"> 		 			<span class="blacklink"></span></a><a href="http://www.e-texteditor.com/forum/viewtopic.php?t=1927">User prioritized bug fixes and features</a><span class="blacklink">&#8220;. </span>You can read my reply and follow along in the forum. But I think the most important issues here are:</p>
<ul>
<li>How do you facilitate an open forum to keep a constructive tone?</li>
<li>Is there some kind of magic &#8220;discussion judo&#8221; that could be applied</li>
</ul>
<p>Related info:</p>
<ul>
<li>E-texteditor bug forum: &#8220;<a href="http://www.e-texteditor.com/forum/viewtopic.php?t=1897">Age old bugs STILL NOT FIXED: selection and window size&#8230;</a>&#8220;</li>
<li>Justaddwater: <a href="http://justaddwater.dk/2007/08/08/powerful-text-editor-released/" rel="bookmark" title="Permanent Link to Powerful Text Editor Released">Powerful Text Editor Released</a> (August 8th)</li>
<li>Justaddwater: <a href="http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/" rel="bookmark" title="Permanent Link to E-Texteditor For Windows">E-Texteditor For Windows</a> (April 28th)</li>
</ul>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/e-texteditor" rel="tag">e-texteditor</a>, <a href="http://technorati.com/tag/forum" rel="tag"> forum</a>, <a href="http://technorati.com/tag/discussion" rel="tag"> discussion</a>, <a href="http://technorati.com/tag/flame+war" rel="tag"> flame war</a>, <a href="http://technorati.com/tag/discussion+judo" rel="tag"> discussion judo</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/12/13/my-first-rant-discussion-ever/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Powerful Text Editor Released</title>
		<link>http://justaddwater.dk/2007/08/08/powerful-text-editor-released/</link>
		<comments>http://justaddwater.dk/2007/08/08/powerful-text-editor-released/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 10:13:24 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/08/08/powerful-text-editor-released/</guid>
		<description><![CDATA[E-texteditor just got out of beta. I have actively contributed with improvement suggestions and error reports, as this editor has all needed features for rapid web devlopment, and has potential to become even better. I suggest you check out the inspiring screencast and perhaps buy a trial if you like it. More info: E-Texteditor website: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://e-texteditor.com/">E-texteditor</a> just got out of beta. <a href="http://www.e-texteditor.com/forum/search.php?search_author=jesperrr">I have actively contributed</a> with improvement suggestions and error reports, as this editor has all needed features for rapid web devlopment, and has potential to become even better.</p>
<p>I suggest you check out the inspiring screencast and perhaps buy a trial if you like it.</p>
<p><a href="http://www.e-texteditor.com/index.html" title="E-texteditor homepage with screenshot"><img src="http://justaddwater.dk/wp-content/uploads/2007/04/e-texteditor-homepage.png" alt="e-texteditor-homepage.png" /></a></p>
<p>More info:</p>
<p>E-Texteditor website: <a href="http://e-texteditor.com/">e-texteditor.com</a></p>
<p>Justaddwater.dk: <a href="http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/" rel="bookmark" title="Permanent Link to E-Texteditor For Windows">E-Texteditor For Windows</a> (April 2007)</p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/editor" rel="tag">editor</a>, <a href="http://technorati.com/tag/e-texteditor" rel="tag"> e-texteditor</a>, <a href="http://technorati.com/tag/etexteditor" rel="tag"> etexteditor</a>, <a href="http://technorati.com/tag/texteditor" rel="tag"> texteditor</a>, <a href="http://technorati.com/tag/code" rel="tag"> code</a>, <a href="http://technorati.com/tag/windows" rel="tag"> windows</a>, <a href="http://technorati.com/tag/textmate" rel="tag"> textmate</a>, <a href="http://technorati.com/tag/html" rel="tag"> html</a>, <a href="http://technorati.com/tag/css" rel="tag"> css</a>, <a href="http://technorati.com/tag/javascript" rel="tag"> javascript</a>, <a href="http://technorati.com/tag/rails" rel="tag"> rails</a>, <a href="http://technorati.com/tag/ruby+on+rails" rel="tag"> ruby on rails</a>, <a href="http://technorati.com/tag/ruby" rel="tag"> ruby</a>, <a href="http://technorati.com/tag/rubyonrails" rel="tag"> rubyonrails</a>, <a href="http://technorati.com/tag/cygwin" rel="tag"> cygwin</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/08/08/powerful-text-editor-released/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>E-Texteditor For Windows</title>
		<link>http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/</link>
		<comments>http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 22:55:38 +0000</pubDate>
		<dc:creator>Jesper Rønn-Jensen</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/</guid>
		<description><![CDATA[I have been looking a fast, intuitive editor for my Windows laptop. Now I stopped looking. E-texteditor for windows is very intuitive and easy to use. I highly recommend watching the screencast (a short tour of some of the best features). Although it&#8217;s still in beta, it seems so much better than the alternatives. I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking a fast, intuitive editor for my Windows laptop.</p>
<p>Now I stopped looking. E-texteditor for windows is very intuitive and easy to use.  I highly recommend watching the screencast (a short tour of some of the best features). Although it&#8217;s still in beta, it seems so much better than the alternatives.</p>
<p>I&#8217;m using it for HTML, CSS, JavaScript, Ruby on Rails editing. And it just works.</p>
<p><a href="http://www.e-texteditor.com/index.html" title="E-texteditor homepage with screenshot"><img src="http://justaddwater.dk/wp-content/uploads/2007/04/e-texteditor-homepage.png" alt="e-texteditor-homepage.png" /></a></p>
<p>One note for avoiding future head-scratching: In order to get the keyboard shortcuts (so-called bundles) to work, I had to delete Cygwin and let E install it automatically. Afterwards I had to add packages manually: Subversion (svn)</p>
<p>Other improvements that would be handy:<br />
In HTML mode there is a shortcut &#8220;doctype [tab]&#8220;, but there is no shortcut for creating the rest of the HTML document. It&#8217;s probably easy to add (but  i&#8217;m not into doing it yet). Besides, I think an addition like this would be a benefit to everybody, so it should be included in the general bundle.</p>
<p>In Ruby files, when looking on Ruby on Rails, it defaults the files to Ruby (because they are and they end in .rb). However, there is a lot of functionality with regards to Rails, so it would actually work better, if .rb defaulted to Ruby. Here is a <a href="http://www.e-texteditor.com/forum/viewtopic.php?p=3361#3361" title="E-texteditor forum: Set Rails file from Ruby to Rails">workaround to add .rb files to Rails syntax</a>.</p>
<p>I also added a bug report &#8220;<a href="http://www.e-texteditor.com/forum/viewtopic.php?t=1120" title="E-Texteditor forum">Block selection should work without the mouse</a>&#8221; (guess I&#8217;m a usability geek).</p>
<p>The simple <a href="http://cheat.errtheblog.com/s/e/" title="ErrTheBlog E-texteditor cheatsheet.">cheatsheet for E-texteditor</a> at errtheblog is worth checking out, although it contains only the general shortcuts and not the Rails specific ones. Via: <a href="http://www.rubyinside.com/e-texteditor-a-windows-textmate-or-why-apple-should-buy-textmate-413.html" rel="bookmark" title="RubyInside: E-TextEditor: A Windows TextMate? (Or ">RubyInside</a>.</p>
<p><small>Technorati Tags: <a href="http://technorati.com/tag/editor" rel="tag">editor</a>, <a href="http://technorati.com/tag/e-texteditor" rel="tag"> e-texteditor</a>, <a href="http://technorati.com/tag/etexteditor" rel="tag"> etexteditor</a>, <a href="http://technorati.com/tag/windows" rel="tag"> windows</a>, <a href="http://technorati.com/tag/textmate" rel="tag"> textmate</a>, <a href="http://technorati.com/tag/html" rel="tag">  html</a>, <a href="http://technorati.com/tag/css" rel="tag"> css</a>, <a href="http://technorati.com/tag/javascript" rel="tag"> javascript</a>, <a href="http://technorati.com/tag/rails" rel="tag"> rails</a>, <a href="http://technorati.com/tag/ruby+on+rails" rel="tag"> ruby on rails</a>, <a href="http://technorati.com/tag/ruby" rel="tag"> ruby</a>, <a href="http://technorati.com/tag/rubyonrails" rel="tag"> rubyonrails</a>, <a href="http://technorati.com/tag/cygwin" rel="tag"> cygwin</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://justaddwater.dk/2007/04/28/e-texteditor-for-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

