<?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>Semantic Internets &#187; Uncategorized</title>
	<atom:link href="http://www.semanticinternets.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.semanticinternets.com</link>
	<description>Yeah, I&#039;m an...</description>
	<lastBuildDate>Wed, 14 Sep 2011 18:29:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Problem Solving Steps</title>
		<link>http://www.semanticinternets.com/2010/01/problem-solving-steps/</link>
		<comments>http://www.semanticinternets.com/2010/01/problem-solving-steps/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 04:44:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.semanticinternets.com/2010/01/problem-solving-steps/</guid>
		<description><![CDATA[Common Principles to Solving Problems: Every time you look at something, ask yourself: &#8220;does this make sense&#8221;.   Seriously; I’m not kidding. Do not assume you know a solution until you have all of the details and understand the problem.  Assuming makes an ass out of you, me, your team, your project, your company, your school, [...]]]></description>
			<content:encoded><![CDATA[<h2>Common Principles to Solving Problems:</h2>
<ul>
<li>Every time you look at something, ask yourself: &#8220;does this make sense&#8221;.   Seriously; I’m not kidding.</li>
<li>Do not assume you know a solution until you have all of the details and understand the problem.  Assuming makes an ass out of you, me, your team, your project, your company, your school, your mom, your dad, your country, and the human race.</li>
<li>Don’t listen to argue, listen to understand.  Ask questions to understand, not to accuse e.g. “Why would you do that?” vs.  “What are they key advantages to doing it like this?”</li>
<li>Archive your email, use a tool to index/search it -  It is very bothersome when someone asks me a question and I search my email and find I have already answered it for them previously, it is even worse when I search my email and find they answered the question to me previously.</li>
<li>Try and understand what you are doing.  Automatons and Drinking Birds can press buttons; you are more valuable than them because you can understand things.</li>
<li>Understand the impacts of any changes that you make.  Don’t assume a small change will have a small impact.   If you do not understand the impact of the change you are making, get a coffee, then come back and think about it again.</li>
<li>Everyone makes mistakes. &#8211; Just because someone said they tested it correctly, do not hesitate to retest.</li>
<li>Don’t be a dick.  Good things happen to good people.  Treat everyone like you would like to be treated (unless you like it when people treat you badly, then you should seek counseling).   If people like you, they will not hesitate to help you out.</li>
<li>Care about important things that matter, don’t care about things that don&#8217;t matter.  This sounds easy, the trick is learning to differentiate between the two.</li>
<li>Doing the things that others don&#8217;t want to do will differentiate you.  Did Michael Jordan want to practice drills for 10 hours a day, hell no, he practice because he wanted to be the best.  Do things that others say are hard and don&#8217;t want to do, this will set you apart from the pack.</li>
<li>Have Goals, Write Them Down, Look at Them &#8211; Do you want to be sitting in your same desk writing and testing code 20 years from now? I am guessing no. Do you have other goals? Have you ever bothered to write them down and think about them and visualize how to achieve them.  If you don&#8217;t you will be sitting here writing and testing code for the next 20 years.</li>
</ul>
<h2>Problem Solving Steps:</h2>
<h3>1. Understand the problem:</h3>
<ul>
<li>What is the problem?</li>
<li>What are the steps to reproduce the problem?</li>
<li>What is the impact of the problem, when does it need to be solved?</li>
<li>Why is it a problem?</li>
<li>Is this a new problem or existing problem?</li>
<li>Is there a baseline, or how should it behave?</li>
<li>When did it start happening?</li>
<li>Did it ever work?</li>
<li>What components does it involve?</li>
<li>What Data does it involve?</li>
<li>Is it functional, technical, both, or unknown?</li>
<li>Can you decompose the problem into its parts?</li>
<li>What are the simple reasons the problem could have occurred?</li>
</ul>
<h4>Is it a functional problem:</h4>
<ul>
<li>Do I understand how the process should work?</li>
<li>Is the problem related to data?</li>
<li>Is the problem related to timing, order, or sequence?</li>
<li>Do we have a copy of the data that caused the problem?</li>
</ul>
<h4>Is it a technical problem:</h4>
<ul>
<li>What locations or environment is it happening in?</li>
<li>Do I understand what components are involved?</li>
<li>Are there any steps to validate the environment?</li>
<li>Run diffs of things that have changed.</li>
<li>What tools do I have at my disposal to test this (remote debugging, soap sonar, ethereal, web service studio, benthic, toad, test harnesses, debug logs)?</li>
<li>Look at logs before and after.</li>
<li>Look at all of the log information available.</li>
<li>Look at the code and data for yourself, don&#8217;t take someone&#8217;s word for it</li>
<li>Research the problem online</li>
</ul>
<h3>2. Identify a solution to the problem</h3>
<ul>
<li>If this problem has occurred before, check my emails to get details on it (Google desktop,  coppernic, ms search)?</li>
<li>Is there a solution for this type of problem already (check KX, emails, project, account, and internet)?</li>
<li>Is there a solution for a similar type of problem?</li>
<li>What solution is the quickest and has the least amount of impact?</li>
<li>Are there any creative solutions we have not thought of yet?</li>
</ul>
<h3>3. Implement solution (validate it works)</h3>
<ul>
<li>Ensure that solution is agreed upon by peers, and superiors;</li>
<li>If it is a production solution, it will need to be agreed by the client.</li>
<li>Once the solution is in place make sure that the problem is gone.</li>
<li>If anyone is impacted by the solution, do they need to be notified that it is fixed?</li>
</ul>
<h3>4. Identify what can be done better next time to avoid the problem.</h3>
<ul>
<li>Did I send an email of the problem and the steps to solve it to everyone involved?</li>
<li>Is the process documented correctly?</li>
<li>Is the problem solving approach documented correctly?</li>
<li>If there is change that could prevent this problem in the future?</li>
</ul>
<p><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2010%2F01%2Fproblem-solving-steps%2F&amp;linkname=Problem%20Solving%20Steps" title="Digg" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2010%2F01%2Fproblem-solving-steps%2F&amp;linkname=Problem%20Solving%20Steps" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2010%2F01%2Fproblem-solving-steps%2F&amp;linkname=Problem%20Solving%20Steps" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2010%2F01%2Fproblem-solving-steps%2F&amp;linkname=Problem%20Solving%20Steps" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.semanticinternets.com%2F2010%2F01%2Fproblem-solving-steps%2F&amp;title=Problem%20Solving%20Steps" id="wpa2a_2">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.semanticinternets.com/2010/01/problem-solving-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gas Pump Security Through UI Design</title>
		<link>http://www.semanticinternets.com/2009/09/gas-pump-security-through-ui-design/</link>
		<comments>http://www.semanticinternets.com/2009/09/gas-pump-security-through-ui-design/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 19:13:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.semanticinternets.com/?p=66</guid>
		<description><![CDATA[I like how gas stations require you to enter your zip code when paying with a credit card. It just feels safer&#8230;.. but typically when people have had their wallets or purse stolen in my neighborhood, the thieves are clever enough to know what zip-code they stole it from, and they pump  a lot of [...]]]></description>
			<content:encoded><![CDATA[<p>I like how gas stations require you to enter your zip code when paying with a credit card. It just feels safer&#8230;.. but typically when people have had their wallets or purse stolen in my neighborhood, the thieves are clever enough to know what zip-code they stole it from, and they pump  a lot of gas for their friends.</p>
<p>Fortunately a gas station I visited recently has found a way to combat this problem through poor UI design.  When trying to pay with my credit card and entering my zip code, I kept getting the screen message: &#8220;ERROR: INCORRECT KEY COMBINATION.&#8221;  The instructions said: &#8220;KEY IN YOUR ZIP CODE AND PRESS ENTER&#8221;.  After receiving this message three times, I finally figured out what the problem was.   The gas pump had an intentionally designed bad UI.   There are two buttons that are labeled &#8220;Enter&#8221;, only the small one works for keying in your zip code.   I am assuming they did this on purpose to deter people with stolen credit cards.</p>
<div id="attachment_67" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-67" title="Gas Pump Keypad" src="http://www.semanticinternets.com/wp-content/uploads/2009/08/IMG_0134-300x225.jpg" alt="Which enter button would you press?" width="300" height="225" /><p class="wp-caption-text">Which enter button would you press?</p></div>
<p><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F09%2Fgas-pump-security-through-ui-design%2F&amp;linkname=Gas%20Pump%20Security%20Through%20UI%20Design" title="Digg" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F09%2Fgas-pump-security-through-ui-design%2F&amp;linkname=Gas%20Pump%20Security%20Through%20UI%20Design" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F09%2Fgas-pump-security-through-ui-design%2F&amp;linkname=Gas%20Pump%20Security%20Through%20UI%20Design" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F09%2Fgas-pump-security-through-ui-design%2F&amp;linkname=Gas%20Pump%20Security%20Through%20UI%20Design" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F09%2Fgas-pump-security-through-ui-design%2F&amp;title=Gas%20Pump%20Security%20Through%20UI%20Design" id="wpa2a_4">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.semanticinternets.com/2009/09/gas-pump-security-through-ui-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 6 reasons the Roomba is like a good business</title>
		<link>http://www.semanticinternets.com/2009/08/top-6-reasons-the-roomba-is-like-a-good-business/</link>
		<comments>http://www.semanticinternets.com/2009/08/top-6-reasons-the-roomba-is-like-a-good-business/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 13:29:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.semanticinternets.com/?p=22</guid>
		<description><![CDATA[the top 6 reasons why the Roomba is like a good business: 1. It knows when to refresh itself. 2. It works for you while you sleep. 3. It has innovated to create a new space. 4. It has patience. 5. It is easy to maintain. 6. It gives you feedback.]]></description>
			<content:encoded><![CDATA[<div id="attachment_61" class="wp-caption alignright" style="width: 170px"><a href="http://www.amazon.com/gp/product/B000UU7TZE?ie=UTF8&amp;tag=goothigoopeo-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000UU7TZE"><img class="size-full wp-image-61" title="Roomba " src="http://www.semanticinternets.com/wp-content/uploads/2009/08/41mRIApJQxL._SL160_.jpg" alt="My tireless little robot friend." width="160" height="131" /></a><p class="wp-caption-text">My Little Robot Friend</p></div>
<p>Say Hello to my Little Friend&#8230;.</p>
<p>My household acquired a Roomba robot vacuum about two months ago.  So far the results have been great.  I have a dog that sheds a lot, so there were always clumps of fur tumbleweeds floating across the hardwoods. Running Roomba 3 times a weeks seems to have alleviated the tumbleweeds.   Some people I have spoken with claim that they don&#8217;t like the Roomba because they are always having to clean and empty it (I&#8217;m guessing they have really dirty floors).   I have also realized that the success of the Roomba depends on the customer: depending on your floor type and your house layout you will have a very different experience with the little robots.  I am very surprised that iRobot doesn&#8217;t offer a two week free trial so people it doesn&#8217;t work for don&#8217;t spread bad word of mouth regarding the product.</p>
<p>Watching my Roomba got me thinking about how it is like a good business.  the following are the top 6 reasons why the Roomba is like a good business:</p>
<p>1. It knows when to refresh itself &#8211; The Roomba is cognizant of when it needs to be recharged and it will proactively seek out its charging station to refresh. Good business recognize when their products or services have become stale and they will seek to refresh them.</p>
<p>2. It works for you while you sleep &#8211; Roomba will clean while you sleep (if you don&#8217;t mind the humming and bumping).  A good business will make money for you while you sleep.</p>
<p>3. It has innovated to create a new space &#8211; I have not considered owning a vacuum robot until the Roomba.  An innovative business will innovate to create a new product you may have never considered before.</p>
<p>4. It has patience &#8211; The Roomba will go over a spot over and over until it gets it clean,  it is designed with the assumption that it will not get it right the first time.  Seldom will a business get it right the first time, most successful business have to iterate through a series of failure before they have their winning streak</p>
<p>5. It is easy to maintain &#8211; Most regular vacuums are pain in the rear to maintain (cleaning brushes, belts). Roomba maintenance is pretty simple with easy to press buttons and clear instructions.  A good business should be built with the context of maintainability and operations in mind.</p>
<p>6. It gives you feedback  &#8211; When it gets full, stuck, or tired the Roomba will give audio and visual queues to indicate is needs support.  It will also let you know when it running over a dirty part of the floor. A good business provide data and analytical feedback that allows you to make informed decisions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.semanticinternets.com/2009/08/top-6-reasons-the-roomba-is-like-a-good-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mythical Man Weekend</title>
		<link>http://www.semanticinternets.com/2009/07/mythical-man-weekend/</link>
		<comments>http://www.semanticinternets.com/2009/07/mythical-man-weekend/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 21:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.semanticinternets.com/?p=30</guid>
		<description><![CDATA[I recently read an article about the &#8220;mythical man weekend&#8220;.  The article discussed how people claim that they would be able to build an application or a site in a weekend.  It got me thinking about all of the stuff that I typically plan to do during the weekend.  Leading me to plot out my [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read an article about the &#8220;<a href="http://blog.clickdeck360.com/the-mythical-man-weekend" target="_blank">mythical man weekend</a>&#8220;.  The article discussed how people claim that they would be able to build an application or a site in a weekend.  It got me thinking about all of the stuff that I typically plan to do during the weekend.  Leading me to plot out my own &#8220;Mythical Man Weekend&#8221;</p>
<h2>Table 1. Mythical Man Weekend</h2>
<p><img class="size-full wp-image-48 aligncenter" title="mythical_man_weekend" src="http://www.semanticinternets.com/wp-content/uploads/2009/07/mythical_man_weekend1.jpg" alt="mythical_man_weekend" width="554" height="346" /></p>
<p>This &#8220;Mythical Man Weekend&#8221; will almost always turn into the &#8220;Actual Man Weekend&#8221;.</p>
<h2>Table 2.  Actual Man Weekend</h2>
<p><img class="aligncenter size-full wp-image-50" title="mythical_man_weekend_actual" src="http://www.semanticinternets.com/wp-content/uploads/2009/07/mythical_man_weekend_actual.jpg" alt="mythical_man_weekend_actual" width="571" height="376" /></p>
<p><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F07%2Fmythical-man-weekend%2F&amp;linkname=Mythical%20Man%20Weekend" title="Digg" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F07%2Fmythical-man-weekend%2F&amp;linkname=Mythical%20Man%20Weekend" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F07%2Fmythical-man-weekend%2F&amp;linkname=Mythical%20Man%20Weekend" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F07%2Fmythical-man-weekend%2F&amp;linkname=Mythical%20Man%20Weekend" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.semanticinternets.com/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.semanticinternets.com%2F2009%2F07%2Fmythical-man-weekend%2F&amp;title=Mythical%20Man%20Weekend" id="wpa2a_6">Share/Save</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.semanticinternets.com/2009/07/mythical-man-weekend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

