<?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 - Computing</title>
    <link>http://blog.latcarf.com/</link>
    <description>What exactly am I making now?</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 - Computing - What exactly am I making now?</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>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>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>Lexikon</title>
    <link>http://blog.latcarf.com/archives/16-Lexikon.html</link>
            <category>Mac OS X</category>
    
    <comments>http://blog.latcarf.com/archives/16-Lexikon.html#comments</comments>
    <wfw:comment>http://blog.latcarf.com/wfwcomment.php?cid=16</wfw:comment>

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

    <author>nospam@example.com (Latcarf)</author>
    <content:encoded>
    Just Released:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://blog.latcarf.com/uploads/nlt_software/Lexikon.dmg&quot; title=&quot;Lexikon.dmg&quot; target=&quot;_blank&quot;&gt;Lexikon&lt;/a&gt; - Konfabulator Widget for Macintosh! (version 1.0)&lt;br /&gt;
by Latcarf and NeurolithicTechnology();&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=48&amp;amp;entry_id=16&quot;  onmouseover=&quot;window.status=&#039;http://www.widgetgallery.com/view.php?widget=36358&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Lexikon.dmg&quot; target=&quot;_blank&quot;&gt;Lexikon&lt;/a&gt; offers a tiny interface to search for definitions and synonyms using public dictionary and thesaurus websites. Over 10 different websites are currently supported so you can choose your favorite one. &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=48&amp;amp;entry_id=16&quot;  onmouseover=&quot;window.status=&#039;http://www.widgetgallery.com/view.php?widget=36358&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Lexikon.dmg&quot; target=&quot;_blank&quot;&gt;Lexikon&lt;/a&gt; searches can be initiated by the keyboard or the mouse and the interface is unobtrusive so as not to interfere with your daily activities. As an added bonus, &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=48&amp;amp;entry_id=16&quot;  onmouseover=&quot;window.status=&#039;http://www.widgetgallery.com/view.php?widget=36358&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Lexikon.dmg&quot; target=&quot;_blank&quot;&gt;Lexikon&lt;/a&gt; offers special features to allow searching Google.com or the iTunes Music Store! Use Lexikon to define unknown words and add to your own mental lexicon.&lt;br /&gt;
&lt;br /&gt;
You must have &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=51&amp;amp;entry_id=16&quot;  onmouseover=&quot;window.status=&#039;http://www.konfabulator.com&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;Konfabulator - whatever you want it to be&quot; target=&quot;_blank&quot;&gt;Konfabulator&lt;/a&gt; installed to use this widget.&lt;br /&gt;
&lt;br /&gt;
Thanks alot to &lt;a href=&quot;http://blog.latcarf.com/exit.php?url_id=668&amp;amp;entry_id=16&quot;  onmouseover=&quot;window.status=&#039;http://neurolithictech.com/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;NeurolithicTechnology();&quot;&gt;NeurolithicTechnology();&lt;/a&gt; for handling packaging and release distribution for me!&lt;br /&gt;
&lt;br /&gt;
Download &lt;a href=&quot;http://blog.latcarf.com/uploads/nlt_software/Lexikon.dmg&quot; title=&quot;Lexikon.dmg&quot; target=&quot;_blank&quot;&gt;Lexikon&lt;/a&gt;.&lt;br /&gt;
UDIF-CRC32 Checksum: $FEA92523&lt;br /&gt;
&lt;br /&gt;
Enjoy! 
    </content:encoded>

    <pubDate>Sat, 18 Dec 2004 14:47:00 -0800</pubDate>
    <guid isPermaLink="false">http://blog.latcarf.com/archives/16-guid.html</guid>
    
</item>

</channel>
</rss>
