<?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>Joe Crotty</title>
	<atom:link href="http://joecrotty.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://joecrotty.com</link>
	<description>Joe Crotty</description>
	<lastBuildDate>Sun, 06 Nov 2011 18:12:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>ETL Pipe Process Metrics</title>
		<link>http://joecrotty.com/2011/09/etl-pipe-metrics/</link>
		<comments>http://joecrotty.com/2011/09/etl-pipe-metrics/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 21:07:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=931</guid>
		<description><![CDATA[About a week ago at work I was looking at a support email about a latent process that parses large volumes of email. During the ensuing investigation it dawned on me we had no metrics around the process. I am &#8230; <a href="http://joecrotty.com/2011/09/etl-pipe-metrics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>About a week ago at work I was looking at a support email about a latent process that parses large volumes of email. During the ensuing investigation it dawned on me we had no metrics around the process. I am not a fan of  crap shot guesses.</p>
<p>I purposed we spec a data base (AKA DB) table and code out a change to an upstream process that feed the troubled process so we could start gathering some basic metrics: filename, hostname, size_bytes, and count_msgs.</p>
<p>I hastily began cobbling the idea together and about a day and a half in it dawned on me in a quite moment &#8211; the initial design was inept.</p>
<p>For starters the DB table would only store data for one process. But the message data being parsed was part of a broader data pipeline.  The make up of the pipeline was a bit vague like the developing wave below, but a it has the hallmarks of an ETL system.</p>
<p><img class="alignnone size-large wp-image-933" title="wavepipesurfer" src="http://joecrotty.com/wp-content/uploads/2011/09/wavepipesurfer-490x322.jpg" alt="" width="490" height="322" /></p>
<p><span id="more-931"></span></p>
<p>The solution would need a few tweaks:</p>
<ol>
<li>Three data base tables &#8211; note: host table already exists
<ol>
<li>msg_master
<ol>
<li>file_id</li>
<li>file_name</li>
<li>file_dt</li>
<li>start_dt</li>
<li>end_dt</li>
<li>created_dt</li>
<li>updated_dt</li>
</ol>
</li>
<li>msg_proc_metrics
<ol>
<li>proc_id</li>
<li>host_id</li>
<li>file_id</li>
<li> size_bytes</li>
<li>count_msgs</li>
<li>runtime</li>
<li>version</li>
<li>created_dt</li>
</ol>
</li>
<li>msg_procs
<ol>
<li>proc_id</li>
<li>procname</li>
</ol>
</li>
</ol>
</li>
<li>Directory for all processes in the ETL system to write metrics files to.</li>
<li>A script, cron scheduled, to load metrics files to the data base.</li>
</ol>
<p>The new DB model would enable any process to store metrics and normalizes fairly well. Writing metrics to JSON files in a directory insulates  ETL processes from DB latency. I am a big fan of JSON as the data is more portable and readable with a size cost.  However, were only dealing with ~25,000 records/day which is ideal for JSON.  Avro would be a good data serialization solution if the records numbers were a few order of magnitude larger.</p>
<p>With a better functional framework designed  the bit rot front line troops may be getting some better weapons soon.</p>
<ol>
<li>Monitoring</li>
<li>Alerting</li>
<li>Performance Analysis</li>
<li>Trending</li>
<li>Quantitative Analysis</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2011/09/etl-pipe-metrics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabs vs Spaces</title>
		<link>http://joecrotty.com/2011/06/tabs-vs-spaces/</link>
		<comments>http://joecrotty.com/2011/06/tabs-vs-spaces/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 19:40:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=908</guid>
		<description><![CDATA[Have you ever opened a source code file only to have your lower jaw slack aghast as you discover no indentations or worse alignments applied helter-skelter? Tabs vs spaces is a coders crusade with fields ever green.  I can recall &#8230; <a href="http://joecrotty.com/2011/06/tabs-vs-spaces/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you ever opened a source code file only to have your lower jaw slack aghast as you discover no indentations or worse alignments applied helter-skelter? Tabs vs spaces is a coders crusade with fields ever green.  I can recall meeting people with strong opinions all they way back to grade school.  It&#8217;s akin to other code sibling rivalries like <a title="Wiki Indent Style" href="http://en.wikipedia.org/wiki/Indent_style">indent/brace styles</a>.</p>
<p>Behold <a title="Kernel Trap: On Tabs vs Spaces" href="http://kerneltrap.org/mailarchive/git/2007/10/16/344968">this</a> monster linux kernel trap thread where Linus himself weighs in autocratically for 8 column wide hard tab stops which are the code style standard for both the linux kernel and git projects.  At the opposite spectrum <a title="Coding Horror: Death to the space Infidels!" href="http://www.codinghorror.com/blog/2009/04/death-to-the-space-infidels.html">Coding Horror</a> comes down in favor of spaces. Notice the spectrum&#8217;s advocates hail from the polar worlds of unix and windows respectively &#8211; let&#8217;s let sleeping dogs lie shall we?</p>
<p><span id="more-908"></span></p>
<p>My initial delve into this topic was driven by a desire to correct some files recently migrated from cvs to git at work.  The primary concern was stripping cvs &#8216;$Id:&#8217; tags lines from the headers of all files and deleting CVS metadata directories.  The scheme occurred to kill two birds with one stone and align the code files on a standard.  However, my idea of an alignment standard may not jive with the teams nor the companies approved standard. I plan to apply the cvs fix pronto and discuss internally which alignment standard to apply.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2011/06/tabs-vs-spaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas and Saint Nicholas defender of the Faith</title>
		<link>http://joecrotty.com/2010/12/christmas-and-saint-nicholas-defender-of-the-faith/</link>
		<comments>http://joecrotty.com/2010/12/christmas-and-saint-nicholas-defender-of-the-faith/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 19:23:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Catholic]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=899</guid>
		<description><![CDATA[The season of Advent revolves around the coming of the Christ Child Jesus celebrated at Christmas. Christmas is a compound word combining &#8220;Christ&#8221; and &#8220;Mass&#8221; with the clearly stated intention of celebrating a Catholic Mass in honor of the birth &#8230; <a href="http://joecrotty.com/2010/12/christmas-and-saint-nicholas-defender-of-the-faith/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The season of Advent revolves around the coming of the Christ Child Jesus celebrated at Christmas. Christmas is a compound word combining &#8220;Christ&#8221; and &#8220;Mass&#8221; with the clearly stated intention of celebrating a Catholic Mass in honor of the birth of Jesus. Jesus is sent as Emmanuel (Hebrew &#8216;God with us&#8217;) as The Savior to repair the damage done to the human race from the fall of Adam and Eve.</p>
<p>Advent is full of Christian traditions of all sort. One of the central ones in the West centers on jolly Santa Clause. Saint Nicholas (aka Santa Claus) was a saint and bishop of Myra (modern Turkey) who lived from 270-343.</p>
<p><span id="more-899"></span>At the Council of Nicea in 325 Saint Nicholas punched out the heretic Arius who falsely asserted that Jesus was a created being who had not existed from the beginning.  Saint Nicholas was subsequently stripped of the title of bishop and his personal copy of the Gospel and his pallium (i.e., worn vestment akin to a fancy robe) were both confiscated.</p>
<p>Minus the symbols of his former office as bishop he was jailed. That very night Jesus and Mary appeared to Saint Nicholas. Jesus asked him why he was there. Saint Nicholas replied, &#8220;Because I love you, my Lord and my God.&#8221;</p>
<p>Christ then presented Nicholas with his copy of the Gospels. Next, the  Blessed Virgin vested Nicholas with his episcopal pallium, thus  restoring him to his rank as bishop. When the Emperor Constatine caught wind of the miracle he reinstated Nicholas as bishop.</p>
<p><img class="alignnone size-large wp-image-903" title="saintnicholas" src="http://joecrotty.com/wp-content/uploads/2010/12/saintnicholas-490x714.jpg" alt="" width="490" height="714" /></p>
<p>Let us pray to Saint Nicholas that God might grace us with a fraction of his faith to fight against denial of the divinity and presence of the Triune God.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/12/christmas-and-saint-nicholas-defender-of-the-faith/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear WordPress</title>
		<link>http://joecrotty.com/2010/11/dear-wordpress/</link>
		<comments>http://joecrotty.com/2010/11/dear-wordpress/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 20:13:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=893</guid>
		<description><![CDATA[You are starting to annoy me.  I knew you had flaws when I first put my blog on your CMS, but I went in with eyes fully open. Over the last two years you have proven easy to upgrade, simple &#8230; <a href="http://joecrotty.com/2010/11/dear-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You are starting to annoy me.  I knew you had flaws when I first put my blog on your <a title="Wiki CMS" href="http://en.wikipedia.org/wiki/Content_management_system">CMS</a>, but I went in with eyes fully open. Over the last two years you have proven easy to upgrade, simple to edit, and feature friendly in a way that non-tech people can truly appreciate. However, despite your very slick <a title="Wiki UI" href="http://en.wikipedia.org/wiki/User_interface">UI</a>, I am coming to really dislike your editor.  Seriously, why can&#8217;t I easily insert computer programming code examples into a blog post.  Additionally, I have seen enough of your internals to be officially scared. <a title="Drupal CMS" href="http://drupal.org/"> Drupal</a> 7 will be out soon and I plan to jump ship if the grass has any hint of being greener.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/11/dear-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Remote Repository Setup</title>
		<link>http://joecrotty.com/2010/08/git-remote-repository-setup/</link>
		<comments>http://joecrotty.com/2010/08/git-remote-repository-setup/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 20:34:00 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=838</guid>
		<description><![CDATA[Today I was trying to get the hang of setting up a remote git repository for shared ssh use by several developers at my day job.  I wanted anyone with ssh access to be able to check out the repository, &#8230; <a href="http://joecrotty.com/2010/08/git-remote-repository-setup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I was trying to get the hang of setting up a remote git repository for shared ssh use by several developers at my day job.  I wanted anyone with ssh access to be able to check out the repository, but only those in a specific group to have write access (i.e., a commit bit if you will).  So, let&#8217;s dive right in using language most folks likely to read this article would associate with classic SCM tools like cvs and svn.  Assume two machines with ssh already configured correctly for the users devlord and devserf.</p>
<ol>
<li>repo &#8211; machine that will hold the master remote repository</li>
<li>local &#8211; local machine that will hold the checked out repository</li>
</ol>
<p>devlord is in the git group, but devserf is not. Assuming we already have a code base on local let&#8217;s get that checked into a new git repository.</p>
<pre>
<pre class="brush: bash; title: ; toolbar: true; notranslate">cd /var/www/myproj git init</pre>
</pre>
<p> </p>
<p>Now configure repo machine.</p>
<pre>
<pre class="brush: bash; title: ; toolbar: true; notranslate">su - root&lt;br /&gt;adduser git&lt;br /&gt;mkdir -p /var/git&lt;br /&gt;chmod 775 /var/git&lt;br /&gt;su git&lt;br /&gt;cd /var/git&lt;br /&gt;mkdir -p myproj&lt;br /&gt;cd myproj&lt;br /&gt;git init --bare --shared=0664&lt;br /&gt;</pre>
</pre>
<p>The &#8211;bare tells git that it will only hold file deltas and binary information for future checkout.  It&#8217;s the master repository not an actual working repository.</p>
<p>Let&#8217;s head back to local and finish up getting our myproj code base into the master repository on repo.</p>
<p>cd /var/www/myproj</p>
<p>git remote add origin ssh://devlord@repo/var/git/myproj</p>
<p>git push origin master</p>
<p>I don&#8217;t fully understand origin yet, but it&#8217;s akin to a local branch and the master is elsewhere &#8211; in this case on repo. The second command pushed local myproj over to the master myproj repo.</p>
<p>Now devserf can checkout a copy of myproj on local.</p>
<p>cd /home/devserf</p>
<p>git clone ssh://devserf@repo/var/git/myproj</p>
<p>However, if devserf modifies myproj and wants to push their changes back to master myproj at repo it will fail because they are not in the git group on repo.  Only users in the git group on repo, like devlord, are allowed to make commits back to the master.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/08/git-remote-repository-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes</title>
		<link>http://joecrotty.com/2010/06/changes/</link>
		<comments>http://joecrotty.com/2010/06/changes/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 12:00:13 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Featured Content]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=825</guid>
		<description><![CDATA[It&#8217;s been a whirlwind three plus months. My apologies to regular readers for the lack of recent posts. A recap is in order as to what exactly I have been up to. March 15, 2010 or so my wife and &#8230; <a href="http://joecrotty.com/2010/06/changes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-829" title="rmnp_summer_2010_web" src="http://joecrotty.com/wp-content/uploads/2010/06/rmnp_summer_2010_web.jpg" alt="" width="488" height="324" /></p>
<p>It&#8217;s been a whirlwind three plus months. My apologies to regular readers for the lack of recent posts. A recap is in order as to what exactly I have been up to. March 15, 2010 or so my wife and I decided to launch a hastily planned attempt to buy our first home.  We went down this same route in 2004 and abandoned ship when it became clear that the housing market was awash with over priced homes. Invigorated by the thought of an $8,000 federal tax tax credit that would apply only if we could get under contract by April 30, 2010 and close by June 30, 2010 we charged forward forcefully. After a lot of looking, researching, showings and a few false starts we found a great house in Broomfield, CO and closed May 13, 2010 and moved in May 15.</p>
<p><span id="more-825"></span>To complicate matters I started a new job April 19 at OceansideTen Management, Inc. as a software developer/engineer.  Since the move in it&#8217;s been an endless list of to-dos and odd jobs around the house. Last weekend Heather and I drove back to Missouri Valley, Iowa and drove back a U-Haul trailer full of furniture she had been storing at her mom&#8217;s house.  Her mom came with and spent the week helping get things in order here. What a blessing! We capped off her visit with a <a title="Slideshow Photobucket" href="http://s168.photobucket.com/albums/u196/joecrotty/Family/Ann%20Summer%202010/?albumview=slideshow">drive up to Estes Park and a hike from Bear Lake to Emerald Lake in Rocky Mountain National Park</a>.</p>
<p>I am looking forward to more outdoor trips this summer now that things are stabilizing at the new home front.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/06/changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whose world order?</title>
		<link>http://joecrotty.com/2010/06/whose-world-order/</link>
		<comments>http://joecrotty.com/2010/06/whose-world-order/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 17:03:24 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=702</guid>
		<description><![CDATA[    Warning, this is a an article by a software geek for said geeks. Rapid boredom will probably ensue even for the target audience. Most of us at one time or another have worked on a Big Ball of &#8230; <a href="http://joecrotty.com/2010/06/whose-world-order/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><div id="attachment_727" class="wp-caption alignnone" style="width: 500px"><img class="size-full wp-image-727" title="Gulliver and Phones" src="http://joecrotty.com/wp-content/uploads/2010/03/gulliver_and_phones.jpg" alt="" width="490" height="213" /><p class="wp-caption-text">Gulliver, as the system, washes ashore to be tamed by the custodians.</p></div>
<p> </p>
<p>Warning, this is a an article by a software geek for said geeks. Rapid boredom will probably ensue even for the target audience. Most of us at one time or another have worked on a <a title="Big Ball of Mud" href="http://www.laputan.org/mud/">Big Ball of Mud</a>. For a less seasoned hacker the first tour or two of such a haphazard system may go unnoticed due to a number of circumstances the least of which being naivety. But, over time, the imprints of sloppy, duct tape, spaghetti code jungles come to be recognizable. By no means complete a few standout examples from my career:</p>
<p><span id="more-702"></span></p>
<ol>
<li>Code is not stored in an <a title="Wiki Source Code Management" href="http://en.wikipedia.org/wiki/Source_Code_Management">SCM</a>.</li>
<li>Bug fires rage 24/7 consuming all resources perpetually.</li>
<li>Poor code abounds with total disregard for any <a title="GNU Coding Standards" href="http://www.gnu.org/prep/standards/">standards</a> (e.g., wheel is reinvented regularly, 10 screen shot methods, classes with 100&#8242;s of members, etc.).</li>
<li>Duplicate data and functionality throughout including &#8220;clone&#8221; systems.</li>
<li>Management, via ignorance, insists things are basal or worse are in complete denial.</li>
</ol>
<p>Once one can identify a subset of ailments it&#8217;s tempting to run from these helter-skelter systems in haste. Knowledge arms us not to repeat them &#8211; maybe. Yet <a title="Brian Foote" href="http://www.laputan.org/index.html">Foote</a> and <a title="Joseph Yoder" href="http://www.joeyoder.com/">Yoder</a> make clear in <a title="Big Ball of Mud" href="http://www.laputan.org/mud/">BBOM</a> many profitable such systems exist. Profitability aside the fact is they abound! Having designed, developed, and maintained such systems myself the temptation is to disparage. What is it about these hastily crafted boomtown&#8217;s that irk us? Is it the simple fact that the architects and custodians are all to comfortable with a level of expediency we are uncomfortable with?</p>
<p>I am poorly equipped to answer from my limited exposure. Both <a title="Big Ball of Mud" href="http://www.laputan.org/mud/">BBOM</a>s I worked on were absolutely driven by a perceived fleeting window of business opportunity. Design marathons, repositories, code standards, pair coding, QC, test harnesses, continuous integration, etc. where all pushed aside in the rush to launch. Once there and stably afloat i.e.,  profitable, did the realization often slowly set in that the system was ineptly fashioned. Once built management forever demands hastily cobbled features to increase ROI almost always at the cost of sane design &#8211; the &#8220;structure&#8221; worsens. Of course, as engineers we fight to avert such quagmires whether through evangelization and/or example.  However, we all have to eat &#8211; to deny human nature is foolhardy.</p>
<p>An inverse universe exists where architecture, means and process are king. Laugh if you will but it&#8217;s well known that <a title="Microsoft" href="http://www.microsoft.com/en/us/default.aspx">Microsoft</a> runs one of the most process driven engineering shops the world over. For them sheer scale dictates a process rooted approach. However, for the average web business outlet day to day operation is about finding the middle ground between launch mentality and design nirvana.</p>
<p>So, whose world order should prevail in software engineering? The one that works.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/LH_e8NfNV-c&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="344" src="http://www.youtube.com/v/LH_e8NfNV-c&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/06/whose-world-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hints of Grace</title>
		<link>http://joecrotty.com/2010/04/hints-of-grace/</link>
		<comments>http://joecrotty.com/2010/04/hints-of-grace/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 23:40:28 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[Catholic]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=810</guid>
		<description><![CDATA[For the last four years I have volunteered at Holy Trinity Catholic Church &#38; School as a catechist for the religious education program forming young adults. Classes are offered twice a week on Wednesdays evening and Sunday afternoon during the &#8230; <a href="http://joecrotty.com/2010/04/hints-of-grace/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-815" title="Salvador First Communion" src="http://joecrotty.com/wp-content/uploads/2010/04/salvador_first_communion.jpg" alt="" width="488" height="324" /></p>
<p>For the last four years I have volunteered at <a title="Holy Trinity Catholic Church &amp; School" href="http://www.htcatholic.org/">Holy Trinity Catholic Church &amp; School</a> as a catechist for the religious education program forming young adults. Classes are offered twice a week on Wednesdays evening and Sunday afternoon during the regular school year. My wife and I, Heather, teach the Wednesday class. This year we moved up from teaching second to third grade sacramental kids (i.e., they receive both reconciliation and first communion in the Spring).</p>
<p><span id="more-810"></span>The highlight of the year, without a doubt, was seeing these children of God, claimed by him during baptism, receive holy communion for the first time.  I was overjoyed by the visible ceremony, but internally I could sense an extraordinary grace that imbued all of them. They have moved one step further in the natural progression as foot soldiers for Christ. Let us pray their parents remain steady in the fight against evil and deliver each child consistently and without fail to God&#8217;s house on Sunday .</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/04/hints-of-grace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Catholic Bumper Sticker Design</title>
		<link>http://joecrotty.com/2010/04/catholic-bumper-sticker-design/</link>
		<comments>http://joecrotty.com/2010/04/catholic-bumper-sticker-design/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 21:17:56 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[Catholic]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=782</guid>
		<description><![CDATA[For a few years now I have been yearning to put a maltese cross styled window sticker on my truck topper. Something that hollers out to a distressed and a generally non believing world that I am Catholic and Proud! &#8230; <a href="http://joecrotty.com/2010/04/catholic-bumper-sticker-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_798" class="wp-caption alignleft" style="width: 260px"><img class="size-full wp-image-798" title="Maltese Cross Keys of St. Peter" src="http://joecrotty.com/wp-content/uploads/2010/04/maltese_vatican_cross_web.png" alt="" width="250" height="250" /><p class="wp-caption-text">Maltese Cross Keys of St. Peter</p></div>
<p>For a few years now I have been yearning to put a maltese cross styled window sticker on my truck topper. Something that hollers out to a distressed and a generally non believing world that I am Catholic and Proud! I poked around the web and came up with a few ideas but nothing that really stuck. If you want something done right then you have to do it yourself.</p>
<p>The <a title="Order of Malta" href="http://www.orderofmalta.org/english">Order of Malta</a> and the associated <a title="Wiki Maltese Cross" href="http://en.wikipedia.org/wiki/Maltese_cross">Maltese Cross</a> are old by almost any standard. Yet,even though the <a title="Wiki Maltese Cross Image" href="http://en.wikipedia.org/wiki/File:Maltese-Cross-Heraldry.svg">wiki maltese cross image</a> is decent enough they get the geometry wrong. After locating a <a title="Geometric Maltese Cross" href="http://www.smom-za.org/MalteseCross/geometry.htm">correct geometric maltese cross layout</a> the next hurdle was designing it such that at least fellow Catholics would get &#8220;it.&#8221;</p>
<p><span id="more-782"></span>I am fairly certain other dyed in the wool Catholics would recognize the maltese cross, but there is uncertainty it would resonate a call to arms in the <a title="George Weigel column &quot;Scandal-time, once more&quot;" href="http://www.archden.org/index.cfm/ID/3702">public square in defense</a> of everything we <a title="Catechism of Catholic Church Profession of Faith" href="http://www.usccb.org/catechism/text/partone.shtml">profess</a>. The other day after dinner at a friends house I noticed they had a small sharp looking <a title="Catholic bumper stickers" href="http://www.cafepress.com/+catholic+bumper-stickers">Vatican flag bumper sticker</a> on their SUV. In the white half of the flag is the universally recognized crossed <a title="Wiki Keys of Saint Peter image" href="http://en.wikipedia.org/wiki/File:Emblem_of_the_Papacy_SE.svg">Keys of Saint Peter</a>. Obviously, at least to me, a blended design of the Maltese Cross and the Vatican Flag would drive home a clarion call to defend, preserve, and uphold the Church &#8211; especially the Pope. We must not flinch in the slightest when the enemies of the Church press in on every side.</p>
<p>When <a title="FedEx Kinko's" href="http://www.fedex.com/us/office/">Kinko&#8217;s</a> is done printing up the sticker and it&#8217;s fixed to the truck topper I&#8217;ll post a photo.</p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/04/catholic-bumper-sticker-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Urban Legends</title>
		<link>http://joecrotty.com/2010/04/urban-legends/</link>
		<comments>http://joecrotty.com/2010/04/urban-legends/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 00:55:47 +0000</pubDate>
		<dc:creator>Joseph Crotty</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://joecrotty.com/?p=756</guid>
		<description><![CDATA[I live in Westminster, Colorado a growing suburban area northwest of Denver. It&#8217;s a mixed profile of semi-industrial areas, quaint residential neighborhoods, parks, schools, and the the usual sprinkle of hustle and bustle that accompanies suburban life. Having lived here &#8230; <a href="http://joecrotty.com/2010/04/urban-legends/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-766" title="Sign Shaker" src="http://joecrotty.com/wp-content/uploads/2010/04/sign_shaker.jpg" alt="" width="490" height="325" /></p>
<p>I live in <a title="City of Westminster" href="http://www.ci.westminster.co.us/">Westminster, Colorado</a> a growing suburban area northwest of Denver. It&#8217;s a mixed profile of semi-industrial areas, quaint residential neighborhoods, parks, schools, and the the usual sprinkle of hustle and bustle that accompanies suburban life. Having lived here for ten years I know a thing or two about some of the local <a title="Wiki Urban Legends" href="http://en.wikipedia.org/wiki/Urban_legend">urban legends</a>. For example, &#8220;air guitar master&#8221; Mark who makes infrequent rounds on Federal Boulevard in the Federal Heights region in retro &#8217;80&#8242;s metal rock garb hammering out licks to his walkman.  I hope to highlight him in a future post, but today&#8217;s feature character is the &#8220;sign dancer.&#8221;</p>
<p><span id="more-756"></span>Anyone who has driven through the intersection of <a title="120th Ave &amp; Sheridan Blvd Google Maps" href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=120+and+sheridan&amp;sll=39.836653,-105.037205&amp;sspn=0.252292,0.528374&amp;g=westminster,+co&amp;ie=UTF8&amp;hq=&amp;hnear=W+120th+Ave+%26+N+Sheridan+Blvd,+Colorado&amp;ll=39.914081,-105.0529&amp;spn=0.063002,0.132093&amp;z=14">120th Avenue and Sheridan Boulevard</a> and missed the &#8220;sign dancer&#8221; when present must have been either very busy behind the wheel or blind.  <a title="Tim Farnsworth Facebook Page" href="http://www.facebook.com/photo.php?pid=3074430&amp;id=241540939268#!/pages/ME-Sign-Guy-on-120th-Sheridan/213165393673?ref=ts">Tim Farnsworth</a> is the name and Professional Sign Shaker is the game. Forget about your typical lifeless fast food employee ordered to a nearby intersection to stir up business. Tim&#8217;s sheer energy, movement, drive, costume and general street rapper vibe catapults the banal sign vegetable to new heights. Tim shakes six hours a day five days a week as his main employment for <a title="M&amp;E Painting" href="http://www.mandepainting.com/">M&amp;E Painting</a>. He almost always brings a smile to my face and a friendly honk!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="490" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/t5Xn03NqVGE&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="490" height="344" src="http://www.youtube.com/v/t5Xn03NqVGE&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://joecrotty.com/2010/04/urban-legends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.828 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-05 22:21:21 -->

