<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
  <title>Straggled Matter</title>
  <link rel="alternate" type="text/html" href="http://www.jojometal.com/" />
  <modified>2009-09-23T03:06:34Z</modified>
  <tagline></tagline>
  <id>tag:www.jojometal.com,2010://1</id>
  <generator url="http://www.movabletype.org/" version="4.1">Movable Type</generator>
  <copyright>Copyright (c) 2009, Jordan</copyright>

  <entry>
    <title>Happy 1 Year Cable-Free Anniversary!!!</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/09/happy_1_year_ca.php" />
    <modified>2009-09-23T03:06:34Z</modified>
    <issued>2009-09-22T20:44:41-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.807</id>
    <created>2009-09-23T01:44:41Z</created>
    <summary type="text/plain"> Katie and I are busy patting ourselves on the back over here. While it may look odd to anyone who&apos;s looking in our windows, it feels good. In the past year we&apos;ve been able to save just under $900,...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="" src="http://www.jojometal.com/archives/images/happybirthday.jpg" width="135" height="180" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></span></p>

<p>Katie and I are busy patting ourselves on the back over here.  While it may look odd to anyone who's looking in our windows, it feels good.  In the past year we've been able to save just under $900, and save hours of useless surfing.</p>

<p>Two main things have kept us from heading back into the deep, dark pockets of the cable industry:</p>

<p><strong>1) Hulu.com</strong> - they offer most network shows we watch, anytime we want.  Our home theater PC allows us to watch <a href="http://www.hulu.com">Hulu</a> on our HDTV with limited commercials.<br />
<strong>2) Over the Air (OTA) HD channels</strong> - we also bought an outdoor HD antenna for watching our major local channels.  We get ABC, NBC, CBS, 3 LPB stations, FOX and a few other stations for free (and did I mention in HD?).  </p>

<p>As you can see,  we still watch TV, we just do it more intelligently (at least that's the way I think of it).  We have what the cable industry has yet to provide - a la carte programming.  We pick and choose what we want to watch, and get to watch it when we want.  It's a logical approach.  I don't want to watch '1000 ways to die' on the Spike channel, or any of the 23 other hours of the garbage there, so why should I be paying for that channel?  Now, I'm not.  Someone else is going to have to subsidize Spike, MTV and We.</p>

<p>Anywho, good luck to anyone else wanting to drop cable and save some money, it's been good for Katie and Me  We've made it a year longer than I thought we would without cable.</p>]]>
      
    </content>
  </entry>

  <entry>
    <title><![CDATA[Stumbling into trouble&hellip; Database Design]]></title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/08/stumbling_into.php" />
    <modified>2009-08-21T02:09:52Z</modified>
    <issued>2009-08-20T21:09:52-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.806</id>
    <created>2009-08-21T02:09:52Z</created>
    <summary type="text/plain"> I stumbled into trouble today – a looming deadline as well as a complicated problem with no win-win solution that I can see.&#160; In this case, I need the ability to allow the end-user of our software (a web-based...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.flickr.com/photos/kt/53443134/sizes/m/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; margin: 10px; display: inline; border-top: 0px; border-right: 0px" title="patiencebushelbrains" border="0" alt="patiencebushelbrains" align="right" src="http://www.jojometal.com/WindowsLiveWriter/StumblingintotroubleDatabaseDesign_129A6/patiencebushelbrains_3.jpg" width="244" height="184" /></a> I stumbled into trouble today – a looming deadline as well as a complicated problem with no win-win solution that I can see.&#160; </p>  <p>In this case, I need the ability to allow the end-user of our software (a web-based document scanning app) to define certain aspects of how this software will operate.&#160; This means letting them set up their own list of Document Types (Invoices, Checks, Bills, W-4’s, etc.), Document Statuses on each of those Document Types so they could recreate their office’s workflow.&#160; We also decided (late in the design process) to allow the user to add as many indexes as they want for each Document Type… and this turned out to be the tricky bit.&#160; </p>  <p>This means that a user can define an index called Invoice Number on the Invoice document type, and when they scan an Invoice, they type in an Invoice Number.&#160; This way, when they want to find this document later they can look it up by Invoice Number.&#160; They can create as many indexes on each Document Type as they want.&#160; They could also create indexes to allow them to look up that Invoice by the person who received it, the account number, the date it was received,etc.&#160; </p>  <p>So, being the smarty pants I am, I whipped up a couple of additional tables to account for this scenario -described, albeit not exactly, as follows:</p>  <ol>   <li>ScannedDocument (already existed)</li>    <li>IndexField (new, holds the name of the newly created user-defined index field)</li>    <li>IndexFieldValue (hold a value for an IndexField, and ties that value to a ScannedDocument)</li> </ol>  <p>Simple, right?&#160; Well, it turns out that it’s simple to create and to insert data into, but pretty rough on the person who’s trying to get data back out (unless my brain is just friend and there’s a simple solution).&#160; When the user searches for a Document, they can add as many indexes as they want.&#160; So, I have to dynamically create a query that will match any number of name and value pairs, in addition to any other search criteria a user might select (Date Scanned, Document Type, etc.).&#160; </p>  <p>That’s where I’m at today… trying to figure out a good way to find the documents in our database based on one or more Name/Value pairs.&#160; In looking around on the internet, it looks like I designed myself a sort of EAV (Entity Attribute Value) model… though a slanted a bit to better fit the relational database model.</p>  <p>Just about every article I read on the internet trashes the idea of storing an EAV model in a relational database (which is what I’ve done here), trashes dynamic SQL (what I’m considering using… though, not because it’s the most prudent choice) and basically dirties the name of anyone who considers it.&#160; Consider me dirty.&#160; </p>  <p>I’m looking at a bunch of solutions, none of which look promising and staring a deadline in the face that I’m unlikely to meet now.&#160; It’s an ugly day… but I’ll make it.&#160;&#160;&#160; </p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Great Covers of Great Songs - Entry #1</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/08/great_covers_of.php" />
    <modified>2009-08-12T03:08:31Z</modified>
    <issued>2009-08-11T21:53:07-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.805</id>
    <created>2009-08-12T02:53:07Z</created>
    <summary type="text/plain">Cover - Black Crowes - The Night They Drove Old Dixie Down Original - The Band - The Night They Drove Old Dixie Down...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><strong>Cover</strong> - Black Crowes - The Night They Drove Old Dixie Down <br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/YdVhIbiIBC0&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YdVhIbiIBC0&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
