<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
   <title>numbersix</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/" />
   <link rel="self" type="application/atom+xml" href="http://www.numbersix.net/atom.xml" />
   <id>tag:www.numbersix.net,2012://1</id>
   <updated>2012-01-04T19:40:54Z</updated>
   
   <generator uri="http://www.sixapart.com/movabletype/">Movable Type 3.33</generator>

<entry>
   <title>Command line eject CD for the Mac</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001437.html" />
   <id>tag:www.numbersix.net,2012://1.1437</id>
   
   <published>2012-01-04T19:40:20Z</published>
   <updated>2012-01-04T19:40:54Z</updated>
   
   <summary>drutil eject...</summary>
   <author>
      <name>orlando</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![CDATA[<blockquote>drutil eject</blockquote>]]>
      
   </content>
</entry>
<entry>
   <title>Turn Synaptics Touchpad off in Linux</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001436.html" />
   <id>tag:www.numbersix.net,2011://1.1436</id>
   
   <published>2011-09-22T07:57:09Z</published>
   <updated>2011-09-22T08:00:40Z</updated>
   
   <summary>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...</summary>
   <author>
      <name>orlando</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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>]]>
      
   </content>
</entry>
<entry>
   <title>terminator</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001435.html" />
   <id>tag:www.numbersix.net,2011://1.1435</id>
   
   <published>2011-09-15T13:03:11Z</published>
   <updated>2011-09-15T13:08:04Z</updated>
   
   <summary>Recently discovered a new terminal emulator for Linux - terminator. After a bit of config: [global_config] focus = sloppy title_transmit_fg_color = &quot;#FFFF00&quot; title_transmit_bg_color = &quot;#000000&quot; title_inactive_fg_color = &quot;#A8A3A3&quot; title_inactive_bg_color = &quot;#000000&quot; and some getting used to the keyboard commands, I&apos;m...</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="unix" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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.]]>
      
   </content>
</entry>
<entry>
   <title>Copy photos from iPhone to Mac</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001434.html" />
   <id>tag:www.numbersix.net,2011://1.1434</id>
   
   <published>2011-07-23T12:05:18Z</published>
   <updated>2011-07-23T12:06:41Z</updated>
   
   <summary>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...</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="mac" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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>]]>
      
   </content>
</entry>
<entry>
   <title>apt-get remove man page</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001433.html" />
   <id>tag:www.numbersix.net,2011://1.1433</id>
   
   <published>2011-07-22T15:59:29Z</published>
   <updated>2011-07-22T16:00:48Z</updated>
   
   <summary>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....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="unix" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      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.
      
   </content>
</entry>
<entry>
   <title>disable ksurl</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001432.html" />
   <id>tag:www.numbersix.net,2011://1.1432</id>
   
   <published>2011-07-17T09:41:15Z</published>
   <updated>2011-07-17T09:43:18Z</updated>
   
   <summary>Disable Google&apos;s ksurl from phoning home: Edit ~/Library/Preferences/com.google.Keystone.Agent.plist with the Property List Editor and change checkInterval to 0. From here....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="rant" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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>.]]>
      
   </content>
</entry>
<entry>
   <title>Google</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001431.html" />
   <id>tag:www.numbersix.net,2011://1.1431</id>
   
   <published>2011-06-28T15:58:41Z</published>
   <updated>2011-06-28T15:59:22Z</updated>
   
   <summary>Google is an advertising company, first and foremost. Never forget that....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="rant" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      Google is an advertising company, first and foremost.  Never forget that.
      
   </content>
</entry>
<entry>
   <title>Programming fonts</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001430.html" />
   <id>tag:www.numbersix.net,2011://1.1430</id>
   
   <published>2011-06-06T08:55:11Z</published>
   <updated>2011-06-06T08:59:22Z</updated>
   
   <summary>Bookmarking this article by Dan Benjamin on the top 10 fonts for programming. As discussed in their recent Talk Shop Podcast it may not be completely up to date, but it&apos;s a nice place to start....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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.]]>
      
   </content>
</entry>
<entry>
   <title>Real Mordillo</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001429.html" />
   <id>tag:www.numbersix.net,2011://1.1429</id>
   
   <published>2011-05-23T07:56:14Z</published>
   <updated>2011-05-23T07:57:23Z</updated>
   
   <summary>This is like a real word version of this....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="art" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![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>.]]>
      
   </content>
</entry>
<entry>
   <title>ISP provided email</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001428.html" />
   <id>tag:www.numbersix.net,2011://1.1428</id>
   
   <published>2011-05-18T09:49:47Z</published>
   <updated>2011-05-18T09:53:37Z</updated>
   
   <summary>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...</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="rant" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      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.
      
   </content>
