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

<channel>
	<title>Dont Panic!</title>
	<atom:link href="http://b.rldn.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://b.rldn.net</link>
	<description></description>
	<pubDate>Mon, 08 Feb 2010 07:05:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>programming avrs</title>
		<link>http://b.rldn.net/?p=8</link>
		<comments>http://b.rldn.net/?p=8#comments</comments>
		<pubDate>Mon, 08 Feb 2010 07:04:55 +0000</pubDate>
		<dc:creator>mog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

		<guid isPermaLink="false">http://b.rldn.net/?p=8</guid>
		<description><![CDATA[I have been working on avr project for almost a year now.  As I have been getitng closer to completion I have finally jumped from arduino to my own custom avr board.   Then came the problem of programming the icsp.  I tried 2 different serial and parallel programmers to no luck.  And then I thought [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on avr project for almost a year now.  As I have been getitng closer to completion I have finally jumped from arduino to my own custom avr board.   Then came the problem of programming the icsp.  I tried 2 different serial and parallel programmers to no luck.  And then I thought why not use an arduino to programmer to program my avr 168p.  I tried 4 different software ones to no luck and then found this <a title="mega-isp" href="http://code.google.com/p/mega-isp/" target="_self">mega-isp</a>  . works great,  I was able to flash my avr with no troubles I highly recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://b.rldn.net/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>working with avr and pwm</title>
		<link>http://b.rldn.net/?p=7</link>
		<comments>http://b.rldn.net/?p=7#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:06:50 +0000</pubDate>
		<dc:creator>mog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<guid isPermaLink="false">http://b.rldn.net/?p=7</guid>
		<description><![CDATA[I seemed to have a lot of trouble getting pwm code going.  below is some simple code that got me going.  looking back on it now I am unsure as to why I was having such problems.  I think its because, arduino, port codes, and timer codes, and pwm codes dont exactly match and I [...]]]></description>
			<content:encoded><![CDATA[<p>I seemed to have a lot of trouble getting pwm code going.  below is some simple code that got me going.  looking back on it now I am unsure as to why I was having such problems.  I think its because, arduino, port codes, and timer codes, and pwm codes dont exactly match and I wasnt looking at the reference material.  anyways hope this helps.</p>
<pre><code>int main (void)
{
DDRD |= (1&amp;lt;&amp;lt; PD3) | (1&amp;lt;&amp;lt; PD5) | (1&amp;lt;&amp;lt; PD6);
TCCR0A = (1&amp;lt;&amp;lt;COM0A1)|(1&amp;lt;&amp;lt;COM0B1)|(1&amp;lt;&amp;lt;WGM01)|(1&amp;lt;&amp;lt;WGM00);
TCCR0B = (1&amp;lt;&amp;lt;CS00);
TCCR2A = (1&amp;lt;&amp;lt;COM2A1)|(1&amp;lt;&amp;lt;COM2B1)|(1&amp;lt;&amp;lt;WGM21)|(1&amp;lt;&amp;lt;WGM20);
TCCR2B = (1&amp;lt;&amp;lt;CS20);
OCR0A = 0;
OCR0B = 100;
OCR2B = 255;
sei();
while (1)
{
;
}
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://b.rldn.net/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>Latitude where am I 2 electric boogaloo!</title>
		<link>http://b.rldn.net/?p=4</link>
		<comments>http://b.rldn.net/?p=4#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:05:09 +0000</pubDate>
		<dc:creator>mog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

		<guid isPermaLink="false">http://b.rldn.net/?p=4</guid>
		<description><![CDATA[I decided having it post to my blog wasnt just enough.  Why not track myself via google constantly.  below is the bash script i have running in cron minutely to record my coordinates.  Enjoy.
#!/bin/bash
#License GPLv3
ID=""
Points=/home/mog/docs/whereiam/points
cd $Points
if [ `ls .&#124;wc -l` -eq 0 ]; then
wget -q "http://www.google.com/latitude/apps/badge/api?user=${ID}&#38;amp;type=json" -O new
mv new `date +%s`
else
File=`ls &#124;tail -n1`
Last_Time_Stamp=`grep timeStamp $File&#124;cut [...]]]></description>
			<content:encoded><![CDATA[<p>I decided having it post to my blog wasnt just enough.  Why not track myself via google constantly.  below is the bash script i have running in cron minutely to record my coordinates.  Enjoy.</p>
<p><code>#!/bin/bash</code></p>
<p><code>#License GPLv3<br />
ID=""<br />
Points=/home/mog/docs/whereiam/points<br />
cd $Points<br />
if [ `ls .|wc -l` -eq 0 ]; then<br />
wget -q "http://www.google.com/latitude/apps/badge/api?user=${ID}&amp;amp;type=json" -O new<br />
mv new `date +%s`<br />
else<br />
File=`ls |tail -n1`<br />
Last_Time_Stamp=`grep timeStamp $File|cut -f2 -d':'|cut -f1 -d','`<br />
wget -q "http://www.google.com/latitude/apps/badge/api?user=${ID}&amp;amp;type=json" -O new<br />
if grep -q $Last_Time_Stamp new ; then<br />
rm new<br />
else<br />
mv new `date +%s`<br />
fi<br />
fi</code></p>
]]></content:encoded>
			<wfw:commentRss>http://b.rldn.net/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
		<item>
		<title>Latitude where am i?</title>
		<link>http://b.rldn.net/?p=3</link>
		<comments>http://b.rldn.net/?p=3#comments</comments>
		<pubDate>Wed, 03 Feb 2010 22:58:29 +0000</pubDate>
		<dc:creator>mog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

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

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

		<guid isPermaLink="false">http://b.rldn.net/?p=3</guid>
		<description><![CDATA[Recently I have been playing around with google latitude.  The footer below is a wordpress plugin I made that echos out my current location to the city level at the base of the blog.   enjoy
/*
Plugin Name: Hello Latitude
Plugin URI: http://wordpress.org/#
Description: working on it
Author: Matthew O'Gorman
Version: 0.1
Author URI: http://rldn.net/
License :AGPLv3
*/
function hello_latitude() {
$googleLatID=&#8221;"; //find this at http://www.google.com/latitude/apps/badge
$url [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been playing around with google latitude.  The footer below is a wordpress plugin I made that echos out my current location to the city level at the base of the blog.   enjoy</p>
<p><code >/*<br />
Plugin Name: Hello Latitude<br />
Plugin URI: http://wordpress.org/#<br />
Description: working on it<br />
Author: Matthew O'Gorman<br />
Version: 0.1<br />
Author URI: http://rldn.net/</code></p>
<p><code >License :AGPLv3<br />
*/</code></p>
<p>function hello_latitude() {<br />
$googleLatID=&#8221;"; //find this at http://www.google.com/latitude/apps/badge<br />
$url =&#8221;http://www.google.com/latitude/apps/badge/api?user=&#8221;.$googleLatID.&#8221;&amp;type=json&#8221;;<br />
try{<br />
$contents = file_get_contents($url);<br />
$contents = utf8_encode($contents);<br />
$results = json_decode($contents, true);<br />
$loc=&#8221;I am in &#8220;.$results['features'][0]['properties']['reverseGeocode'];<br />
echo $loc;<br />
}<br />
catch (Exception $e){<br />
echo &#8216;LOCATION NOT FOUND!&#8217;;<br />
}<br />
}<br />
add_action(&#8217;wp_footer&#8217;, &#8216;hello_latitude&#8217;);<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://b.rldn.net/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://b.rldn.net/?p=1</link>
		<comments>http://b.rldn.net/?p=1#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:23:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://b.rldn.net/?p=1</guid>
		<description><![CDATA[no more drupal and I built first plugin as seen below says where I am to city level from google latitude api
]]></description>
			<content:encoded><![CDATA[<p>no more drupal and I built first plugin as seen below says where I am to city level from google latitude api</p>
]]></content:encoded>
			<wfw:commentRss>http://b.rldn.net/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
