<?xml version="1.0" encoding="UTF-8"?>
<rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Dusty Reagan</title>
	
	<link>http://dustyreagan.com</link>
	<description>Another Geek In The Wall</description>
	<lastBuildDate>Tue, 12 Jan 2010 04:21:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DustyReagan-AnotherGeekInTheWall" /><feedburner:info uri="dustyreagan-anothergeekinthewall" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Installing Cassandra on Ubuntu Linux</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/hhALa2rmWi4/</link>
		<comments>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 02:11:08 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Cassandra]]></category>
		<category><![CDATA[NoSQL]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=175</guid>
		<description><![CDATA[Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. It&#8217;s an alternative to SQL if you don&#8217;t need relational data structures. The best part is it&#8217;s super fast, and distributed. The worst part is there&#8217;s not much documentation or community, at least compared to MySQL. So, I&#8217;m doing my small part to contribute [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://incubator.apache.org/cassandra/" onclick="javascript:pageTracker._trackPageview ('/outbound/incubator.apache.org');">Cassandra</a> is a highly scalable, eventually consistent, distributed, structured key-value store. It&#8217;s an alternative to SQL if you don&#8217;t need relational data structures. The best part is it&#8217;s super fast, and distributed. The worst part is there&#8217;s not much documentation or community, at least compared to MySQL. So, I&#8217;m doing my small part to contribute to Cassandra. Here&#8217;s how I installed Cassandra on Ubuntu 8.04.2 LTS (hardy), but these directions should work on pretty much any Linux distro.</p>
<p><strong>1. First upgrade your software as is with the following two commands (just for good measure):</strong></p>
<pre><strong></strong>sudo apt-get update
sudo apt-get upgrade</pre>
<p><strong>2. Now, open up your Debian package sources list with Nano for editing using the following command:</strong></p>
<pre>sudo nano /etc/apt/sources.list</pre>
<p><strong>3. Next, add the following sources to your /etc/apt/sources.list file.</strong></p>
<pre>deb http://www.apache.org/dist/incubator/cassandra/debian unstable main
deb-src http://www.apache.org/dist/incubator/cassandra/debian unstable main</pre>
<p>After you add these two lines, press cntrl+X to close Nano. It&#8217;ll ask &#8220;Save modified buffer?&#8221; Press Y. Press Enter when Nano asks &#8220;File Name to Write.&#8221;</p>
<p><strong></strong><strong>4. Run the update to install Casandra with this command:</strong></p>
<pre><strong></strong>sudo apt-get update</pre>
<p><strong>5. ERROR! At this point you receive an error similar to this:</strong></p>
<pre>W: GPG error: http://www.apache.org unstable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F758CE318D77295D</pre>
<p><strong>6. Use the following three commands to ignore the signature error, and continue installing:</strong></p>
<p><strong>NOTE: You must replace the key value &#8216;F758CE318D77295D&#8217; with the key value you received in your error message.</strong></p>
<pre>gpg --keyserver wwwkeys.eu.pgp.net --recv-keys F758CE318D77295D
sudo apt-key add ~/.gnupg/pubring.gpg
sudo apt-get update</pre>
<p><strong>7. Install Cassandra:</strong></p>
<pre>sudo apt-get install cassandra</pre>
<p><strong>8. Next you need to change Cassandra&#8217;s default port number from 8080 to something else, because the 8080 port typically conflicts with SSH terminal connections. Use Nano to open up the Cassandra configuration file using the following command:</strong></p>
<pre>sudo nano /usr/share/cassandra/cassandra.in.sh</pre>
<p><strong>9. Then change the port number 8080 on the following line to 10036, and save the file:</strong></p>
<pre>-Dcom.sun.management.jmxremote.port=10036 \</pre>
<p><strong>10. Start Cassandra with the command:</strong></p>
<pre>/etc/init.d/cassandra start</pre>
<p>Once you have Cassandra running, test it with Cassandra&#8217;s command line tool CLI. Use the example found on the <a href="http://wiki.apache.org/cassandra/CassandraCli" onclick="javascript:pageTracker._trackPageview ('/outbound/wiki.apache.org');">Cassandra Wiki</a>.</p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/hhALa2rmWi4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/installing-cassandra-on-ubuntu-linux/</feedburner:origLink></item>
		<item>
		<title>Grow A Mustache, Fight Cancer</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/SfYq51wykX8/</link>
		<comments>http://dustyreagan.com/grow-a-mustache-fight-cancer/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 07:36:09 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[cancer]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[movember]]></category>
		<category><![CDATA[mustache]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=165</guid>
		<description><![CDATA[
On November 1st I shaved my face clean for a friendly bet amongst my friends on who could grow their mustache the longest before their significant other gave them ultimatum to shave it. As it turns out, our little bet coincided exactly the same day Movember started. What is Movember? Movember is an annual, month-long [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; padding: 20px 0 20px 20px; width: 200px !important; position: relative !important; height: 220px !important; overflow: hidden !important;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="200" height="200" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="scale" value="noScale" /><param name="salign" value="TL" /><param name="src" value="http://www.dailymugshot.com/swf/dms.swf?pathurl=http://www.dailymugshot.com/swf/paths.xml&amp;userid=12138" /><embed type="application/x-shockwave-flash" width="200" height="200" src="http://www.dailymugshot.com/swf/dms.swf?pathurl=http://www.dailymugshot.com/swf/paths.xml&amp;userid=12138" salign="TL" scale="noScale"></embed></object></div>
<p>On November 1st I shaved my face clean for a friendly bet amongst my friends on who could grow their mustache the longest before their significant other gave them ultimatum to shave it. As it turns out, our little bet coincided exactly the same day <a href="http://us.movember.com/mospace/378432" onclick="javascript:pageTracker._trackPageview ('/outbound/us.movember.com');">Movember</a> started. What is Movember? Movember is an annual, month-long celebration of the moustache, highlighting men’s health issues &#8211; specifically prostate and testicular cancer. This of course is brilliant, and I couldn&#8217;t help but join the cause.</p>
<p>You can help fight against prostate and testicular cancer by becoming a sponsor of my mustache. &#8220;Ridiculous&#8221; you say? Ok, sponsoring a mustache is a little silly, but this Movember, the money raised in the U.S. will be split between the <a href="http://www.prostatecancerfoundation.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.prostatecancerfoundation.org');">Prostate Cancer Foundation</a> and the<a href="http://www.livestrong.org" onclick="javascript:pageTracker._trackPageview ('/outbound/www.livestrong.org');"> Lance Armstrong Foundation</a> to fund research to find better treatments and a cure for prostate cancer, and there&#8217;s nothing silly about that.</p>
<p style="clear:both;"><a href="http://bit.ly/4ahJnr" onclick="javascript:pageTracker._trackPageview ('/outbound/bit.ly');"><strong style="font-size:26px">DONATE HERE</strong></a><br />The link so nice, some times you have to click it twice [to make it work].</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/VTuKOgHI7GA&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/VTuKOgHI7GA&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/SfYq51wykX8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/grow-a-mustache-fight-cancer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/grow-a-mustache-fight-cancer/</feedburner:origLink></item>
		<item>
		<title>Twitter’s Timeline #TADD</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/-sPihjR2DS8/</link>
		<comments>http://dustyreagan.com/twitters-timeline-tadd/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 21:57:12 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[Work & Business]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=159</guid>
		<description><![CDATA[I&#8217;m writing a book for the popular &#8220;For Dummies&#8221; brand by Wiley, Twitter Application Development for Dummies, #TADD for short.
While doing research for the book I compiled a brief timeline of Twitter&#8217;s company history. I was about to remove it from my notes when I realized it was kind of interesting, and I might like [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing a book for the popular &#8220;<a href="http://dummies.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/dummies.com');">For Dummies</a>&#8221; brand by <a href="http://wiley.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/wiley.com');">Wiley</a>, Twitter Application Development for Dummies, <a href="http://search.twitter.com/search?q=%23TADD" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/search.twitter.com');">#TADD</a> for short.</p>
<p>While doing research for the book I compiled a brief timeline of Twitter&#8217;s company history. I was about to remove it from my notes when I realized it was kind of interesting, and I might like to refer to it later. So, I&#8217;m throwing it up on the blog for you to enjoy. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>March 21, 2006 &#8211; <strong>1st Tweet</strong> &#8211; <a href="http://en.wikipedia.org/wiki/Twitter#History" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Twitter#History</a></li>
<li>July 2006 &#8211; <strong>Twitter.com goes public</strong> &#8211; <a href="http://en.wikipedia.org/wiki/Twitter#History" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Twitter#History</a></li>
<li>Oct 2006 &#8211; <strong>Ev, Biz, others aquire Odeo &amp; Twitter as Obvious Corp</strong> &#8211; <a href="http://en.wikipedia.org/wiki/Twitter#History" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Twitter#History</a></li>
<li>February 19, 2007 &#8211; <strong>Odeo sold</strong> &#8211; <a href="http://en.wikipedia.org/wiki/Odeo" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Odeo</a></li>
<li>March 2007 &#8211; <strong>SXSW hype fest </strong>- <a href="http://en.wikipedia.org/wiki/Twitter#History" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Twitter#History</a></li>
<li>April 2007 &#8211; <strong>Twitter spun off into its own company</strong> &#8211; <a href="http://en.wikipedia.org/wiki/Twitter#History" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">http://en.wikipedia.org/wiki/Twitter#History</a></li>
<li>July 2007 &#8211; <strong>$5M Funding</strong> &#8211; <a href="http://www.crunchbase.com/company/twitter" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.crunchbase.com');">http://www.crunchbase.com/company/twitter</a></li>
<li>Aug 2008 &#8211; <strong>$15M Funding</strong> &#8211; <a href="http://www.crunchbase.com/company/twitter" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.crunchbase.com');">http://www.crunchbase.com/company/twitter</a></li>
<li>March 2009 &#8211; <strong>$35M Funding</strong> &#8211; <a href="http://www.crunchbase.com/company/twitter" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.crunchbase.com');">http://www.crunchbase.com/company/twitter</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/-sPihjR2DS8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/twitters-timeline-tadd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/twitters-timeline-tadd/</feedburner:origLink></item>
		<item>
		<title>How to Update Ubuntu Hardy to PHP 5.2.9</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/SfXkojO9Y_Q/</link>
		<comments>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 09:01:04 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=133</guid>
		<description><![CDATA[First upgrade your software as is.
&#62;&#62; sudo apt-get update
&#62;&#62; sudo apt-get upgrade
Then add the following to your /etc/apt/sources.list file.
&#62;&#62; sudo nano /etc/apt/sources.list
deb http://http.us.debian.org/debian stable all
deb http://security.debian.org/ stable/updates main contrib
deb http://packages.dotdeb.org/ stable all

Finally run the update to install PHP 5.2.9.
&#62;&#62; sudo apt-get update
&#62;&#62; sudo apt-get install php5-cli
&#62;&#62; sudo /etc/init.d/apache2 restart
]]></description>
			<content:encoded><![CDATA[<h3><strong>First</strong> upgrade your software as is.</h3>
<p><code>&gt;&gt; sudo apt-get update</code></p>
<p><code>&gt;&gt; sudo apt-get upgrade</code></p>
<h3><strong>Then</strong> add the following to your /etc/apt/sources.list file.</h3>
<p><code>&gt;&gt; sudo nano /etc/apt/sources.list</code></p>
<pre>deb http://http.us.debian.org/debian stable all
deb http://security.debian.org/ stable/updates main contrib
deb http://packages.dotdeb.org/ stable all</pre>
<h3><strong></p>
<p>Finally</strong> run the update to install PHP 5.2.9.</h3>
<p><code>&gt;&gt; sudo apt-get update</code></p>
<p><code>&gt;&gt; sudo apt-get install php5-cli</code></p>
<p><code>&gt;&gt; sudo /etc/init.d/apache2 restart</code></p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/SfXkojO9Y_Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/how-to-update-ubuntu-hardy-to-php-529/</feedburner:origLink></item>
		<item>
		<title>Global page navigation accross WordPress MU blogs</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/GVrbLc7jtHU/</link>
		<comments>http://dustyreagan.com/global-page-navigation-accross-wordpress-mu-blogs/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 09:57:48 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=72</guid>
		<description><![CDATA[Here&#8217;s the scenario. You have a WordPress MU site with multiple blogs, but for whatever reason, you want every blog to have the same main navigation and pages. Your main site/blog hosts all of your pages. So how do you go about creating a WordPress MU Theme that will use the navigation and pages from [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the scenario. You have a WordPress MU site with multiple blogs, but for whatever reason, you want every blog to have the same main navigation and pages. Your main site/blog hosts all of your pages. So how do you go about creating a WordPress MU Theme that will use the navigation and pages from your main site/blog accross all of your blogs? Well, I&#8217;m here to tell you how I did it.</p>
<p>The WordPress Codex has a function called &#8216;wp_list_pages.&#8217; What I wanted to do is create a new function called &#8216;wp_list_main_pages.&#8217; So I simply searched my WordPress install and copied the &#8216;get_pages&#8217; and &#8216;wp_list_pages&#8217; functions and pasted them into my theme&#8217;s &#8216;functions.php&#8217; file. From here I made a few edits to these functions. To start with, I renamed them &#8216;wp_list_main_pages&#8217; and &#8216;get_main_pages.&#8217;</p>
<p>Below is the final code I&#8217;m using to display the main navigation accross blogs. I made notes in bold to help. Hope this is helpful to you Googling coders. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre><strong>// You can use this function instead of 'wp_list_pages' in your theme</strong>
function wp_list_main_pages($args = '') {
	$defaults = array(
		'depth' => 0, 'show_date' => '',
		'date_format' => get_option('date_format'),
		'child_of' => 0, 'exclude' => '',
		'title_li' => __('Pages'), 'echo' => 1,
		'authors' => '', 'sort_column' => 'menu_order, post_title'
	);

	$r = wp_parse_args( $args, $defaults );
	extract( $r, EXTR_SKIP );

	$output = '';
	$current_page = 0;

	// sanitize, mostly to keep spaces out
	$r['exclude'] = preg_replace('[^0-9,]', '', $r['exclude']);

	// Allow plugins to filter an array of excluded pages
	$r['exclude'] = implode(',', apply_filters('wp_list_pages_excludes', explode(',', $r['exclude'])));

	// Query pages.
	$r['hierarchical'] = 0;
	<strong>// Right here we call our new 'get_main_pages' function</strong>
	$pages = get_main_pages($r);

	if ( !empty($pages) ) {
		if ( $r['title_li'] )
			$output .= '&lt;li class="pagenav">' . $r['title_li'] . '&lt;ul>';

		global $wp_query;
		if ( is_page() || $wp_query->is_posts_page )
			$current_page = $wp_query->get_queried_object_id();
		$output .= walk_page_tree($pages, $r['depth'], $current_page, $r);

		if ( $r['title_li'] )
			$output .= '&lt;/ul>&lt;/li>';
	}

	$output = apply_filters('wp_list_pages', $output);

	<strong>// This line is sloppy and needs improvement.
	// You have to remove the name of the blog your currently on from you global navigation.
	// I'm doing this the simplest but least scalable way here.</strong>
	$output = str_replace("pressroom/", "", $output);

	if ( $r['echo'] )
		echo $output;
	else
		return $output;
}

<strong>// This is essentially a private function</strong>
function &#038;get_main_pages($args = '') {
	global $wpdb;

	<strong>// This is the magic line.
	// Now when the SQL runs to pull your navigation pages, it'll use your main blogs ID.</strong>
	$wpdb->set_blog_id(1);

	<strong>// Notice here I call the original get_pages function and return the results</strong>
	$pages = get_pages($args);
	return $pages;
}
</pre>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/GVrbLc7jtHU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/global-page-navigation-accross-wordpress-mu-blogs/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/global-page-navigation-accross-wordpress-mu-blogs/</feedburner:origLink></item>
		<item>
		<title>How to increase or decrease your Boot Camp partition</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/TqpT9oQ-zE0/</link>
		<comments>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:06:07 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[IT & Administration]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Boot Camp]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Winclone]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/?p=60</guid>
		<description><![CDATA[If you&#8217;re running Mac OS X and Boot Camp you may need to increase or decrease the size of your Microsoft Windows Boot Camp partition, depending on what great videos games are out for Windows at the time.  
To accomplish this task without losing all your Windows data you need 3 things.

Mac OS X [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running Mac OS X and Boot Camp you may need to increase or decrease the size of your Microsoft Windows Boot Camp partition, depending on what great videos games are out for Windows at the time. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>To accomplish this task without losing all your Windows data you need 3 things.</p>
<ol>
<li>Mac OS X 10.5 (Leopard)</li>
<li>An <span class="postbody">HFS+ Mac-formatted external drive</span></li>
<li><span class="postbody"><a href="http://twocanoes.com/winclone/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/twocanoes.com');">Winclone</a><br />
</span></li>
</ol>
<p><span class="postbody"> </span></p>
<p>To <strong>decrease</strong> the size of your Windows partition use the following steps.</p>
<ol>
<li><span class="postbody">Make a backup of your Boot Camp partition from Windows. (optional)</span></li>
<li><span class="postbody">Run Winclone.</span></li>
<li><span class="postbody">In the &#8220;Tools&#8221; drop down click &#8220;Shrink Windows (NTFS) file system.&#8221;</span></li>
<li><span class="postbody">Follow the onscreen instructions.</span></li>
<li><span class="postbody">Wait&#8230; it takes awhile.<br />
</span></li>
<li><span class="postbody">In Winclone create an &#8220;Image&#8221; to your Mac-formatted external hard drive.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to return your drive to a 100% Mac-formatted partition.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to make a new Boot Camp partition larger than the file size of your &#8220;shrunk&#8221; Windows partition image, but smaller than your original Boot Camp partition size.<br />
</span></li>
<li><span class="postbody">When it asks for Windows disk, quit Boot Camp Assistant.</span></li>
<li><span class="postbody">Run Winclone again and &#8220;Restore&#8221; your Windows image to the new partition. </span></li>
</ol>
<p>To <strong>increase</strong> the size of your Windows partition use the following steps.</p>
<ol>
<li><span class="postbody">Make a backup of your Boot Camp partition from Windows. (optional)</span></li>
<li><span class="postbody">Run Winclone.</span></li>
<li><span class="postbody"> In Winclone create an &#8220;Image&#8221; to your Mac-formatted external hard drive.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to return your drive to a 100% Mac-formatted partition.</span></li>
<li><span class="postbody">Use Boot Camp Assistant to make new Boot Camp partition larger than your original partition size.<br />
</span></li>
<li><span class="postbody">When it asks for Windows disk, quit Boot Camp Assistant.</span></li>
<li><span class="postbody">Run Winclone again and &#8220;Restore&#8221; your Windows image to the new partition. </span></li>
</ol>
<p>Kind of a pain, but it&#8217;s doable. I&#8217;ve altered my Boot Camp partition numerous times using the methods above.</p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/TqpT9oQ-zE0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/how-to-increase-or-decrease-your-boot-camp-partition/</feedburner:origLink></item>
		<item>
		<title>Redefining Coworking</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/DvnmoP9LUOQ/</link>
		<comments>http://dustyreagan.com/redefining-coworking/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 09:09:29 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[Coworking]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/redefining-coworking/</guid>
		<description><![CDATA[After reading The Business of Coworking at NotAnMBA I was inspired to write this post.
The current definition of coworking needs revision. Coworking is not a space, a community, a set of values, a business model, or any combination of those things. Those topics are about coworking, but they do not define coworking.
If we look at [...]]]></description>
			<content:encoded><![CDATA[<p>After reading <a href="http://notanmba.com/blog/2008/05/the-business-of-coworking" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/notanmba.com');"><em>The Business of Coworking</em></a> at NotAnMBA I was inspired to write this post.</p>
<p>The current definition of coworking needs revision. Coworking is not a space, a community, a set of values, a business model, or any combination of those things. Those topics are about coworking, but they do not define coworking.</p>
<p>If we look at the definition of coworking on the <a href="http://coworking.pbwiki.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/coworking.pbwiki.com');">Coworking Wiki</a>, we read that &#8220;coworking is a cafe-like community/collaboration space for developers, writers and independents.&#8221; This defines coworking as a noun and as a type of community space. <a href="http://en.wikipedia.org/wiki/Coworking" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/en.wikipedia.org');">Wikipedia</a> does a bit better at defining coworking, but still place a lot of emphases on &#8220;the space.&#8221;</p>
<p>From my experience with <a href="http://workatjelly.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/workatjelly.com');">Jelly</a>, coworking is not a space or a noun. It is a verb. Coworking is something you are doing. For example, I&#8217;d use it in a sentence like this: &#8220;Today I am coworking at Jelly.&#8221; Or, &#8220;I might go to <a href="http://citizenspace.us/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/citizenspace.us');">Citizen Space</a> to cowork.&#8221; From this usage I&#8217;d like to propose the following definition.</p>
<p><strong>Coworking is two or more individuals working independently or collaboratively who are socially interacting while they work.</strong></p>
<p>As a verb you can cowork with people, you can be coworking, or you may have coworked. You may even go to a designated coworking space.</p>
<p>Also note, that this definition does not mention anything about a space or even proximity. This leaves the possibility to cowork remotely. <a href="http://www.secondlife.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.secondlife.com');">Second Life</a> and <a href="http://live.yahoo.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/live.yahoo.com');">Yahoo! Live</a> come to mind.</p>
<p>When we talk about creating a &#8220;coworking space,&#8221; &#8220;coworking community,&#8221; or having a specific set of values, we&#8217;re really talking about how to create an environment or community that will encourage the activity of coworking. Arguments over values, profits, business models, and furniture can neither undermine nor enhance the definition of coworking. Build a pool and I may go swimming. Is it a free pool? Do I have to pay to swim? Is the water clean? Are kids allowed in the pool? Is there a swim team that meets at this pool? Is the pool&#8217;s owner honest? All of these thing may affect my decision to swim in the pool, but are ultimately a matter of taste.</p>
<p>In summary, coworking is NOT a cafe-like community/collaboration space. That&#8217;s like saying swimming is a pool. And arguments such as for-profit versus non-profit need not become heated. Coworking is coworking regardless of where it&#8217;s at, what values people share, or how big the community is. If you&#8217;re working and socializing, you&#8217;re coworking.</p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/DvnmoP9LUOQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/redefining-coworking/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/redefining-coworking/</feedburner:origLink></item>
		<item>
		<title>ASP.Net US States Dropdown List</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/7pNb_s5aBu4/</link>
		<comments>http://dustyreagan.com/aspnet-us-states-dropdown-list/#comments</comments>
		<pubDate>Wed, 14 May 2008 23:13:04 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Web & Software Development]]></category>
		<category><![CDATA[ASP.Net]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/aspnet-us-states-dropdown-list/</guid>
		<description><![CDATA[For large projects I usually databind my dropdown lists, but sometimes you just need a no-nonsense dropdown list of US States. For all you folks Googling to save time, here&#8217;s that code. Enjoy!  
&#60;asp:DropDownList ID="DropDownListState" runat="server"&#62;
	&#60;asp:ListItem Value="AL"&#62;Alabama&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="AK"&#62;Alaska&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="AZ"&#62;Arizona&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="AR"&#62;Arkansas&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="CA"&#62;California&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="CO"&#62;Colorado&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="CT"&#62;Connecticut&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="DC"&#62;District of Columbia&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="DE"&#62;Delaware&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="FL"&#62;Florida&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="GA"&#62;Georgia&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="HI"&#62;Hawaii&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="ID"&#62;Idaho&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="IL"&#62;Illinois&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="IN"&#62;Indiana&#60;/asp:ListItem&#62;
	&#60;asp:ListItem Value="IA"&#62;Iowa&#60;/asp:ListItem&#62;
	&#60;asp:ListItem [...]]]></description>
			<content:encoded><![CDATA[<p>For large projects I usually databind my dropdown lists, but sometimes you just need a no-nonsense dropdown list of US States. For all you folks Googling to save time, here&#8217;s that code. Enjoy! <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>&lt;asp:DropDownList ID="DropDownListState" runat="server"&gt;
	&lt;asp:ListItem Value="AL"&gt;Alabama&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="AK"&gt;Alaska&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="AZ"&gt;Arizona&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="AR"&gt;Arkansas&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="CA"&gt;California&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="CO"&gt;Colorado&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="CT"&gt;Connecticut&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="DC"&gt;District of Columbia&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="DE"&gt;Delaware&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="FL"&gt;Florida&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="GA"&gt;Georgia&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="HI"&gt;Hawaii&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="ID"&gt;Idaho&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="IL"&gt;Illinois&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="IN"&gt;Indiana&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="IA"&gt;Iowa&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="KS"&gt;Kansas&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="KY"&gt;Kentucky&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="LA"&gt;Louisiana&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="ME"&gt;Maine&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MD"&gt;Maryland&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MA"&gt;Massachusetts&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MI"&gt;Michigan&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MN"&gt;Minnesota&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MS"&gt;Mississippi&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MO"&gt;Missouri&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="MT"&gt;Montana&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NE"&gt;Nebraska&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NV"&gt;Nevada&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NH"&gt;New Hampshire&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NJ"&gt;New Jersey&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NM"&gt;New Mexico&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NY"&gt;New York&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="NC"&gt;North Carolina&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="ND"&gt;North Dakota&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="OH"&gt;Ohio&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="OK"&gt;Oklahoma&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="OR"&gt;Oregon&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="PA"&gt;Pennsylvania&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="RI"&gt;Rhode Island&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="SC"&gt;South Carolina&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="SD"&gt;South Dakota&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="TN"&gt;Tennessee&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="TX"&gt;Texas&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="UT"&gt;Utah&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="VT"&gt;Vermont&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="VA"&gt;Virginia&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="WA"&gt;Washington&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="WV"&gt;West Virginia&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="WI"&gt;Wisconsin&lt;/asp:ListItem&gt;
	&lt;asp:ListItem Value="WY"&gt;Wyoming&lt;/asp:ListItem&gt;
&lt;/asp:DropDownList&gt;</pre>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/7pNb_s5aBu4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/aspnet-us-states-dropdown-list/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/aspnet-us-states-dropdown-list/</feedburner:origLink></item>
		<item>
		<title>Austin Jelly Laptop Stickers!</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/bkZoJJJjos8/</link>
		<comments>http://dustyreagan.com/austin-jelly-laptop-stickers/#comments</comments>
		<pubDate>Thu, 01 May 2008 06:09:09 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Jelly]]></category>
		<category><![CDATA[Mikons]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/austin-jelly-laptop-stickers/</guid>
		<description><![CDATA[So a couple of months ago Brian Massey had the great idea to print some Jelly stickers at Mikons.com. The idea being that you slap one of these stickers on the back of your laptop and new Jelly attendees will be able to locate a group of Jelly-ers in a public setting, such as a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/dustyreagan/2455147595/" title="View on Flickr" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.flickr.com');"><img src="http://farm4.static.flickr.com/3165/2455147595_47fba41a5d_m.jpg" alt="Austin Jelly Laptop Stickers" align="right" height="180" width="240" /></a>So a couple of months ago <a href="http://www.customerchaos.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.customerchaos.com');">Brian Massey</a> had the great idea to print some <a href="http://www.workatjelly.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.workatjelly.com');">Jelly</a> stickers at <a href="http://www.mikons.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.mikons.com');">Mikons.com</a>. The idea being that you slap one of these stickers on the back of your laptop and new Jelly attendees will be able to locate a group of Jelly-ers in a public setting, such as a coffee shop like <a href="http://cafecaffeine.com/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/cafecaffeine.com');">Cafe Caffeine</a>! I&#8217;ve had one of Brian&#8217;s original stickers on my laptop for a couple months and it&#8217;s been a great ice breaker at Jelly.</p>
<p>We&#8217;ve been out of Brian&#8217;s original sticker print-run for awhile now, but today I got a new batch in the mail! Big thanks go out to <a href="http://twitter.com/roundsparrow" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/twitter.com');"><span class="fn">Stephen Gutknecht</span></a> for fronting the money to purchase the stickers.</p>
<p>If you&#8217;d like a sticker let me know at Jelly. They cost $2 a piece to print. Not so coincidently, we&#8217;ll be accepting donations of $2 per sticker. <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Alternatively you can hop on Mikons.com and create all kinds of schwag using the <a href="http://www.mikons.com/people/bmassey" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/www.mikons.com');">Jelly icon</a> and have it shipped straight to your door.</p>
<p>I had a little trouble with the checkout process at Mikons, but Mark was fantastic about helping me, and it turned out to be an over the top customer experience.</p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/bkZoJJJjos8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/austin-jelly-laptop-stickers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/austin-jelly-laptop-stickers/</feedburner:origLink></item>
		<item>
		<title>You can haz Austin Tech Events Widget without WordPress!</title>
		<link>http://feedproxy.google.com/~r/DustyReagan-AnotherGeekInTheWall/~3/8VL3MMdqmK4/</link>
		<comments>http://dustyreagan.com/austin-tech-events-widget-for-those-without-widgets-or-wordpress/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 05:01:36 +0000</pubDate>
		<dc:creator>Dusty</dc:creator>
				<category><![CDATA[Random Thoughts & Going Ons]]></category>
		<category><![CDATA[Austin]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[Door64]]></category>
		<category><![CDATA[Tech Events]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dustyreagan.com/austin-tech-events-widget-for-those-without-widgets-or-wordpress/</guid>
		<description><![CDATA[Not too long ago I posted about the Austin Tech Events Plugin for WordPress. Several folks asked me how to install it sans WordPress or in a older version of WordPress that doesn&#8217;t support widgets. Well I&#8217;ll tell ya&#8217;.
Step 1. Download the latest version of the Austin Tech Events widget and upload it to a [...]]]></description>
			<content:encoded><![CDATA[<p>Not too long ago I posted about the <a href="http://dustyreagan.com/austin-tech-events-calendar-wordpress-plugin/">Austin Tech Events Plugin for WordPress</a>. Several folks asked me how to install it sans WordPress or in a older version of WordPress that doesn&#8217;t support widgets. Well I&#8217;ll tell ya&#8217;.</p>
<p><strong>Step 1.</strong> <a href="http://wordpress.org/extend/plugins/austin-tech-events-calendar/" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/wordpress.org');">Download the latest version of the Austin Tech Events widget</a> and upload it to a subdirectory on your site.</p>
<p><strong>Step 2.</strong> Go get yourself a <a href="http://gd.google.com/html/signup.html" onclick="javascript:pageTracker._trackPageview ('/outbound/gd.google.com');" target="_blank" id="Installation" onclick="javascript:pageTracker._trackPageview ('/outbound/gd.google.com');">Google GDATA API key</a><a href="http://gd.google.com/html/signup.html" onclick="javascript:pageTracker._trackPageview ('/outbound/gd.google.com');" target="_blank" onclick="javascript:pageTracker._trackPageview ('/outbound/gd.google.com');"> here</a>.</p>
<p><strong>Step 3.</strong> Add the following code to the head section of your site. Note the sections in red. You need to add your Google API Key and be sure to change the paths below to reflect where you uploaded the Austin Tech Events widget folder.</p>
<pre>&lt;script type="text/javascript" src="http://www.google.com/jsapi?key=<span style="color: red">YOU GOOGLE API KEY GOES HERE</span>"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
	var calendarURL = 'http://www.google.com/calendar/feeds/i8m14fqigtkhpj744qml1vht920bq5j0%40import.calendar.google.com/public/full';
	var pageMaxResults = 15;
	var parseWiki = true;
	var showNav = true;
	var weeks = null;
	var widgetListSize = null;
&lt;/script&gt;
&lt;link type="text/css" rel="stylesheet" href="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>css/thickbox.css" /&gt;
&lt;link type="text/css" rel="stylesheet" href="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>css/style.css" /&gt;
&lt;script type="text/javascript"&gt;
	function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
			if (oldonload) {
				oldonload();
			}
				func();
			}
		}
	}
&lt;/script&gt;
&lt;script type="text/javascript" src="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>js/date.js?ver=alpha-1"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>js/jquery.js?ver=6124"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>js/thickbox.js?ver=3.1"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>js/wiky.js?ver=1.0"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="<span style="color: red">http://example.com/wp-content/plugins/austin-tech-events-calendar/</span>js/functions.js?ver=0.85"&gt;&lt;/script&gt;</pre>
<p><strong>Step 4.</strong> Add the following code to body of you page. Place it wherever you want the widget to show up.</p>
<pre>&lt;ul&gt;
	&lt;li id="austin-tech-events" class="widget widgetWPNGCalendar"&gt;
		&lt;h2 class="widgettitle"&gt;&lt;a href="http://door64.com/event"&gt;Austin Tech Events&lt;/a&gt;&lt;/h2&gt;
			&lt;div id="wpng-cal-widget-events" style="display:none;"&gt;&lt;/div&gt;
			&lt;div id="wpng-cal-load-widget" class="wpng-cal-loading"&gt;
				&lt;img class="wpng-cal-image" alt="loading..." src="/wp-content/plugins/austin-tech-events-calendar/images/loading_large.gif"/&gt;
			&lt;/div&gt;
		&lt;div&gt;
			&lt;script type="text/javascript" defer="defer"&gt;
				widgetListSize = 5;
				addLoadEvent(loadCalendarWidget);
			&lt;/script&gt;
		&lt;/div&gt;
	&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>That&#8217;s all there is to it. Check out the example I created of the <a href="http://wp152.dustyreagan.com/" target="_blank">Austin Tech Events Plugin installed on WordPress 1.5.2</a>. Proof it can be done! <img src='http://dustyreagan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The biggest disadvantage to this approach is that you won&#8217;t be notified of code updates like you would on a proper WordPress 2.5 widget install.</p>
<p>Let me know if you have any questions!</p>
<img src="http://feeds.feedburner.com/~r/DustyReagan-AnotherGeekInTheWall/~4/8VL3MMdqmK4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://dustyreagan.com/austin-tech-events-widget-for-those-without-widgets-or-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://dustyreagan.com/austin-tech-events-widget-for-those-without-widgets-or-wordpress/</feedburner:origLink></item>
	</channel>
</rss>
