<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Shouting Into Space</title>
    <link>http://blog.latcarf.com/</link>
    <description>The world is but a canvas to the imagination.</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.5.5 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://blog.latcarf.com/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Shouting Into Space - The world is but a canvas to the imagination.</title>
        <link>http://blog.latcarf.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Creating CrashPlan Encryption Keys</title>
    <link>http://blog.latcarf.com/archives/160-Creating-CrashPlan-Encryption-Keys.html</link>
            <category>Computing</category>
    
    <comments>http://blog.latcarf.com/archives/160-Creating-CrashPlan-Encryption-Keys.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=160</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=160</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;a class=&#039;serendipity_image_link&#039; href=&quot;http://blog.latcarf.com/exit.php?url_id=693&amp;amp;entry_id=160&quot; title=&quot;http://www.crashplan.com/&quot;  onmouseover=&quot;window.status=&#039;http://www.crashplan.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; target=&quot;_blank&quot;&gt;&lt;!-- s9ymdb:110 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;128&quot; height=&quot;128&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/crashplan.png&quot; alt=&quot;CrashPlan Application Icon&quot; /&gt;&lt;/a&gt;I use &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=693&amp;amp;entry_id=160&quot;  onmouseover=&quot;window.status=&#039;http://www.crashplan.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;CrashPlan&quot;&gt;CrashPlan&lt;/a&gt; for continuous backup on all my main home computers (that&#039;s five currently). I&#039;m also a cryptography freak in that I&#039;ll encrypt anything I can! I wanted to use the backup encryption in CrashPlan and seeing a possible security hole with allowing CrashPlan to generate its own keys, I decided to do it the hard way (like most things I do).&lt;br /&gt;
