<?xml version="1.0" encoding="UTF-8"?>
<blogs type="array">
  <blog>
    <content>&lt;p&gt;With the uncertainty of the future of America, the last thing families need is the cantankerous attitude of 78 year old hall of fame pitcher and &amp;#8220;should be retired&amp;#8221; Senator Jim Bunning.&amp;nbsp;&amp;nbsp; It burns me and probably most of Americans that we can dump billions into foreign economies and billions into bailing out the &amp;#8220;Banking System&amp;#8221; which got us into this in the first place, but we can&amp;#8217;t approve an extension of benefits for struggling families.&amp;nbsp; This halting move by &lt;em&gt;&lt;strong&gt;Mr Personality&lt;/strong&gt;&lt;/em&gt; had forced 2,000 federal employees into unpaid situations, and instilled jeopardy for jobless benefits for millions not to mention halted more than 40 highway projects, but guaranteed Mr Bunning got his check on time.&amp;nbsp; Since the Senator is retiring after this session, no one can control his ornery attitude and close minded thought processes&amp;#8230;&amp;#8230;.Well hes almost gone, and maybe there is a few others that should take a permanent vacation from politics as well, then maybe we can get this country back on track eventually&amp;#8230;&amp;#8230;&lt;em&gt;&lt;strong&gt;.just my .02c!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;</content>
    <created-at type="datetime">2010-03-04T09:41:12-08:00</created-at>
    <id type="integer">61</id>
    <permalink>just-say-no-to-bunning</permalink>
    <sub-title>If your too old then go knit something</sub-title>
    <title>Just Say No to Bunning</title>
    <updated-at type="datetime">2010-03-04T09:45:17-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;I was working on a project for a client when i came across a bug in IE dealing with absolutely positioned elements. I thought i had been down this road before, but apparently not. So i hope this helps others who have been given the task of making things work and coding things twice because they have people that use IE&amp;#8230; Wait?&amp;#8230; Thats probably all of us, at least in the real world. Everyday it seems my job is made more difficult because certain companies decide to build based on there own ideas vs the greater good of all.. Im not saying they dont have the right, but i can say Damn you Microsoft!! &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;h3&gt;Absolute positioned elements bug in IE&lt;/h3&gt;this is my basic code:&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;div class=&amp;#8220;main_content&amp;#8221;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shtl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shtr&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shbl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shbl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;inner_left&amp;#8221;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#8230;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br&gt;&amp;lt;/div&amp;gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;pretty simple. And the css&lt;br&gt;&lt;br&gt;
