<?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>ddubb industries</title>
	<atom:link href="http://ddubb.net/feed" rel="self" type="application/rss+xml" />
	<link>http://ddubb.net</link>
	<description>ddubb industries applies the &#8220;party up front, business in the back&#8221; model to web and graphic design, behold our &#60;a href="/portfolio"&#62;portfolio&#60;/a&#62; and employ our &#60;a href="mailto:dave@ddubb.net"&#62;services&#60;/a&#62;</description>
	<pubDate>Sun, 01 Nov 2009 00:50:30 +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>Zombies in Pop Culture</title>
		<link>http://ddubb.net/cultural/zombies-in-pop-culture</link>
		<comments>http://ddubb.net/cultural/zombies-in-pop-culture#comments</comments>
		<pubDate>Sun, 01 Nov 2009 00:49:26 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[cinematic]]></category>

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=354</guid>
		<description><![CDATA[
I&#8217;m striving to understand the zombie phenomenon. I admit my exposure is fairly limited, as I&#8217;ve only seen Dawn of the Dead (2004), 28 Days Later, I Am Legend, Red State, played the Plants vs. Zombies game, and viewed the trailer for Zombieland. I haven&#8217;t read Max Brook&#8217;s quintessential Zombie Survival Guide nor have I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ddubb.net/wp-content/uploads/2009/10/zombieland.png" alt="zombieland" title="zombieland" width="300" height="225" class="alignnone size-full wp-image-358" /></p>
<p>I&#8217;m striving to understand the zombie phenomenon. I admit my exposure is fairly limited, as I&#8217;ve only seen <a href="http://www.imdb.com/title/tt0363547/">Dawn of the Dead (2004)</a>, <a href="http://www.imdb.com/title/tt0289043/">28 Days Later</a>, <a href="http://www.imdb.com/title/tt0480249/">I Am Legend</a>, <a href="http://www.imdb.com/title/tt1416776/">Red State</a>, played the <a href="http://www.popcap.com/games/pvz">Plants vs. Zombies</a> game, and viewed the trailer for <a href="http://www.imdb.com/title/tt1156398/">Zombieland</a>. I haven&#8217;t read Max Brook&#8217;s quintessential <a href="http://www.randomhouse.com/catalog/display.pperl?isbn=9781400049622">Zombie Survival Guide</a> nor have I witnessed a <a href="http://en.wikipedia.org/wiki/Zombie_walk">zombie march</a>. So I sit here on Halloween night making speculations about why zombies are such a popular part of contemporary culture. I&#8217;ve come up with the following themes:</p>
<h3>Life and (Un)Death</h3>
<p>Various movies treat the precise zombie condition somewhere on a spectrum between biological and supernatural, but in nearly all, it&#8217;s clear that zombies straddle two phases of existence. The Judeo-Christian belief in the general resurrection is an unspoken inspiration behind the macabre. Is there a realm beyond this life? Most of us would like to say yes. Is it a nice place to be? And is the transition painless? Zombies say no.</p>
<h3>Pandemic</h3>
<p>The constant threat of Swine Flu pays the bills for the evening news and Big Pharma. Everybody knows its going to happen someday, the question is the vector of contamination. Before pigs, it was birds, so the next logical step is fluid-exchange from flesh-eating humans. The blood motif ties closely with the recent vampire craze, possibly a future post. The &#8220;could I be next?&#8221; question plays to our deepest fear of helplessness.</p>
<h3>The Apocalypse</h3>
<p>We&#8217;re fascinated with doomsday. I often find myself daydreaming about what survival tactics I&#8217;ll take after it all falls apart. The uninfected people in zombie movies seem to find themselves adapting to a new status quo unlike anything we currently imagine. They coalesce in to wandering tribes of survivors pooling resources and ammunition. It&#8217;s good role-playing for civilization preparedness.</p>
<h3>Terrorism</h3>
<p>Zombies have no fear of death. They are on a path of self-destruction bringing down as many others as possible. Maybe that&#8217;s why people find it gratifying to see them mercilessly killed&mdash;a vengeful outlet on all the suicidal idiots of the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/cultural/zombies-in-pop-culture/feed</wfw:commentRss>
		</item>
		<item>
		<title>Middle School QBasic vs. Killer Coding Ninja</title>
		<link>http://ddubb.net/technical/middle-school-qbasic-vs-killer-coding-ninja</link>
		<comments>http://ddubb.net/technical/middle-school-qbasic-vs-killer-coding-ninja#comments</comments>
		<pubDate>Thu, 21 May 2009 18:06:31 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ddubb.net/?p=344</guid>
		<description><![CDATA[Just got code-pwned by my coworker yesterday. Below, you&#8217;ll see the difference between a mechanical engineer and a computer scientist&#8217;s approach to the same problem. The elegant solution is to use recursion: a function that calls itself.
The Brute Force Middle School QBasic Programmer Approach:
-	function getPath($selected) {
-
-		// search entire menu structure for key matching $menu_name
-		// return [...]]]></description>
			<content:encoded><![CDATA[<p>Just got code-pwned by my coworker yesterday. Below, you&#8217;ll see the difference between a mechanical engineer and a computer scientist&#8217;s approach to the same problem. The elegant solution is to use recursion: a function that calls itself.</p>
<h3>The Brute Force Middle School QBasic Programmer Approach:</h3>
<pre>-	function getPath($selected) {
-
-		// search entire menu structure for key matching $menu_name
-		// return array with each level of menu path
-		// a recursive function would be cool here, beyond my ability -dw
-
-		$level[0] = getMenu('all');
-
-		foreach ($level[0] as $key[1] => $level[1]) {
-			$path[1] = $level[1];
-			$path[1]['key'] = $key[1];
-			unset($path[1]['sub']);
-
-			if (false) {
-				// first level is not allowed to be a match
-			} elseif (isset($level[1]['sub'])) {
-				foreach ($level[1]['sub'] as $key[2] => $level[2]) {
-					$path[2] = $level[2];
-					$path[2]['key'] = $key[2];
-					unset($path[2]['sub']);
-
-					if ($selected == $key[2]) {
-						break 2;
-					} elseif (isset($level[2]['sub'])) {
-						foreach ($level[2]['sub'] as $key[3] => $level[3]) {
-							$path[3] = $level[3];
-							$path[3]['key'] = $key[3];
-							unset($path[3]['sub']);
-
-							if ($selected == $key[3]) {
-								break 3;
-							} elseif (isset($level[3]['sub'])) {
-								foreach ($level[3]['sub'] as $key[4] => $level[4]) {
-									$path[4] = $level[4];
-									$path[4]['key'] = $key[4];
-
-									if ($selected == $key[4]) {
-										break 4;
-									} else {
-										unset($path[4]);
-									}
-								}
-							}
-						}
-					}
-				}
-			}
-		}
-
-		return $path;
</pre>
<h3>The Killer Coding Ninja approach:</h3>
<pre>
+
+	// {{{ getValues()
+	/**
+	 * Returns the properties of a specific path segment, minus any children.
+	 * @param	{string}	id		The unique id of the path segment
+	 * @param	{array}		values	All properties of the path segment
+	 * @return	{array}
+	 */
+	function getValues($id, $values) {
+		$retval = array('key' => $id);
+		foreach ($values as $key=>$value) {
+			// don't include any submenus
+			if ($key != 'sub') {
+				$retval[$key] = $value;
+			}
+		}
+		return $retval;
+	}
+	// }}}
+
+	// {{{ getPath()
+	/**
+	 * Recursive function to return the path of a section.
+	 * @param	{array}		menu		The menu to iterate over
+	 * @param	{string}	selected	The id of the ending path segment to find
+	 * @return	{array|false}
+	 */
+	function getPath($menu, $selected) {
+
+		foreach ($menu as $path_id=>$path_vals) {
+			if ($path_id == $selected) {
+				return array(self::getValues($path_id, $path_vals));
+			} else if (isset($path_vals['sub'])) {
+				$path = self::getPath($path_vals['sub'], $selected);
+				if ($path != false) {
+					array_unshift($path, self::getValues($path_id, $path_vals));
+					return $path;
+				}
+			}
+		}
+		return false;
+	}
+	// }}}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/technical/middle-school-qbasic-vs-killer-coding-ninja/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hip to be Square</title>
		<link>http://ddubb.net/creative/hip-to-be-square</link>
		<comments>http://ddubb.net/creative/hip-to-be-square#comments</comments>
		<pubDate>Sun, 19 Apr 2009 18:51:35 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[creative]]></category>

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

		<guid isPermaLink="false">http://ddubb.net/?p=335</guid>
		<description><![CDATA[
When Facebook rolled out their latest redesign a few months ago, I was simultaneously pleased and upset with the round avatar treatment, but couldn&#8217;t explain why. My right brain said &#8220;Kudos fb, so smooth, fillet the blue sky!&#8221; While my left brain said, &#8220;width: 49px; margin: 9px; carry the 7; error;&#8221;
As I&#8217;ve thought about it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ddubb.net/wp-content/uploads/2009/04/facebook_avatar.png" alt="facebook_avatar" title="facebook_avatar" width="300" height="265" class="alignnone size-full wp-image-334" style="border: 1px solid #CCC;"/><br />
When Facebook rolled out their latest redesign a few months ago, I was simultaneously pleased and upset with the round avatar treatment, but couldn&#8217;t explain why. My right brain said &#8220;Kudos fb, so smooth, fillet the blue sky!&#8221; While my left brain said, &#8220;width: 49px; margin: 9px; carry the 7; error;&#8221;</p>
<p>As I&#8217;ve thought about it more, with both sides of my brain, I&#8217;m formulating a theory: In the context of bulleted lists, especially where the avatar is being used as a giant bullet, alignment is crucial. Our eyes need to verify that everything lines up, because if it doesn&#8217;t, that probably means something like a nested reply. In the x dimension, we need to confirm that the bullets are directly on top of each other. And in the y, the top of the bullet needs to be in line with the top of the text&mdash;the closer to a fixed interval the more pleasing the rhythm. </p>
<p>Corners make this quick check easier, fillets make this harder. Corners deliver a fixed point of comparison, fillets demand us to make two tangents.</p>
<p><img src="http://ddubb.net/wp-content/uploads/2009/04/twitter_avatar.png" alt="twitter_avatar" title="twitter_avatar" width="300" height="288" class="alignnone size-full wp-image-333" style="border: 1px solid #CCC;"/></p>
<p>When Twitter surpasses Facebook as the next social medium, I&#8217;ll attribute it to this seemingly insignificant design decision.</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/creative/hip-to-be-square/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hot New Tricks With Gmail</title>
		<link>http://ddubb.net/creative/hot-new-tricks-with-gmail</link>
		<comments>http://ddubb.net/creative/hot-new-tricks-with-gmail#comments</comments>
		<pubDate>Sat, 20 Dec 2008 19:06:18 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[creative]]></category>

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

		<guid isPermaLink="false">http://ddubb.net/?p=319</guid>
		<description><![CDATA[Next month, I start a brand new job at Mailtrust, a locally-created email hosting company in the University Mall, recently bought by Rackspace of San Antonio, a household name in web-serving. Since accepting the offer, I&#8217;ve been taking more notice of the features so many of us have come to love in Gmail. They just [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ddubb.net/wp-content/uploads/2008/12/gmail-300x204.png" alt="gmail" title="gmail" width="300" height="204" class="alignnone size-medium wp-image-324" />Next month, I start a brand new job at <a href="http://mailtrust.com">Mailtrust</a>, a locally-created email hosting company in the University Mall, recently bought by <a href="http://rackspace.com">Rackspace</a> of San Antonio, a household name in web-serving. Since accepting the offer, I&#8217;ve been taking more notice of the features so many of us have come to love in Gmail. They just rolled out a few amazing upgrades through &#8220;Labs&#8221;. If you click on the green test tube beaker thing at the top of your Gmail screen next to your login name, you should be able to scroll down and turn these on:</p>
<ol>
<li><a href="http://gmailblog.blogspot.com/2008/12/really-new-in-labs-this-time-sms-text.html">Send SMS text messages to cell phone numbers through Google Chat</a> - Dec 10 - Especially hot for me to be able to send love notes to my hot wife since our plan charges 50c per message. I mean, of course she&#8217;s worth 50c, but why pay if you don&#8217;t have to?</li>
<li><a href="http://gmailblog.blogspot.com/2008/12/new-in-labs-tasks.html">To-do List</a> - Dec 8 - In addition to making nested to-dos, you can convert email messages into to-do list items with a click and assign due dates to items.</li>
<li><a href="http://gmailblog.blogspot.com/2008/11/spice-up-your-inbox-with-colors-and.html">Styling themes</a> - Nov 19 - I like the ninja.</li>
<li><a href="http://gmailblog.blogspot.com/2008/11/syncing-your-google-calendar.html">Google calendar now syncs with Outlook and iCal</a> - Nov 25 - Not exactly a Gmail labs feature, but related in the category of being awesome. See next item.</li>
<li><a href="http://gmailblog.blogspot.com/2008/10/new-in-labs-calendar-and-docs-gadgets.html">Display Calendar and Docs in sidebar</a> - Oct 27 - Another important step in synchronizing the fully integrated online office. Can&#8217;t wait until MS Office totally disappears.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/creative/hot-new-tricks-with-gmail/feed</wfw:commentRss>
		</item>
		<item>
		<title>Multilingual Morning for Methodist Moms</title>
		<link>http://ddubb.net/cultural/multilingual-morning-for-methodist-moms</link>
		<comments>http://ddubb.net/cultural/multilingual-morning-for-methodist-moms#comments</comments>
		<pubDate>Wed, 12 Nov 2008 15:13:57 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[cultural]]></category>

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

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=310</guid>
		<description><![CDATA[This morning, while holding the door open for preschool at Blacksburg United Methodist Church, I was able to greet various parents and kids with &#8220;howdy&#8221;, &#8220;good morning&#8221;, &#8220;guten tag&#8221;, &#8220;buenos dias&#8221;, and &#8220;dobre dien&#8221;. I was waiting to see the mom to whom I could have said &#8220;salam alaikum&#8221;, but she must have come through [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_311" class="wp-caption alignnone" style="width: 310px"><img src="http://ddubb.net/wp-content/uploads/2008/11/bumc.jpg" alt="Founders of Blacksburg United Methodist Church" title="bumc" width="300" height="225" class="size-full wp-image-311" /><p class="wp-caption-text">Founders of Blacksburg United Methodist Church</p></div>
<p>This morning, while holding the door open for preschool at <a href="http://www.blacksburgumc.org">Blacksburg United Methodist Church</a>, I was able to greet various parents and kids with &#8220;howdy&#8221;, &#8220;good morning&#8221;, &#8220;guten tag&#8221;, &#8220;buenos dias&#8221;, and &#8220;dobre dien&#8221;. I was waiting to see the mom to whom I could have said &#8220;salam alaikum&#8221;, but she must have come through another door. Now that I&#8217;m looking it up I&#8217;m realizing that I can also say &#8220;god morgen&#8221; (Danish), and I&#8217;ll probably need to ask the many Asian moms what I should say in their respective languages. A new dad also asked me a question in some kind of Scandinavian/Germanic accent.</p>
<p>Could the <a href="http://www.blacksburgumc.org/index2.php?select=10004">18th century Scotch-Irish/German founders</a> of Blacksburg United Methodist Church have possibly had the slightest idea how many cultures would be served by their preschool ministry? The door to this church is so wide. Kudos BUMC!</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/cultural/multilingual-morning-for-methodist-moms/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;And we know the government can&#8217;t solve every problem&#8221;</title>
		<link>http://ddubb.net/axiomatic/and-we-know-the-government-cant-solve-every-problem</link>
		<comments>http://ddubb.net/axiomatic/and-we-know-the-government-cant-solve-every-problem#comments</comments>
		<pubDate>Wed, 05 Nov 2008 16:00:46 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[axiomatic]]></category>

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=308</guid>
		<description><![CDATA[&#8220;There will be setbacks and false starts. There are many who won&#8217;t agree with every decision or policy I make as president. And we know the government can&#8217;t solve every problem.
But I will always be honest with you about the challenges we face. I will listen to you, especially when we disagree. And, above all, [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;There will be setbacks and false starts. There are many who won&#8217;t agree with every decision or policy I make as president. And we know the government can&#8217;t solve every problem.</p>
<p>But I will always be honest with you about the challenges we face. I will listen to you, especially when we disagree. And, above all, I will ask you to join in the work of remaking this nation, the only way it&#8217;s been done in America for 221 years&mdash;block by block, brick by brick, calloused hand by calloused hand.</p>
<p>What began 21 months ago in the depths of winter cannot end on this autumn night.</p>
<p>This victory alone is not the change we seek. It is only the chance for us to make that change. And that cannot happen if we go back to the way things were.&#8221;</p>
<p><strong>President Elect Barack Obama</strong><br />
November 5, 2008
</p></blockquote>
<blockquote><p>&#8220;We should never despair, our situation before has been unpromising and has changed for the better, so I trust, it will again. If new difficulties arise, we must only put forth new exertions and proportion our efforts to the exigency of the times.&#8221;</p>
<p><strong>George Washington</strong><br />
July 15, 1777</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/axiomatic/and-we-know-the-government-cant-solve-every-problem/feed</wfw:commentRss>
		</item>
		<item>
		<title>Why I&#8217;ve decided to vote for Chuck Baldwin</title>
		<link>http://ddubb.net/political/why-ive-decided-to-vote-for-chuck-baldwin</link>
		<comments>http://ddubb.net/political/why-ive-decided-to-vote-for-chuck-baldwin#comments</comments>
		<pubDate>Mon, 03 Nov 2008 03:38:42 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[political]]></category>

		<guid isPermaLink="false">http://ddubb.net/?p=298</guid>
		<description><![CDATA[
Since the GOP, by the nomination of John Sidney McCain III, has betrayed its conservative traditions of small government, fiscal responsibility, and non-interventionism, my intention has been to stay true to principle and write-in Ron Paul as my preferred Republican Presidential selection. 
Looking into the specific details of a Ron Paul write-in, I&#8217;ve come to [...]]]></description>
			<content:encoded><![CDATA[<p><object width="300" height="270"><param name="movie" value="http://www.youtube.com/v/dmZpSCMBy4k&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dmZpSCMBy4k&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="270"></embed></object></p>
<p>Since the GOP, by the nomination of John Sidney McCain III, has betrayed its conservative traditions of small government, fiscal responsibility, and non-interventionism, my intention has been to stay true to principle and write-in Ron Paul as my preferred Republican Presidential selection. </p>
<p>Looking into the specific <a href="http://www.ronpaulforpresident2008.com/pages/writein.html">details of a Ron Paul write-in</a>, I&#8217;ve come to the conclusion that despite allegiance to the man and the camaraderie I feel with the 1.2 million others who voted for him in the primary, a write-in vote for him in Virginia would be counterproductive to the cause of liberty. My voting allegiance is first and foremost to the Constitutional principals he espouses and secondarily to the actual person who has been living them out in public service for the last 20+ years.</p>
<p>Although he is actually on the ballot in California, Montana, and Louisiana, <a href="http://www.ronpaulforpresident2008.com/pages/writein.html">most states, including VA</a>, do not count write-in votes for candidates who have not filed with the state board of elections. Dr. Paul has not filed in VA, so a write-in vote will not register in any tally and will essentially be the same as a non-vote. </p>
<p>Though I can&#8217;t imagine CNN recognizing any result beyond Obama, McCain, and &#8220;other&#8221;, it will feel good to make the third column one vote larger. My prediction is 46%, 44%, and 10% respectively. Before accusing me of being a spoiler for McCain, please be sure to look up the number of registered Republicans who will be voting for Obama directly&mdash;I guarantee it will outweigh the spread!</p>
<h3>So what&#8217;s a voter to actually do?</h3>
<p>If I can&#8217;t vote for Ron Paul as my president, the next best option is to vote for the candidate Ron Paul endorses: <a href="http://baldwin08.com/">Chuck Baldwin</a>. He&#8217;s on a 100% Paul platform, has  a decent rational faculty, and a reputable character. The only fault I can find with him is poor website design, a deficiency I&#8217;m not quick to overlook. In a recent <a href="http://www.youtube.com/watch?v=dmZpSCMBy4k">debate with Ralph Nader</a>, Chuck mentioned the Constitution party claims the highest number of registered voters outside of the two major parties, a number the Ron Paul contingency could triple.</p>
<h3>Again, why not McCain or Obama?</h3>
<p>There are four critical areas where McCain and Obama have essentially the same errant philosophy. On September 10, 2008, Ron Paul called a press conference of 3rd party candidates to present the following statement of contrast with the status quo provided by the two major candidates.</p>
<blockquote><p>The Republican/Democrat duopoly has, for far too long, ignored the most important issues facing our nation. However, alternate candidates Chuck Baldwin, Cynthia McKinney, and Ralph Nader agree with Ron Paul on four key principles central to the health of our nation:</p>
<h3>1. Foreign Policy</h3>
<p>The Iraq War must end as quickly as possible with removal of all our soldiers from the region. We must initiate the return of our soldiers from around the world, including Korea, Japan, Europe and the entire Middle East. We must cease the war propaganda, threats of a blockade and plans for attacks on Iran, nor should we re-ignite the cold war with Russia over Georgia. We must be willing to talk to all countries and offer friendship and trade and travel to all who are willing. We must take off the table the threat of a nuclear first strike against all nations.</p>
<h3>2. Privacy</h3>
<p>We must protect the privacy and civil liberties of all persons under US jurisdiction. We must repeal or radically change the Patriot Act, the Military Commissions Act, and the FISA legislation. We must reject the notion and practice of torture, eliminations of habeas corpus, secret tribunals, and secret prisons. We must deny immunity for corporations that spy willingly on the people for the benefit of the government. We must reject the unitary presidency, the illegal use of signing statements and excessive use of executive orders.</p>
<h3>3. The National Debt</h3>
<p>We believe that there should be no increase in the national debt. The burden of debt placed on the next generation is unjust and already threatening our economy and the value of our dollar. We must pay our bills as we go along and not unfairly place this burden on a future generation.</p>
<h3>4. The Federal Reserve</h3>
<p>We seek a thorough investigation, evaluation and audit of the Federal Reserve System and its cozy relationships with the banking, corporate, and other financial institutions. The arbitrary power to create money and credit out of thin air behind closed doors for the benefit of commercial interests must be ended. There should be no taxpayer bailouts of corporations and no corporate subsidies. Corporations should be aggressively prosecuted for their crimes and frauds.</p></blockquote>
<p>May God grant us all wisdom this Tuesday as we participate in the grand experiment of democracy. I&#8217;ll close my short treatise with some helpful quotations from a few interesting characters:</p>
<blockquote><p>&#8220;It does not require a majority to prevail, but rather an irate, tireless minority keen to set brush fires in peoples&#8217; minds.&#8221;<br />
<strong>Samuel Adams</strong></p></blockquote>
<blockquote><p>&#8220;A powerful national government may encroach considerably upon the liberty of individuals as well as of the different States (by following an imperial policy), if only every citizen recognizes such measures as means for making his nation greater.&#8221;<br />
<strong>Adolph Hitler</strong></p></blockquote>
<blockquote><p>&#8220;In questions of power, then, let no more be said of confidence in man, but bind him down from mischief by the chains of the Constitution.&#8221; </p>
<p>&#8220;I am for a government rigorously frugal and simple. Were we directed from Washington when to sow, when to reap, we should soon have no bread.&#8221;</p>
<p>&#8220;If the American people ever allow the banks to control the issue of their money, first by inflation and then by deflation, the banks and corporations that will grow up around them, will deprive the people of their property until their children will wake up homeless on the continent their fathers conquered.&#8221;<br />
<strong>Thomas Jefferson</strong></p></blockquote>
<blockquote><p>&#8220;Government is not reason, it is not eloquence, it is force; like fire, a troublesome servant and a fearful master. Never for a moment should it be left to irresponsible action.&#8221;<br />
<strong>George Washington</strong></p></blockquote>
<blockquote><p>&#8220;You cannot bring about prosperity by discouraging thrift. You cannot strengthen the weak by weakening the strong. You cannot help the wage earner by pulling down the wage payer. You cannot further the brotherhood of man by encouraging class hatred. You cannot help the poor by destroying the rich. You cannot keep out of trouble by spending more than you earn. You cannot build character and courage by taking away man’s initiative and independence. You cannot help men permanently by doing for them what they could and should do for themselves.&#8221;<br />
<strong>Abraham Lincoln</strong></p></blockquote>
<blockquote><p>&#8220;A long habit of not thinking a thing wrong, gives it a superficial appearance of being right, and raises at first a formidable outcry in defense of custom. But the tumult soon subsides.&#8221;<br />
<strong>Thomas Paine</strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/political/why-ive-decided-to-vote-for-chuck-baldwin/feed</wfw:commentRss>
		</item>
		<item>
		<title>Digital Ethnography</title>
		<link>http://ddubb.net/cultural/digital-ethnography</link>
		<comments>http://ddubb.net/cultural/digital-ethnography#comments</comments>
		<pubDate>Fri, 31 Oct 2008 13:29:06 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[creative]]></category>

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=295</guid>
		<description><![CDATA[
I just found this video on The Lab, a design firm working in the U.S. campus ministry communications field. Interesting facts and effective presentation.
]]></description>
			<content:encoded><![CDATA[<p><object width="300" height="270"><param name="movie" value="http://www.youtube.com/v/dGCJ46vyR9o&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dGCJ46vyR9o&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="270"></embed></object></p>
<p>I just found this video on <a href="http://wearethelab.com/a-vision-of-todays-student/">The Lab</a>, a design firm working in the U.S. campus ministry communications field. Interesting facts and effective presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/cultural/digital-ethnography/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adam Kokesh, an Iraq Veteran Against the War</title>
		<link>http://ddubb.net/cultural/adam-kokesh-an-iraq-veteran-against-the-war</link>
		<comments>http://ddubb.net/cultural/adam-kokesh-an-iraq-veteran-against-the-war#comments</comments>
		<pubDate>Fri, 24 Oct 2008 16:29:00 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[cultural]]></category>

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=287</guid>
		<description><![CDATA[On Thursday evening I attended dinner and a lecture with former Marine Corp Sergeant Adam Kokesh, a veteran of Fallujah in 2004. Because of his experience, Adam has since become an outspoken opponent of the US-led occupation of Iraq. Someday when I become famous and my detractors dig up the list of radical characters I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>On Thursday evening I attended dinner and a lecture with former Marine Corp Sergeant Adam Kokesh, a veteran of Fallujah in 2004. Because of his experience, Adam has since become an outspoken opponent of the US-led occupation of Iraq. Someday when I become famous and my detractors dig up the list of radical characters I&#8217;ve associated with, I&#8217;m sure the 3 hours we&#8217;ve spent within arm&#8217;s reach will come into question&mdash;though I can&#8217;t argue that I was only 8 years old!</p>
<p>I&#8217;ve recorded the <a href="http://media.ddubb.net/20081023-adamkokesh.mp3">first hour of the lecture here (mp3, 26Mb)</a> and have captured the full two hours including Q&#038;A on video (but am currently experiencing difficulty transferring the two 2Gb files off the camera.) Please listen with an open mind and try to put yourself in the boots of the thousands of young men and women in these types of situations everyday. Challenge yourself to think more deeply than the soundbites you hear on TV about &#8220;the surge&#8221; and what the &#8220;generals on the ground&#8221; say.</p>
<p>Although the audience was obviously predisposed to agree with him, Adam clearly challenged the crowd when he explained his perspective on how Obama and McCain have essentially the same foreign policy. There were gasps when he boldly gave the reasons he believes that McCain would actually bring the troops home before Obama! He cited McCain&#8217;s response to a question about how the future would be in 4 years under his administration where he answered that the troops would be home by then. He puts more confidence in McCain&#8217;s ability to take charge of the military. Obama, he countered, has proposed keeping a force of 40,000 in Iraq indefinitely. However, he accused McCain of supporting policies that make it less desirable for soldiers to retire to increase retention. In the end, his opposition of the two main party candidates was quite obvious, and to me, refreshing.</p>
<p>Adam told his story with uncommon honesty, humor, transparency and eloquence. I hope he can return to speak before a larger audience at Tech, including the corp.</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/cultural/adam-kokesh-an-iraq-veteran-against-the-war/feed</wfw:commentRss>
<enclosure url="http://media.ddubb.net/20081023-adamkokesh.mp3" length="27496159" type="audio/mpeg" />
		</item>
		<item>
		<title>Google CEO Endorses Warner in Lyric</title>
		<link>http://ddubb.net/cultural/google-ceo-endorses-warner-in-lyric</link>
		<comments>http://ddubb.net/cultural/google-ceo-endorses-warner-in-lyric#comments</comments>
		<pubDate>Fri, 24 Oct 2008 15:41:54 +0000</pubDate>
		<dc:creator>dave</dc:creator>
		
		<category><![CDATA[cultural]]></category>

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

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

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

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

		<guid isPermaLink="false">http://ddubb.net/?p=283</guid>
		<description><![CDATA[At noon on Thursday, I stood in line an hour early outside the Lyric to see Blacksburg native and current CEO of Google Eric Schmidt answer questions with and give glowing endorsements to VA Senate candidate and former governor Mark Warner. I attempted a bootleg audio recording via laptop mic which you can try to [...]]]></description>
			<content:encoded><![CDATA[<p>At noon on Thursday, I stood in line an hour early outside the Lyric to see Blacksburg native and current CEO of Google Eric Schmidt answer questions with and give glowing endorsements to VA Senate candidate and former governor Mark Warner. I attempted a bootleg audio recording via laptop mic which you can try to <a href="http://media.ddubb.net/20081023-markwarner-ericschmidt.mp3">listen to here (mp3, 1hr, 26Mb)</a>. The signal to noise ratio is very poor.</p>
<p>I was impressed by Mark&#8217;s precision and passion. He rose above party platitudes to give solid answers about government&#8217;s role in education, technology, infrastructure, and energy. I was particularly in agreement with his belief that the government&#8217;s role is not to pick winners and losers as they have done with ethanol. He opposes giving subsidies to alternatives and favors the more rational option of simply ending the lucrative 75 year tax breaks the oil industry has enjoyed. Let them compete on a level playing field. </p>
<p>There was also naysaying about the bailout from both Schmidt and Warner, though the latter didn&#8217;t explicitly say he would have opposed it. Warner ended with a reminder that his most important achievement as governor was getting Tech into the ACC.</p>
]]></content:encoded>
			<wfw:commentRss>http://ddubb.net/cultural/google-ceo-endorses-warner-in-lyric/feed</wfw:commentRss>
<enclosure url="http://media.ddubb.net/20081023-markwarner-ericschmidt.mp3" length="27397653" type="audio/mpeg" />
		</item>
	</channel>
</rss>
  
