<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cat brain.log &#124; less</title>
	<atom:link href="http://log.largevoid.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://log.largevoid.com</link>
	<description>Getting it down on `paper`</description>
	<lastBuildDate>Fri, 12 Mar 2010 01:08:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Recursive directory merge</title>
		<link>http://log.largevoid.com/2010/03/recursive-directory-merge/</link>
		<comments>http://log.largevoid.com/2010/03/recursive-directory-merge/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:08:00 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[Scripts, Tricks and Hacks]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[cp]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[filies]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[mv]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=309</guid>
		<description><![CDATA[Problem: I have two directories that are similar in structure but different in content.  Say one is an older snapshot of the other.  I want to copy the stuff from the new directory into the old directory (recursively).
Copy:
rsync -a SOURCE/ DEST/ --ignore-existing --whole-file
Move (no clobber):
rsync -a SOURCE/ DEST/ --remove-sent-files --ignore-existing --whole-file
Move (and clobber):
rsync [...]]]></description>
			<content:encoded><![CDATA[<p>Problem: I have two directories that are similar in structure but different in content.  Say one is an older snapshot of the other.  I want to copy the stuff from the new directory into the old directory (recursively).</p>
<p>Copy:<br />
<code>rsync -a SOURCE/ DEST/ --ignore-existing --whole-file</code></p>
<p>Move (no clobber):<br />
<code>rsync -a SOURCE/ DEST/ --remove-sent-files --ignore-existing --whole-file</code></p>
<p>Move (and clobber):<br />
<code>rsync -a SOURCE/ DEST/ --remove-sent-files --whole-file</code></p>
<p>Move, but only update with newer:<br />
<code>rsync -a SOURCE/ DEST/ --remove-sent-files --update --whole-file</code></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/03/recursive-directory-merge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samba reference</title>
		<link>http://log.largevoid.com/2010/03/samba-reference/</link>
		<comments>http://log.largevoid.com/2010/03/samba-reference/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:01:57 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=255</guid>
		<description><![CDATA[When trying to set up a samba server, I found these links to be very useful.
References:

https://calomel.org/samba.html
http://ubuntuforums.org/showthread.php?t=685427

]]></description>
			<content:encoded><![CDATA[<p>When trying to set up a samba server, I found these links to be very useful.</p>
<p>References:
<ul>
<li>https://calomel.org/samba.html</li>
<li>http://ubuntuforums.org/showthread.php?t=685427</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/03/samba-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git: Recovering a file that you deleted</title>
		<link>http://log.largevoid.com/2010/03/git-recovering-a-file-that-you-deleted/</link>
		<comments>http://log.largevoid.com/2010/03/git-recovering-a-file-that-you-deleted/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 21:02:36 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Scripts, Tricks and Hacks]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[commit]]></category>
		<category><![CDATA[deleted]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[recover]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[restore]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=304</guid>
		<description><![CDATA[You might be doing some spring cleaning to your source code, or you might move files around that you think are unnecessary.  Later on, you realize that one of the files you removed was a dependency.  Now what?  For this, we use git checkout.
If this is you:

...edit files...
git add edited-file
git commit -m [...]]]></description>
			<content:encoded><![CDATA[<p>You might be doing some spring cleaning to your source code, or you might move files around that you think are unnecessary.  Later on, you realize that one of the files you removed was a dependency.  Now what?  For this, we use <code>git checkout</code>.</p>
<p>If this is you:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">...edit files...
git add edited-file
git commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;made changed&quot;</span>
git <span style="color: #c20cb9; font-weight: bold;">rm</span> seemingly-useless-file
git commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;removed unreferenced dependency&quot;</span>
... edit <span style="color: #c20cb9; font-weight: bold;">file</span> ... realize you dynamically included that <span style="color: #c20cb9; font-weight: bold;">file</span> elsewhere..</pre></div></div>

<p>Then you can simply follow up with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">git checkout 0a323 <span style="color: #000000; font-weight: bold;">//</span> the previous revision <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">hash</span> from <span style="color: #000000; font-weight: bold;">`</span>git log<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> seemingly-useless-file seemingly-useless-file.1
git checkout master
<span style="color: #c20cb9; font-weight: bold;">mv</span> seemingly-useless-file.1 seemingly-useless-file
git add seemingly-useless-file
git commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;Restored seemingly-useless-file&quot;</span></pre></div></div>

<p>You may want to <code>git blame</code> yourself while you&#8217;re at it.</p>
<p>If you know of a better way, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/03/git-recovering-a-file-that-you-deleted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.1+ Date vs Strftime Timezone Annoyance</title>
		<link>http://log.largevoid.com/2010/02/php-date-strftime-timezone-annoyance/</link>
		<comments>http://log.largevoid.com/2010/02/php-date-strftime-timezone-annoyance/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 02:10:45 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Gotchas]]></category>
		<category><![CDATA[gotcha]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[putenv]]></category>
		<category><![CDATA[reverse compatable]]></category>
		<category><![CDATA[timezone]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=302</guid>
		<description><![CDATA[In the old PHP4 days, you could change the default timezone by: putenv("TZ=America/Los_Angeles");.  In php5, you can still do this and it&#8217;ll work for strtotime, strftime, gmstftime (maybe more).  It will not work for methods date and gmdate.  For those, starting in version 5.1, you&#8217;ll need to call date_default_timezone_set("America/Los_Angeles");.  This is [...]]]></description>
			<content:encoded><![CDATA[<p>In the old PHP4 days, you could change the default timezone by: <code>putenv("TZ=America/Los_Angeles");</code>.  In php5, you can still do this and it&#8217;ll work for strtotime, strftime, gmstftime (maybe more).  It will not work for methods date and gmdate.  For those, starting in version 5.1, you&#8217;ll need to call <code>date_default_timezone_set("America/Los_Angeles");</code>.  This is just another one of those annoying things that make PHP a dying language.</p>
<p>Together, to be cross-version compliant:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">putenv</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;TZ=America/Los_Angeles&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;date_default_timezone_set&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
 <span style="color: #990000;">date_default_timezone_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;America/Los_Angeles&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>We need both to be reverse-compatible with PHP4.</p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/02/php-date-strftime-timezone-annoyance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The little known PHP htmlspecialchars</title>
		<link>http://log.largevoid.com/2010/02/the-little-known-php-htmlspecialchars/</link>
		<comments>http://log.largevoid.com/2010/02/the-little-known-php-htmlspecialchars/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 02:06:57 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[entities]]></category>
		<category><![CDATA[htmlentities]]></category>
		<category><![CDATA[htmlspecialchars]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=297</guid>
		<description><![CDATA[Want to replace only xml entities , &#038;?  Don&#8217;t use htmlentites or str_replace; use htmlspecialchars.
The only named entities for XML are &#38;amp;, &#38;gt; and &#38;lt;. For all others you need to use the Unicode character code (eg. &#38;#160;). Webkit: Entity ‘nbsp’ not defined – Convert HTML entities to XML
]]></description>
			<content:encoded><![CDATA[<p>Want to replace only xml entities <, >, &#038;?  Don&#8217;t use htmlentites or str_replace; use <a href="http://us2.php.net/manual/en/function.htmlspecialchars.php">htmlspecialchars</a>.</p>
<p><q>The only named entities for XML are &amp;amp;, &amp;gt; and &amp;lt;. For all others you need to use the Unicode character code (eg. &amp;#160;).</q> <cite><a href="http://techtrouts.com/webkit-entity-nbsp-not-defined-convert-html-entities-to-xml/">Webkit: Entity ‘nbsp’ not defined – Convert HTML entities to XML</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/02/the-little-known-php-htmlspecialchars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3.1 Error Logging and Display of Said Errors</title>
		<link>http://log.largevoid.com/2010/02/php-5-3-1-error-logging-and-display-of-said-errors/</link>
		<comments>http://log.largevoid.com/2010/02/php-5-3-1-error-logging-and-display-of-said-errors/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 02:36:19 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[display_errors]]></category>
		<category><![CDATA[error_log]]></category>
		<category><![CDATA[html_errors]]></category>
		<category><![CDATA[log_errors]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[win7]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=294</guid>
		<description><![CDATA[I just installed the PHP 5.3.1 Windows installer bundle [VC9 x86 Non Thread Safe (2009-Nov-19 09:53:39)] on my Windows 7 [Ultimate] machine.  I want the PHP error output to get sent to stderr when run from the command line.  I don&#8217;t want the errors logged to a file because I&#8217;m developing cli tools. [...]]]></description>
			<content:encoded><![CDATA[<p>I just installed the <a href="http://windows.php.net/downloads/releases/php-5.3.1-nts-Win32-VC9-x86.msi">PHP 5.3.1 Windows installer bundle [VC9 x86 Non Thread Safe (2009-Nov-19 09:53:39)]</a> on my Windows 7 [Ultimate] machine.  I want the PHP error output to get sent to stderr when run from the command line.  I don&#8217;t want the errors logged to a file because I&#8217;m developing cli tools.  Since we&#8217;re dealing with the cli, I also don&#8217;t want html errors.  Should be pretty easy&#8230; if you know how to edit the settings.</p>
<p>These worked for me:</p>
<pre>error_reporting = E_ALL
display_errors = stderr
display_startup_errors = On
log_errors = Off
html_errors = Off
;error_log = php-errors.log
</pre>
<p>Ensure that <strong>error_log is not set</strong>, otherwise error will not be displayed.  This problem <em>may</em> be related, but is obviously not, the <a href="http://bugs.php.net/bug.php?id=50839">date bug</a> mentioned in the PHP bug reports.  It may be fixed in the latest snapshot.  As a note, the php.ini date.timezone setting is <code>date.timezone = "Pacific/Honolulu"</code>, and I still had this problem.</p>
<p>Other things I noticed:<br />
When error_log = syslog, you can find the PHP events in the windows Event Viewer -> Windows Logs -> Application.  I mention it in case you want that type of thing&#8230; or think error that logging may not be working.</p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/02/php-5-3-1-error-logging-and-display-of-said-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenVPN behind US Government Proxy</title>
		<link>http://log.largevoid.com/2010/02/openvpn-behind-us-government-proxy/</link>
		<comments>http://log.largevoid.com/2010/02/openvpn-behind-us-government-proxy/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 00:33:53 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[bypass]]></category>
		<category><![CDATA[faa]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=292</guid>
		<description><![CDATA[Using OpenVPN is possible through the government proxy server via TCP port 1194 using either amcproxy.faa.gov:8080 or awpproxy.faa.gov:8080
I read that somewhere&#8230; 
]]></description>
			<content:encoded><![CDATA[<p>Using OpenVPN is possible through the government proxy server via TCP port 1194 using either amcproxy.faa.gov:8080 or awpproxy.faa.gov:8080</p>
<p>I read that somewhere&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/02/openvpn-behind-us-government-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think and Grow Rich: Don&#8217;t read it, imagine what it would say.</title>
		<link>http://log.largevoid.com/2010/01/think-and-grow-rich-dont-read-it-imagine-what-it-would-say/</link>
		<comments>http://log.largevoid.com/2010/01/think-and-grow-rich-dont-read-it-imagine-what-it-would-say/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:34:39 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Synopses]]></category>
		<category><![CDATA[give up]]></category>
		<category><![CDATA[Napoleon Hill]]></category>
		<category><![CDATA[scammy]]></category>
		<category><![CDATA[Think and Grow Rich]]></category>
		<category><![CDATA[trivial]]></category>
		<category><![CDATA[waste]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=284</guid>
		<description><![CDATA[After reading half of the book, I feel as though I have a good idea about where it&#8217;s headed, if anywhere at all.  It feels scammy.  Why?  So many scammy self-help authors out there asserts Napoleon Hill&#8217;s advice as their own.  It feels dirty, tainted, simpleton, and yet, there&#8217;s truth in [...]]]></description>
			<content:encoded><![CDATA[<p>After reading half of the book, I feel as though I have a good idea about where it&#8217;s headed, if anywhere at all.  It feels scammy.  Why?  So many scammy self-help authors out there asserts Napoleon Hill&#8217;s advice as their own.  It feels dirty, tainted, simpleton, and yet, there&#8217;s truth in there.</p>
<p>I have no desire to see this book through to its end.  Having skimmed the table of contents, and having read the first few chapters, I feel fairly confident that I can imagine the advice to come in the remaining chapters.</p>
<p>Sometimes, it&#8217;s not the advice, but the story, that makes a book worth reading.  I <em>do</em> fear that not seeing this book through, I&#8217;ll miss out on a little nugget that might actually be more valuable than the hour or so that I&#8217;ve spared myself by not reading this book to the very end.</p>
<p>It is for that reason that I&#8217;ve decided to not issue chapter-by-chapter updates from here on out.  The time spent writing is wasteful, not to mention painful.  It&#8217;s bad enough that I have yet to endure another hour of this trivial little book.</p>
<p>I may write a final summary, but don&#8217;t hold your breath.  I&#8217;ve written enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/01/think-and-grow-rich-dont-read-it-imagine-what-it-would-say/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Earth Icons with Heading</title>
		<link>http://log.largevoid.com/2010/01/google-earth-icons-with-heading/</link>
		<comments>http://log.largevoid.com/2010/01/google-earth-icons-with-heading/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:14:52 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[google earth]]></category>
		<category><![CDATA[heading]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[wind barb]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=278</guid>
		<description><![CDATA[I&#8217;ve discovered that icons given headings in Google Earth KML stopped orienting in the specified heading direction.  The result is that when a user rotates the Earth so that true North is not directly &#8220;up&#8221; on the screen, the angle of the icon is misleading.  For wind barbs, this could lead to dangerous [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve discovered that icons given headings in Google Earth KML stopped orienting in the specified <em>heading</em> direction.  The result is that when a user rotates the Earth so that true North is not directly &#8220;up&#8221; on the screen, the angle of the icon is misleading.  For wind barbs, this could lead to dangerous decisions being made if the viewport isn&#8217;t manually corrected to set up = true north.</p>
<p>There are several known branches of this problem.</p>
<p><strong>One involves the Google Earth browser plug-in:</strong></p>
<p>Apparently, this incorrect handling is the end result of a bug fix to &#8220;correct&#8221; icon heading behavior.<br />
<q>Google Earth Plug-in &#8211; 5.1.3506.3999</q></p>
<p><q>(Issue 131) Icon headings should now behave as expected, and consistent with the Google Earth desktop client.</q> <cite><a href="http://www.noeman.org/gsm/mac-other-oses-softwares/106515-google-earth-google-earth-plug.html">http://www.noeman.org/gsm/mac-other-oses-softwares/106515-google-earth-google-earth-plug.html</a></cite></p>
<p>More on this bug (affecting version 5.1.x): http://www.google.com/support/forum/p/earth/thread?tid=005bea9c26949e40&amp;hl=en</p>
<p>Work-arounds: GroundOverlay and use a Colada model, both ugly.</p>
<p><strong>Another instance of the icon heading bug:</strong><br />
There is another situation in which the heading of the icon is not obeyed.  This occurs when an invalid styleUrl is used in the KML.  One recommendation is to remove the &#8220;#&#8221; character.  ex: &lt;styleUrl&gt;#balloonStyle&lt;/styleUrl&gt; is no longer correct as of version 5x.  I have not confirmed this, but I&#8217;ve heard that this is correctly implemented as &lt;styleUrl&gt;balloonStyle&lt;/styleUrl&gt;.  What happend?  This isn&#8217;t very backwards-compatible nor user-friendly.  Why the change?  HTML hashes are logically sound, as they refer to a locally named entity, such as those specified by a style id.</p>
<p>What worked for me was to completely remove the styleUrl when providing a local Style.  See below.</p>
<p><strong>Broken:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;kml</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://www.opengis.net/kml/2.2&quot;</span> <span style="color: #000066;">xmlns:gx</span>=<span style="color: #ff0000;">&quot;http://www.google.com/kml/ext/2.2&quot;</span> <span style="color: #000066;">xmlns:kml</span>=<span style="color: #ff0000;">&quot;http://www.opengis.net/kml/2.2&quot;</span> <span style="color: #000066;">xmlns:atom</span>=<span style="color: #ff0000;">&quot;http://www.w3.org/2005/Atom&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Document<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Weather Stations<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #339933;">&lt;![CDATA[&lt;p&gt;Generated: 2010-01-19 22:03:45 UTC&lt;/p&gt; &lt;p&gt;Only stations reporting &lt;b&gt;within 3 hours&lt;/b&gt; are included in this document.&lt;/p&gt;]]&gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;open<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/open<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ListStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;listItemType<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>radioFolder<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/listItemType<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bgColor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>00ffffff<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bgColor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;maxSnippetLines<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/maxSnippetLines<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ListStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;balloonStyle&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;BalloonStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;text<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #339933;">&lt;![CDATA[</span>
<span style="color: #339933;">   &lt;h2 style=&quot;font-size:1.1em;border-bottom:solid #333 1px;&quot;&gt;Instrument:</span>
<span style="color: #339933;">   $[name]&lt;/h2&gt;</span>
<span style="color: #339933;">   $[description]</span>
<span style="color: #339933;">   ]]&gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/text<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/BalloonStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Folder<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Visibility and Avg Winds<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ListStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;listItemType<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>checkHideChildren<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/listItemType<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bgColor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>00ffffff<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bgColor<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;maxSnippetLines<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/maxSnippetLines<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ListStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;visibility<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/visibility<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Placemark<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Any Instrument ID<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #339933;">&lt;![CDATA[ &lt;p&gt;&lt;font color=&quot;#999&quot;&gt;Sample Date&lt;/font&gt;&lt;/p&gt; &lt;div&gt;Data Table Here&lt;/div&gt;]]&gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;styleUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>#balloonStyle<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/styleUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;IconStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;scale<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>3.25<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/scale<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;heading<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/heading<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Icon<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;href<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://www.example.com/barb.php?spd=4<span style="color: #ddbb00;">&amp;amp;</span>dir=74<span style="color: #ddbb00;">&amp;amp;</span>val=7<span style="color: #ddbb00;">&amp;amp;</span>col=65280<span style="color: #ddbb00;">&amp;amp;</span>dia=100<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/href<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Icon<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/IconStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Point<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;coordinates<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-117.1135,32.3325,0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/coordinates<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Point<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Placemark<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Folder<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Document<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/kml<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><strong>Working:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"> <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Placemark<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Any Instrument ID<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><span style="color: #339933;">&lt;![CDATA[ &lt;p&gt;&lt;font color=&quot;#999&quot;&gt;Sample Date&lt;/font&gt;&lt;/p&gt; &lt;div&gt;Data Table Here&lt;/div&gt;]]&gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;IconStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;scale<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>3.25<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/scale<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;heading<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/heading<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Icon<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
     <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;href<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://www.example.com/barb.php?spd=4<span style="color: #ddbb00;">&amp;amp;</span>dir=74<span style="color: #ddbb00;">&amp;amp;</span>val=7<span style="color: #ddbb00;">&amp;amp;</span>col=65280<span style="color: #ddbb00;">&amp;amp;</span>dia=100<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/href<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Icon<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/IconStyle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Style<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Point<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;coordinates<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>-117.1135,32.3325,0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/coordinates<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Point<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Placemark<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/01/google-earth-icons-with-heading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data over SMS</title>
		<link>http://log.largevoid.com/2010/01/data-over-sms/</link>
		<comments>http://log.largevoid.com/2010/01/data-over-sms/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 22:10:01 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Thought Fragments]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[text messages]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=276</guid>
		<description><![CDATA[There are unlimited text messaging plans for $20/mo, and there are &#8220;unlimited&#8221; data plans for $30/mo.  But why pay for the data plan?  Why not convert your data to be sent as &#8220;text&#8221;?  If one were to implement the tcp protocol over SMS, they could avoid paying for the data plan.  [...]]]></description>
			<content:encoded><![CDATA[<p>There are unlimited text messaging plans for $20/mo, and there are &#8220;unlimited&#8221; data plans for $30/mo.  But why pay for the data plan?  Why not convert your data to be sent as &#8220;text&#8221;?  If one were to implement the tcp protocol over SMS, they could avoid paying for the data plan.  Of course, you&#8217;ll need a smart enough phone that could collect these text messages and recompose them back into their original form.  Further, the load on the carriers would be much greater, but who cares about those greedy scoundrels.</p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/01/data-over-sms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the Millennials and Having Children</title>
		<link>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/</link>
		<comments>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:14:19 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Quotes]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[adhd]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[children]]></category>
		<category><![CDATA[depression]]></category>
		<category><![CDATA[emo]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[spoiled]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=273</guid>
		<description><![CDATA[Everyone wants a baby, but no one wants a kid these days. Runaway1956
Kids today get emo and suicidal because they have been given everything, never had to earn anything, never been hungry, never had anything real to fear, never been punished for their behavior and are bored with having too much entertainment. Nadaka
]]></description>
			<content:encoded><![CDATA[<p><q>Everyone wants a baby, but no one wants a kid these days.</q> <cite><a href="http://science.slashdot.org/comments.pl?sid=1507380&#038;cid=30737616">Runaway1956</a></cite></p>
<p><q>Kids today get emo and suicidal because they have been given everything, never had to earn anything, never been hungry, never had anything real to fear, never been punished for their behavior and are bored with having too much entertainment.</q> <cite><a href="http://science.slashdot.org/comments.pl?sid=1507380&#038;cid=30737782">Nadaka</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Intelligence and Learning</title>
		<link>http://log.largevoid.com/2009/12/on-intelligence-and-learning/</link>
		<comments>http://log.largevoid.com/2009/12/on-intelligence-and-learning/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 19:25:53 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Quotes]]></category>
		<category><![CDATA[answer]]></category>
		<category><![CDATA[fool]]></category>
		<category><![CDATA[intelligence]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[wise]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=270</guid>
		<description><![CDATA[A wise man can learn more from a foolish question than a fool can learn from a wise answer. Bruce Lee
]]></description>
			<content:encoded><![CDATA[<p><q>A wise man can learn more from a foolish question than a fool can learn from a wise answer.</q> <cite>Bruce Lee</cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/on-intelligence-and-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paradigm-Shifting Words on Creativity</title>
		<link>http://log.largevoid.com/2009/12/paradigm-shifting-words-on-creativity/</link>
		<comments>http://log.largevoid.com/2009/12/paradigm-shifting-words-on-creativity/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 06:45:59 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Quotes]]></category>
		<category><![CDATA[albert einstein]]></category>
		<category><![CDATA[aspire]]></category>
		<category><![CDATA[buckminster fuller]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[shock]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=268</guid>
		<description><![CDATA[You can never solve a problem on the level on which it was created. Albert Einstein
There is nothing in a caterpillar that tells you it&#8217;s going to be a butterfly. Buckminster Fuller
]]></description>
			<content:encoded><![CDATA[<p><q>You can never solve a problem on the level on which it was created.</q> <cite>Albert Einstein</cite></p>
<p><q>There is nothing in a caterpillar that tells you it&#8217;s going to be a butterfly.</q> <cite>Buckminster Fuller</cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/paradigm-shifting-words-on-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Happiness and Success</title>
		<link>http://log.largevoid.com/2009/12/on-happiness-and-success/</link>
		<comments>http://log.largevoid.com/2009/12/on-happiness-and-success/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 06:14:15 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Quotes]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[curiousity]]></category>
		<category><![CDATA[happiness]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[linus pauling]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=264</guid>
		<description><![CDATA[Satisfaction of one&#8217;s curiosity is one of the greatest sources of happiness in life. Linus Pauling
The best way to have a good idea is to have a lot of ideas. Linus Pauling
]]></description>
			<content:encoded><![CDATA[<p><q>Satisfaction of one&#8217;s curiosity is one of the greatest sources of happiness in life.</q> <cite title="Linus Pauling: American chemist, peace activist, author, and educator">Linus Pauling</cite></p>
<p><q>The best way to have a good idea is to have a lot of ideas.</q> <cite title="Linus Pauling: American chemist, peace activist, author, and educator">Linus Pauling</cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/on-happiness-and-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Untrack Files with Git</title>
		<link>http://log.largevoid.com/2009/12/untrack-files-with-git/</link>
		<comments>http://log.largevoid.com/2009/12/untrack-files-with-git/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 04:22:21 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[Scripts, Tricks and Hacks]]></category>
		<category><![CDATA[cached]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[untrack]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=258</guid>
		<description><![CDATA[When I found this little gem, I couldn&#8217;t not (double negative for emphasis) store it for reference.
git rm --cached filename
Don&#8217;t worry, it won&#8217;t remove your local copy.  It just stages it for removal from the history of tracked files.
Reference:
  untrack files in git
]]></description>
			<content:encoded><![CDATA[<p>When I found this little gem, I couldn&#8217;t not (double negative for emphasis) store it for reference.</p>
<p><code>git rm --cached filename</code></p>
<p>Don&#8217;t worry, it won&#8217;t remove your local copy.  It just stages it for removal from the history of tracked files.</p>
<p>Reference:<br />
  <a href="http://source.kohlerville.com/?p=149">untrack files in git</a></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/untrack-files-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing a DLNA-compliant media server for use with Samsung LN46B650 TV</title>
		<link>http://log.largevoid.com/2009/12/dlna-media-server-with-mediatomb/</link>
		<comments>http://log.largevoid.com/2009/12/dlna-media-server-with-mediatomb/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 02:54:10 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[dlna]]></category>
		<category><![CDATA[mediatomb]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[transcoder]]></category>
		<category><![CDATA[tversity]]></category>
		<category><![CDATA[ushare]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=250</guid>
		<description><![CDATA[Installing a DLNA-compliant media server to use with Samsung LN46B650 TV
At first, I tried the ultra-simple uShare server.  It installed easily and worked out of the box.  Configuration was simple, and everything looked fine.  Then I tried to view content on my tv.  No luck: Format not supported.  I couldn&#8217;t play mp3, avi, wav, mpeg, [...]]]></description>
			<content:encoded><![CDATA[<h2>Installing a DLNA-compliant media server to use with Samsung LN46B650 TV</h2>
<p>At first, I tried the ultra-simple uShare server.  It installed easily and worked out of the box.  Configuration was simple, and everything looked fine.  Then I tried to view content on my tv.  No luck: Format not supported.  I couldn&#8217;t play mp3, avi, wav, mpeg, nothing.  I needed a transcoder.</p>
<p>I completely removed uShare and started from scratch with MediaTomb.  Bam!  That&#8217;s <em>da kine</em>.</p>
<p>It&#8217;s not as easy as uServer to configure, but it works.  Let&#8217;s get to it.  Please note, I didn&#8217;t figure this out.  I&#8217;m just copying here for future reference.</p>
<ol>
<li>Enter mediatomb into a command line just so it creates a directory under my user ID.<br />
Then I exited mediatomb and edited the ~/.mediatomb/config.xml file and made the following changes</li>
<li>Remove the comment tags &lt;!&#8211; and &#8211;&gt; that were around the &lt;custom-http-headers&gt; section.</li>
<li>Add the following two lines to the &lt;custom-http-headers&gt; section:
<p>&lt;add header=&#8221;transferMode.dlna.org: Streaming&#8221;/&gt;<br />
&lt;add header=&#8221;contentFeatures.dlna.org: DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=017000 00000000000000000000000000&#8243;/&gt;</li>
<li>Change &lt;protocolInfo extend=&#8221;yes&#8221;/&gt; to say &#8220;yes&#8221;; it says &#8220;no&#8221; when it is installed.</li>
<li>Add this to your &lt;extension-mimetype&gt; node:
<p>&lt;map from=&#8221;avi&#8221; to=&#8221;video/mpeg&#8221;/&gt;</li>
</ol>
<p>Reference:</p>
<ul>
<li><a href="http://ubuntuforums.org/showthread.php?t=1198689">Ubuntu Forums</a></li>
<li><a href="http://forums.tversity.com/viewtopic.php?f=2&#038;t=10992&#038;st=0&#038;sk=t&#038;sd=a&#038;start=45">TVersity Support</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/dlna-media-server-with-mediatomb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Static IP with DHCP-Assigned DNS on Ubuntu 9.10</title>
		<link>http://log.largevoid.com/2009/12/static-ip-with-dhcp-assigned-dns-on-ubuntu-9-10/</link>
		<comments>http://log.largevoid.com/2009/12/static-ip-with-dhcp-assigned-dns-on-ubuntu-9-10/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 20:05:08 +0000</pubDate>
		<dc:creator>Chief</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[dhclient]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[eth0]]></category>
		<category><![CDATA[fixed address]]></category>
		<category><![CDATA[static ip]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=246</guid>
		<description><![CDATA[There is a ton of bug reports regarding the Network-Manager&#8217;s nm-applet not properly configuring static ips.  There are, and always have been, bugs in the nm-applet, in each of its versions.  In short, getting a static ip with dhcp assigned DNS parameters requires editing the /etc/dhcp3/dhclient.conf file.  Here we go.

sudo vi /etc/dhcp3/dhclient.conf
&#62;&#62;
alias [...]]]></description>
			<content:encoded><![CDATA[<p>There is a ton of bug reports regarding the Network-Manager&#8217;s nm-applet not properly configuring static ips.  There are, and always have been, bugs in the nm-applet, in each of its versions.  In short, getting a static ip with dhcp assigned DNS parameters requires editing the <em>/etc/dhcp3/dhclient.conf</em> file.  Here we go.</p>
<ol>
<li><code>sudo vi /etc/dhcp3/dhclient.conf</code>
<pre>&gt;&gt;
alias {
  interface "eth0";
  fixed-address 192.168.1.101;
  option subnet-mask 255.255.255.255;
}
&lt;&lt;</pre>
</li>
<li><code>sudo dhclient -r</code></li>
<li><code>sudo dhclient</code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2009/12/static-ip-with-dhcp-assigned-dns-on-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