.main_content {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; position: relative;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 900px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 500px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 20px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; float: left;&lt;br&gt;}&lt;br&gt;.shtl, .shtr, .shbl, .shbr {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; position: absolute;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 20px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 20px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url(&amp;#8216;images/screwhead.jpg&amp;#8217;);&lt;br&gt;}&lt;br&gt;.shtl {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; top: 5px;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; left: 5px;&lt;br&gt;}&lt;br&gt;.shtr {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; top: 5px;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; right: 5px;&lt;br&gt;
}&lt;br&gt;.shbl {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; bottom: 5px;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; left: 5px;&lt;br&gt;
}&lt;br&gt;.shbr {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; bottom: 5px;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; right: 5px;&lt;br&gt;
}&lt;br&gt;.inner_left {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; position: relative;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; float: left;&lt;br&gt;}&lt;br&gt;&lt;br&gt;All this is trivial. Except in IE. The problem i was having was my screwhead divs would disappear. In FF, Safari, Chrome, and Opera they all appeared where they were supposed to be, in each corner. But in IE they would disappear completely. One might think that they would maybe appear on the page but in some weird spot. &lt;span class=&quot;caps&quot;&gt;NOPE&lt;/span&gt; &lt;span class=&quot;caps&quot;&gt;GONE&lt;/span&gt; all together. when you inspect the source the divs would be there, but not in view. &lt;br&gt;&lt;br&gt;&lt;h3&gt;Thank god for google, and other posts like this one.&lt;/h3&gt;It turns out that in IE when you absolutely position an element and its preceding or the following sibling of a float. So as you can seen from the code above. Not only is the parent element floated, but the div following the positioned screwheads is also floated. &lt;span class=&quot;caps&quot;&gt;DAMN&lt;/span&gt; &lt;span class=&quot;caps&quot;&gt;YOU&lt;/span&gt; Microsoft!.. Hence the reason for my divs to disappear. but i found out that the fix is simple, and stupid. by putting something between the AP elements and the floated elements, it allows them to come back into view and appear like they should.&lt;br&gt;&lt;br&gt;This is what i did:&lt;br&gt;&lt;br&gt;
&amp;lt;div class=&amp;#8220;main_content&amp;#8221;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shtl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shtr&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shbl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;shbl&amp;#8221;&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;#8220;inner_left&amp;#8221;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#8230;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br&gt;
&amp;lt;/div&amp;gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;Easy. Simple and Stupid.&lt;br&gt;&lt;br&gt;Hope this helps someone else.&lt;/p&gt;</content>
    <created-at type="datetime">2010-03-01T18:20:19-08:00</created-at>
    <id type="integer">51</id>
    <permalink>nemesis-of-a-developer</permalink>
    <sub-title>The Nemesis of a Developer</sub-title>
    <title>IE Bugs</title>
    <updated-at type="datetime">2010-03-01T22:10:55-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;So, you want to get in to web development, or you think you already are. You have you hack version of &lt;a href=&quot;http://www.adobe.com/products/dreamweaver/&quot; target=&quot;_blank&quot;&gt;Dreamweaver&lt;/a&gt; and you can push things around in design view, or you downloaded some templates from somewhere and you figured out how to add your &amp;#8220;bevel emboss&amp;#8221; logo into it. You&amp;#8217;re ready to start kickin ass and taking names! I was once like this like many others before me, but i met a seasoned Ruby developer through a project i was hired to do &lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt; work for and he showed me the true light of the web world. Im not saying that DW isnt good, i have just come to realize that to really have a grasp on the &amp;#8220;true&amp;#8221; web, you reallly need to dig into the guts of what your building and not just mash crap up in design view. so with that being said&amp;#8230;&lt;/p&gt;
&lt;p&gt;As a developer you&amp;#8217;ll find that there are many many tools that can all get you where you need to be, and its a matter of taste and how comfortable these tools are to you. So if you&amp;#8217;re a windows guy then you just have bad taste&amp;#8230;j/k here are a few tools that we here at the cube prefer. &lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;h3&gt;Mac Mac Mac -&lt;/p&gt;
&lt;p&gt;&lt;/h3&gt;I actually have a Ubuntu box as well, but I am a Mac guy for life, not that you cant develop on other platforms, I just think that the Mac out performs any other machine on the planet and the last thing i want when im working is a box that craps out or hangs etc.. So i would suggest saving a few extra bucks and buying a &lt;span class=&quot;caps&quot;&gt;MAC&lt;/span&gt;. Even the &lt;a title=&quot;Apple Mac Mini - Pure Awesome!&quot; target=&quot;_blank&quot; href=&quot;http://www.apple.com/macmini/&quot;&gt;mac minis&lt;/a&gt; are a supreme machine&lt;br&gt;&lt;h3&gt;Ruby, Rails, jQuery -&lt;/h3&gt;The core of our development efforts. &lt;a title=&quot;The Ruby Programming Language&quot; target=&quot;_blank&quot; href=&quot;http://www.ruby-lang.org/&quot;&gt;Ruby&lt;/a&gt;, because its the greatest programming language on earth. &lt;a title=&quot;The greatest framework in the world&quot; target=&quot;_blank&quot; href=&quot;http://www.rubyonrails.org&quot;&gt;Rails&lt;/a&gt;, because its a fantastic Ruby based web development framework, and &lt;a title=&quot;simply awesome javascript&quot; target=&quot;_blank&quot; href=&quot;http://www.jquery.com&quot;&gt;jQuery&lt;/a&gt;, because it makes javascript easy and a lot of fun to code. I wont go into too much detail on these as most posts will be about these.&lt;br&gt;&lt;h3&gt; Textmate -&lt;/h3&gt; When it comes to writing code i have used &lt;a href=&quot;http://netbeans.org/&quot; target=&quot;_blank&quot;&gt;Netbeans&lt;/a&gt; which is an &lt;span class=&quot;caps&quot;&gt;IDE&lt;/span&gt; (integrated development environment). Its a good tool if you like IDE&amp;#8217;s and the other &lt;span class=&quot;caps&quot;&gt;IDE&lt;/span&gt; is &lt;a href=&quot;http://www.jetbrains.com/ruby/index.html&quot; target=&quot;_blank&quot;&gt;Ruby Mine&lt;/a&gt; which gets a lot of praise from Ruby guys that like IDEs. I personally think they are heavy and clunky and dont really care for them. &lt;a href=&quot;http://www.macromates.com&quot; target=&quot;_blank&quot;&gt;Textmate&lt;/a&gt; is my editor of choice. It has color coding, a nice snippets feature, and there are a lot of great &lt;span class=&quot;caps&quot;&gt;FREE&lt;/span&gt; bundles to help enhance it with a lot of really nice features. It loads fast and simply gets the job done without hiccups. Also you start to notice that in many many screencasts, Textmate is the editor being used, so it can help a noob follow along a little better. it costs about $50 bucks but is so worth it.&lt;br&gt;&lt;h3&gt;SequelPro &amp;#8211; &lt;/h3&gt;When it comes to web applications using &lt;span class=&quot;caps&quot;&gt;SQL&lt;/span&gt; based database back ends, I &lt;span class=&quot;caps&quot;&gt;WAS&lt;/span&gt; a long time user of a &lt;span class=&quot;caps&quot;&gt;FREE&lt;/span&gt; application called Cocoa MySQL. This has now transitioned into a program called &lt;a title=&quot;Sequel Pro database management tool&quot; target=&quot;_blank&quot; href=&quot;http://www.sequelpro.com/&quot;&gt;Sequel Pro&lt;/a&gt;. This is a fantastic &lt;span class=&quot;caps&quot;&gt;GUI&lt;/span&gt; type tool for managing your databases. it allows you to not only manage local (on your machine) databases, but remote (on your server) databases as well. Very easy to use and &lt;span class=&quot;caps&quot;&gt;FREE&lt;/span&gt;. Although i suggest you donate even a few bucks to these projects to give back to these great tools that make our development lives easier.&lt;br&gt;&lt;h3&gt;Firefox &amp;#8211; &lt;/h3&gt;Unless you live under the Microsoft rock, youve probably heard of, and hopefully use, &lt;a title=&quot;The Mozilla Corp - Firefox&quot; target=&quot;_blank&quot; href=&quot;http://www.mozilla.com/firefox/&quot;&gt;Firefox&lt;/a&gt;. Firefox is one of the greatest tools for web development. Not only is it a great, and &lt;span class=&quot;caps&quot;&gt;IMO&lt;/span&gt;, the best browser out there to experience the web with, it also has the ability to add plug-ins. These plug-ins make a developers life a lot easier. The most noted are &lt;a title=&quot;Firebug add on for Firefox&quot; target=&quot;_blank&quot; href=&quot;http://getfirebug.com/&quot;&gt;Firebug&lt;/a&gt;, &lt;a title=&quot;The Web Developer toolbar for Firefox&quot; target=&quot;_blank&quot; href=&quot;https://addons.mozilla.org/en-US/firefox/addon/60&quot;&gt;Web Developer Toolbar&lt;/a&gt;, and &lt;a title=&quot;yslow page tester from yahoo&quot; target=&quot;_blank&quot; href=&quot;http://developer.yahoo.com/yslow/&quot;&gt;YSlow&lt;/a&gt;&lt;br&gt;&lt;h3&gt;Photoshop -&lt;/h3&gt;Not so much a dev tool, but a tool non the less. For those that are doing both design and development, &lt;a title=&quot;Photoshop graphics software&quot; target=&quot;_blank&quot; href=&quot;http://www.adobe.com/products/photoshop/photoshop/&quot;&gt;Photoshop&lt;/a&gt; &lt;span class=&quot;caps&quot;&gt;IMO&lt;/span&gt; is a must have. There are alternatives like &lt;a title=&quot;GIMP open source graphics tool&quot; target=&quot;_blank&quot; href=&quot;http://www.gimp.org/&quot;&gt;&lt;span class=&quot;caps&quot;&gt;GIMP&lt;/span&gt;&lt;/a&gt; or &lt;a title=&quot;Inkscape vector tool&quot; target=&quot;_blank&quot; href=&quot;http://www.inkscape.org/&quot;&gt;Inkscape&lt;/a&gt; that are free from the open source community, but I find that Photoshop is the greatest tool for image manipulation and optimization, and graphics. You can also use Illustrator in conjuction with, but i find that i can create about 95% of everything i need in Photoshop. This is the tool I will be using in future graphic blogs and tutorials.&lt;/p&gt;</content>
    <created-at type="datetime">2010-02-22T18:10:31-08:00</created-at>
    <id type="integer">41</id>
    <permalink>what-the-cool-kids-use</permalink>
    <sub-title>what the cool kids use</sub-title>
    <title>Tools of the trade</title>
    <updated-at type="datetime">2010-02-22T18:14:52-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;I do a lot of road traveling and I have noticed a trend of closing and abandoned restaurants that were once flourishing tourist stops for travelers and families, all along the interstates and highways. I can recall even as a child when we went on road trips as a family we would all look forward to the great food and experience from the new &amp;#8220;food stop&amp;#8221;. It seems that today, families don&amp;#8217;t even talk in the car much less stop and enjoy some family time in a restaurant. I even have a really close friend that I recently visited who when traveling, wears headphones listening to an ipod, his wife listens to hers and the children both have on head sets watching a &lt;span class=&quot;caps&quot;&gt;DVD&lt;/span&gt; movie. Most people don&amp;#8217;t realize how short life is, and that the times they spend together are numbered and will soon pass before they know it and they will be wondering what happened. Technology is a good thing in certain terms, but with Ipods, laptops, in car dvd players, and video games, who needs conversation anyhow. I guess in short, my family and I have not fallen prey to the &amp;#8220;Drive up and Drive on&amp;#8221; mentality that fast food restaurants have ensued upon us, we still take time out to know what goes on in each others lives and show interest in them by making these stops at restaurants, but no longer will families and travelers be learning about each other and seeing the cultures of art that adorn the walls on these types of establishments and from here on out the booths will remain empty and the legacy&amp;#8217;s will fade. I feel sorry for those that don&amp;#8217;t know what I am talking about, and I guess the only question I have left to ask them (if they could remove their headphones long enough) is &amp;#8220;Would you like to super size those fries with that order&amp;#8221;?&lt;/p&gt;</content>
    <created-at type="datetime">2010-02-05T20:54:10-08:00</created-at>
    <id type="integer">31</id>
    <permalink>the-vanishing-restaurant-era</permalink>
    <sub-title>the moral fleecing of America</sub-title>
    <title>The Vanishing</title>
    <updated-at type="datetime">2010-03-05T21:37:08-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;This being the first post of the newly added DevEngine, I wanted to give an overview of what will be featured here. This blog is going to be geared towards the things we use the most here at C2M, namely &lt;a title=&quot;ruby website&quot; href=&quot;http://www.ruby-lang.org/en/&quot;&gt;Ruby&lt;/a&gt;, &lt;a title=&quot;rails website&quot; href=&quot;http://www.rubyonrails.org/&quot;&gt;Rails&lt;/a&gt;, &lt;a title=&quot;jquery website&quot; href=&quot;http://jquery.com/&quot;&gt;jQuery&lt;/a&gt; &lt;a title=&quot;css at w3c school&quot; href=&quot;http://www.w3cschools.com/css/&quot;&gt;&lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt;&lt;/a&gt; and occasionally some other tools that we find very useful, simple, and solid. This blog will also be geared around the beginner.&lt;br&gt;&lt;br&gt;When I was first starting i found that there are a lot of great resources (books, screencasts, podcasts etc..) out there for all these various frameworks and languages, but the one thing i found as a real beginner was most of these resources seemed to have this assumption that you had about 1 year under your belt. This can really cause a lot of frustration for those that maybe just don&amp;#8217;t quite get the basics. To no fault of these many resources, I just think that after a while as you become more seasoned as a developer, you forget that there were those few moments where the light didnt shine as bright, therefore making what seems to be a simple tutorial, difficult. I&amp;#8217;m hoping that as we post small segments here, that those just starting out will find this to be a great resource tp help them along their path to becoming Rockstar programmers.&lt;/p&gt;</content>
    <created-at type="datetime">2010-01-09T19:42:44-08:00</created-at>
    <id type="integer">21</id>
    <permalink>The-rise-of-a-developer-blog-for-noobs</permalink>
    <sub-title>The rise of a developer blog for noobs</sub-title>
    <title>For Moments like these</title>
    <updated-at type="datetime">2010-02-22T15:13:29-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;Well everywhere you look or tune into now is just more bad economic news which seems to all hold the phrase &amp;#8220;It&amp;#8217;ll get worse before it gets better&amp;#8221;&amp;#8230;&amp;#8230;We are all hearing uncommon terms such as &amp;#8220;billions&amp;#8221; and &amp;#8220;bailouts&amp;#8221; but never hear &amp;#8220;the little guy&amp;#8221; or &amp;#8220;small business America&amp;#8221; ever mentioned when these terms are used. One guy has come up with a plan that will benefit all of us in &amp;#8220;small world America&amp;#8221; it is called the &amp;#8220;&lt;span class=&quot;caps&quot;&gt;JSA&lt;/span&gt;&amp;#8221; or &amp;#8220;Jump Start America Plan&amp;#8221; that would benefit not only the little people, but the banking institutions and the Government entities as well&amp;#8230;The beauty of this proposal is its simplicity and straightforwardness&amp;#8230;Could it really be this simple? Many believe so including some politicians as well as banking officials that have read it. If we don&amp;#8217;t do something, there will be billions passed out and probably nothing gained in the end, so lets see if we can help this country from falling into another Great Depression by educating ourselves and those around us. You can read the prosposed bill &lt;a href=&quot;http://4.bp.blogspot.com/_z4z586klk_w/S22O7hSenTI/AAAAAAAAAmM/Svh65B9a0mo/s1600-h/jsa.jpghere&quot; target=&quot;_blank&quot;&gt;here.&lt;/a&gt; If you like what you read spread the word and maybe just maybe&amp;#8230;&amp;#8230;&lt;/p&gt;</content>
    <created-at type="datetime">2009-12-17T16:13:14-08:00</created-at>
    <id type="integer">11</id>
    <permalink>to-stop-the-downward-spiral</permalink>
    <sub-title>Could it really be this simple?</sub-title>
    <title>To stop the downward spiral</title>
    <updated-at type="datetime">2010-02-22T18:01:27-08:00</updated-at>
  </blog>
  <blog>
    <content>&lt;p&gt;Well the inventors over at Katchum Alarm Systems have finally made their product a realization, they have devised a way to put a damper on all of the copper theft problems the nation has been experiencing since the economic downturn. Their system will detect the instant that the perpetrator tampers with any copper tubes or wires on just about any system, and a sensor will send a signal to a control panel which in turn will dial a series of programmed phone numbers or pagers, or can be routed to their main alarm call center. This system is a one of a kind alarm system unlike no other which also has the capability of not only saving taxpayers thousands on theft costs, but also can alarm you in the instance of a refrigerant loss on &lt;span class=&quot;caps&quot;&gt;HVAC&lt;/span&gt; sytems which can save you money as well. So hats off to the guys at Katchum Alarm Systems!&lt;/p&gt;</content>
    <created-at type="datetime">2009-11-21T15:51:35-08:00</created-at>
    <id type="integer">1</id>
    <permalink>katchum-alarm-systems-launch</permalink>
    <sub-title>To catch a thief</sub-title>
    <title>Katchum Alarm System Launch</title>
    <updated-at type="datetime">2010-02-22T18:00:59-08:00</updated-at>
  </blog>
</blogs>