<br/><br />
<strong>Original</strong> - The Band - The Night They Drove Old Dixie Down <br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/sMHyovwX7JM&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sMHyovwX7JM&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Shreveport Lawn Service</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/08/shreveport_lawn_service.php" />
    <modified>2009-09-23T01:43:30Z</modified>
    <issued>2009-08-11T14:22:48-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.804</id>
    <created>2009-08-11T19:22:48Z</created>
    <summary type="text/plain"> Image by Jez Page Since we&apos;ve moved from North Bossier down to Shreveport in South Highlands, I&apos;ve learned quite a few things about home ownership.&#160; The least of the lessons learned involve lawn care.&#160; They are as follows: It&apos;s...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<div style="margin: 10px; display: inline; float: right"><a href="http://www.jojometal.com/WindowsLiveWriter/ShreveportLawnService_CA02/lawnclipping_2.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="lawnclipping" border="0" alt="lawnclipping" src="http://www.jojometal.com/WindowsLiveWriter/ShreveportLawnService_CA02/lawnclipping_thumb.jpg" width="244" height="201" /></a>    <br />Image by <a href="http://www.flickr.com/photos/jezpage/">Jez Page</a></div>  <p>Since we've moved from North Bossier down to Shreveport in South Highlands, I've learned quite a few things about home ownership.&#160; The least of the lessons learned involve lawn care.&#160; They are as follows:</p>  <ol>   <li>It's hot in Shreveport in June, hotter in July, and in August you burst into flames. </li>    <li>When it's hot I don't want to do yardwork... not that I'm crazy about it when it's nice out. </li>    <li>If you dislike a task enough, it's well worth the money to pay someone else to do it. </li>    <li>Be selective about who you pay for yardwork </li> </ol>  <p>A year ago, I finally learned the value of #3 -paying someone else to do a job I hate.&#160; Shortly after, I learned #4 - being selective about who you pay for those jobs.&#160; I hired someone who had done work for our neighbor in the past, and needed work.&#160; He did a good job at first, but slowly started to miss spots or not weedeat from week to week.&#160; So, we parted ways.</p>  <p>This spring, I started back to mowing again but kept noticing my neighbor's lawn across the street, which was now being cut by a lawn service.&#160; It always seemed to be cut and trimmed well.</p>  <p>I talked to my neighbors and found that they've been using Baber Lawn Service.&#160; Soon after, I contacted them and have been happy with the results.&#160; No missed spots, no nonsense.&#160; I come home from work, the grass is mowed.&#160; That's an awesome feeling.</p>  <p>So, anywho... the point of the post was really just to offer that advice for anyone else who shares a hatred of yard work.&#160; Hire someone else if you're able... and if you're in Shreveport, call Daniel at Baber Lawn Service (Contact info below).</p>  <p>Phone: (318) 424-1728</p>  <p>Cell: (318) 588-0805</p>  <p>Cell: (318) 754-1487</p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Grocery Delivery Business Idea- Shreveport</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/07/shreveport_grocery_delivery.php" />
    <modified>2009-07-15T02:29:15Z</modified>
    <issued>2009-07-13T22:20:41-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.801</id>
    <created>2009-07-14T03:20:41Z</created>
    <summary type="text/plain">Why is there no Grocery Delivery service in Shreveport? Surely there are other people like myself here in town that have come to despise going to Walmart or Target. Surely those people also have disposable income ($10 per delivery to...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p>Why is there no Grocery Delivery service in Shreveport?  Surely there are other people like myself here in town that have come to despise going to Walmart or Target.  Surely those people also have disposable income ($10 per delivery to spare).  It's a small price to pay for not having to get out in the 107 degree heat and fight the crowds for hot pockets and toilet paper (must buy in pairs).</p>

<p>I tried to do the math on making a successful go at starting a delivery business in my off-hours.  I ran into a couple of problems.</p>

<p><strong>1)</strong> I don't have enough energy.  It may be that I don't sleep well at night or have sleep apnea... I'm not sure.  Either way, when I get home from work I don't want to do a dern thing that resembles work.<br />
<strong>2)</strong> See #1</p>

