<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>numbersix</title>
      <link>http://www.numbersix.net/</link>
      <description></description>
      <language>en</language>
      <copyright>Copyright 2012</copyright>
      <lastBuildDate>Thu, 10 May 2012 15:18:56 +0100</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

            <item>
         <title>zsh - get rid of rm confirmation</title>
         <description>Lovely though zsh is, the confirmation after typing &quot;rm *&quot; is just wrong.  It&apos;s not UNIX. This will get rid of the confirmation:

setopt rmstarsilent

Put it in your .zshrc today.</description>
         <link>http://www.numbersix.net/mt-archives/001441.html</link>
         <guid>http://www.numbersix.net/mt-archives/001441.html</guid>
        
        
         <pubDate>Thu, 10 May 2012 15:18:56 +0100</pubDate>
      </item>
            <item>
         <title>vesamenu.c32: Not a COM32R image</title>
         <description><![CDATA[When booting from USB this error came up.  Found a simple (though maybe not ideal) solution here:

<a href="http://www.linuxquestions.org/questions/linux-mint-84/trying-to-boot-linux-mint-9-from-usb-flash-drive-vesamenu-c32-not-a-com32r-image-829397/">http://www.linuxquestions.org/questions/linux-mint-84/trying-to-boot-linux-mint-9-from-usb-flash-drive-vesamenu-c32-not-a-com32r-image-829397/</a>

<em>Just type "help" on the BOOT prompt, and when you get the help menu, just hit enter. The system will now boot!</em>]]></description>
         <link>http://www.numbersix.net/mt-archives/001440.html</link>
         <guid>http://www.numbersix.net/mt-archives/001440.html</guid>
        
        
         <pubDate>Thu, 05 Apr 2012 12:40:25 +0100</pubDate>
      </item>
            <item>
         <title>Mobile me email to iCloud on older OSX</title>
         <description><![CDATA[Old mobile me email accounts can easily be migrated to iCloud following Apple's instructions.  However, on OSX this depends on having Lion installed to go smoothly.  If you have an older version of OSX without iCloud you may get problems connecting to the Mobile Me / iCloud IMAP server.  Here is a fix:

<a href="http://www.macstories.net/news/configure-an-icloud-email-account-on-snow-leopard/">http://www.macstories.net/news/configure-an-icloud-email-account-on-snow-leopard/</a>]]></description>
         <link>http://www.numbersix.net/mt-archives/001439.html</link>
         <guid>http://www.numbersix.net/mt-archives/001439.html</guid>
        
        
         <pubDate>Tue, 03 Apr 2012 09:59:54 +0100</pubDate>
      </item>
            <item>
         <title>Gorgeous wallpapers</title>
         <description><![CDATA[<a href="http://mantia.me/wallpaper/">http://mantia.me/wallpaper/</a>]]></description>
         <link>http://www.numbersix.net/mt-archives/001438.html</link>
         <guid>http://www.numbersix.net/mt-archives/001438.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">art</category>
        
        
         <pubDate>Tue, 20 Mar 2012 20:30:23 +0100</pubDate>
      </item>
            <item>
         <title>Command line eject CD for the Mac</title>
         <description><![CDATA[<blockquote>drutil eject</blockquote>]]></description>
         <link>http://www.numbersix.net/mt-archives/001437.html</link>
         <guid>http://www.numbersix.net/mt-archives/001437.html</guid>
        
        
         <pubDate>Wed, 04 Jan 2012 20:40:20 +0100</pubDate>
      </item>
            <item>
         <title>Turn Synaptics Touchpad off in Linux</title>
         <description><![CDATA[Battling with a terribly designed HP 4520s (oh for a Thinkpad), I had enough of hitting the stupid touchpad accidentally when typing.  The following will turn the touchpad on and off accordingly.  The script comes with no warranty, use at your own risk:

<code>
#!/bin/bash
#
# Turn that pesky touchpad on and off
#
# ----------------------------------------------------------------------------
id=`xinput list | grep TouchPad | awk '{print $6}' | sed 's/id=//'`
if [ $1 = 'on' ]; then
        xinput set-prop $id "Device Enabled" 1
else
        xinput set-prop $id "Device Enabled" 0
fi
</code>]]></description>
         <link>http://www.numbersix.net/mt-archives/001436.html</link>
         <guid>http://www.numbersix.net/mt-archives/001436.html</guid>
        
        
         <pubDate>Thu, 22 Sep 2011 08:57:09 +0100</pubDate>
      </item>
            <item>
         <title>terminator</title>
         <description><![CDATA[Recently discovered a new terminal emulator for Linux - <a href="http://www.tenshu.net/p/terminator.html">terminator</a>.  After a bit of config:

[global_config]
	focus = sloppy
	title_transmit_fg_color = "#FFFF00"
	title_transmit_bg_color = "#000000"
	title_inactive_fg_color = "#A8A3A3"
	title_inactive_bg_color = "#000000"

and some getting used to the keyboard commands, I'm really beginning to like it.  I've tried window managers based on a similar tiling idea, but didn't like them.  But this looks like it could become one of my main work tools.]]></description>
         <link>http://www.numbersix.net/mt-archives/001435.html</link>
         <guid>http://www.numbersix.net/mt-archives/001435.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">unix</category>
        
        
         <pubDate>Thu, 15 Sep 2011 14:03:11 +0100</pubDate>
      </item>
            <item>
         <title>Copy photos from iPhone to Mac</title>
         <description><![CDATA[Simple when you know how:

- Plug your iPhone into your Mac
- Launch Preview
- From the File menu navigate down and select “Import from iPhone…”
- Select “Import All” to get all the pictures, otherwise individually select pictures and click ‘Import’

From <a href="http://osxdaily.com/2010/07/10/transfer-photos-from-iphone-to-computer/">osx daily</a>]]></description>
         <link>http://www.numbersix.net/mt-archives/001434.html</link>
         <guid>http://www.numbersix.net/mt-archives/001434.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">mac</category>
        
        
         <pubDate>Sat, 23 Jul 2011 13:05:18 +0100</pubDate>
      </item>
            <item>
         <title>apt-get remove man page</title>
         <description>This is great, from the apt-get man page:

remove - remove is identical to install except that packages are removed instead of installed.

Erm, so it&apos;s not identical then.  In fact, it&apos;s completely the opposite.</description>
         <link>http://www.numbersix.net/mt-archives/001433.html</link>
         <guid>http://www.numbersix.net/mt-archives/001433.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">unix</category>
        
        
         <pubDate>Fri, 22 Jul 2011 16:59:29 +0100</pubDate>
      </item>
            <item>
         <title>disable ksurl</title>
         <description><![CDATA[Disable Google's ksurl from phoning home:

Edit ~/Library/Preferences/com.google.Keystone.Agent.plist with the Property List Editor and change checkInterval to 0.

From <a href="http://macbitz.wordpress.com/2010/05/23/ksurl-make-yourself-at-home-take-whatever-you-want/">here</a>.]]></description>
         <link>http://www.numbersix.net/mt-archives/001432.html</link>
         <guid>http://www.numbersix.net/mt-archives/001432.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">rant</category>
        
        
         <pubDate>Sun, 17 Jul 2011 10:41:15 +0100</pubDate>
      </item>
            <item>
         <title>Google</title>
         <description>Google is an advertising company, first and foremost.  Never forget that.</description>
         <link>http://www.numbersix.net/mt-archives/001431.html</link>
         <guid>http://www.numbersix.net/mt-archives/001431.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">rant</category>
        
        
         <pubDate>Tue, 28 Jun 2011 16:58:41 +0100</pubDate>
      </item>
            <item>
         <title>Programming fonts</title>
         <description><![CDATA[Bookmarking <a href="http://hivelogic.com/articles/top-10-programming-fonts/">this</a> article by Dan Benjamin on the top 10 fonts for programming.  As discussed in their recent <a href="http://5by5.tv/talkshow/44">Talk Shop Podcast</a> it may not be completely up to date, but it's a nice place to start.]]></description>
         <link>http://www.numbersix.net/mt-archives/001430.html</link>
         <guid>http://www.numbersix.net/mt-archives/001430.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">technology</category>
        
        
         <pubDate>Mon, 06 Jun 2011 09:55:11 +0100</pubDate>
      </item>
            <item>
         <title>Real Mordillo</title>
         <description><![CDATA[<a href="http://en.wikipedia.org/wiki/File:Tokyo_rooftop_football.jpg">This</a> is like a real word version of <a href="http://www.tvcream.co.uk/wp-content/uploads/mordillo.jpg">this</a>.]]></description>
         <link>http://www.numbersix.net/mt-archives/001429.html</link>
         <guid>http://www.numbersix.net/mt-archives/001429.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">art</category>
        
        
         <pubDate>Mon, 23 May 2011 08:56:14 +0100</pubDate>
      </item>
            <item>
         <title>ISP provided email</title>
         <description>PEOPLE!  Please, please stop falling for the waste of time email services provided by ISPs.  I guarentee that you will change ISP at some point in the next couple of years, do you really want the hassle of updating all your friends and family with a new email address?  Or loosing contact because you forgot to update someone?  Use Gmail/Hotmail/Yahoo mail/whatever else, PLEASE!

You may now go back to your business, thank you for your attention.</description>
         <link>http://www.numbersix.net/mt-archives/001428.html</link>
         <guid>http://www.numbersix.net/mt-archives/001428.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">rant</category>
        
        
         <pubDate>Wed, 18 May 2011 10:49:47 +0100</pubDate>
      </item>
            <item>
         <title>Nice quote</title>
         <description>Fallor ergo sum (I err, therefore I am) - St Augustine.</description>
         <link>http://www.numbersix.net/mt-archives/001427.html</link>
         <guid>http://www.numbersix.net/mt-archives/001427.html</guid>
                  <category domain="http://www.sixapart.com/ns/types#category">quote</category>
        
        
         <pubDate>Thu, 21 Apr 2011 21:17:40 +0100</pubDate>
      </item>
      
   </channel>
</rss>

