<?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>My Tech Hell&#187; almanac</title>
	<atom:link href="http://mytechhell.com/blog/archives/tag/almanac/feed" rel="self" type="application/rss+xml" />
	<link>http://mytechhell.com/blog</link>
	<description>Trials and travails of an Evil Genius in Training</description>
	<lastBuildDate>Mon, 18 Apr 2011 14:36:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>JSF Tricks: Abstracted Actions</title>
		<link>http://mytechhell.com/blog/archives/387</link>
		<comments>http://mytechhell.com/blog/archives/387#comments</comments>
		<pubDate>Thu, 17 Dec 2009 22:40:31 +0000</pubDate>
		<dc:creator>ogradyjd</dc:creator>
				<category><![CDATA[Grimoire]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[almanac]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jsf]]></category>
		<category><![CDATA[myfaces]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://mytechhell.com/blog/?p=387</guid>
		<description><![CDATA[JavaServer Faces &#8211; Aw, crap&#8230; I hate JavaServer Faces. I think JSF is a bloated abstraction-fest and just about any other framework makes it easier to write MVC applications &#8211; even Struts. That being said, I&#8217;ve had to recently work with the beast, and in doing so I had to figure out how to do [...]]]></description>
		<wfw:commentRss>http://mytechhell.com/blog/archives/387/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Spring ResourceBundle Property Configurer</title>
		<link>http://mytechhell.com/blog/archives/322</link>
		<comments>http://mytechhell.com/blog/archives/322#comments</comments>
		<pubDate>Sat, 05 Dec 2009 00:38:06 +0000</pubDate>
		<dc:creator>ogradyjd</dc:creator>
				<category><![CDATA[Spring]]></category>
		<category><![CDATA[almanac]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[externalized strings]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[propertyplaceholderconfigurer]]></category>
		<category><![CDATA[resourcebundle]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://mytechhell.com/blog/?p=322</guid>
		<description><![CDATA[I haz a problem! I had a problem, as I often do with the frameworks I work on. I wanted to set properties in my spring context configuration file with externalized strings à la i18n. It seemed like a reasonable request at the time &#8211; and then I had several hours sucked out of my [...]]]></description>
		<wfw:commentRss>http://mytechhell.com/blog/archives/322/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bashed!: Getting the function return as an array.</title>
		<link>http://mytechhell.com/blog/archives/270</link>
		<comments>http://mytechhell.com/blog/archives/270#comments</comments>
		<pubDate>Sat, 14 Nov 2009 21:37:24 +0000</pubDate>
		<dc:creator>ogradyjd</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[almanac]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[return]]></category>

		<guid isPermaLink="false">http://mytechhell.com/blog/?p=270</guid>
		<description><![CDATA[I want to: You want to get an array back from a function (which exposes your underlying evil intentions)&#8230; How the hell? get_haxlog_types&#40;&#41; &#123; declare -a types types&#91;0&#93;=&#34;TRACE&#34; types&#91;1&#93;=&#34;DEBUG&#34; types&#91;2&#93;=&#34;INFO&#34; types&#91;3&#93;=&#34;WARN&#34; types&#91;4&#93;=&#34;ERROR&#34; echo &#34;${types[@]}&#34; &#125; logTypes=&#40; `get_haxlog_types` &#41; echo &#34;${logTypes[@]}&#34; echo &#34;${logTypes[0]}&#34; echo &#34;${logTypes[2]}&#34; WhaaaaaaAAAAA? The above is a slightly modified function from one of [...]]]></description>
		<wfw:commentRss>http://mytechhell.com/blog/archives/270/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bashed!: Assigning a directory listing to a variable</title>
		<link>http://mytechhell.com/blog/archives/246</link>
		<comments>http://mytechhell.com/blog/archives/246#comments</comments>
		<pubDate>Sun, 08 Nov 2009 16:38:03 +0000</pubDate>
		<dc:creator>ogradyjd</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[almanac]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[directory listing]]></category>
		<category><![CDATA[ls]]></category>

		<guid isPermaLink="false">http://mytechhell.com/blog/?p=246</guid>
		<description><![CDATA[I want to: You need to get a directory listing into a variable so you can iterate through it and do things (horrible, unspeakable things) to the child files and directories. How the hell? DIRECTORY=&#34;/root/example&#34; dirListing=&#40;`ls ${DIRECTORY}`&#41; WhaaaaaaAAAAA? We will go over this from the inside out. First, the variable expansion [code]]czoxMjpcIiR7RElSRUNUT1JZfVwiO3tbJiomXX0=[[/code] translates to whatever [...]]]></description>
		<wfw:commentRss>http://mytechhell.com/blog/archives/246/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

