<?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/"
	>

<channel>
	<title>Inscope Technology</title>
	<atom:link href="http://blog.inscopetechnology.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.inscopetechnology.com</link>
	<description>Technology and all its glory</description>
	<pubDate>Sat, 20 Mar 2010 01:34:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Arduino Powered RFID Door Lock</title>
		<link>http://blog.inscopetechnology.com/?p=52</link>
		<comments>http://blog.inscopetechnology.com/?p=52#comments</comments>
		<pubDate>Sat, 20 Mar 2010 01:31:56 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Electronics]]></category>

		<category><![CDATA[Microcontrollers]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=52</guid>
		<description><![CDATA[I recently prototyped out a project that  I thought was the coolest thing, a RFID Door Lock. I saw a cool instructable that shows you how to build a RFID powered door lock utilizing an Atmel AVR chip with the ever so popular Arduino firmware all for under $50!! Basically the microcontroller sends a [...]]]></description>
			<content:encoded><![CDATA[<p>I recently prototyped out a project that  I thought was the coolest thing, a RFID Door Lock. I saw a cool <a href="http://www.instructables.com">instructable</a> that shows you how to build a RFID powered door lock utilizing an Atmel AVR chip with the ever so popular Arduino firmware all for under $50!! Basically the microcontroller sends a signal to an electric door strike to open the door if the RFID card matches what is programmed into the memory. There is a master card that is used to program other RFID cards, you just swipe the master the led flashes to state it is in programming mode and then you swipe the new RFID tag and voila, it&#8217;s saved to the chips memory. A totally cool project, I invite you to check it out <a href="http://www.instructables.com/id/Arduino-RFID-Door-Lock/">here</a>.. Stay tuned for pics!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=52</wfw:commentRss>
		</item>
		<item>
		<title>The High Cost of Losing a Developer</title>
		<link>http://blog.inscopetechnology.com/?p=44</link>
		<comments>http://blog.inscopetechnology.com/?p=44#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:02:06 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=44</guid>
		<description><![CDATA[I recently stumbled upon an amazing accurate article about how it would cost double to replace a developer on a legacy / complex code base. Being a developer myself I find that as time goes on the more under appreciated talent becomes, maybe the adage of familiarity breeds contempt but retaining good developers is imperative [...]]]></description>
			<content:encoded><![CDATA[<p>I recently stumbled upon an amazing accurate article about how it would cost double to replace a developer on a legacy / complex code base. Being a developer myself I find that as time goes on the more under appreciated talent becomes, maybe the adage of familiarity breeds contempt but retaining good developers is<span class="spell" style="color: #cc0000;"></span> imperative to keeping costs down and projects on track. Getting a new developer up to speed at a small company could prove to be the company&#8217;s downfall. Check out the <a href="http://codebetter.com/blogs/david_laribee/archive/2009/11/17/the-high-cost-of-losing-a-developer.aspx"><strong>article here</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=44</wfw:commentRss>
		</item>
		<item>
		<title>Fixing a Broken MySQL Slave on Linux</title>
		<link>http://blog.inscopetechnology.com/?p=40</link>
		<comments>http://blog.inscopetechnology.com/?p=40#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:41:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[Sys Admin]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=40</guid>
		<description><![CDATA[During a recent slave addition to our architechture I ran into a few problems getting the slave back up and running after it had stopped for a period of time. I ran into multiple errors which included Duplicate / Primary Keys,  missing tables, corrupted binary log entries etc. The solution was to use a handy [...]]]></description>
			<content:encoded><![CDATA[<p>During a recent slave addition to our architechture I ran into a few problems getting the slave back up and running after it had stopped for a period of time. I ran into multiple errors which included Duplicate / Primary Keys,  missing tables, corrupted binary log entries etc. The solution was to use a handy feature in a one liner that would loop through and restart the slave and increment the SQL_SLAVE_SKIP_COUNTER until there weren&#8217;t any errors being reported by MySQL. The handy one liner is as follows, hope this helps someone else out as much as it has helped me:</p>
<p>while [ 1 ]; do if [ `mysql -e "show slave status\G" | grep "Duplicate entry" | wc -l` -eq 1 ]; then mysqladmin stop-slave; mysql -e “set global sql_slave_skip_counter=1″; mysqladmin start-slave; fi; sleep 7; done</p>
<p>Your mileage may vary to get this to work with your system depending on the shell and the mysql settings you use.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=40</wfw:commentRss>
		</item>
		<item>
		<title>Dumb .NET Choir Boys Bashing On Ruby</title>
		<link>http://blog.inscopetechnology.com/?p=36</link>
		<comments>http://blog.inscopetechnology.com/?p=36#comments</comments>
		<pubDate>Thu, 09 Jul 2009 15:52:01 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=36</guid>
		<description><![CDATA[Here we go again, I work with some  Microsoft choir boys who insist on bashing on something they don&#8217;t have any clue about..  Just because they can&#8217;t use a command line and need they&#8217;re precious GUI to do anything remotely useful they constantly bash Ruby and open source in general.  It&#8217;s a sad day
]]></description>
			<content:encoded><![CDATA[<p>Here we go again, I work with some  Microsoft choir boys who insist on bashing on something they don&#8217;t have any clue about..  Just because they can&#8217;t use a command line and need they&#8217;re precious GUI to do anything remotely useful they constantly bash Ruby and open source in general.  It&#8217;s a sad day</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=36</wfw:commentRss>
		</item>
		<item>
		<title>The Search For a Good WYSIWYG</title>
		<link>http://blog.inscopetechnology.com/?p=31</link>
		<comments>http://blog.inscopetechnology.com/?p=31#comments</comments>
		<pubDate>Sat, 27 Jun 2009 00:49:20 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=31</guid>
		<description><![CDATA[During our recent efforts at work to integrate a different WYSIWYG into our email marketing application we had decided to try out TinyMCE. Boy was that a bad idea, we ran into problem after problem with the open source WYSIWYG and the way it takes it upon itself to format the source and add all [...]]]></description>
			<content:encoded><![CDATA[<p>During our recent efforts at work to integrate a different WYSIWYG into our email marketing application we had decided to try out TinyMCE. Boy was that a bad idea, we ran into problem after problem with the open source WYSIWYG and the way it takes it upon itself to format the source and add all kinds of funky attributes to perfectly good tags. I was finding sizcache and sizset attributes in my table tags and it took it upon itself to wrap my source in it&#8217;s own container div, also using the fullpage plugin  it could not even determine that they&#8217;re were html and head tags and kept duplicating  those and sticking them in arbitrary locations. Basically it messed everyones code up and boy they were pissed!! This editor lacks clear and consise documentation and needs a lot of work. For an editor that is as mature as TinyMCE is, it&#8217;s sad that it is in  the state it currently is in, I had to downgrade to get it semi working. Although I do sympithize with the developer as it is ever increasingly more difficult to write javascript to confirm to the ever changing DOM (or everyones different interpretation of it), especially with Microsoft&#8217;s one sided approach to making IE the worst browser in the world when it comes to following standards. Every browser has its own twerk and writing code for each one must be a nightmare, especially the complexity with writing a  WYSIWYG as it seems no one can get it right. Hopefully someday this will change maybe when the browser makers can get on the same page but I don&#8217;t foresee that happening anytime soon, especially with Microsoft&#8217;s ability to throw a wrench in the works!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=31</wfw:commentRss>
		</item>
		<item>
		<title>Happy Fathers Day!!</title>
		<link>http://blog.inscopetechnology.com/?p=27</link>
		<comments>http://blog.inscopetechnology.com/?p=27#comments</comments>
		<pubDate>Mon, 22 Jun 2009 23:09:28 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Family Life]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=27</guid>
		<description><![CDATA[Ahh yes, another fathers day and a special one at that!! It&#8217;s is my first fathers day for me, a father to be!! I figured that would warrant a post to my blog which has been feeling neglected lately to say the least. In less than a month and two weeks I am going to [...]]]></description>
			<content:encoded><![CDATA[<p>Ahh yes, another fathers day and a special one at that!! It&#8217;s is my first fathers day for me, a father to be!! I figured that would warrant a post to my blog which has been feeling neglected lately to say the least. In less than a month and two weeks I am going to be a proud father of a baby girl that we still have not been able to settle on a name for but we have some good candidates. Who knew coming up with a name would be so difficult, but i&#8217;m sure we&#8217;ll figure it out before she&#8217;s here. These past few months have been pretty nerve wracking from dealing with so called friends who really aren&#8217;t my friends, to trying to muster up motivation to tackle projects left on the back burner. Hopefully I can get everything sorted out before the baby comes. Either way I just wanted to wish everyone a happy fathers day and promise to start posting more technology related content ASAP&#8230; Thanks for visiting and I&#8217;ll be talking to u soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=27</wfw:commentRss>
		</item>
		<item>
		<title>What happened to America&#8217;s healthcare?</title>
		<link>http://blog.inscopetechnology.com/?p=16</link>
		<comments>http://blog.inscopetechnology.com/?p=16#comments</comments>
		<pubDate>Wed, 31 Dec 2008 01:16:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=16</guid>
		<description><![CDATA[During a recent visit to my local hospital because my father was having severe abdominal pain, I was astonished by the amount of time they left him in the waiting room groaning and crying out because of his pain. They hospital staff could have cared less, even though there was hardly anyone in the emergency [...]]]></description>
			<content:encoded><![CDATA[<p>During a recent visit to my local hospital because my father was having severe abdominal pain, I was astonished by the amount of time they left him in the waiting room groaning and crying out because of his pain. They hospital staff could have cared less, even though there was hardly anyone in the emergency room.. Looking back on a recent article I had seen about a lady who had died waiting in the emergency room while the doctors, nurses and hospital staff were oblivious to the urgent attention needed for some patients just because they opt&#8217;ed not to take an ambulance to the hospital doesn&#8217;t mean they couldn&#8217;t have and are not sick enough to recieve immediate care. Sad to say she had passed away in the emergency room and was left there on the floor for hours on end. Who allows the hospital staff to behave in such a manner? I can understand being de-sensitized after seeing so much death and sick individuals, but aren&#8217;t they there to save lives and at least make people comfortable while they wait? I am disgusted with the way the health care system is in its current state and can only imagine how it will be when we have a public health care system.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=16</wfw:commentRss>
		</item>
		<item>
		<title>New Hobby Time: Microcontrollers and Electronics</title>
		<link>http://blog.inscopetechnology.com/?p=10</link>
		<comments>http://blog.inscopetechnology.com/?p=10#comments</comments>
		<pubDate>Tue, 30 Dec 2008 19:37:45 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[arduino]]></category>

		<category><![CDATA[atmel]]></category>

		<category><![CDATA[avr]]></category>

		<category><![CDATA[Electronics]]></category>

		<category><![CDATA[microcontrollers]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=10</guid>
		<description><![CDATA[Well I&#8217;ve decided to pick up on a new hobby that relates the digital world that I live in other than more web development. I&#8217;ve recently been heading over to sparkfun.com and browsing their different products. To my delight they have all kinds of cool breakout and development boards that a hacker like me can [...]]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;ve decided to pick up on a new hobby that relates the digital world that I live in other than more web development. I&#8217;ve recently been heading over to sparkfun.com and browsing their different products. To my delight they have all kinds of cool breakout and development boards that a hacker like me can fiddle around with. I picked up a new breadboard and an Arduino Duellimenov some LEDs and resistors and went to town. I got my blinky lights going at my desk and loving it like Mickey Ds.. I&#8217;ve been experimenting with the PWM (Pulse Width Modulation) which make the LEDs look more like candles flickering. I was lucky enough to grab a course book on Digital Fundimentals from a co-worker which will hopefully enlighten me with more knowledge about circuitry and microcontrollers. I&#8217;ve started learning on the Atmel AVR series and am working my way up to the bad boy ARM processor. I&#8217;ll keep everyone posted with my new stories and pictures of my new projects and creations. Well thats all until next time, keep in touch with yourselves.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>Happy Holidays and welcome to me blog</title>
		<link>http://blog.inscopetechnology.com/?p=1</link>
		<comments>http://blog.inscopetechnology.com/?p=1#comments</comments>
		<pubDate>Thu, 25 Dec 2008 05:40:47 +0000</pubDate>
		<dc:creator>regulate</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://blog.inscopetechnology.com/?p=1</guid>
		<description><![CDATA[Merry Christmas and welcome to my latest effort to get my thoughts out and keep up with the latest happenings in the blogosphere. I am going to try to get a post out every few days. What you might find here are ramblings about my favorite technologies from programming languages to grapical design to embedded [...]]]></description>
			<content:encoded><![CDATA[<p>Merry Christmas and welcome to my latest effort to get my thoughts out and keep up with the latest happenings in the blogosphere. I am going to try to get a post out every few days. What you might find here are ramblings about my favorite technologies from programming languages to grapical design to embedded systems. Subscribe to my feed or keep checking back to keep up with my latest happenings!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inscopetechnology.com/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