<p>The thing is, I think it could work here.  It could work like this:</p>

<p><strong>1) </strong>Create a website that listed a large selection of available items, with their prices and pictures.  (Companies exist that will provide a database of food items with prices and pictures).<br />
<strong>2) </strong>Allow users to register and purchase groceries at your prices (hopefully priced between walmart and brookshires prices).  If the order is placed before 3PM, it will be delivered the next day.  Add $10 for orders under $100, 10% above $100.<br />
<strong>3)</strong> Have the website print a master list of groceries ordered by 3PM, combining all orders into one big list.  Shop Sam's and Walmart, etc. for all items.<br />
<strong>4)</strong> Bring groceries home, split into individual orders.  <br />
<strong>5)</strong> Refrigerate necessary groceries.<br />
<strong>6) </strong>Deliver groceries the following day.</p>

<p>The main thing someone would want to do would be limit the delivery areas initially.  I imagine that targeting an area like South Highlands (small, upper middle class area) would be a good way to fine tune the business.</p>

<p>If I were a college student with the ability to create this website, I'd be all over it... but I'm not.  I have a full time job, bills to pay and little energy.  It doesn't seem like it would take much... a website that can accept credit cards, a decent size car, grocery skills, a few ice chests, and a heavy heap of time and patience.  </p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Assemble the Brain Trust!</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/07/assemble_the_br_5.php" />
    <modified>2009-07-06T03:35:26Z</modified>
    <issued>2009-07-05T22:27:38-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.800</id>
    <created>2009-07-06T03:27:38Z</created>
    <summary type="text/plain"> It must be nice to be rich, or CEO or politician and have a team of knowledgeable advisors to give you advice.&#160; When you have an idea, you can run it by a few people and get informed opinions...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="braintrust.jpg" src="http://www.jojometal.com/archives/images/braintrust.jpg" width="150" height="96" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></span></p>

<p>It must be nice to be rich, or CEO or politician and have a team of knowledgeable advisors to give you advice.&#160; When you have an idea, you can run it by a few people and get informed opinions at each step of your decision making process.&#160; </p>

<p>I, on the other hand, don't fit into the CEO, politician or rich category.&#160; Most of the time, I just run decisions by the dog and if he doesn't argue against me, I proceed.&#160; It's no <a href="http://www.youtube.com/watch?v=MYX6Lkw_Swc" target="_blank">brain trust</a>, but it'll do in a pinch.&#160; </p>