&lt;br /&gt;
These are the steps I took to generate my own hardened &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=693&amp;amp;entry_id=160&quot;  onmouseover=&quot;window.status=&#039;http://www.crashplan.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;CrashPlan&quot;&gt;CrashPlan&lt;/a&gt; encryption keys. I have a different one for every machine CrashPlan is installed on...&lt;br /&gt;
&lt;br /&gt;
This is all done, of course, on a Mac (why do it anywhere else?)&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;1.&lt;/strong&gt; Create a password of 56 8-bit characters in any way you want.&lt;br /&gt;
Using &quot;&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=694&amp;amp;entry_id=160&quot;  onmouseover=&quot;window.status=&#039;http://www.codepoetry.net/products/passwordassistant&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;CodePoetry Password Assistant UI&quot;&gt;Password Assistant&lt;/a&gt;,&quot; create two &quot;Random&quot; strings of 28 characters.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;2.&lt;/strong&gt; Paste the two 28 character strings as one line into a text file called &#039;password.key&#039; Make sure there are &lt;strong&gt;no&lt;/strong&gt; line breaks in the file.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;3.&lt;/strong&gt; Base64 encode the file using the terminal.&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;openssl enc &lt;span style=&quot;color: #660033;&quot;&gt;-base64&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-in&lt;/span&gt; password.key &lt;span style=&quot;color: #660033;&quot;&gt;-out&lt;/span&gt; password.base64&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
To decode the file you can use the following:&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;openssl enc &lt;span style=&quot;color: #660033;&quot;&gt;-base64&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-d&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-in&lt;/span&gt; password.base64 &lt;span style=&quot;color: #660033;&quot;&gt;-out&lt;/span&gt; password.key&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://blog.latcarf.com/uploads/misc/crashplan-encrypt.png&#039;&gt;&lt;!-- s9ymdb:111 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;41&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/crashplan-encrypt.latblogThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;strong&gt;4.&lt;/strong&gt; On the &quot;Settings&quot; pane of CrashPlan, select the &quot;Security&quot; tab.&lt;br /&gt;
In the &quot;Archive Encryption&quot; section, choose &quot;Replace with your own data key (Advanced),&quot; then paste the contents of the file &quot;password.base64&quot; you created in step 3.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;5.&lt;/strong&gt; Make sure you save the original password (and maybe the Base64 encoded version as well) somewhere safe (an encrypted disk image maybe?). You might need them later and if you forget the password, your backup archive will be unaccessible.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;*&lt;/strong&gt; If you really want to be ultra-super-mega-mondo secure, you can make a really &quot;dirty&quot; password with the following command (by dirty, I mean there is a good chance you won&#039;t be able to type the bare password. Just try to base64 decode the output of this command to a file to see for yourself).&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;dd&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;bs&lt;/span&gt;=&lt;span style=&quot;color: #000000;&quot;&gt;56&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;count&lt;/span&gt;=&lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;=&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;dev&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;random &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;openssl enc &lt;span style=&quot;color: #660033;&quot;&gt;-base64&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; password.txt&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;**&lt;/strong&gt; If you&#039;re adventurous, you can try to weed out some of the &quot;dirtier&quot; characters with &#039;tr&#039;&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;dd&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;bs&lt;/span&gt;=&lt;span style=&quot;color: #000000;&quot;&gt;56&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;count&lt;/span&gt;=&lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt; &lt;span style=&quot;color: #007800;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;if&lt;/span&gt;&lt;/span&gt;=&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;dev&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;random &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;tr&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-cd&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;\11\12\15\40-\176&#039;&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;|&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;openssl enc &lt;span style=&quot;color: #660033;&quot;&gt;-base64&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; password.txt&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Good luck! I hope this satisfies your craving for hard-core encrypted CrashPlan backups. 
    </content:encoded>

    <pubDate>Sat, 25 Jun 2011 20:53:07 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/160-guid.html</guid>
    
</item>
<item>
    <title>Rudeness...</title>
    <link>http://blog.latcarf.com/archives/159-Rudeness....html</link>
            <category>Generality</category>
    
    <comments>http://blog.latcarf.com/archives/159-Rudeness....html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=159</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=159</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;br /&gt;
&quot;&lt;strong&gt;Rudeness is the weak man&#039;s imitation of strength.&lt;/strong&gt;&quot;&lt;br /&gt;
-&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=691&amp;amp;entry_id=159&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Eric_Hoffer&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Eric Hoffer&quot;&gt;&lt;em&gt;Eric Hoffer&lt;/em&gt;&lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 14 Jun 2011 18:05:47 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/159-guid.html</guid>
    
</item>
<item>
    <title>Taking Stock of Police in 2011</title>
    <link>http://blog.latcarf.com/archives/158-Taking-Stock-of-Police-in-2011.html</link>
            <category>Politics</category>
    
    <comments>http://blog.latcarf.com/archives/158-Taking-Stock-of-Police-in-2011.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=158</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=158</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://blog.latcarf.com/uploads/misc/PoliceBadge.jpg&#039;&gt;&lt;!-- s9ymdb:109 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;77&quot; height=&quot;110&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/PoliceBadge.latblogThumb.jpg&quot; alt=&quot;police badge&quot; /&gt;&lt;/a&gt;Let&#039;s take stock of police in 2011:&lt;br /&gt;
&lt;br /&gt;
They have three &quot;things with a button&quot; that can make you stop doing whatever you were doing when they approached you.&lt;br /&gt;
&lt;br /&gt;
1. pepper spray - used if the thing you want to stop can&#039;t hurt you, but might touch or otherwise annoy you, used on the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=679&amp;amp;entry_id=158&quot; title=&quot;http://www.foxnews.com/story/0,2933,535050,00.html&quot;  onmouseover=&quot;window.status=&#039;http://www.foxnews.com/story/0,2933,535050,00.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;handicapped&lt;/a&gt;, but &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=680&amp;amp;entry_id=158&quot; title=&quot;http://www.clickondetroit.com/video/27513240/index.html&quot;  onmouseover=&quot;window.status=&#039;http://www.clickondetroit.com/video/27513240/index.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;great for squirrels too&lt;/a&gt;, as it turns out!&lt;br /&gt;
2. stun gun - used on &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=681&amp;amp;entry_id=158&quot; title=&quot;http://en.wikipedia.org/wiki/University_of_Florida_Taser_incident&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/University_of_Florida_Taser_incident&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;college students&lt;/a&gt; and &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=682&amp;amp;entry_id=158&quot; title=&quot;http://www.cbsnews.com/8301-504083_162-20004545-504083.html&quot;  onmouseover=&quot;window.status=&#039;http://www.cbsnews.com/8301-504083_162-20004545-504083.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;drunkards&lt;/a&gt; because it&#039;s fun to watch them squirm - can be used on the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=683&amp;amp;entry_id=158&quot; title=&quot;http://blutube.policeone.com/Media/4357-Police-use-stun-gun-on-72-year-old-grandmother-at-traffic-stop/&quot;  onmouseover=&quot;window.status=&#039;http://blutube.policeone.com/Media/4357-Police-use-stun-gun-on-72-year-old-grandmother-at-traffic-stop/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;elderly&lt;/a&gt; especially if &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=684&amp;amp;entry_id=158&quot; title=&quot;http://www.copblock.org/402/dont-tase-my-granny/&quot;  onmouseover=&quot;window.status=&#039;http://www.copblock.org/402/dont-tase-my-granny/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;they are in bed&lt;/a&gt;&lt;br /&gt;
3. firearm - used mostly on &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=685&amp;amp;entry_id=158&quot; title=&quot;http://www.ktla.com/news/landing/ktla-just-kill-him-dog-shooting,0,6744943.story&quot;  onmouseover=&quot;window.status=&#039;http://www.ktla.com/news/landing/ktla-just-kill-him-dog-shooting,0,6744943.story&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;family pets&lt;/a&gt; and the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=686&amp;amp;entry_id=158&quot; title=&quot;http://gothamist.com/2011/01/22/bronx_cop_mistakenly_shoots_elderly.php&quot;  onmouseover=&quot;window.status=&#039;http://gothamist.com/2011/01/22/bronx_cop_mistakenly_shoots_elderly.php&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;elderly&lt;/a&gt;. The gun is used less and less these days because it gets cops in too much trouble. The other &#039;point-and-clicks&#039; don&#039;t. All police do have guns however, just to remind you that you will be killed if you don&#039;t respond properly to pepper spray and stun guns.&lt;br /&gt;
&lt;br /&gt;
BTW... It took me 5 minutes to write this post - including the Google searches (&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=687&amp;amp;entry_id=158&quot; title=&quot;http://www.google.com/search?q=police+pepper+spray&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&quot;  onmouseover=&quot;window.status=&#039;http://www.google.com/search?q=police+pepper+spray&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;police pepper spray&lt;/a&gt;, &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=688&amp;amp;entry_id=158&quot; title=&quot;http://www.google.com/search?q=police+taser&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&quot;  onmouseover=&quot;window.status=&#039;http://www.google.com/search?q=police+taser&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;police taser&lt;/a&gt;, &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=689&amp;amp;entry_id=158&quot; title=&quot;http://www.google.com/search?q=police+shoot&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&quot;  onmouseover=&quot;window.status=&#039;http://www.google.com/search?q=police+shoot&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot;&gt;police shoot&lt;/a&gt;)... That&#039;s sad. 
    </content:encoded>

    <pubDate>Thu, 14 Apr 2011 14:27:39 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/158-guid.html</guid>
    
</item>
<item>
    <title>A Clear Window</title>
    <link>http://blog.latcarf.com/archives/157-A-Clear-Window.html</link>
            <category>BMW</category>
    
    <comments>http://blog.latcarf.com/archives/157-A-Clear-Window.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=157</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=157</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;!-- s9ymdb:108 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;83&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/bmw_logo1.latblogThumb.jpg&quot; alt=&quot;&quot; /&gt;Today I mixed up a batch of BMW window cleaner for my wife&#039;s 328i. Of course I used the official BMW concentrate and mixed it with distilled water. Yeah - I said distilled. I went to the drug store to buy it specifically for the purpose. I wouldn&#039;t want my wife looking through hard water spots, now do? You gotta treat your wife and your Bimmers right. 
    </content:encoded>

    <pubDate>Sat, 12 Feb 2011 15:38:05 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/157-guid.html</guid>
    
</item>
<item>
    <title>Standard Time is Bad for Road Rage</title>
    <link>http://blog.latcarf.com/archives/156-Standard-Time-is-Bad-for-Road-Rage.html</link>
            <category>Generality</category>
    
    <comments>http://blog.latcarf.com/archives/156-Standard-Time-is-Bad-for-Road-Rage.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=156</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=156</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://blog.latcarf.com/uploads/misc/2011bmw335iC.jpg&#039;&gt;&lt;!-- s9ymdb:107 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;83&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/2011bmw335iC.latblogThumb.jpg&quot; alt=&quot;2011 BMW 335iC&quot; /&gt;&lt;/a&gt;It seems to me that the concept of &#039;daylight saving time&#039; causes more problems than it solves. Consider that, when driving in rush hour traffic, people tend to be more aggressive and less obligatory toward other drivers when they can&#039;t see their faces!&lt;br /&gt;
&lt;br /&gt;
This only stands to reason. As more people clog up the roadways during rush hour, tempers flare and patience shortens. When the &quot;thing&quot; causing your problems doesn&#039;t have a face, it&#039;s the perfect recipe for angry, uncompassionate driving.&lt;br /&gt;
&lt;br /&gt;
Being a person who drives to work daily, I for one would be happy not to have to drive home in the dark in Winter. It&#039;s a battlefield out there. 
    </content:encoded>

    <pubDate>Wed, 02 Feb 2011 16:55:16 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/156-guid.html</guid>
    
</item>
<item>
    <title>Girl Talk</title>
    <link>http://blog.latcarf.com/archives/155-Girl-Talk.html</link>
            <category>Music</category>
    
    <comments>http://blog.latcarf.com/archives/155-Girl-Talk.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=155</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=155</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    &lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://blog.latcarf.com/uploads/music/allday_frontcover.jpg&#039;&gt;&lt;!-- s9ymdb:106 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;110&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/music/allday_frontcover.latblogThumb.jpg&quot; alt=&quot;All Day Cover&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=675&amp;amp;entry_id=155&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Girl_Talk_(musician)&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Girl Talk&quot;&gt;Girl Talk&lt;/a&gt; is mix artist &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=676&amp;amp;entry_id=155&quot;  onmouseover=&quot;window.status=&#039;http://www.fastcompany.com/100/2009/gregg-gillis&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Greg Gillis&quot;&gt;Greg Gillis&lt;/a&gt; and he&#039;s a bad ass.&lt;br /&gt;
&lt;br /&gt;
Check out &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=677&amp;amp;entry_id=155&quot;  onmouseover=&quot;window.status=&#039;http://illegal-art.net/allday/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;All Day&quot;&gt;All Day&lt;/a&gt;... 
    </content:encoded>

    <pubDate>Sun, 23 Jan 2011 00:50:07 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/155-guid.html</guid>
    
</item>
<item>
    <title>iPod and iPad Touching Kids...!?</title>
    <link>http://blog.latcarf.com/archives/153-iPod-and-iPad-Touching-Kids...!.html</link>
            <category>Computing</category>
    
    <comments>http://blog.latcarf.com/archives/153-iPod-and-iPad-Touching-Kids...!.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=153</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=153</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I saw this the other day... Marketing people scare me.&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;center&quot;&gt;&lt;a  class=&#039;serendipity_image_link&#039;  rel=&#039;lightbox&#039; href=&#039;http://blog.latcarf.com/uploads/misc/iPadTouchesKids.png&#039;&gt;&lt;!-- s9ymdb:105 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;39&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://blog.latcarf.com/uploads/misc/iPadTouchesKids.latblogThumb.png&quot; alt=&quot;Apple Touches Kids&quot; /&gt;&lt;/a&gt;&lt;/div&gt; 
    </content:encoded>

    <pubDate>Tue, 21 Dec 2010 22:46:00 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/153-guid.html</guid>
    
</item>
<item>
    <title>An Open Letter to Rockstar Games Regarding Red Dead Redemption</title>
    <link>http://blog.latcarf.com/archives/154-An-Open-Letter-to-Rockstar-Games-Regarding-Red-Dead-Redemption.html</link>
            <category>Games</category>
    
    <comments>http://blog.latcarf.com/archives/154-An-Open-Letter-to-Rockstar-Games-Regarding-Red-Dead-Redemption.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=154</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=154</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    To &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=672&amp;amp;entry_id=154&quot;  onmouseover=&quot;window.status=&#039;http://www.rockstargames.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Rockstar Games&quot;&gt;Rockstar Games&lt;/a&gt;,&lt;br /&gt;
&lt;br /&gt;
At the time of this writing I am 4 hours, 23 minutes, and 40 seconds into &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=670&amp;amp;entry_id=154&quot;  onmouseover=&quot;window.status=&#039;http://http://www.rockstargames.com/reddeadredemption/agegate/ref/?redirect=&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Red Dead Redemption&quot;&gt;Red Dead Redemption&lt;/a&gt;, having finished 8.3% of the game thus far. I struggled to find the proper words to precisely present my point in a poignant and punctuated manner. Although my intent was to be excessively eloquent in this enunciation of my enjoyment of &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=671&amp;amp;entry_id=154&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/Red_Dead_Redemption&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Red Dead Remption&quot;&gt;Red Dead Redemption&lt;/a&gt;, the emergence of said eloquence seems to have evaded me. It is then with a sad sigh I must make my endorsement of your so expertly crafted work of art in the only way I feel fully captures the essence of my feeling.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=673&amp;amp;entry_id=154&quot;  onmouseover=&quot;window.status=&#039;http://www.gamespot.com/ps3/action/reddeadredemption/index.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Red Dead Redemption&quot;&gt;Red Dead Redemption&lt;/a&gt; is a fucking awesome game. Well done! From the bottom of my heart, well fucking done! 
    </content:encoded>

    <pubDate>Sun, 18 Jul 2010 02:15:00 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/154-guid.html</guid>
    
</item>
<item>
    <title>Lesson Learned...</title>
    <link>http://blog.latcarf.com/archives/152-Lesson-Learned....html</link>
            <category>Work</category>
    
    <comments>http://blog.latcarf.com/archives/152-Lesson-Learned....html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=152</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=152</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    In the little over seven years that I&#039;ve been employed at my present job, I&#039;ve had a total of 14 managers. That&#039;s nearly one every six months. Each time I got a review from a manager, I was told how exceptionally well I performed and how it would be impossible to do what we do without me (or something to that effect). Typically, this was true.&lt;br /&gt;
&lt;br /&gt;
During my tenure, some managers gave me good bonuses or a raise here and there. Other managers didn&#039;t. Some managers were complete assholes or total bitches and others were great people just trying to do right and not lose a limb (or their head) in the process (though a few still did).&lt;br /&gt;
&lt;br /&gt;
Usually, it took about a month or two to train a new manager on where I was, where I&#039;d been, where I was going, and how fast I&#039;d get there. Generally, most managers were only able to deal with one or two of those variables. The more important thing, in their minds, was making sure they looked good to their managers. Somehow they forgot (or never knew) that well cared for, productive employees can make &lt;em&gt;any&lt;/em&gt; manager look good to their boss!&lt;br /&gt;
&lt;br /&gt;
In the next month or two, my manager would learn how many little, behind the scenes things I was doing to keep the automated orchestra playing flawlessly. Slowly, they&#039;d understand the necessity of a good SCM engineer and start to put well placed trust in me. Anytime I thought it might be nice to venture out into something different (like development, or project management, or marketing), I&#039;d bring it up with my manager and usually be give &quot;20%&quot; of my time to work on new tasks.&lt;br /&gt;
&lt;br /&gt;
Inevitably, releases come, then patches, coupled with constant tech support to my group of developers, and of course, myriad regular SCM duties. The &quot;20%&quot; of my time dwindles down to an effective 0%!&lt;br /&gt;
&lt;br /&gt;
So, after all this time. I&#039;ve left my company for another. As I embark on solving a new set of challenges, I&#039;ll try to remember the lesson learned from my last seven years of work:&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Don&#039;t be irreplaceable, if you can&#039;t be replaced, you can&#039;t be promoted.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
I&#039;d always thought it would assure the consistent availability of my position were I to make myself irreplacable. Indeed, I spent a considerable amount of energy to ensure it took me to deliver our prodcts. Well, there is no doubt my efforts certainly ensured my position, but the side-effects were so restrictive as to be stunting. I&#039;ve glad I&#039;ve broken free of that suffocating situation.&lt;br /&gt;
&lt;br /&gt;
I&#039;ll apply what I&#039;ve learned to my future endeavors. 
    </content:encoded>

    <pubDate>Sun, 13 Jun 2010 01:06:14 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/152-guid.html</guid>
    
</item>
<item>
    <title>Purpose</title>
    <link>http://blog.latcarf.com/archives/151-Purpose.html</link>
            <category>Generality</category>
    
    <comments>http://blog.latcarf.com/archives/151-Purpose.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=151</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=151</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I don&#039;t know how to best use the gifts I&#039;ve been given... 
    </content:encoded>

    <pubDate>Mon, 17 May 2010 21:22:41 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/151-guid.html</guid>
    
</item>
<item>
    <title>Run Script at Mac OS X Login</title>
    <link>http://blog.latcarf.com/archives/150-Run-Script-at-Mac-OS-X-Login.html</link>
            <category>Mac OS X</category>
    
    <comments>http://blog.latcarf.com/archives/150-Run-Script-at-Mac-OS-X-Login.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=150</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=150</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I know alot of people want to know how to do this. The solution is usually creating a shell script and naming it with the &#039;.command&#039; extension so it&#039;ll launch the Terminal.&lt;br /&gt;
&lt;br /&gt;
The cleaner way is through a simple &lt;tt&gt;launchd&lt;/tt&gt; plist placed in your &lt;tt&gt;~/Library/LaunchAgents&lt;/tt&gt; folder.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s my example:&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;$ &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;cat&lt;/span&gt; ~&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.latcarf.loginscript.plist&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;div class=&quot;xml geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;?xml&lt;/span&gt; &lt;span style=&quot;color: #000066;&quot;&gt;version&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;1.0&amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #000066;&quot;&gt;encoding&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;UTF-8&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #00bbdd;&quot;&gt;&amp;lt;!DOCTYPE plist PUBLIC &amp;quot;-//Apple//DTD PLIST 1.0//EN&amp;quot; &amp;quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&amp;quot;&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;plist&lt;/span&gt; &lt;span style=&quot;color: #000066;&quot;&gt;version&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;1.0&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;dict&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Label&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;com.latcarf.loginscript&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;ProgramArguments&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;array&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;/bin/bash&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;/Users/latcarf/Documents/script/loginscript.bash&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/string&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/array&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;RunAtLoad&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/key&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &amp;#160; &amp;#160; &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;true&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/dict&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/plist&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Start it up&lt;/span&gt;&lt;br /&gt;$ launchctl load ~&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;LaunchAgents&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.latcarf.loginscript.plist&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Or just reboot or logout and back in to kick it off.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Only runs once at login.&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Wed, 06 May 2009 00:28:12 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/150-guid.html</guid>
    
</item>
<item>
    <title>Oakley M-Frames</title>
    <link>http://blog.latcarf.com/archives/149-Oakley-M-Frames.html</link>
            <category>Shooting</category>
    
    <comments>http://blog.latcarf.com/archives/149-Oakley-M-Frames.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=149</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=149</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    I just picked up some new &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=666&amp;amp;entry_id=149&quot;  onmouseover=&quot;window.status=&#039;http://oakley.com/custom/mframe&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Oakley M-Frames&quot;&gt;Oakley M-Frames&lt;/a&gt; for use as shooting glasses.&lt;br /&gt;
&lt;br /&gt;
I guess this means I need to start shooting again.&lt;br /&gt;
&lt;br /&gt;
Ammo prices are skyrocketing though since we&#039;re in a bad economy and folks on the conservative right are afraid Obama&#039;s gonna take their guns away. Libertarians know that people only take your guns away if you let them. 
    </content:encoded>

    <pubDate>Sun, 03 May 2009 11:12:00 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/149-guid.html</guid>
    
</item>
<item>
    <title>Necrography</title>
    <link>http://blog.latcarf.com/archives/148-Necrography.html</link>
            <category>Entertainment</category>
    
    <comments>http://blog.latcarf.com/archives/148-Necrography.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=148</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=148</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    A new horror fiction magazine is out. It&#039;s published biannually and contains fiction, poetry, art, and photos of the horror genre.&lt;br /&gt;
&lt;br /&gt;
It&#039;s currently &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=663&amp;amp;entry_id=148&quot;  onmouseover=&quot;window.status=&#039;http://necrography.com/subscribe&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Necrography - Issue One&quot;&gt;available for sale&lt;/a&gt; and has gotten some nice comments from readers. Looks pretty good.&lt;br /&gt;
&lt;br /&gt;
The main web site is at &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=664&amp;amp;entry_id=148&quot;  onmouseover=&quot;window.status=&#039;http://necrography.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Necrography&quot;&gt;necrography.com&lt;/a&gt; and there&#039;s a blog at &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=665&amp;amp;entry_id=148&quot;  onmouseover=&quot;window.status=&#039;http://blog.necrography.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Necrography Blog&quot;&gt;blog.necrography.com&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Check it out and buy a couple copies, I think I will - always good to support independent markets...&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 28 Apr 2009 11:04:00 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/148-guid.html</guid>
    
</item>
<item>
    <title>It's not MAC!</title>
    <link>http://blog.latcarf.com/archives/147-Its-not-MAC!.html</link>
            <category>Mac OS X</category>
    
    <comments>http://blog.latcarf.com/archives/147-Its-not-MAC!.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=147</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=147</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    Just a little pet peeve I need to get off my chest.&lt;br /&gt;
&lt;br /&gt;
I know all you PC folks are coming over to the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; in droves and that&#039;s a great thing. It&#039;s great for you and for me. You&#039;ll have a much better computing experience (and life in general) on Mac and I&#039;ll still have a job making software for you. So win-win all around!&lt;br /&gt;
&lt;br /&gt;
One little behavior we need to correct though, is how you write about your new computer. In the Windows world it&#039;s normal to write PC, or DELL, or IBM in all capital letters. Heck, in DOS (all caps there too) it&#039;s even proper to write FOLDER NAMES in capital letters as well, isn&#039;t it?&lt;br /&gt;
&lt;br /&gt;
In the &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; world however, it&#039;s wrong to write &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; in all caps (and generally wrong to write folder names in all caps - it just looks like you&#039;re yelling). Yeah, I know it&#039;s a hard habit to break; writing &lt;strong&gt;&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;&lt;/strong&gt; vs. MAC. I mean, you&#039;re gonna have to hold down the shift key a little less, and that&#039;s tough, but you should be getting used to doing things with less effort now that you have a Mac, right? Besides, you don&#039;t need to yell about your &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;. We all know how much better they are (we&#039;ve been using them for years) and &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; users generally appreciate a little more subtly (you&#039;ll understand that as you get used to using your new &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;).&lt;br /&gt;
&lt;br /&gt;
Anyway, &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; is the first three letters in the word &lt;strong&gt;&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;&lt;/strong&gt;intosh, which is a kind of an apple. &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=659&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple&quot;&gt;Apple&lt;/a&gt; makes computers (and other hardware) and a &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; is a kind of &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=659&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple&quot;&gt;Apple&lt;/a&gt; computer. See the correlation here, kind of witty huh? Anyway, you never see the word Macintosh with all caps for the first three letters: MACintosh. That just looks weird right? Well, using MAC to talk about &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt; computers looks weird too. So, if you could just please &lt;em&gt;not&lt;/em&gt; do that, it would be great.&lt;br /&gt;
&lt;br /&gt;
Oh, before you go there &lt;em&gt;is&lt;/em&gt; one instance where you&#039;ll want to use the all capitals version of the word MAC. That&#039;s when you need to talk about the &quot;quasi-unique&quot; identifier that&#039;s assigned to your network adapter. It&#039;s known as a &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=662&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/MAC_address&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;MAC address&quot;&gt;Media Access Control&lt;/a&gt; address. All computers that can connect to a network have these and they&#039;re certainly not limited to &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;. Hey, I guess you also might want to use the all capitals version MAC when you&#039;re talking about &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=661&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.maccosmetics.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;MAC Cosmetics&quot;&gt;MAC cosmetics&lt;/a&gt; as well, but that has nothing to do with computers.&lt;br /&gt;
&lt;br /&gt;
Ok, so just to make sure we&#039;re on the same page... Use &lt;strong&gt;&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=658&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://www.apple.com/mac/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Apple Mac&quot;&gt;Mac&lt;/a&gt;&lt;/strong&gt; and &lt;em&gt;not&lt;/em&gt; &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=662&amp;amp;entry_id=147&quot;  onmouseover=&quot;window.status=&#039;http://en.wikipedia.org/wiki/MAC_address&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;MAC address&quot;&gt;MAC&lt;/a&gt; and we&#039;ll all get along great. Thanks!&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sun, 15 Mar 2009 22:43:51 -0700</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/147-guid.html</guid>
    
</item>
<item>
    <title>The Cost of Idiocy</title>
    <link>http://blog.latcarf.com/archives/146-The-Cost-of-Idiocy.html</link>
            <category>Money</category>
    
    <comments>http://blog.latcarf.com/archives/146-The-Cost-of-Idiocy.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=146</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.latcarf.com/rss.php?version=2.0&amp;type=comments&amp;cid=146</wfw:commentRss>
    

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    So yeah, it&#039;s been a loooong time since I posted in this blog but I found something that gets my goat enough to write about it... It&#039;s this damned bailout business. I&#039;ll post more on my feelings about this when it&#039;s not so close to my bedtime but for now, I&#039;ll just leave with a link to a &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=656&amp;amp;entry_id=146&quot;  onmouseover=&quot;window.status=&#039;http://www.cnbc.com/id/27719011&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Financial Crisis Tab&quot;&gt;high-level analysis of the cost&lt;/a&gt; thanks to &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=657&amp;amp;entry_id=146&quot;  onmouseover=&quot;window.status=&#039;http://www.cnbc.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;CNBC.com&quot;&gt;CNBC&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Yes, you as a tax payer are indentured to your share of this. Yes, you are now solidly a slave of the state. Yes, your unborn children already owe. Get working friends, it&#039;s gonna take alot of your sweat to pay this off. If you consider there&#039;s 300 million people in the US (from age 1 day to very old) and the cost of the bailout is roughly $4.3 trillion (that will go up), then you owe (right this minute - not counting inflation) just over $14,000! Remember, this amount is on top of your share of the national debt (and I won&#039;t even get into that).&lt;br /&gt;
&lt;br /&gt;
Get cracking people, freedom is not free!&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 18 Nov 2008 22:21:11 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/146-guid.html</guid>
    
</item>

</channel>
</rss>