</entry>
<entry>
   <title>Nice quote</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001427.html" />
   <id>tag:www.numbersix.net,2011://1.1427</id>
   
   <published>2011-04-21T20:17:40Z</published>
   <updated>2011-04-21T20:19:37Z</updated>
   
   <summary>Fallor ergo sum (I err, therefore I am) - St Augustine....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="quote" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      Fallor ergo sum (I err, therefore I am) - St Augustine.
      
   </content>
</entry>
<entry>
   <title>Unsubscribe</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001426.html" />
   <id>tag:www.numbersix.net,2011://1.1426</id>
   
   <published>2011-04-19T08:25:33Z</published>
   <updated>2011-04-19T09:19:52Z</updated>
   
   <summary>&quot;Thank you. Your request has been received. Please note that it may take up to 10 business days to honor your unsubscribe request.&quot; How, in this day and age, can it possibly take more than 5 seconds to complete the...</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="rant" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![CDATA["<strong>Thank you. Your request has been received. Please note that it may take up to 10 business days to honor your unsubscribe request.</strong>"

How, in this day and age, can it possibly take more than 5 seconds to complete the process of removing oneself from an automated email news letter?  10 days??  What on earth is happening in those 10 days?  Someone is physically walking to another city with a scrap of paper in their grubby hands containing the unsubscribe instructions?]]>
      
   </content>
</entry>
<entry>
   <title>IBM</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001425.html" />
   <id>tag:www.numbersix.net,2011://1.1425</id>
   
   <published>2011-02-21T19:45:23Z</published>
   <updated>2011-02-21T19:49:44Z</updated>
   
   <summary>Superb short documentary on IBM by Errol Morris : http://www.youtube.com/watch?v=XrhDaAmn5Uw&amp;feature=youtube_gdata_player. Very inspirational. Also, if you like that, you must check out his film on Robert McNamara - The Fog of War....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![CDATA[Superb short documentary on IBM by Errol Morris : <a href="http://www.youtube.com/watch?v=XrhDaAmn5Uw&feature=youtube_gdata_player">http://www.youtube.com/watch?v=XrhDaAmn5Uw&feature=youtube_gdata_player</a>.  Very inspirational.  Also, if you like that, you must check out his film on Robert McNamara - <a href="http://www.imdb.com/title/tt0317910/">The Fog of War</a>.]]>
      
   </content>
</entry>
<entry>
   <title>iPad - Enabling Multiple Google Calendars</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001423.html" />
   <id>tag:www.numbersix.net,2011://1.1423</id>
   
   <published>2011-02-16T10:35:05Z</published>
   <updated>2011-02-16T10:38:29Z</updated>
   
   <summary>Finally fixed this annoying problem. Thanks to this tip I now see all the calendars within the Google calendar I subscribe to. The trick is this apparently hidden URL: http://www.google.com/calendar/iphoneselect. Thanks http://gigaom.com/....</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="mac" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      <![CDATA[Finally fixed this annoying problem.  Thanks to <a href="http://gigaom.com/apple/ipad-quick-tip-enabling-multiple-google-calendars/">this tip</a> I now see all the calendars within the Google calendar I subscribe to.  The trick is this apparently hidden URL: <a href="http://www.google.com/calendar/iphoneselect">http://www.google.com/calendar/iphoneselect</a>.  Thanks <a href="http://gigaom.com/">http://gigaom.com/</a>.]]>
      
   </content>
</entry>
<entry>
   <title>Tim Smit quote</title>
   <link rel="alternate" type="text/html" href="http://www.numbersix.net/mt-archives/001422.html" />
   <id>tag:www.numbersix.net,2011://1.1422</id>
   
   <published>2011-02-15T09:19:17Z</published>
   <updated>2011-02-15T09:20:03Z</updated>
   
   <summary>Britain is crap at being entrepreneurial because (a) it&apos;s a risk averse country, and (b) the stigma of failure is so high that if you fail you&apos;re considered to be a loser. Entrepreneurism is a word that has been stolen...</summary>
   <author>
      <name>orlando</name>
      
   </author>
         <category term="quote" scheme="http://www.sixapart.com/ns/types#category" />
   
   
   <content type="html" xml:lang="en" xml:base="http://www.numbersix.net/">
      Britain is crap at being entrepreneurial because (a) it&apos;s a risk averse country, and (b) the stigma of failure is so high that if you fail you&apos;re considered to be a loser. Entrepreneurism is a word that has been stolen by people who don&apos;t understand it. The truth is that people who are entrepreneurial take risks, and risk is something that is un-British, and if you&apos;re successful with it they&apos;ll hate you for it.

      
   </content>
</entry>

</feed>