<p>This past weekend, I came up with another business idea (not new, just new to my city).&#160; I ran it by the first line of defense against fruitless labor and thoughts, the family and a friend or two.&#160; After receiving a decent response from most, I realized that I still needed some insight that I probably couldn't find without finding someone who's tried something similar, or just trying it for myself.&#160; </p>

<p>Normally, I'd turn to the internet in situations like these (finding products,travel destinations, factual information,etc.) , but the internet doesn't offer what I'm after here.&#160; I need a decision engine, and I don't mean Bing (sorry Microsoft, but the phrase doesn't fit the functionality).&#160; It really would come in handy for all the ideas that pass through my mind. </p>

<p>Oh well, my ADHD will probably take over in the next few days and I'll be on to a new idea.&#160; I should probably just focus energy back on my existing side projects, and getting them up to 100% before moving on... but a brain trust would still be cool to shoot ideas past every once in a while...</p>

<div class="nowplaying"><strong>I'm listening to:</strong><br />Little Milton - Grits Ain't Groceries</div>]]>
      
    </content>
  </entry>

  <entry>
    <title>Work has its benefits</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/work_has_its_be.php" />
    <modified>2009-06-25T00:13:48Z</modified>
    <issued>2009-06-24T18:48:17-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.794</id>
    <created>2009-06-24T23:48:17Z</created>
    <summary type="text/plain">Sometimes, work has its benefits. Rarely, I know, but sometimes work really comes through for me... like it did today. On Friday, we upgraded our PC&apos;s at work to these sweet new Dell Optiplex 960&apos;s... it&apos;s hard to believe that...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p>Sometimes, work has its benefits.  Rarely, I know, but sometimes work really comes through for me... like it did today.  </p>

<p>On Friday, we upgraded our PC's at work to these sweet new Dell Optiplex 960's... it's hard to believe that Dell is making something that's worth getting excited about, but these are nice.  The cases are aluminum, the buttons feel nice, and even the keyboard is an improvement over the 755's we had before.  The main thing to get excited about is the fact that they are beasts... 64-bit machines with Quad core processors, 8 gigs of RAM... the works.</p>

<p>This upgrade meant that our old computers were going to have to be dealt with, so I asked about whether we could buy one and sure enough my boss agreed to sell me my old PC (on the cheap).  The nice thing was that since I've only been at my current job for 9 months or so, I had a much newer PC than anyone else (by a full 2 years or so).   So, today I brought home my old work machine - a Quad Core machine with 4 gigs of RAM, a DVD burner, 500GB of hard drive space and a 256 MB ATI video card.  It may be old Tech to my employer, but to me, it's a swanky new development machine.</p>

