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

<channel>
	<title>Robert Small, The blog thereof. &#187; Software</title>
	<atom:link href="http://www.robertsmall.org/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertsmall.org</link>
	<description>The inane ramblings of a young man.</description>
	<lastBuildDate>Mon, 15 Mar 2010 06:45:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Of spy&#8217;s and hidden cameras!</title>
		<link>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/</link>
		<comments>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:03:33 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Crime]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[Login photo]]></category>
		<category><![CDATA[MMS]]></category>
		<category><![CDATA[Mobile technology]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Theft prevention]]></category>
		<category><![CDATA[Webcam capture]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=144</guid>
		<description><![CDATA[Let us imagine a completely hypothetical situation where a hypothetical someone might have left their web-cam equipped laptop on a hypothetical desk while going for a hypothetical night out. In this hypothetical situation another hypothetical person comes along and hypothetically tries to log in repeatedly and then shuts down the laptop. Let us imagine the hypothetical [...]]]></description>
			<content:encoded><![CDATA[<p>Let us imagine a completely hypothetical situation where a hypothetical someone might have left their web-cam equipped laptop on a hypothetical desk while going for a hypothetical night out. In this hypothetical situation another hypothetical person comes along and hypothetically tries to log in repeatedly and then shuts down the laptop. Let us imagine the hypothetical emotions of that hypothetical laptop owner. They&#8217;d be hypothetically furious. Especially if their rsync&#8217;s had stopped, their ssh sessions been terminated, their IDE sessions closed, their documents lost. Their hypothetical furry would know no bounds. Further frustrating to their hypothetical furry would be the time taken to repair hypothetical file-systems and rescue anything that had been hypothetically broken by this sudden termination.</p>
<p>Imagine then our hypothetical friend&#8217;s hypothetical furry if they were slighted not once but twice.</p>
<p>Of course our hypothetical friend would vent their furry into coding, and as we know Python is the balm of the soul. Let us view some of this hypothetical Python.</p>
<pre class="brush:python">from send_mail import send_mail
import commands
import pyinotify
import re
import time
import Skype4Py
from time import gmtime, strftime

CallStatus = 0
CallIsFinished = set ([Skype4Py.clsFailed, Skype4Py.clsFinished, Skype4Py.clsMissed,Skype4Py.clsRefused, Skype4Py.clsBusy, Skype4Py.clsCancelled])

def CallStatusText(status):
    return skype.Convert.CallStatusToText(status)

def OnCall(call, status):
    global CallStatus
    CallStatus = status
    print 'Call status: ' + CallStatusText(status)
    print call.PstnNumber
    try:
        if (CallStatusText(status) == "Calling" and call.PstnNumber == "+&lt;your phone number&gt;"):
            call.Answer()
            print "Call accepted."
    except:
        print "Failed to accept."

skype = Skype4Py.Skype()
try:
    skype.Attach()
    skype.OnCallStatus = OnCall
except:
    print "Skype attach failed, skype calling will not be possible."

class TrackModifications(pyinotify.ProcessEvent):
    def process_IN_MODIFY(self, event):
        f = open("/var/log/auth.log")
        l = f.readlines()
        f.close()
        if (re.search("gnome-screensaver-dialog\: pam_unix\(gnome-screensaver\:auth\)\: authentication failure\;", l[-1]) &lt;&gt; None):
            print "Access!"
            fn = '/home/user/tmp/snap-fail-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
            commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Failed access at `" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "` you will receive a picture soon.", None)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "Login Failed", "Failed log-in to 'The Pandora'.\n" + l[-1], fn)

        if (re.search("The-Pandora gnome-screensaver-dialog\: gkr-pam\: unlocked \'login\' keyring", l[-1]) &lt;&gt; None):
            print "Access!"
            fn = '/home/user/tmp/snap-accept-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
            commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Login accepted at `" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "` you will receive a picture soon.", None)
            send_mail("&lt;email&gt;", "&lt;sms email&gt;", "Login Accepted", "Accepted log-in to 'The Pandora'.\n" + l[-1], fn)
            pass

wm = pyinotify.WatchManager()
handler = TrackModifications()
notifier = pyinotify.Notifier(wm, default_proc_fun=handler)
wm.add_watch('/var/log/auth.log', pyinotify.IN_MODIFY)
notifier.loop()

fn = '/home/user/tmp/snap-end-' + strftime("%d-%b-%Y_%H:%M:%S", gmtime()) + '.jpg'
send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Process ending on 'The Pandora' at`" + strftime("%a, %d %b %Y %H:%M:%S", gmtime()) + "`", None)
commands.getoutput('uvccapture -m -x640 -y480 -o' + fn)
send_mail("&lt;email&gt;", "&lt;sms email&gt;", "", "Process ending on 'The Pandora'.", fn)</pre>
<p>The email function used for this code is very messy and actually has some pass-phrases I&#8217;d rather not show you, I suggest looking at <a href="http://www.google.com/search?hl=en&amp;q=email+python+with+attachments">google</a> and various <a href="http://snippets.dzone.com/posts/show/2038">links</a> it offers</p>
<pre class="brush:python">def send_mail(send_from, send_to, subject, text, f, server="smtp.gmail.com:587"):</pre>
<p>Where text is the message, f is the file and server is the server, I advise using Gmail as it has a Email t0 SMS gateway. The way I used it I simply had to put my phone number before `@tmomail.net` (something like 15552223344@tmomail.net). With a little googling you&#8217;ll find the appropriate suffixes for most carriers.</p>
<p>So, what is this? Well, basically it&#8217;s a library to allow a series of things.</p>
<ul>
<li>Photographic evidence of all log-ins.</li>
<li>SMS and MMS (with photo) alerts when your computer is logged into or someone attempts.</li>
<li>Accept calls so you can monitor audio from your computer.</li>
<li>I also modified it to call out to me when there&#8217;s a log in, oh for video calling&#8230;</li>
<li>It records the script being terminated.</li>
</ul>
<p>You may have to adjust  the command for &#8216;uvccapture&#8217;, you will want to adjust the host name (The Pandora) to yours. Remember to add your SMS Email and Email.</p>
<p>This script will be built off of to create something a lot more advanced and a lot better and more useful. It would be possible to rewrite this for Windows or Mac, I guess that cutting out the Skype and replacing the UVC code would be all that&#8217;d be needed.</p>
<p>I hope this was of use to someone. Please post comments if you find a use and/or have some success with it, I&#8217;d love to hear stories of how you caught hypothetical siblings with it.</p>
<p>Kind regards, Robert.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2010%2F03%2F02%2Fof-spys-and-hidden-cameras%2F&amp;linkname=Of%20spy%26%238217%3Bs%20and%20hidden%20cameras%21"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2010/03/02/of-spys-and-hidden-cameras/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top ten Android Apps I miss from my T-Mobile G1 (HTC Dream)</title>
		<link>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/</link>
		<comments>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:14:31 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AndNav]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Android Applications]]></category>
		<category><![CDATA[Android IRC]]></category>
		<category><![CDATA[Android Marketplace]]></category>
		<category><![CDATA[Barcode Scanner]]></category>
		<category><![CDATA[Beeb Player]]></category>
		<category><![CDATA[Better Keyboard]]></category>
		<category><![CDATA[ConnectBot]]></category>
		<category><![CDATA[Dizzler]]></category>
		<category><![CDATA[FML]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[HTC Dream]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[IRC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Listen]]></category>
		<category><![CDATA[Locale]]></category>
		<category><![CDATA[Lolcats]]></category>
		<category><![CDATA[Meridian Evolve]]></category>
		<category><![CDATA[Meridian Player]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[Mobile technology]]></category>
		<category><![CDATA[Movie Finder]]></category>
		<category><![CDATA[My Tracks]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Quickipedia]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Roundup]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[T-Mobile]]></category>
		<category><![CDATA[T-Mobile G1]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telegraph.co.uk]]></category>
		<category><![CDATA[Top Ten]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[WiFi]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/?p=114</guid>
		<description><![CDATA[So here&#8217;s the story. My G1 has stopped working and being in the USA at the moment I have to return it to the UK to be replaced, in the mean time I&#8217;ve found myself missing both it and the applications on it. I&#8217;ve really grown to love Android and the apps on it. In [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the story. My G1 has stopped working and being in the USA at the moment I have to return it to the UK to be replaced, in the mean time I&#8217;ve found myself missing both it and the applications on it. I&#8217;ve really grown to love Android and the apps on it. In fact it has become something of a mobile computer to me. With the easy WiFi connectivity and built in GPS (and the help of Locale) I&#8217;ve found using WiFi hotspots almost as easy as having a (cheap) 3G connection. Of course being on a UK contract I&#8217;d rather not incur the massive roaming charges for data in the USA.</p>
<p>In the last few days as I&#8217;ve started to miss it I decided to write a &#8216;Top Ten Roundup&#8217; with a difference, the top ten that I miss. I&#8217;ve reverted to my Windows Mobile smart-phone so I still have a few luxuries. I expect that I&#8217;ll mention several things which made me prefer my G1 to the HTC Hermes I was on. Firstly though I&#8217;ll compare a few core components that I miss.</p>
<ul>
<li>The email program. When I first used Android I wasn&#8217;t that excited about the email app; sure, it had starring which Windows Mobile didn&#8217;t, but that was about it for me. However I&#8217;ve come to really appreciate the way it synchronises and the way that I can apply labels and generally use it as I do the computer front end. Windows Mobile makes me synchronise manually or set a time, this is nice and I used to find it very useful but I really appreciate being able to use Locale with the Gmail application to trigger synchronising only in a WiFi hotspot.</li>
<li>The contacts application. There are some trade-offs here. Windows Mobile supports a birthday for a contact, unless I&#8217;m severely blind my G1 does not. Windows mobile however attacks my contacts list on Gmail adding Mr&#8217;s and Mrs&#8217;s which in turn adds extra contacts. This is fixable, the G1 lack of birthdays will surely be fixed in a future release. <em>Incidentally the birthdays can be shown on the calendar with a small work around. Simply go to the calendars listing under settings, click browse interesting calenders and find your birthdays under &#8216;More&#8217;.</em></li>
<li>The browser. I really miss the Android browser and its speed and zoom features.</li>
<li>Marketplace. Do I even need to say anything here? The ease and simplicity is so nice.</li>
</ul>
<p>Now for my top ten list of Android applications that I miss.</p>
<ol>
<li><strong>Locale.</strong> I had rules set up to do everything I needed all based on where I was. It came into extra brilliance while abroad where I couldn&#8217;t use my normal data connection.</li>
<li><strong>ConnectBot.</strong> Having a well rounded SSH application is essential.</li>
<li><strong>Android IRC.</strong> Who can exist without IRC? I mean, what true techie can exist without IRC? Android IRC supports SSL, multiple servers and message notification, what&#8217;s more it doesn&#8217;t die if you leave it and open other applications.</li>
<li><strong>AndNav.</strong> This is my most memory heavy application, it uses tiles instead of vectors so pre-download is essential for any sensible routing. Also routes are calculated away from the client which causes network use. However, all this is well known to the developers and is being worked on. I would personally love to see (for example) POI search for off-line (maybe import gpx POI&#8217;s). I would be even more excited to see off-line routing, maybe data sets could be split further just to contain roads with no additional data? However all the Windows Mobile alternatives that I&#8217;ve found have not done what I needed or had some major problems.</li>
<li><strong>Quickipedia.</strong> Wikipedia has become the defatico source of information these days. Want cable layouts? Check Wikipedia. Want information about a penguin that flies? Check Wikipeida. Having a mobile client is like carrying it around as a book&#8230; just without ink or weight or that book smell or worrying about pages falling out.</li>
<li><strong>Movie Finder.</strong> It&#8217;s great to be able to quickly find out the times of a movie or check which ones are on locally. This isn&#8217;t a new concept I know but I found this the easiest to use, far easier than my previous experiences on Windows Mobile.</li>
<li><strong>Telegraph.co.uk news.</strong> Although this requires a connection and can&#8217;t horde its data off-line it&#8217;s still a great application. I&#8217;ve used other news applications and I&#8217;m open to suggestions but I found this to be the best. I do miss Viigo.</li>
<li><strong>Listen.</strong> I&#8217;d only just started using this but I&#8217;d become adicted pretty quickly. It&#8217;s a nice product from google themselves and it provides me with a stream of podcasts straight to my device. What&#8217;s more it can be run offline.</li>
<li><strong>FML.</strong> This would be one of two things that I use to entertain myself.</li>
<li><strong>Lolcats.</strong> This would be the other.</li>
</ol>
<p>There are more I miss, there are more I used regularly and there are more I&#8217;d probably like to put on this list in the future. A couple in the running were:</p>
<ul>
<li><strong>My Tracks.</strong> A GPS tracking application that I&#8217;ve found to be absolutely excellent.</li>
<li><strong>Beeb Player.</strong> BBC iPlayer application, not much use here as I have a US IP but it was great when I was in the UK.</li>
<li><strong>Meridian Player (and now Meridian Evolve)</strong>. A great player. Unfortunately I don&#8217;t watch much on my phone as my laptop has a better resolution for that.</li>
<li><strong>Dizzler.</strong> A music on demand player, very useful for those moments where someone doesn&#8217;t know a song and you want to *show* them.</li>
<li><strong>Barcode Scanner.</strong> Most sites about Android offer 2d encoded barcodes for content, I think this is a great way to move stuff from one device to another.</li>
<li><strong>Better Keyboard.</strong> A great on screen keyboard. I certainly miss it.</li>
</ul>
<p>That just about makes up my little Android tear story. Hopefully I should see a new G1 working perfectly within the next few weeks and I&#8217;ll be able to tell you which applications I&#8217;m adicted to right from the word go.</p>
<p>Kind regards, Robert.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2009%2F09%2F11%2Ftop-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream%2F&amp;linkname=Top%20ten%20Android%20Apps%20I%20miss%20from%20my%20T-Mobile%20G1%20%28HTC%20Dream%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2009/09/11/top-ten-android-apps-i-miss-from-my-t-mobile-g1-htc-dream/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adding Skype, 7zip and CamStudio to Chute Stick (USB Rescue Stick)</title>
		<link>http://www.robertsmall.org/2008/03/22/adding-skype-7zip-and-camstudio-to-chute-stick-usb-rescue-stick/</link>
		<comments>http://www.robertsmall.org/2008/03/22/adding-skype-7zip-and-camstudio-to-chute-stick-usb-rescue-stick/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 23:39:56 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[7zip]]></category>
		<category><![CDATA[CamStudio]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Chute Stick]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[desktop recording]]></category>
		<category><![CDATA[Emergency]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[Fedora Core]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Madrivia]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[p7zip]]></category>
		<category><![CDATA[Pen Drive]]></category>
		<category><![CDATA[Rescue Disk]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thumb Drive]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[USB Memory Stick]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xandros]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/2008/03/22/adding-skype-7zip-and-camstudio-to-chute-stick-usb-rescue-stick/</guid>
		<description><![CDATA[http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software Just a quick blog to say that I&#8217;ve added a few things to Chute Stick. I&#8217;ll thin down the number of packages as soon as possible, but we&#8217;re still well within the 1GB memory stick so I can spend time doing that later. I&#8217;ve added all versions of Skype. Skype provides a reasonably secure [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software" target="_blank">http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software</a></p>
<p>Just a quick blog to say that I&#8217;ve added a few things to Chute Stick. I&#8217;ll thin down the number of packages as soon as possible, but we&#8217;re still well within the 1GB memory stick so I can spend time doing that later.</p>
<p>I&#8217;ve added all versions of Skype. Skype provides a reasonably secure method of getting a message to someone; it also permeates firewalls better than most viruses. I added 7zip as it seems to be a good free alternative to WinZip, the 7zip compression itself is remarkable. In some of my experiments with it I&#8217;ve experienced almost 50% smaller files than standard zip (using `zip -9`). Because of this excellent compression I&#8217;ve included a copy of p7zip (the *nix port).  CamStudio may seem like a strange choice, but it does offer a way for you to quickly record a video of how to do something, this could be essential if you&#8217;re unable to tutor someone face to face but need them to (for example) administer a box for you. I&#8217;ve debated if a Linux desktop recorder is needed, but if you have ssh you can probably do most administration through that.</p>
<p>Well, that&#8217;s all so far, I&#8217;m snowed under with work at the moment so I was just popping this through. Most of the additions have been related to things I&#8217;ve needed for work over the last few days. I will be blogging about some other things (mostly work related) soon, when I escape anyway!</p>
<p>Kind regards, Robert.</p>
<p><a href="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software" target="_blank">http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F03%2F22%2Fadding-skype-7zip-and-camstudio-to-chute-stick-usb-rescue-stick%2F&amp;linkname=Adding%20Skype%2C%207zip%20and%20CamStudio%20to%20Chute%20Stick%20%28USB%20Rescue%20Stick%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/03/22/adding-skype-7zip-and-camstudio-to-chute-stick-usb-rescue-stick/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A quick update on Chute Stick (USB Emergency Disk).</title>
		<link>http://www.robertsmall.org/2008/02/27/a-quick-update-on-chute-stick-usb-emergency-disk/</link>
		<comments>http://www.robertsmall.org/2008/02/27/a-quick-update-on-chute-stick-usb-emergency-disk/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 17:09:27 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Chute Stick]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Emergency]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[Pen Drive]]></category>
		<category><![CDATA[Rescue Disk]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thumb Drive]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[USB Memory Stick]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/2008/02/27/a-quick-update-on-chute-stick-usb-emergency-disk/</guid>
		<description><![CDATA[Just to mention that I&#8217;ve now released a list of the software I currently have on my pen drive.  http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software I will provide more information on each item in the near future including versions and links. I expect a few of you are thinking of cloning my setup until I release a script. Kind regards, [...]]]></description>
			<content:encoded><![CDATA[<p>Just to mention that I&#8217;ve now released a list of the software I currently have on my pen drive.</p>
<p><a href="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software" title="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software" target="_blank"> http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick#The_Software</a></p>
<p>I will provide more information on each item in the near future including versions and links. I expect a few of you are thinking of cloning my setup until I release a script.</p>
<p>Kind regards, Robert</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F02%2F27%2Fa-quick-update-on-chute-stick-usb-emergency-disk%2F&amp;linkname=A%20quick%20update%20on%20Chute%20Stick%20%28USB%20Emergency%20Disk%29."><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/02/27/a-quick-update-on-chute-stick-usb-emergency-disk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB Rescue/Emergency Stick (Parachute on a stick)</title>
		<link>http://www.robertsmall.org/2008/02/27/usb-rescueemergency-stick-parachute-on-a-stick/</link>
		<comments>http://www.robertsmall.org/2008/02/27/usb-rescueemergency-stick-parachute-on-a-stick/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 16:29:30 +0000</pubDate>
		<dc:creator>SmallR2002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Chute Stick]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Emergency]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile computing]]></category>
		<category><![CDATA[New project]]></category>
		<category><![CDATA[Pen Drive]]></category>
		<category><![CDATA[Rescue Disk]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thumb Drive]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[USB Memory Stick]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.robertsmall.org/2008/02/27/usb-rescueemergency-stick-parachute-on-a-stick/</guid>
		<description><![CDATA[Some of you will already know about this little project that I&#8217;ve been working on. Basically I&#8217;m producing a USB memory stick with all the things which I think it needs. Quoting the wiki page: http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick If you&#8217;re in a situation where you only have one memory stick, what&#8217;d you want on it? If baggage [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you will already know about this little project that I&#8217;ve been working on. Basically I&#8217;m producing a USB memory stick with all the things which I think it needs. Quoting the wiki page:</p>
<blockquote><p><a href="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick" title="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick" target="_blank">http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick</a></p>
<p><em>If you&#8217;re in a situation where you only have one memory stick, what&#8217;d you want on it? If baggage handling lose all your bags and you just have the encrypted hard drive in your jacket pocket and the memory stick round your neck, what do you want on the stick? </em></p>
<p><em>You&#8217;re stranded on an island (or somewhere with a really poor internet connection) and you want to acquisition a computer for your own uses, what do you want on your stick? Someone else on the island wants you to fix their computer, what do you want on the stick? </em></p>
<p><em>In general, what do you want on a memory stick when you don&#8217;t trust or want to use your internet connection? This is what the Chute Stick project is meant to provide.</em></p></blockquote>
<p>Although there are many different situations where this may be of use and some of them wont require most of the software provided this is meant to be an &#8216;in any event evacuation plan&#8217;. I know a lot of you have already contacted me about this and so there probably wont be that many comment; however, there are several things which I&#8217;d love to be posted here:</p>
<ul>
<li>Situations where you might need a rescue stick.</li>
<li>Software suggestions/requests.</li>
<li>Things to stay away from.</li>
<li>Suggestions for replacement software, I know I may not have picked the right stuff all the time.</li>
<li>Suggestions about ways of packaging or unpacking software.</li>
<li>Ways to make things more accessible to more people.</li>
</ul>
<p>Of course you could just tell me I&#8217;m doing something useful!</p>
<p>Which brings me to another point, what am I doing? Well I don&#8217;t intend to distribute too much software, I&#8217;d prefer to write a script which downloads and updates software to a memory stick for you. Much of the software I&#8217;m looking at is either not free/libre and so I don&#8217;t expect to be able to do more than provide a script to get the end user to download and use the software correctly.  If anyone is familiar with the gentoo ebuild context they&#8217;ll understand more of what I mean, my script wouldn&#8217;t require pre-built packages but do it&#8217;s own work.</p>
<p>The wiki page is: <a href="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick" title="http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick" target="_blank">http://www.robertsmall.org/wiki/index.php5?title=Chute_Stick</a></p>
<p>Kind regards, Robert.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.robertsmall.org%2F2008%2F02%2F27%2Fusb-rescueemergency-stick-parachute-on-a-stick%2F&amp;linkname=USB%20Rescue%2FEmergency%20Stick%20%28Parachute%20on%20a%20stick%29"><img src="http://www.robertsmall.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.robertsmall.org/2008/02/27/usb-rescueemergency-stick-parachute-on-a-stick/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
