<?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"
	>

<channel>
	<title>craigk</title>
	<atom:link href="http://www.craigk.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.craigk.org/blog</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 12 Nov 2008 19:04:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Stop making my life hard!</title>
		<link>http://www.craigk.org/blog/2008/11/12/stop-making-my-life-hard/</link>
		<comments>http://www.craigk.org/blog/2008/11/12/stop-making-my-life-hard/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 19:02:40 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Musings]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/11/12/stop-making-my-life-hard/</guid>
		<description><![CDATA[I cannot think of a harsh enough punishment for the person at Adobe thought when I selected that I wanted 2 copies of pages 7-16 from a PDF I meant I wanted it printed like so:
page 7
page 7
page 8
page 8
page 9
page 9
&#8230; you get the idea&#8230;
What were they thinking!
]]></description>
			<content:encoded><![CDATA[<p>I cannot think of a harsh enough punishment for the person at Adobe thought when I selected that I wanted 2 copies of pages 7-16 from a PDF I meant I wanted it printed like so:</p>
<p>page 7</p>
<p>page 7</p>
<p>page 8</p>
<p>page 8</p>
<p>page 9</p>
<p>page 9</p>
<p>&#8230; you get the idea&#8230;</p>
<p>What were they thinking!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/11/12/stop-making-my-life-hard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spam attack solved</title>
		<link>http://www.craigk.org/blog/2008/11/10/spam-attack-solved/</link>
		<comments>http://www.craigk.org/blog/2008/11/10/spam-attack-solved/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 15:01:10 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/11/10/spam-attack-solved/</guid>
		<description><![CDATA[Spam comments can be a real problem for any website, not just the big guys, little guys such as myself get hit by them all the time.
Many websites choose to use something called CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) to deal with this problem. Normally the CAPTCHA implemented is [...]]]></description>
			<content:encoded><![CDATA[<p>Spam comments can be a real problem for any website, not just the big guys, little guys such as myself get hit by them all the time.</p>
<p>Many websites choose to use something called <a title="Wikipedia page on what CAPTCHA is" href="http://en.wikipedia.org/wiki/Captcha">CAPTCHA</a> (<b>C</b>ompletely <b>A</b>utomated <b>P</b>ublic <b>T</b>uring test to tell <b>C</b>omputers and <b>H</b>umans <b>A</b>part) to deal with this problem. Normally the CAPTCHA implemented is you having to read a word from a box (which is actually an image generated by the server) and write it down. Unfortunately these aren&#8217;t as good as they used to be now. You see, <a title="Wikipedia page on OCR" href="http://en.wikipedia.org/wiki/Optical_character_recognition">OCR</a> (<strong>O</strong>ptical <strong>C</strong>haracter <strong>R</strong>ecognition) has moved on a fair bit in recent years to the point where computers are very very good at reading what the word says (sometimes even better than the humans).</p>
<p>There are of course a few other variants of this system such as picking the shapes etc, although many of them can be solved by the computer through trial and error.</p>
<p>But complex (and more often, useless) as these current solutions are they are still somewhat flawed. They require the human to do something to stop spam, not the other way round.</p>
<p>Clearly these are not an ideal solution. I prefer something known as negative CAPTCHA. This is a system where you have a comments field, but you hide it from the user using a language the robot can&#8217;t understand (CSS in this case). You then have a another comments box which the user does see but is not called comments (something like feedback will suffice). Then, when a comment is sent in, you check to see if the comments field (AKA, the hidden one) is filled in. If it is then it must have been a robot because the user couldn&#8217;t see the box to fill it in. This way the user ha nothing to do and it is up to the robot to give itself away.</p>
<p>This is a nice system and one I have been using for several years (it seems to be a very rare idea which I hardly ever see mentioned, people for some reason seem to like proactive defence) with a very very high success rate.</p>
<p>To give you an idea, when I first put this in I was getting about 70spam comments a day plus on my gallery, maybe more. When I put this in I get maybe one spam comment every couple of months.</p>
<p>All very nice you are thinking, but there is more&#8230;</p>
<p>You see, when going through my logs I have found an anti spam side effect of a feature I use all the the time.</p>
<p>My gallery uses ID numbers for pictures. When you request a picture you might request the following:</p>
<p>URL <a title="http://www.craigk.org/pictures/p/403/" href="http://www.craigk.org/pictures/p/403/">http://www.craigk.org/pictures/p/403/</a></p>
<p>Now this URL suggests that you are viewing the index page in a folder called 403 which is inside the folder pictures. However, I actually use something called mod rewrite to change the URL&#8217;s. So in this case the real URL which this links to is as follows:</p>
<p>URL <a title="http://www.craigk.org/pictures/view.php?id=403" href="http://www.craigk.org/pictures/view.php?id=403">http://www.craigk.org/pictures/view.php?id=403</a></p>
<p>Now I use mod rewrite to make the URL&#8217;s cleaner and nicer looking.</p>
<p>For those who care, the code for this is placed in a .htaccess file in the current folder and reads:</p>
<blockquote><p>&lt;IfModule mod_rewrite.c&gt;     <br />&#160;&#160;&#160; RewriteEngine On      <br />&#160;&#160;&#160; RewriteRule ^p/([^/]+)/$ view.php?id=$1 [L]      <br />&lt;/IfModule&gt;</p>
</blockquote>
<p>This has a side effect though for spammers. You see, this means the spammers don&#8217;t know there is no folder called 402 or called p. Instead, when they read my comments file is called add_comments.php they have to make the assumption that this file is located here: http://www.craigk.org/pictures/p/403/add_comment.php (which it isn&#8217;t). Instead, it is actually located here: <a title="http://www.craigk.org/pictures/add_comment.php" href="http://www.craigk.org/pictures/add_comment.php">http://www.craigk.org/pictures/add_comment.php</a> (if you click it you get the error you see when you didn&#8217;t use my comments form to get to this file (which you wouldn&#8217;t be if you click that link)).</p>
<p>According to my website log this .htaccess side effect has stopped 53 spam comments in the last 10 days.</p>
<p>I like getting something for nothing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/11/10/spam-attack-solved/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Right or left?</title>
		<link>http://www.craigk.org/blog/2008/10/28/right-or-left/</link>
		<comments>http://www.craigk.org/blog/2008/10/28/right-or-left/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:37:17 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/10/28/right-or-left/</guid>
		<description><![CDATA[OK, we must all be familiar with the concept of right brain or left brain. This is where different sides of your brain perform different functions and the side of your brain that is used more tells us something about which you lean in things like logic and feeling or being safe or a risk [...]]]></description>
			<content:encoded><![CDATA[<p>OK, we must all be familiar with the concept of right brain or left brain. This is where different sides of your brain perform different functions and the side of your brain that is used more tells us something about which you lean in things like logic and feeling or being safe or a risk taker.</p>
<p>So, I came across this test here. Basically it has a girl spinning and depending on which way you see her spin determines which side of your brain you use more. Apparently most people see her rotate anti-clockwise. Clockwise is for people who are right brained, and anti-clockwise is for people who are left brained.</p>
<p><a title="Test if you are right brained or left brained" href="http://www.news.com.au/couriermail/story/0,023739,22556678-23272,00.html"><img style="border-right: 0px; border-top: 0px; margin: 0px 30px 0px 0px; border-left: 0px; border-bottom: 0px" src="http://www.craigk.org/blog/content/Rightorleft_C99C/dancing_girl.gif" border="0" alt="dancing_girl" width="304" height="404" align="left" /></a></p>
<p>Here is a table of attributes which each side is meant to show you have:</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="200" valign="top"><strong>Left brain functions</strong></td>
<td width="200" valign="top"><strong>Right brain functions</strong></td>
</tr>
<tr>
<td width="200" valign="top">Uses logic</td>
<td width="200" valign="top">Uses feelings</td>
</tr>
<tr>
<td width="200" valign="top">Detail orientated</td>
<td width="200" valign="top">&#8220;Big picture&#8221; orientated</td>
</tr>
<tr>
<td width="200" valign="top">Facts rule</td>
<td width="200" valign="top">Imagination rules</td>
</tr>
<tr>
<td width="200" valign="top">Words and language</td>
<td width="200" valign="top">Symbols and images</td>
</tr>
<tr>
<td width="200" valign="top">Present and past</td>
<td width="200" valign="top">Present and future</td>
</tr>
<tr>
<td width="200" valign="top">Maths and science</td>
<td width="200" valign="top">Philosophy and religion</td>
</tr>
<tr>
<td width="200" valign="top">Can comprehend</td>
<td width="200" valign="top">Can &#8220;get it&#8221; (i.e meaning)</td>
</tr>
<tr>
<td width="200" valign="top">Knowing</td>
<td width="200" valign="top">Believes</td>
</tr>
<tr>
<td width="200" valign="top">Acknowledges</td>
<td width="200" valign="top">Appreciates</td>
</tr>
<tr>
<td width="200" valign="top">Order/pattern perception</td>
<td width="200" valign="top">Spatial perception</td>
</tr>
<tr>
<td width="200" valign="top">Knows object name</td>
<td width="200" valign="top">Knows object function</td>
</tr>
<tr>
<td width="200" valign="top">Reality based</td>
<td width="200" valign="top">Fantasy based</td>
</tr>
<tr>
<td width="200" valign="top">Forms strategies</td>
<td width="200" valign="top">Presents possibilities</td>
</tr>
<tr>
<td width="200" valign="top">Practical</td>
<td width="200" valign="top">Impetuous</td>
</tr>
<tr>
<td width="200" valign="top">Safe</td>
<td width="200" valign="top">Risk taking</td>
</tr>
</tbody>
</table>
<p>I have now been looking at this test for some time. It is driving me a little mad. I see the girl spin in both directions, I can make her change direction or keep her spinning the same way by thinking about it. Every time I glance at the image she is spinning a different way.</p>
<p>Then I thought I would identify which side I am by reading through the table. I think I know why she spins both ways for me. I split almost perfectly down the middle with that table. Many I an neither one nor the other and for the rest I have an even number of both sides.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/28/right-or-left/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Computer extremes</title>
		<link>http://www.craigk.org/blog/2008/10/24/computer-extremes/</link>
		<comments>http://www.craigk.org/blog/2008/10/24/computer-extremes/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 00:02:38 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/10/24/computer-extremes/</guid>
		<description><![CDATA[
OK, it has to be said, my computer and the way I use it is fairly unusual. Let us take Firefox (my browser).
I currently have 74 tabs, spread over 7 windows using a total of around 1GB of RAM.
It has to be said, my Firefox session is pretty huge. I have windows for groups of [...]]]></description>
			<content:encoded><![CDATA[</p>
<p>OK, it has to be said, my computer and the way I use it is fairly unusual. Let us take <a title="Firefox web browser" href="http://www.mozilla.com/firefox/">Firefox</a> (my browser).</p>
<p>I currently have 74 tabs, spread over 7 windows using a total of around 1GB of RAM.</p>
<p>It has to be said, my Firefox session is pretty huge. I have windows for groups of tabs based on subject plus one other main window for my main tabs like news sites, forums I use a lot, social networking (just because it says I&#8217;m logged into the Facebook doesn&#8217;t mean I have looked at that tab in hours).</p>
<p>I don&#8217;t remember the last time I restarted my session. I know it is less than 5months ago but it is defiantly since before the summer. You see, the Firefox session is everything, your browsing history, your current tabs and windows, your history within each page. This means I can go back to a tab I was working on months ago and hit back a couple of times and it will take me to maybe the Google search result page I was on to get there. It is kind of like bookmarks with state.</p>
<p>Many people think this way of doing things is a little nuts. This is in part because they restart their machine more often than me. I put my to sleep most of the time which gives it an almost instant on feature (sub 1 second).</p>
<p>OK, so next, drive letters. You see, these days everything is USB and everything is a mass storage device (it comes up as an effective harddrive).</p>
<p>I don&#8217;t think Microsoft ever thought we would start using as many devices as we do when they suggested using letters to identify drives. I put together a list of all the drives I would be using if I plugged in every device I use (note, not own, just the ones I actually use day to day).</p>
</p>
<ol type="A">
<li>Floppy drive </li>
<li></li>
<li>Main drive </li>
<li>Data drive </li>
<li>Temp drive </li>
<li>DVD drive </li>
<li>CD drive </li>
<li>Card reader slot 1 </li>
<li>Card reader slot 2 </li>
<li>Card reader slot 3 </li>
<li>Card reader slot 4 </li>
<li>Data backup drive </li>
<li>Backup drive </li>
<li>Linux drive </li>
<li>Virtual CD drive </li>
<li>Jump disk 1 </li>
<li>Jump disk 2 </li>
<li>Phone SD card slot </li>
<li>Camera </li>
<li>External drive 1 </li>
<li>External drive 2 </li>
<li>MP3 player main </li>
<li>MP3 player SD card slot </li>
<li></li>
<li>Public network share </li>
<li>Private network share </li>
</ol>
<p>Yes, I know you can map folders to drives so I will never actually run out as such, and I also know some of these don&#8217;t need to be there like the network drives, but still, the point remains&#8230; scary. And yes, I have enough USB ports to plug all that in!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/24/computer-extremes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dumb smart</title>
		<link>http://www.craigk.org/blog/2008/10/17/dumb-smart/</link>
		<comments>http://www.craigk.org/blog/2008/10/17/dumb-smart/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 09:30:22 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Uni]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/10/17/dumb-smart/</guid>
		<description><![CDATA[I feel like a very stupid clever person.
Let me explain. Last year I did my final year at university. Clearly that didn&#8217;t go too well given I&#8217;m still here. Last year one of the major contributing factors in me decided to skip the year and start again was my final year project got out of [...]]]></description>
			<content:encoded><![CDATA[<p>I feel like a very stupid clever person.</p>
<p>Let me explain. Last year I did my final year at university. Clearly that didn&#8217;t go too well given I&#8217;m still here. Last year one of the major contributing factors in me decided to skip the year and start again was my final year project got out of hand. It was too big and I focused so hard on building it I would have never got all the documentation done and would have almost certainly failed it, despite having a fairly in depth and working product. As I think I have explained before, my system was called SORT (Scouts Online Records Tool) and it was for my scout group in particular but really, for any group. The idea was to get all their records online for the leaders to access in one place. It also contained a messaging system allowing them to e-mail parents and parents contact them.</p>
<p>Now this sounds a lot like a webmail to me, so being me I went and built one. I built an integrated webmail system that handled connecting to an IMAP account, getting headers, reading if they were new and un-read, handling importance flags, handling the replying, forwarding, the replying to all, the sending of attachments as well as the downloading and viewing of received attachments.</p>
<p>This is all a lot more complicated than it sounds. Almost every e-mail client sends e-mails in slightly different ways, and yet more ways depending on if you have them set to use HTML etc. Then yet more ways if you send an attachment and yet more ways after that if you send more than one attachment. In short, making your e-mail client(webmail in my case) work with every other one is very very complicated.</p>
<p>Being me, I went and did it. I built this system. It worked. It worked with every e-mail client I could find to test. It worked with attachments and without, it supported HTML e-mails and plain text. It was all pretty smart stuff. It took me just over a week in total.</p>
<p>Today I had a meeting with my project leader about my new final year project. I was pinning down the structure of my project as I&#8217;m not a great fan of repeating mistakes. I recounted this story to him. He then explained that a year or so ago he was the tutor for a masters student who did a whole project on just solving the getting attachments, plain text and HTML issues I had with all e-mail clients. He did a project on something I solved in 2-3 days.</p>
<p>In short, less than one sixth of the deliverable I designed which I did in 2 or 3 days was someone&#8217;s whole masters project.</p>
<p>I feel like a very stupid clever person.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/17/dumb-smart/feed/</wfw:commentRss>
		</item>
		<item>
		<title>First week back</title>
		<link>http://www.craigk.org/blog/2008/10/09/first-week-back/</link>
		<comments>http://www.craigk.org/blog/2008/10/09/first-week-back/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 22:09:39 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Uni]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/10/09/first-week-back/</guid>
		<description><![CDATA[OK, so I&#8217;ve effectively had my first week back at Uni now. I say effectively because although it is only Thursday all my lectures for the week finished yesterday. In fact, I only have 6 hours of teaching booked in on my timetable per week. (4 hours on Tuesday and 2 on Wednesday). Suffice to [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so I&#8217;ve effectively had my first week back at Uni now. I say effectively because although it is only Thursday all my lectures for the week finished yesterday. In fact, I only have 6 hours of teaching booked in on my timetable per week. (4 hours on Tuesday and 2 on Wednesday). Suffice to say this is a very short week and far from representative of all the modules I&#8217;m doing.</p>
<p>I have 2 hours a week in something called &#8220;advanced internet application&#8221;. I have another 2 hours in something called &#8220;data management&#8221; and then a final 2 hours in &#8220;web mastery and network management&#8221;. I then also have a module called &#8220;managing the e-enterprise&#8221; which is an online module which involves an essay a week which is submitted and then feedback is received a week later. Then I have the heap that is my final year project.</p>
<p>Now it has to be said that in picking my final year project last year I seriously overstretched myself. It was in a lot of ways my downfall last year. I undertook a system of which each one of the 6 components was bigger than anything else anyone else took on. One of these components was a fully working webmail system to give you an idea of scale.</p>
<p>This year I have already made my pitch to the head of the school for my project. In fact, I did it Monday afternoon. This year my project will be an investigation into moving the functionality of a <a title="Link to wiki article on CMS's" href="http://en.wikipedia.org/wiki/Content_management_system">CMS</a> from within the front end scripting language (such as <a title="PHP homepage" href="http://php.net/">PHP</a> or <a title="Microsoft C sharp programming language" href="http://en.wikipedia.org/wiki/C_Sharp_(programming_language)">C#</a>) into the database engine itself taking advantage of the new levels of power and control in modern query processing engines and <a title="Wiki article on Transact-SQL" href="http://en.wikipedia.org/wiki/TSQL">T-SQL</a>.</p>
<p>The beauty of this project is it takes advantage of my interest in databases systems as well as being new, interesting and most importantly, without limit and as such, without end. This way I can work on it as much as I like without it having a clear end for which my result to be measured against. I agree there is a danger in this approach that I would fall short of the requirements, however, this is part of what the tutors roles is in helping me manage my project.</p>
<p>This first week has not been without it hiccups and oddities though. Firstly i was reminded over the course of a few lectures and tutorials how many stupid people are still out there. I saddens me to think that the last two levels of the course have not weeded them away. My favourite moment was when we were talking about <a title="Microsoft Biztalk server wiki article" href="http://en.wikipedia.org/wiki/BizTalk">Biztalk server</a> (which is basically a business process manager. It allows you to set up the middleware or business processes of your applications in one place and it controls the workflow. Someone then asked if this was like exchange server&#8230; You what&#8230; you mean the e-mail server&#8230;. how in Gods name did they come to that conclusion. The two are so very far removed that you would have thought at least a level 3 student would see that&#8230;</p>
<p>Anyway, I&#8217;m sure I will get over it&#8230; Or they will go away&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/09/first-week-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pavle Bataveljic</title>
		<link>http://www.craigk.org/blog/2008/10/06/pavle-bataveljic/</link>
		<comments>http://www.craigk.org/blog/2008/10/06/pavle-bataveljic/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 15:49:42 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Uni]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/10/06/pavle-bataveljic/</guid>
		<description><![CDATA[Well today was a good start and yet a rubbish start to uni.
I went into the school office to sort out my module choices for this year. I hadn&#8217;t done at the end of last week because I wanted to talk to a few people about what I&#8217;m allowed to do. One of the things [...]]]></description>
			<content:encoded><![CDATA[<p>Well today was a good start and yet a rubbish start to uni.</p>
<p>I went into the school office to sort out my module choices for this year. I hadn&#8217;t done at the end of last week because I wanted to talk to a few people about what I&#8217;m allowed to do. One of the things that came up when discussing me staying on and re-doing the year is they might place restrictions on which modules I could do. I had never managed to find this out so far. So, I went into the school office, picked up the form and then as a side note asked which office Pavle (who is my course head) was. I was told that he has actually died last week.</p>
<p>Now I didn&#8217;t know the man that well, but he was the person who helped negotiate with the university for my re-doing the year. I had several length talks with him about what went wrong, what I would do differently etc. He managed to put me at ease over something which had worried me for some time. He gave up a fair bit of time to help me best he could and it would be fair to say that without his help I may not be getting this second chance.</p>
<p>I thanked him many times for his help, but I can&#8217;t help feel I didn&#8217;t thank him enough. I credit this man with my second chance, he even wrote a letter of recommendation to the course board on my behalf.</p>
<p>This is very saddening news to myself and anyone he worked with him I&#8217;m sure. Before today I was planning on going back into university and thanking him again.</p>
<p>Note to self, take opportunities when they present themselves, you never know how long they will be there for.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/06/pavle-bataveljic/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Backing up!</title>
		<link>http://www.craigk.org/blog/2008/10/02/backing-up/</link>
		<comments>http://www.craigk.org/blog/2008/10/02/backing-up/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:12:54 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/?p=193</guid>
		<description><![CDATA[OK, as I talk to yet another friend who is having trouble with their computer not working, it occurs to me far too few people back up their work. If that is you, please please keep reading.
Firstly, a lot of people simply don&#8217;t bother backing up because they don&#8217;t think about it or don&#8217;t care. [...]]]></description>
			<content:encoded><![CDATA[<p>OK, as I talk to yet another friend who is having trouble with their computer not working, it occurs to me far too few people back up their work. If that is you, please please keep reading.</p>
<p>Firstly, a lot of people simply don&#8217;t bother backing up because they don&#8217;t think about it or don&#8217;t care. I normally find the idea of loosing every photo from the last 5 years makes most people quite upset, as does the thought of the hours of work spend on essays and alike going down the drain. Backing up is painfully cheap, very easy to set up, costs very little and makes life so much better when things do go pointy bits up.</p>
<p>If you are anything like me you have whole swaths of your life stored on the computer, shouldn&#8217;t you be more careful with it? Laptops in particular are very prone to disk failure. They are after all laptops, they take a lot of knocks, bumps and generally get a fairly rough life. They are also what almost all students trust their lives with. By their very design they only have one disk built in, it is your single point of failure, it goes and your data goes with it.</p>
<p>There are several ways to do backups, some ways are very simple, other not so much, some cost a fair bit, some are dirt cheap and some require lots of effort, some require none at all.</p>
<h4>DVD&#8217;s</h4>
<p>The most basic form of backup that I can think of is just to back your work up on DVD. Most computers from the last couple of years and beyond come as standard with the ability to write DVD&#8217;s. Every major OS in current use can write to them with no special software and they cost almost nothing. At first glance I can find a pack of 25 disks for £4.99. Those disks have 4.7GB of storage on them. To put that another way, that&#8217;s 1340 photos from my fairly expensive camera which produces HUGE files. Most current cameras I see don&#8217;t make images bigger than tow thirds that. So that&#8217;s around 2000 images per disk. So in other words, with a pack of 25 disks you could keep the most important data to you backed-up for a year or so.</p>
<h4>External hard disks</h4>
<p>DVD&#8217;s do have their downsides, they require you to do some work, they require you to update them from time to time and they also take a bit of time to get your data back off if you do kill your machine.</p>
<p>With any form of harddrive (in this case an external one) you can set it up to copy your data over as things change or as I prefer to do, get it to wait a couple of days just in case I want to go to the backup and get an older version of the file. You can pick up an external harddrive for scary money. I have just found 1TB (1024GB) for under £100. Even I would struggle to fill that, so the cheaper options will almost certainly be for you.</p>
<p>As for software to set backing up, I suggest something called <a title="Syncback backup utility" href="http://www.2brightsparks.com/syncback/syncback-hub.html">Syncback</a>. This has a free version linked to on their downloads page. It is pretty simple to set up, it has an easy mode and holds your hand through setting backups up. You just pick your my documents folder as the source and then your external harddrive as the location to backup to.</p>
<h4>Internal disk</h4>
<p>If you have a desktop you can take this a step further by adding an internal disk, they are even cheaper and even more reliable, especially as they don&#8217;t have to take much in the way of knocks and bumps.</p>
<p>&nbsp;</p>
<p>If half this article was too complicated for you, then just copy some stuff to DVD&#8217;s and lump it into your bottom draw, its better than nothing. But please please make some form of backup, recovering data from a broken disk can cost thousands of pounds and take months to get back with limited success. If you also don&#8217;t think this will ever happen to you, know that i have 2 disks in my computer and 2 outside of it dedicated to backup and I have fixed a awful lot of machines and got back a lot of peoples data, but it isn&#8217;t always possible and I&#8217;m not made of spare time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/10/02/backing-up/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Officially cool</title>
		<link>http://www.craigk.org/blog/2008/09/05/officially-cool/</link>
		<comments>http://www.craigk.org/blog/2008/09/05/officially-cool/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 11:00:16 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/?p=192</guid>
		<description><![CDATA[OK, so it&#8217;s slightly old hat, but when it works it&#8217;s just scary cool. Im using my phones data connection (you know, that unlimited one) via bluetooth and the random bluetooth widget plugged into my laptop to be using scary fast and usable. When i say usable, I&#8217;m using several tabs, big pages and collecting [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so it&#8217;s slightly old hat, but when it works it&#8217;s just scary cool. Im using my phones data connection (you know, that unlimited one) via bluetooth and the random bluetooth widget plugged into my laptop to be using scary fast and usable. When i say usable, I&#8217;m using several tabs, big pages and collecting my e-mails at the same time.</p>
<p>Now in theory i should have been able to do this for years, and i sort of have before, but now i have a new battery for my laptop this is actually a viable solution long term.</p>
<p>Somethings Tech just rocks, especially when all of this is happening on a train&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/09/05/officially-cool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Digital life</title>
		<link>http://www.craigk.org/blog/2008/09/03/digital-life/</link>
		<comments>http://www.craigk.org/blog/2008/09/03/digital-life/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 16:40:33 +0000</pubDate>
		<dc:creator>Craig</dc:creator>
		
		<category><![CDATA[Me]]></category>

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.craigk.org/blog/2008/09/03/digital-life/</guid>
		<description><![CDATA[The idea of a Digital life as I see it is a really really cool (most importantly, useful) thing. I would always define this as having all the data you want and need very accessible to you at as close to all times as is possible.
So this is photos, videos, music, e-mail, the web, contacts, [...]]]></description>
			<content:encoded><![CDATA[<p>The idea of a Digital life as I see it is a really really cool (most importantly, useful) thing. I would always define this as having all the data you want and need very accessible to you at as close to all times as is possible.</p>
<p>So this is photos, videos, music, e-mail, the web, contacts, calendars, instant communication etc searchable, accessible, available all the time.</p>
<p>This is something thanks to our modern computing generation we are getting closer and closer to this, however, much as I try, this is still a very very complicated goal to achieve.</p>
<p>For example, all my photos, music, videos, contacts, calendars etc are all on my computer. I have done a fair bit of tagging of my photos based on events and people in them, this makes that data searchable. So, lets pretend I&#8217;m looking for some info on Demelza. So I type her name into my computer as a search term. That then spits back all the photos with her in, any videos she might be in, her contact sheet in outlook which contains a profile picture, her phone numbers, addresses, e-mail address. I get back any calendar events she has been tagged to, like me visiting her at home this coming week. I also get any chat logs we have between us on MSN. </p>
<p>Not bad going, that&#8217;s my computer fairly sorted. I also carry my phone with me which contains my full calendar, my full contacts list. I also have my task list, my notes, and although I don&#8217;t bother for reasons that become clear, I could have my favourites too. My phone also has access to most of my e-mails as my e-mails are mainly <a title="Internet Message Access Protocol" href="http://en.wikipedia.org/wiki/IMAP">IMAP</a> accounts. This means the e-mails themselves stay online and whatever device I&#8217;m on just contacts to them, so be that my phone, my computer, my laptop or even webmail, they remain the same for all.</p>
<p>Bookmarks is a tricky one, or even my <a title="Firefox web browser" href="http://www.firefox.com/">Firefox</a> session. I&#8217;m looking at ways to have all my bookmarks tag-able, searchable online so I can get to them everywhere.</p>
<p>I also did look at having my MSN chat logs online (behind a password) so I could get them from anywhere and again search them. This turned out to be a lot more complicated than you would have though, I also have my logs on my phone, computer and laptop for all IM logged separately with no way as yet to search them all at the same time.</p>
<p>So most of this has come a long way, however it didn&#8217;t get there quickly, nor was it easy. In the last year I have taken about 9,000 photos, all of which needs to be tagged for this to work. I have maybe a weeks worth of work on them to clear the backlog.</p>
<p>The technology is just about caught up with what&#8217;s need, but its still not easy enough, fast enough or useful enough. I still don&#8217;t have all my files available to me from anywhere. I could remote in but that&#8217;s not quite the same, I could access the files in their directories but that wouldn&#8217;t give me access to all the nice search data i want.</p>
<p>I think i have even forgotten where this post was going, maybe I&#8217;m just trying to explain that at the moment, keeping track of your data is a nightmare.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigk.org/blog/2008/09/03/digital-life/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