<div class="nowplaying">I'm listening to <br/>Sam Cooke - A Change is Gonna Come</div>]]>
      
    </content>
  </entry>

  <entry>
    <title>Family Reunion</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/family_reunion.php" />
    <modified>2009-06-20T16:16:20Z</modified>
    <issued>2009-06-20T11:16:20-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.793</id>
    <created>2009-06-20T16:16:20Z</created>
    <summary type="text/plain">Katie’s family reunion normally happens at Thanksgiving each year, but with the recession hitting everyone hard last year and travel prices climbing the family decided to delay last year’s annual reunion.&#160; Instead, everyone planned to meet here in Louisiana in...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p>Katie’s family reunion normally happens at Thanksgiving each year, but with the recession hitting everyone hard last year and travel prices climbing the family decided to delay last year’s annual reunion.&#160; Instead, everyone planned to meet here in Louisiana in June at Jeem’s Bayou Hunting and Fishing Club, to which Katie’s grandmother belongs.&#160; That time came this past week, and the Katie and I took off a few days to go and hang out with her family.&#160; </p>  <p>As always, when her family is involved, we had a good time.&#160; The key ingredient to our happiness was of course the food.&#160; We had pie night, a staple in her family, where everyone has their favorite pie made and those pies serve as dinner.&#160; There was the traditional gumbo (Katie’s grandma makes killer gumbo… not deadly, just killer), greenbird turkey, taco salad, burgers, fish, pancakes, bacon, and last but not least… blue bell ice cream.&#160; I love you, Blue Bell.</p>  <p>The second ingredient that made this year great was the location -&#160; the club house (for lack of a better word) at Jeem’s Bayou Hunting and Fishing Club.&#160; Not only is the house a few hundred feet from Caddo Lake (with a pier 30 feet or so into Caddo Lake), but the entire family was able to stay there comfortable – all 20 or so of us.&#160; They had 10 rooms over two floors and enough room to seat us when it came time for dinner.&#160; There were nets for badminton or volleyball, swings, benches on the pier, and rocking chairs scattered all over the place within a screened porch.&#160; It was a great place to have so many people with so many different interests.</p>  <p align="center"><object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=71377" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="intl_lang=en-us&amp;photo_secret=82417dd0d8&amp;photo_id=3643287207"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&photo_secret=82417dd0d8&photo_id=3643287207" height="300" width="400"></embed></object></p>  <p>I hope everyone else had as good a time as I did… although from looking at me, a city boy who sits at a desk in the air conditioning playing on a computer for at least 8 hours a day, Katie’s family probably thought I was miserable.&#160; Anywho, I’m posting the <a href="http://www.flickr.com/photos/jordanandkatie/sets/72157619906879949/">pictures to flickr from the week</a>, including some from our family trip to Jefferson, TX and the boat tour of Caddo Lake (both on Wednesday of this week).</p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Stinking Vegetables Are Trying to Off Me</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/stinking_vegeta.php" />
    <modified>2009-06-10T03:10:42Z</modified>
    <issued>2009-06-09T22:10:42-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.792</id>
    <created>2009-06-10T03:10:42Z</created>
    <summary type="text/plain"> So, my dog tried to kill me the other day.&#160; For the third time now, he’s bounced his ball over into the neighbor’s yard, only this time I had to get in a little bit of brush to try...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.jojometal.com/WindowsLiveWriter/StinkingVegetablesAreTryingtoOffMe_137DF/firstbathtime_2.jpg"><img style="border-bottom: 0px; border-left: 0px; margin: 10px; display: inline; border-top: 0px; border-right: 0px" title="firstbathtime" border="0" alt="firstbathtime" align="right" src="http://www.jojometal.com/WindowsLiveWriter/StinkingVegetablesAreTryingtoOffMe_137DF/firstbathtime_thumb.jpg" width="244" height="164" /></a> So, my dog tried to kill me the other day.&#160; For the third time now, he’s bounced his ball over into the neighbor’s yard, only this time I had to get in a little bit of brush to try to retrieve it.&#160; The neighbor’s shrubs and the vines attached to them were growing on the fence, poking over to our side, preventing close access to the fence.&#160; I’ll give you three guesses as to what those vines/plants may have been.&#160; If you said Poison anything, you’re right.&#160; </p>  <p>This happened on Thursday, I think.&#160; Since then I’ve been on a regimine of calomine lotion, benadryl (lotion and pills) and today had to break down and get a celestone shot – in the butt.&#160; They call it the “hip”, but they really mean butt.&#160; </p>  <p>Who are they trying to fool?&#160; “Well, this shot usually goes in the hip, so lean over this table, and take your pants down a bit.&#160; Bend your leg a little…”.&#160; Lady, that’s my butt.&#160; If you have to ask me to take my pants down- one, my cheeks tense up and my prostate gets mighty nervous.&#160; Somehow it found out what happens in doctor’s offices when pants go down.&#160; And two, it’s my butt.</p>  <p>Anywho, the shot hasn’t really done much yet.&#160; Toward the end of the day (4-5 hours after the shot) I was feeling less itchy, but my rashes were still highly visible (people have been asking about them all day) and a bit itchy.&#160; My right eye is actually surrounded by a rash, and a rash on my forehead above the eye is creeping toward my eyebrow.&#160; Rash on my right leg, rash on both hands, elbows, biceps, BOTH EARS… here a rash, there a rash everywhere a rash rash.&#160; </p>  <p>You know, people on the internet (doctors, I suppose, too) say that this stuff doesn’t spread.&#160; Again, I say poppycock.&#160; I’m getting rashes in new places, places where clothing fully protected me from exposure… and I wasn’t rubbing my jeans or shirts on the backs of my knees when taking them off, or rubbing dirty poisoned clothes on myself afterwards.&#160; I’ve been to this poison ivy rodeo before.&#160; The rashes are also growing radially (or were, I should say… until the celestone).</p>  <p>That’s enough griping, just had to get it out there.&#160; Doc says there a 50/50 chance I’ll not sleep much tonight (50% of people have sleeplessness as a side effect), and at this point, I think the Benedryl should’ve knocked me out. So, I hope you’re sleeping better than me tonight, even if I do have a regular night’s sleep.&#160; </p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Go Go Google Gadgets!</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/go_go_google_ga.php" />
    <modified>2009-06-06T23:34:13Z</modified>
    <issued>2009-06-06T18:34:13-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.791</id>
    <created>2009-06-06T23:34:13Z</created>
    <summary type="text/plain">So, I spent the better part of my day scratching my poison ivy rashes on my face, ears, hands, arms and back of my knee.&#160; In between scratches, my fingers were glued to my keyboard, tapping out a google gadget...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p>So, I spent the better part of my day scratching my poison ivy rashes on my face, ears, hands, arms and back of my knee.&#160; In between scratches, my fingers were glued to my keyboard, tapping out a google gadget for <a href="http://www.bargainfiend.com">bargain fiend</a>. </p>  <p>Here it is in all its glory.</p>  <div align="center"><script src="http://www.gmodules.com/ig/ifr?url=http://www.bargainfiend.com/bargainfiendgadget.xml&amp;synd=open&amp;w=340&amp;h=408&amp;title=Bargain+Fiend%3A+Addicted+to+Deal+Hunting&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></div>  <p>Feel free to add it to your igoogle homepage (or anywhere else).</p>]]>
      
    </content>
  </entry>

  <entry>
    <title>What does the D in D-day mean?</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/what_does_the_d.php" />
    <modified>2009-06-06T17:27:52Z</modified>
    <issued>2009-06-06T12:27:52-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.790</id>
    <created>2009-06-06T17:27:52Z</created>
    <summary type="text/plain"> Lately there’s been a good bit of press devoted to covering the 65th anniversary of D-day, including Obama’s trip to meet with European leaders on the anniversary.&#160; Until yesterday on my drive home, I hadn’t even considered what the...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.jojometal.com/WindowsLiveWriter/WhatdoestheDinDdaymean_AF3E/d-day_2.jpg"><img style="border-bottom: 0px; border-left: 0px; margin: 10px; display: inline; border-top: 0px; border-right: 0px" title="d-day" border="0" alt="d-day" align="right" src="http://www.jojometal.com/WindowsLiveWriter/WhatdoestheDinDdaymean_AF3E/d-day_thumb.jpg" width="215" height="100" /></a> Lately there’s been a good bit of press devoted to covering the 65th anniversary of D-day, including Obama’s trip to meet with European leaders on the anniversary.&#160; Until yesterday on my drive home, I hadn’t even considered what the the origin of the word D-day.&#160; Maybe it's common knowledge... </p>  <p>It turns out that it <a href="http://www.nationalww2museum.org/assets/pdfs/the-meaning-of-dday-fact.pdf">D-day used to be a military term for the day an operation would take place</a> – this is not as fancy an origin as I expected.&#160; I kind of expected an abbreviation for something like VE-day (Victory in Europe day).&#160; </p>  <p>D-day was just referred to as the day an operation would take place.&#160; The day before was referred to as D-1, and the day after as D+1 (Similarly, there is an H-Hour). This way, if the operation’s date needed to be changed, any planning documents wouldn’t need to be updated… and this actually ended up happening to the D-day Normandy invasion.&#160; It was pushed back a day due to bad weather. </p>  <p>Anywho, my search turned out being a good exercise in history – going to <a href="http://en.wikipedia.org/wiki/Normandy_Landings">Wikipedia</a> and <a href="http://www.army.mil/d-day/">the army’s website</a> to find out a little more about D-day.&#160; </p>  <div class="nowplaying"><strong>I'm listening to</strong> -     <br />Van Morrison - Domino</div>]]>
      
    </content>
  </entry>

  <entry>
    <title>Cleaning Fumes and Funny Words</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/06/cleaning_fumes.php" />
    <modified>2009-06-05T02:44:41Z</modified>
    <issued>2009-06-04T21:41:52-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.789</id>
    <created>2009-06-05T02:41:52Z</created>
    <summary type="text/plain">Tonight, Katie and I were in our usual mad rush to get the house ready before company visits.&#160; I, as the dutiful husband, was tasked with the dirtiest of dirties - cleaning the bathroom.&#160; I got busy with the Lysol...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.jojometal.com/images/dufus-dog.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="dufus-dog" border="0" alt="dufus-dog" align="right" src="http://www.jojometal.com/images/dufus-dog.jpg" width="244" height="182" /></a>Tonight, Katie and I were in our usual mad rush to get the house ready before company visits.&#160; I, as the dutiful husband, was tasked with the dirtiest of dirties - cleaning the bathroom.&#160; I got busy with the Lysol and Tilex , cleaned the toilet, changed the trash... all the usuals.&#160; Around 5 minutes after being in the bathroom, I realized how strong the fumes were in the bathroom.&#160;&#160; So, I finished up and left...&#160; I didn't realize it until just a few minutes ago how many brain cells had died for the cause of the bathroom's cleanliness. </p>  <p>I jokingly referred to my wife as a swarthy drunkard - never a good idea, married men and my first clue that my brain was working at a sub-standard level.&#160; As I thought I was coming out of my stupor, I looked up the definition of swarthy (which I was sure meant hairy).&#160; I found that it meant dark-skinned.&#160; Unfortunately, one of the very next links in the dictionary referenced a swarthy gerbil.&#160; When my axons and dendrites got together on that word, my remaining brain cells caused me to laugh out loud.</p>  <p>So, a word of warning to everyone that's being shamed into cleaning because people are coming to your house.&#160; Do not mix cleaning chemicals in a small bathroom.&#160; Convert, with me, to housekeeping agnosticism.&#160; How can a house ever truly be clean?&#160; If a house can never be truly clean, what's the point in trying to clean? </p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Bargain Fiending is Tiring Business and Other News</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/05/bargain_fiendin.php" />
    <modified>2009-05-31T22:56:40Z</modified>
    <issued>2009-05-31T17:56:40-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.787</id>
    <created>2009-05-31T22:56:40Z</created>
    <summary type="text/plain"> So, BargainFiend.com is barely a week old now, and is well on its way to being completed.&#160; I need to explore my options for finding a HS or college student to post deals on the site (for cash), and...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.jojometal.com/WindowsLiveWriter/BargainFiendingisTiringBusinessandOtherN_D2AB/dabears_2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="dabears" border="0" alt="dabears" align="right" src="http://www.jojometal.com/WindowsLiveWriter/BargainFiendingisTiringBusinessandOtherN_D2AB/dabears_thumb.jpg" width="244" height="174" /></a> So, <a href="&rdquo;http://www.bargainfiend.com&rdquo;">BargainFiend.com</a> is barely a week old now, and is well on its way to being completed.&#160; I need to explore my options for finding a HS or college student to post deals on the site (for cash), and find a way to expire deals more efficiently.&#160; After all, I’m a full time programmer… I can only do so much to keep the site up and maintained during the day.</p>  <p>I haven’t worked on the eCommerce site lately, or on the local ratings site, but I’ll get on those here soon.&#160; Hopefully, those will be successful.&#160;&#160;&#160; </p>  <p>Apart from the web, in real life news, Katie and I are doing well.&#160; We’re shopping around for some computer furniture for the office (since her Mom is snagging my current desk).&#160;&#160; We’re also planning a trip for sometime this summer… Katie’s eyeing Nashville, or Vegas.&#160; I’m eyeing my wallet… since we’ll be going to europe early next year as well.</p>  <p>Lastly, Katie’s uncle and aunt – Chris and Ann – brought their baby (Max) home Friday.&#160; He was born prematurely and was in the NICU for two weeks, but he’s a trooper.&#160; He’s been able to gain weight and keep his temperature steady.&#160; They brought him home and showed him off to the family on Friday, hosting a cookout.&#160; It’s about time things started going their way.</p>  <div class="nowplaying"><strong>I’m listening to:</strong><br />Metallica - One</div>]]>
      
    </content>
  </entry>

  <entry>
    <title>BargainFiend.com is now live</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/05/bargainfiendcom.php" />
    <modified>2009-05-26T17:56:57Z</modified>
    <issued>2009-05-26T12:56:57-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.786</id>
    <created>2009-05-26T17:56:57Z</created>
    <summary type="text/plain">&#160; BargainFiend.com is now up and running.&#160; It may have been a little premature to release to the public, but I figure it won’t get any hits for a while… I still need to add items to the menu, and...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p>&#160;</p>  <p><a href="http://www.bargainfiend.com"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="monkeyhead-bgsm" border="0" alt="monkeyhead-bgsm" align="right" src="http://www.jojometal.com/WindowsLiveWriter/BargainFiend.comisnowlive_B611/monkeyhead-bgsm_9ed776f7-6eae-4591-ba78-52893d5a315b.gif" width="125" height="159" /> BargainFiend.com</a> is now up and running.&#160; It may have been a little premature to release to the public, but I figure it won’t get any hits for a while…</p>  <p>I still need to add items to the menu, and add article content (which will take a long time to write), and come up with a better way of getting content on the site.&#160; Right now I’m scouring the internet for posts and manually adding the good deals to the site.&#160; It takes a good bit of time to get that done…</p>  <p>The other thing that I realized today is that I need an easy way of ‘expiring’ deals.&#160; I need a css class and a method in wordpress that will let me mark a post/deal as expired and have it switch that post’s css class to expired.&#160; I’ll get to those over the next few days. </p>  <p>Maybe I should have waited to release the site until these things were taken care of, but I was too anxious to get it up and started.&#160; I hope everyone likes it… if not, let me know how I can improve it.&#160; I’m not going to be sensitive about it… It was created in a weekend (thanks to the flexibility of wordpress) and could stand to be improved.</p>]]>
      
    </content>
  </entry>

  <entry>
    <title>Almost finished with the design of Bargain Fiend</title>
    <link rel="alternate" type="text/html" href="http://www.jojometal.com/archives/2009/05/almost_finished.php" />
    <modified>2009-05-25T16:37:29Z</modified>
    <issued>2009-05-25T11:37:29-06:00</issued>
    <id>tag:www.jojometal.com,2009://1.785</id>
    <created>2009-05-25T16:37:29Z</created>
    <summary type="text/plain"> So, in my last post I talked about spending time doing web work on side projects.&#160; Fortunately, the three day weekend has given me time to do just that. I decided to start off by attempting to modify a...</summary>
    <author>
      <name>Jordan</name>
      <url>www.jojometal.com</url>
      <email>jordan@jojometal.com</email>
    </author>
    
    <content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.jojometal.com/">
      <![CDATA[<p><a href="http://www.jojometal.com/WindowsLiveWriter/AlmostfinishedwiththedesignofBargainFien_A371/pepeprawn-thumb_2.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="pepeprawn-thumb" border="0" alt="pepeprawn-thumb" align="right" src="http://www.jojometal.com/WindowsLiveWriter/AlmostfinishedwiththedesignofBargainFien_A371/pepeprawn-thumb_thumb.jpg" width="129" height="165" /></a>   <p></p>  <p>So, in my last post I talked about spending time doing web work on side projects.&#160; Fortunately, the three day weekend has given me time to do just that. </p>  <p>I decided to start off by attempting to modify a WordPress installation to do what I wanted – show short summaries of “deals” on the front page.&#160; Clicking each link should result in the display of the full details of the deal.&#160; Those details include links to the product page, and any information about how to take advantage of the deal (coupon codes, Mail In Rebate amounts, etc.).&#160; </p>  <p>So, three days after starting I’m almost there (the site is still on my local machine only, though).&#160; I’ve styled the main page, made use of jquery to animate the show/hide action of the full deal details and am about to finish up styling the search and single column pages.&#160; I also need to make sure there’s a place for ads – after all, the site is intended to be profitable.&#160; Later, I’ll add some articles on finding the best deal in a number of different areas (travel, cars, cables, etc.).&#160; </p>  <p>So, by the time all this is up and running, I should be able to just make a quick blog post on Bargain Fiend and have it appear as I want.&#160; I’ll probably add forums later, and sign up for some affiliate programs once people start visiting the site more often.</p>  <p>Oh, and I forgot to mention, I added a plugin that allows for the functionality of facebook connect on Bargain Fiend.&#160; People can login to see who’s been visiting the site.&#160; They can also share deal links and comment using their facebook accounts.&#160; I think it’s a nice feature, one that people may enjoy… and that may keep people using my site rather than other bargain sites (maybe).</p>  <p>Anywho, I’m surprised that it’s only taken a weekend to get this close-to-done… and that includes most of Friday and Saturday morning’s work being scrapped due to my unhappiness with my own graphic design skills.&#160; It really helps to base a project on a good framework – WordPress in this case… and in the e-commerce site’s case, I’m using <a href="http://www.magentocommerce.com/">Magento</a>.&#160; In both cases, I’m just using pre-existing functionality, tweaking it a bit, and skinning the site to look as I want it.&#160; It’s much easier than starting from scratch… that’s for people with time and/or money.</p>  <div class="nowplaying"><strong>I'm listening to:</strong>    <br />Nirvana - Lithium</div></p>]]>
      
    </content>
  </entry>

</feed>