<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>/dev/neal</title>
	<atom:link href="http://devneal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://devneal.wordpress.com</link>
	<description>A Win programmer's blog with a *nix joke for a name...</description>
	<lastBuildDate>Sat, 29 Oct 2011 13:52:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devneal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>/dev/neal</title>
		<link>http://devneal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devneal.wordpress.com/osd.xml" title="/dev/neal" />
	<atom:link rel='hub' href='http://devneal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Expresso &#8211; The Best Free .NET Regex Tool</title>
		<link>http://devneal.wordpress.com/2010/08/15/expresso-the-best-free-net-regex-tool/</link>
		<comments>http://devneal.wordpress.com/2010/08/15/expresso-the-best-free-net-regex-tool/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 03:18:45 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=153</guid>
		<description><![CDATA[When you&#8217;re scaling the north face of a complicated regular expression (well hopefully it&#8217;s more like a hill than Kilimanjaro, otherwise you&#8217;ve got problems), you need a good tool to help you along the way, a Sherpa to guide you and help carry your snacks. I&#8217;ve tried several (free) regex tools, but none of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=153&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;re scaling the north face of a complicated regular expression (well hopefully it&#8217;s more like a hill than Kilimanjaro, otherwise <a title="Coding Horror" href="http://www.codinghorror.com/blog/2008/06/regular-expressions-now-you-have-two-problems.html">you&#8217;ve got problems</a>), you need a good tool to help you along the way, a Sherpa to guide you and help carry your snacks.</p>
<p>I&#8217;ve tried several (free) regex tools, but none of the others compare to <a title="Expresso Regular Expression Tool" href="http://www.ultrapico.com/Expresso.htm">Expresso</a> for usability, features, teaching the syntax, and a just plain cool name.</p>
<p><a href="http://img132.imageshack.us/i/espresso300x274jpegmw0.jpg/" target="_blank"><img class="  alignnone" title="Expresso: cooler than espresso." src="http://img132.imageshack.us/img132/1474/espresso300x274jpegmw0.jpg" alt="" width="244" height="219" /></a></p>
<p>My favorite thing about Expresso is that it can teach you the syntax &#8211; all the way from basics through advanced structures &#8211; as you construct your regex.  This makes it great for any level of developer.</p>
<p>Expresso is very helpful for building regular expressions in that you don&#8217;t have to know the exact syntax for each construct &#8211; you can use the dialogs to generate a lot of it for you!  For example, if you need to insert a capture group that repeats zero or one time, just go to the &#8216;Groups&#8217; tab, select the group type and repetition type, click insert, and you&#8217;ve on your way!</p>
<p><a href="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-48_screencap.jpg"><img class="size-medium wp-image-170 alignnone" title="Expresso - Insert" src="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-48_screencap.jpg?w=300&#038;h=123" alt="" width="300" height="123" /></a></p>
<p>The best feature is the expression tree in the right pane &#8211; it breaks the regex into a hierarchical tree, and if you select a node it will also be highlighted in the regular expression, helping you to understand what each piece of syntax does.</p>
<p><a href="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-53_screencap.jpg"><img class="alignnone size-full wp-image-172" title="Expresso - Analyzer" src="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-53_screencap.jpg?w=450&#038;h=161" alt="" width="450" height="161" /></a></p>
<p>When you&#8217;re done building your regex, of course you need to test it, and Expresso makes that easy as well.  You can, among other things, run a validation on each line and see exactly which part of the line matches.  It will also show you each match group.</p>
<p><a href="http://devneal.files.wordpress.com/2010/08/2010-08-15-22-00_screencap.jpg"><img class="alignnone size-full wp-image-174" title="Expresso - Testing" src="http://devneal.files.wordpress.com/2010/08/2010-08-15-22-00_screencap.jpg?w=450&#038;h=134" alt="" width="450" height="134" /></a></p>
<p>So the next time you get that itch &#8211; <em>I think I can solve that with a regex&#8230;</em> just make sure you&#8217;ve got a good guide, and <a title="Stack Overflow" href="http://stackoverflow.com/questions/1404669/how-to-use-regex/1404926#1404926">Expresso is the best I know of</a>.</p>
<br /> Tagged: <a href='http://devneal.wordpress.com/tag/programming/'>programming</a>, <a href='http://devneal.wordpress.com/tag/regex/'>regex</a>, <a href='http://devneal.wordpress.com/tag/tools/'>tools</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=153&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2010/08/15/expresso-the-best-free-net-regex-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>

		<media:content url="http://img132.imageshack.us/img132/1474/espresso300x274jpegmw0.jpg" medium="image">
			<media:title type="html">Expresso: cooler than espresso.</media:title>
		</media:content>

		<media:content url="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-48_screencap.jpg?w=300" medium="image">
			<media:title type="html">Expresso - Insert</media:title>
		</media:content>

		<media:content url="http://devneal.files.wordpress.com/2010/08/2010-08-15-21-53_screencap.jpg" medium="image">
			<media:title type="html">Expresso - Analyzer</media:title>
		</media:content>

		<media:content url="http://devneal.files.wordpress.com/2010/08/2010-08-15-22-00_screencap.jpg" medium="image">
			<media:title type="html">Expresso - Testing</media:title>
		</media:content>
	</item>
		<item>
		<title>I Heart Vim</title>
		<link>http://devneal.wordpress.com/2010/07/13/i-heart-vim/</link>
		<comments>http://devneal.wordpress.com/2010/07/13/i-heart-vim/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:58:40 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=103</guid>
		<description><![CDATA[I &#60;3 A quest to make my all tools Vimish Vimesque Vim&#8230;ahh such a simple name for such a powerful tool.  I&#8217;ve been using this text editor for over 5 years, but I still pick up new tricks all the time. Vim everywhere! In a quest to leverage my Vim muscle memory in more than [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=103&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>I <span style="color:#ff0000;">&lt;3 </span><a title="Vim logo" href="http://www.vim.org" target="_blank"><img class="alignnone size-full wp-image-102" title="Vim" src="http://devneal.files.wordpress.com/2009/12/vimlogo1.png?w=450" alt="Vim logo"   /></a></h2>
<h3>A quest to make my all tools <span style="text-decoration:line-through;">Vimish</span> Vimesque</h3>
<hr /><strong>Vim</strong>&#8230;ahh such a simple name for such a powerful tool.  I&#8217;ve been using this text editor for over 5 years, but I still pick up new tricks all the time.</p>
<h2>Vim everywhere!</h2>
<p>In a quest to leverage my Vim muscle memory in more than one program, I&#8217;m using <a title="Vimperator" href="http://vimperator.org/vimperator">Vimperator</a>, which turns Firefox&#8217;s interface into a Vim-like interface!  Yes, that&#8217;s right, it rids you of those pesky toolbars and lets you navigate without a mouse; it even has different modes (It&#8217;s in insert mode as I type this <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>I also found a plugin to turn another of my favorite tools into Vim: <a title="VsVim - turn Visual Studio into Vim!" href="http://visualstudiogallery.msdn.microsoft.com/en-us/59ca71b3-a4a3-46ca-8fe1-0e90e3f79329">VsVim</a>! It changes Visual Studio&#8217;s key bindings to match Vim&#8217;s.  I&#8217;ve been using it for a few weeks, and so far it works well alongside ReSharper and Visual Studio&#8217;s built-in Intellisense, etc.  It&#8217;ll even read in your .vimrc!! Oh, did I mention it&#8217;s <strong>free</strong>? This is a great <a title="FOSS - Wikipedia" href="http://en.wikipedia.org/wiki/Free_and_Open_Source_Software">FOSS</a> alternative to viEmu (although I&#8217;d still love to try this one to compare the two). It hasn&#8217;t hit version 1.0 yet, so I&#8217;m really looking forward to the future versions as Jared adds more features.</p>
<p>One more highly recommended Firefox plugin is <a title="It's All Text!" href="https://addons.mozilla.org/en-US/firefox/addon/4125/">It&#8217;s All Text!</a> Not really Vim-specific I suppose, but it lets you edit any textarea (or textbox depending on settings) in an external text editor.</p>
<p>Hopefully all this Vimania doesn&#8217;t fan the flames of the <a title="Editor War - Wikipedia" href="http://en.wikipedia.org/wiki/Editor_war">editor war</a>&#8230;but if you like Emacs you&#8217;re probably off <a title="XKCD" href="http://xkcd.com/378/">flipping bits with butterflies</a> anyway&#8230;</p>
<p>Happy Vimming!</p>
<p>:wq</p>
<br /> Tagged: <a href='http://devneal.wordpress.com/tag/productivity/'>productivity</a>, <a href='http://devneal.wordpress.com/tag/programming/'>programming</a>, <a href='http://devneal.wordpress.com/tag/vim/'>vim</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=103&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2010/07/13/i-heart-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>

		<media:content url="http://devneal.files.wordpress.com/2009/12/vimlogo1.png" medium="image">
			<media:title type="html">Vim</media:title>
		</media:content>
	</item>
		<item>
		<title>Tulsa TechFest 2009</title>
		<link>http://devneal.wordpress.com/2009/11/09/tulsa-techfest-2009/</link>
		<comments>http://devneal.wordpress.com/2009/11/09/tulsa-techfest-2009/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 03:37:34 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=56</guid>
		<description><![CDATA[I enjoyed my second  Tulsa TechFest this year.  Although it was only one day instead of two, I still had a blast and got to see some top notch presenters talking about exciting technologies just like last year. ASP.NET 4.0 4 Fun The first session I went to was Robert Boedigheimer&#8217;s presentation on ASP.NET 4.0 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=56&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I enjoyed my second  <a title="Tulsa TechFest" href="http://techfests.com/Tulsa/2009/default.aspx">Tulsa TechFest</a> this year.  Although it was only one day instead of two, I still had a blast and got to see some top notch presenters talking about exciting technologies just like last year.</p>
<h4>ASP.NET 4.0 4 Fun</h4>
<p>The first session I went to was <a href="http://techfests.com/Tulsa/2009/Speakers/RobertBoedigheimer/default.aspx">Robert Boedigheimer&#8217;s</a> presentation on ASP.NET 4.0 and Visual Studio 2010 and I learned a lot about the new features that are introduced with ASP.NET 4.0/VS 2010, such as finer grained control over client IDs, web.config minification and transformation,  some WebForms improvements like easier HTML encoding, and improvements to the routing engine to name a few.  (The ASP.NET site has a <a href="http://www.asp.net/LEARN/whitepapers/aspnet4/">great summary</a>).</p>
<h4>Developer&lt;T&gt;</h4>
<p>I saw <a href="http://techfests.com/Tulsa/2009/Speakers/ShawnWeisfeld/default.aspx">Shawn Weisfield&#8217;s</a> presentation on .NET generics (like the name, too) which was a great way to brush up on a feature I already use every day.  Not only was it a good review, but I was reminded of the performance and other reasons to <em>keep</em> using generics (avoiding boxing/unboxing, reusing code, etc.).</p>
<h4>C# 4.0</h4>
<p><a href="http://techfests.com/Tulsa/2009/Speakers/ChrisKoenig/default.aspx">Chris Koenig</a> did a great job conveying the usefulness/danger of the new <code>dynamic</code> keyword in C# 4.0 along with some other nice features, like easier COM interop (no more <code>Reflection.Missing.Value</code>, woohoo!).</p>
<p>As always, he&#8217;s fun to listen to and very informative; I&#8217;ve always enjoyed his presentations at <a title="FSDNUG" href="http://fsdnug.org/">my .NET user group</a> meetings as well.</p>
<p>The main new feature is the <code>dynamic</code> keyword, which brings some dynamic language features to the (historically) statically-typed language.  I think Chris summed it up best when he said over and over (paraphrasing)</p>
<blockquote><p>the only thing the dynamic keyword does is <strong>defer method selection   until runtime</strong>&#8230;don&#8217;t overthink this</p></blockquote>
<p>So of course this means <a href="http://www.hanselman.com/blog/C4AndTheDynamicKeywordWhirlwindTourAroundNET4AndVisualStudio2010Beta1.aspx">less code</a>, but more opportunity to shoot yourself in the foot with hidden runtime errors since method names aren&#8217;t checked by the compiler; remember: &#8220;with great power comes great responsibility&#8221; (thanks Chris&#8230;and <a href="http://en.wikipedia.org/wiki/Uncle_Ben#.22With_great_power_must_come_great_responsibility.22">Uncle Ben</a>).</p>
<h4>Rework your workflows</h4>
<p>I went to <a href="http://techfests.com/Tulsa/2009/Speakers/JenniferMarsman/default.aspx">Jennifer Marsman&#8217;s</a> session on Windows Workflow Foundation (WF) which was pretty informative. This was a toolset I&#8217;d never been exposed to, so I went in hoping to get a good introduction.</p>
<p>Jennifer did a great job packing a lot of information into a relatively short session, explaining both concepts and giving concrete examples. She showed us how to create a workflow in the designer and also explained some of the breaking changes introduced in version 4 of the framework.</p>
<p>All in all, WF seems like a promising technology for modeling business processes, but I think it needs to mature a bit more.</p>
<h4>Test Driven Development: A C# Demo</h4>
<p>The last session I saw was <a href="http://techfests.com/Tulsa/2009/Speakers/BrettSchuchert/default.aspx">Brett Schubert&#8217;s</a> test driven development (TDD) demo in C#. It was a little more open-ended than I&#8217;m used to, and I think it would have been better if we&#8217;d had more time. And even though it was meant to be a demo, I think it was more a good review on the <em>concepts</em> of TDD. I still need to see a good example of TDD applied in a large system to judge its worth properly.</p>
<hr />All in all, another great TechFest!  Lots of learning, networking, and fun, and it all goes to a good cause.  Can&#8217;t wait til next year!</p>
<p>&nbsp;</p>
<br /> Tagged: conference, programming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=56&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2009/11/09/tulsa-techfest-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>
	</item>
		<item>
		<title>TiddlyWiki for great justice (and notes)</title>
		<link>http://devneal.wordpress.com/2009/10/06/tiddlywiki-for-great-justice-and-notes/</link>
		<comments>http://devneal.wordpress.com/2009/10/06/tiddlywiki-for-great-justice-and-notes/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 03:17:59 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[tiddlywiki]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=31</guid>
		<description><![CDATA[TiddlyWiki is a great way to store and share notes, to do lists, task lists, or really anything else that fits well in a wiki style system.  You store things in &#8220;tiddlers&#8221;, which are small portions of text on the page.  From the intro page: Most web sites and wikis manage information as pages. TiddlyWiki [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=31&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://tiddlywiki.com/" target="_blank">TiddlyWiki</a> is a great way to store and share notes, to do lists, task lists, or really anything else that fits well in a wiki style system.  You store things in &#8220;tiddlers&#8221;, which are small portions of text on the page.  From the <a title="Introduction to TiddlyWiki" href="http://tiddlywiki.org/wiki/Introduction">intro page</a>:</p>
<blockquote><p>Most web sites and wikis manage information as pages. TiddlyWiki is different &#8212; it saves your stuff in smaller chunks (each chunk is called a &#8216;tiddler&#8217;).</p>
</blockquote>
<p>I found a lot of people on Stack Overflow <a href="http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78772#78772" target="_blank">recommended it</a>, so I gave it a try.</p>
<p>BTW, I will from now on refer to it as TW because <em>TiddlyWiki</em> makes me cringe every time I say it to someone at work&#8230; &#8220;Yeah, I finally found a good place to put all my notes, it&#8217;s portable, extensible, simple, and <strong>free</strong>.&#8221;  &#8220;Oh yeah, what&#8217;s it called?&#8221;  &#8220;TiddlyWiki&#8230;yeah it&#8217;s&#8230;here I&#8217;ll just send you a link&#8230;&#8221;</p>
<p>The main thing I like about it is that it&#8217;s all stored in one HTML file, which makes backup and syncing a breeze.  (I haven&#8217;t tried it yet, but soon will and I&#8217;ll update the blog.)</p>
<p><a title="Customizing TiddlyWiki" href="http://tiddlywiki.org/wiki/Customization">It&#8217;s also customizable</a>.  You can change the colors, fonts, borders, or anything else really since it&#8217;s all just HTML and CSS.  I haven&#8217;t delved into the customization too far yet, just enough to satisfy my own obsessive tendencies &#8211; the main thing I change was the border around the tiddlers (it&#8217;s a  little hard to see where one ends and the next begins) and the color scheme.</p>
<p>There are also several variations, such as <a title="Tiddly BackPack" href="http://www.tiddlybackpack.com/">TiddlyBackPack</a>, <a title="GTDTiddlyWiki" href="http://nathanbowers.com/gtdtw/">GTDTiddlyWiki</a>, and several others.  I tried some of them, but in the end stuck with the simplicity of the original.</p>
<p>So what started out as a test run has become my primary daily notes system.  I&#8217;ve replaced my previous &#8220;system&#8221; (whiteboard-sticky notes-notepads-Outlook notes-emails to myself at 3 different addresses) with one simple, customizable one.  So for what it&#8217;s worth, I highly recommend it!</p>
<br /> Tagged: notes, tiddlywiki <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=31&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2009/10/06/tiddlywiki-for-great-justice-and-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>
	</item>
		<item>
		<title>Addiction&#8230;</title>
		<link>http://devneal.wordpress.com/2008/09/24/addiction/</link>
		<comments>http://devneal.wordpress.com/2008/09/24/addiction/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 02:45:17 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=21</guid>
		<description><![CDATA[So, is anyone else addicted to Stack Overflow?  I&#8217;ve been on it at least an hour a day since I heard about the public  beta last Monday, and I&#8217;m pretty impressed.  So far, I&#8217;ve found out lots of interesting programming tidbits, tools, tips, etc.  that would have been almost impossible to find using Google.  I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=21&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://devneal.files.wordpress.com/2008/09/stack_overflow_badge1.jpeg"><img class="size-full wp-image-23" title="Addicted to Stack Overflow" src="http://devneal.files.wordpress.com/2008/09/stack_overflow_badge1.jpeg?w=450" alt="Addicted to Stack Overflow"   /></a></p>
<p>So, is anyone else addicted to <a title="Stack Overflow" href="http://stackoverflow.com/" target="_self">Stack Overflow</a>?  I&#8217;ve been on it at least an hour a day since I heard about the public  beta last Monday, and I&#8217;m pretty impressed.  So far, I&#8217;ve found out lots of interesting programming tidbits, tools, tips, etc.  that would have been almost impossible to find using Google.  I haven&#8217;t contributed very many answers yet, but I&#8217;ll get there some day! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I look forward to seeing where this site goes in the next few months and years.  It all boils down to the quality of the <strong>community</strong>, and so far I&#8217;d say it&#8217;s one of those places that makes you feel right at home.</p>
<p>P.S. If you want a snazzy <a href="http://stackoverflow.com/badges">badge</a>, like mine, someone was kind enough to make this <a title="Stack Overflow badge genertor" href="http://stackoverflow.com/questions/25305/for-those-that-demand-those-elusive-badges">Stack Overflow badge Creator</a>!  Now you can treat yourself to all the badges <em>you</em> think you deserve, instead of waiting for those pesky &#8220;rules.&#8221; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /> Tagged: programming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=21&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2008/09/24/addiction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>

		<media:content url="http://devneal.files.wordpress.com/2008/09/stack_overflow_badge1.jpeg" medium="image">
			<media:title type="html">Addicted to Stack Overflow</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello, world</title>
		<link>http://devneal.wordpress.com/2008/09/23/hello-world/</link>
		<comments>http://devneal.wordpress.com/2008/09/23/hello-world/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 20:32:48 +0000</pubDate>
		<dc:creator>Adam Neal</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://devneal.wordpress.com/?p=3</guid>
		<description><![CDATA[Well, I&#8217;ve started a blog with the hopes of putting some of my (programming-related) thoughts to paper hypertext.  Who knows, maybe a post &#8216;er two will even be relevant and helpful to someone besides me! P.S.  Yes, I had to do that&#8230;come up with a blog name related to a *nix joke.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=3&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve started a blog with the hopes of putting some of my (programming-related) thoughts to <span style="text-decoration:line-through;">paper</span> hypertext.  Who knows, maybe a post &#8216;er two will even be relevant and helpful to someone besides me!</p>
<p>P.S.  Yes, I had to do that&#8230;come up with a blog name related to a <a href="http://en.wikipedia.org/wiki/Dev/null" target="_blank">*nix joke</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/devneal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/devneal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/devneal.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devneal.wordpress.com&amp;blog=4879199&amp;post=3&amp;subd=devneal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devneal.wordpress.com/2008/09/23/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6c2f18d933024dd52789b40f7b14d9c0?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">Adam Neal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
