<?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>Databases and Life &#187; Uncategorized</title>
	<atom:link href="http://www.databasesandlife.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.databasesandlife.com</link>
	<description>Adrian Smith's blog</description>
	<lastBuildDate>Mon, 14 Jun 2010 09:41:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sudoku Solver</title>
		<link>http://www.databasesandlife.com/sudoku/</link>
		<comments>http://www.databasesandlife.com/sudoku/#comments</comments>
		<pubDate>Sat, 15 May 2010 13:45:16 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=515</guid>
		<description><![CDATA[
 div#sudokucontainer {  height:460px; text-align:center; }
 table.sudoku { empty-cells: show; border-collapse: collapse;  margin-left: auto; margin-right: auto; }
 table.sudoku div { font-size: 10pt }
 tr.sudokurow td { text-align:center; border: 1px solid #CCC; }
 tr.sudokurow td.leftcol { border-left: 3px solid black;  }
 tr.sudokurow td.rightcol { border-right: 3px solid black;  }
 tr.sudokurow.start td { [...]]]></description>
			<content:encoded><![CDATA[<style>
 div#sudokucontainer {  height:460px; text-align:center; }
 table.sudoku { empty-cells: show; border-collapse: collapse;  margin-left: auto; margin-right: auto; }
 table.sudoku div { font-size: 10pt }
 tr.sudokurow td { text-align:center; border: 1px solid #CCC; }
 tr.sudokurow td.leftcol { border-left: 3px solid black;  }
 tr.sudokurow td.rightcol { border-right: 3px solid black;  }
 tr.sudokurow.start td { border-top: 3px solid black;  }
 tr.sudokurow.end td { border-bottom: 3px solid black;  }
 tr.sudokurow td { width: 40px; height: 40px; }
 tr.sudokurow span.result { color: #AAA; }
 tr.sudokurow span.result,
 tr.sudokurow span.userentered,
 tr.sudokurow input.number { font-size: 19pt; font-family: helvetica }
 tr.sudokurow input.number { width: 20px; padding-left:2px; border:0; }
 table.sudoku td.statusrow { height:30px; text-align:center; vertical-align:top }
 table.sudoku td.statusrow .message { padding-left: 5px; }
 table.sudoku td.submitinfo { text-align:left  }
 table.sudoku td.submit { height:30px; text-align:right }
 table.sudoku div.spinner { text-right center ; }
 table.sudoku div.spinner img { margin-top:5px; margin-right: 10px; }
 td.statusrow .error,
 td.statusrow .success {
    padding-left: 7px;
    padding-right: 7px;
    display: inline;
    overflow: hidden;
 }
 td.statusrow .error {
    color: #800;
    background-color: #FCC;
    border: solid 1px red ;
 }
 td.statusrow .success {
    color: #080;
    background-color: #EFE;
    border: solid 1px green ;
 }
</style>
<table width="100%"">
<tr>
<td align="center">
<div id="sudokucontainer">
 </div>
</td>
</tr>
</table>
<p>The above is a Sudoku solver I wrote in Java a while back. Here it is running in the browser. The Java has been converted to in-browser Javascript by Google Web Toolkit.</p>
<p>Please feel free to type in the hardest Sudokus you can find anywhere, and let me know if it can solve them, I haven&#8217;t found any it can&#8217;t yet.</p>
<p>I assume the in-page Javascript will not work in RSS readers, email notifications, etc. If that&#8217;s the case, click here to get to the <a  href="http://www.databasesandlife.com/sudoku">original Sudoku solver page</a> on my blog.</p>
<p>The algorithm works by backtracking, i.e. simply going through all squares from top-left to bottom-right, and finding the set of &#8220;candidate numbers&#8221; for that square (i.e. which numbers are not already used on that row, column or 3&#215;3 block). The first candidate number is &#8220;applied&#8221; by placed it into the square, and the algorithm moves to the next square. If there is a square where the set of candidate numbers is empty (i.e. no number would work, given the candidates applied in previous squares) then the system returns to the previous square and tries the next candidate for that square. Once the system has gone &#8220;beyond&#8221; the bottom-right square, then the set of applied candidates consitutes a solution. However, backtracking continues, if the system reaches beyond the bottom-right square again, then the previously found solution<br />
was not unique, and the algorithm terminates. Once the system has backtracked back to the start, if a single solution was found then it is a &#8220;unique solution&#8221; (success case), otherwise if there are no solutions then the Sudoku is unsolvable.</p>
<p>By the way, Internet Explorer really isn&#8217;t that fast; I appreciate that is well-known to anyone who&#8217;s ever read Google Chrome marketing material! But the Sudoku <a href="http://z.about.com/d/puzzles/1/0/l/e/1/sudokux103.gif">here</a> takes 708ms to solve on IE8, 334ms on Firefox 3.6, about 100ms on Safari 4 and Opera 10, and 49ms on Chrome 4, on this 2.3GHz/core Intel Windows Vista computer.</p>
<p><strong>Update: </strong>Alas there were Sudokus which took too long for the original synchronous approach (i.e. user clicks, do calculation, update the screen with the results). So now, in the case the calculation takes too long, a &#8220;worker&#8221; is spawned, which does the calculation, and the spinner is displayed in that case.</p>
<p><a href="/blog-attachments/20100515-com.databasesandlife.sudoku.Sudoku/databasesandlife-sudoku-solver-source.zip">Download the source here</a>.<br />
<script language="javascript" src="/blog-attachments/20100515-com.databasesandlife.sudoku.Sudoku/com.databasesandlife.sudoku.Sudoku.nocache.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/sudoku/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My mate came across the following HTML</title>
		<link>http://www.databasesandlife.com/a-few-html-option/</link>
		<comments>http://www.databasesandlife.com/a-few-html-option/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 19:03:32 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=494</guid>
		<description><![CDATA[
&#60;select class="selectTitle" id="C5" name="C5"&#62;
  &#60;option value=""&#62;--select--&#60;/option&#62;
  &#60;option value="1"&#62;Mr&#60;/option&#62;
  &#60;option value="2"&#62;Ms&#60;/option&#62;
  &#60;option value="3"&#62;Mrs&#60;/option&#62;
  &#60;option value="4"&#62;Miss&#60;/option&#62;
  &#60;option value="5"&#62;Doctor&#60;/option&#62;
  &#60;option value="6"&#62;Judge&#60;/option&#62;
  &#60;option value="7"&#62;Professor&#60;/option&#62;
  &#60;option value="8"&#62;Councillor&#60;/option&#62;
  &#60;option value="9"&#62;Madam&#60;/option&#62;
  &#60;option value="10"&#62;Mr &#38;amp; Mrs&#60;/option&#62;
  &#60;option value="11"&#62;Rev&#60;/option&#62;
  &#60;option value="12"&#62;Sir&#60;/option&#62;
  &#60;option value="13"&#62;Major&#60;/option&#62;
  &#60;option value="14"&#62;See Questions&#60;/option&#62;
  &#60;option value="15"&#62;Lord&#60;/option&#62;
 [...]]]></description>
			<content:encoded><![CDATA[<pre>
&lt;select class="selectTitle" id="C5" name="C5"&gt;
  &lt;option value=""&gt;--select--&lt;/option&gt;
  &lt;option value="1"&gt;Mr&lt;/option&gt;
  &lt;option value="2"&gt;Ms&lt;/option&gt;
  &lt;option value="3"&gt;Mrs&lt;/option&gt;
  &lt;option value="4"&gt;Miss&lt;/option&gt;
  &lt;option value="5"&gt;Doctor&lt;/option&gt;
  &lt;option value="6"&gt;Judge&lt;/option&gt;
  &lt;option value="7"&gt;Professor&lt;/option&gt;
  &lt;option value="8"&gt;Councillor&lt;/option&gt;
  &lt;option value="9"&gt;Madam&lt;/option&gt;
  &lt;option value="10"&gt;Mr &amp;amp; Mrs&lt;/option&gt;
<span id="more-494"></span>  &lt;option value="11"&gt;Rev&lt;/option&gt;
  &lt;option value="12"&gt;Sir&lt;/option&gt;
  &lt;option value="13"&gt;Major&lt;/option&gt;
  &lt;option value="14"&gt;See Questions&lt;/option&gt;
  &lt;option value="15"&gt;Lord&lt;/option&gt;
  &lt;option value="16"&gt;Lady&lt;/option&gt;
  &lt;option value="17"&gt;Prince&lt;/option&gt;
  &lt;option value="18"&gt;Dr&lt;/option&gt;
  &lt;option value="19"&gt;Eng&lt;/option&gt;
  &lt;option value="20"&gt;Lt Col&lt;/option&gt;
  &lt;option value="21"&gt;AirComm&lt;/option&gt;
  &lt;option value="22"&gt;AirMarsh&lt;/option&gt;
  &lt;option value="23"&gt;Archbishop&lt;/option&gt;
  &lt;option value="24"&gt;Archdeacon&lt;/option&gt;
  &lt;option value="25"&gt;Baron&lt;/option&gt;
  &lt;option value="26"&gt;Baroness&lt;/option&gt;
  &lt;option value="27"&gt;Bishop&lt;/option&gt;
  &lt;option value="28"&gt;Bombadier&lt;/option&gt;
  &lt;option value="29"&gt;BrigGen&lt;/option&gt;
  &lt;option value="30"&gt;Brigadier&lt;/option&gt;
  &lt;option value="31"&gt;Brother&lt;/option&gt;
  &lt;option value="32"&gt;Cadet&lt;/option&gt;
  &lt;option value="33"&gt;Canon&lt;/option&gt;
  &lt;option value="34"&gt;Captain&lt;/option&gt;
  &lt;option value="35"&gt;Cardinal&lt;/option&gt;
  &lt;option value="36"&gt;Chancellor&lt;/option&gt;
  &lt;option value="37"&gt;Chief&lt;/option&gt;
  &lt;option value="38"&gt;ChiefJust&lt;/option&gt;
  &lt;option value="39"&gt;Colonel&lt;/option&gt;
  &lt;option value="40"&gt;ColSgt&lt;/option&gt;
  &lt;option value="41"&gt;Commander&lt;/option&gt;
  &lt;option value="42"&gt;Commodore&lt;/option&gt;
  &lt;option value="43"&gt;Constable&lt;/option&gt;
  &lt;option value="44"&gt;Corporal&lt;/option&gt;
  &lt;option value="45"&gt;Count&lt;/option&gt;
  &lt;option value="46"&gt;Countess&lt;/option&gt;
  &lt;option value="47"&gt;Dame&lt;/option&gt;
  &lt;option value="48"&gt;Deacon&lt;/option&gt;
  &lt;option value="49"&gt;Deaconess&lt;/option&gt;
  &lt;option value="50"&gt;Dowager&lt;/option&gt;
  &lt;option value="51"&gt;Duchess&lt;/option&gt;
  &lt;option value="52"&gt;Duke&lt;/option&gt;
  &lt;option value="53"&gt;Earl&lt;/option&gt;
  &lt;option value="54"&gt;Father&lt;/option&gt;
  &lt;option value="55"&gt;FldMarsh&lt;/option&gt;
  &lt;option value="56"&gt;FlightLt&lt;/option&gt;
  &lt;option value="57"&gt;FltSgt&lt;/option&gt;
  &lt;option value="58"&gt;FlOfficer&lt;/option&gt;
  &lt;option value="59"&gt;Frau&lt;/option&gt;
  &lt;option value="60"&gt;Fraulein&lt;/option&gt;
  &lt;option value="61"&gt;Fusilier&lt;/option&gt;
  &lt;option value="62"&gt;General&lt;/option&gt;
  &lt;option value="63"&gt;GrpCapt&lt;/option&gt;
  &lt;option value="64"&gt;Guardsman&lt;/option&gt;
  &lt;option value="65"&gt;Gunner&lt;/option&gt;
  &lt;option value="66"&gt;Herr&lt;/option&gt;
  &lt;option value="67"&gt;Inspector&lt;/option&gt;
  &lt;option value="68"&gt;JusticeCL&lt;/option&gt;
  &lt;option value="69"&gt;JusticeGN&lt;/option&gt;
  &lt;option value="71"&gt;LanceBmdr&lt;/option&gt;
  &lt;option value="72"&gt;LanceCorp&lt;/option&gt;
  &lt;option value="73"&gt;LieutCdr&lt;/option&gt;
  &lt;option value="74"&gt;LieutCol&lt;/option&gt;
  &lt;option value="75"&gt;LieutGen&lt;/option&gt;
  &lt;option value="76"&gt;Lieutenant&lt;/option&gt;
  &lt;option value="78"&gt;Madame&lt;/option&gt;
  &lt;option value="79"&gt;Mdmoiselle&lt;/option&gt;
  &lt;option value="80"&gt;MajorGen&lt;/option&gt;
  &lt;option value="81"&gt;Mrchioness&lt;/option&gt;
  &lt;option value="82"&gt;Marquess&lt;/option&gt;
  &lt;option value="83"&gt;Marquis&lt;/option&gt;
  &lt;option value="84"&gt;Marshal&lt;/option&gt;
  &lt;option value="85"&gt;Master&lt;/option&gt;
  &lt;option value="86"&gt;Matron&lt;/option&gt;
  &lt;option value="87"&gt;Mipshipman&lt;/option&gt;
  &lt;option value="89"&gt;Mistress&lt;/option&gt;
  &lt;option value="90"&gt;Monsieur&lt;/option&gt;
  &lt;option value="91"&gt;Monsignor&lt;/option&gt;
  &lt;option value="92"&gt;Mother&lt;/option&gt;
  &lt;option value="93"&gt;Nurse&lt;/option&gt;
  &lt;option value="94"&gt;Officer&lt;/option&gt;
  &lt;option value="95"&gt;Pastor&lt;/option&gt;
  &lt;option value="96"&gt;PC&lt;/option&gt;
  &lt;option value="97"&gt;PtyOffcr&lt;/option&gt;
  &lt;option value="98"&gt;PltOffcr&lt;/option&gt;
  &lt;option value="100"&gt;Princess&lt;/option&gt;
  &lt;option value="101"&gt;Private&lt;/option&gt;
  &lt;option value="102"&gt;Rabbi&lt;/option&gt;
  &lt;option value="103"&gt;RearAdmr&lt;/option&gt;
  &lt;option value="104"&gt;Rifleman&lt;/option&gt;
  &lt;option value="105"&gt;Sapper&lt;/option&gt;
  &lt;option value="106"&gt;Senor&lt;/option&gt;
  &lt;option value="107"&gt;Senora&lt;/option&gt;
  &lt;option value="108"&gt;Senorina&lt;/option&gt;
  &lt;option value="109"&gt;Sergeant&lt;/option&gt;
  &lt;option value="110"&gt;Signor&lt;/option&gt;
  &lt;option value="111"&gt;Signora&lt;/option&gt;
  &lt;option value="112"&gt;Signorina&lt;/option&gt;
  &lt;option value="113"&gt;Sister&lt;/option&gt;
  &lt;option value="114"&gt;SqnLeader&lt;/option&gt;
  &lt;option value="115"&gt;StaffSgt&lt;/option&gt;
  &lt;option value="117"&gt;SubLieut&lt;/option&gt;
  &lt;option value="118"&gt;Superintd&lt;/option&gt;
  &lt;option value="119"&gt;TheHon&lt;/option&gt;
  &lt;option value="120"&gt;TheRtHon&lt;/option&gt;
  &lt;option value="121"&gt;Trooper&lt;/option&gt;
  &lt;option value="122"&gt;Vicar&lt;/option&gt;
  &lt;option value="123"&gt;ViceAdmr&lt;/option&gt;
  &lt;option value="124"&gt;Viscount&lt;/option&gt;
  &lt;option value="125"&gt;Viscountss&lt;/option&gt;
  &lt;option value="126"&gt;Warrntoff&lt;/option&gt;
  &lt;option value="127"&gt;WingCmdr&lt;/option&gt;
  &lt;option value="128"&gt;WPC&lt;/option&gt;
  &lt;option value="129"&gt;Dom&lt;/option&gt;
  &lt;option value="130"&gt;Deputy&lt;/option&gt;
  &lt;option value="131"&gt;Rt. Honourable&lt;/option&gt;
  &lt;option value="132"&gt;Venerable&lt;/option&gt;
  &lt;option value="133"&gt;Sheikh&lt;/option&gt;
&lt;/select&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/a-few-html-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/etc/cron.daily scripts may not have dots in their name</title>
		<link>http://www.databasesandlife.com/etc-cron-daily-scripts-may-not-have-dots-in-their-name/</link>
		<comments>http://www.databasesandlife.com/etc-cron-daily-scripts-may-not-have-dots-in-their-name/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 16:20:01 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=473</guid>
		<description><![CDATA[I just had the problem I&#8217;d placed a script into /etc/cron.daily on my Debian Lenny system but it wasn&#8217;t getting run (or at least it didn&#8217;t seem so).
Two things I learned:
(1) Execute the following to see which scripts would get run:

run-parts --test /etc/cron.daily

(2) In my case, the reason the script was never executed was that [...]]]></description>
			<content:encoded><![CDATA[<p>I just had the problem I&#8217;d placed a script into /etc/cron.daily on my Debian Lenny system but it wasn&#8217;t getting run (or at least it didn&#8217;t seem so).</p>
<p>Two things I learned:</p>
<p>(1) Execute the following to see which scripts would get run:</p>
<pre>
run-parts --test /etc/cron.daily
</pre>
<p>(2) In my case, the reason the script was never executed was that I called it &#8220;xyz.sh&#8221; as it was a shell script; the dot in the filename was the problem. I removed the dot and now it runs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/etc-cron-daily-scripts-may-not-have-dots-in-their-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;me&#8221; vs &#8220;you&#8221; in user-interface dialogs</title>
		<link>http://www.databasesandlife.com/me-vs-you-in-user-interface-dialogs/</link>
		<comments>http://www.databasesandlife.com/me-vs-you-in-user-interface-dialogs/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 12:20:13 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=421</guid>
		<description><![CDATA[Computers, if they are addressing the user, should address the user as &#8220;you&#8221;, not as &#8220;me&#8221;.
Computers need, from time to time, to address the user, for example &#8220;You have updated your setting successfully&#8221;.
Some programs use the word &#8220;you&#8221; to address the user, some use the word &#8220;me&#8221; on the grounds that the user is reading [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Computers, if they are addressing the user, should address the user as &#8220;you&#8221;, not as &#8220;me&#8221;.</strong></p>
<p>Computers need, from time to time, to address the user, for example &#8220;You have updated your setting successfully&#8221;.</p>
<p>Some programs use the word &#8220;you&#8221; to address the user, some use the word &#8220;me&#8221; on the grounds that the user is reading it, and to them, they are &#8220;me&#8221;.</p>
<p>However, using &#8220;me&#8221; to address someone is ridiculous! That&#8217;s as logical as a human using the word &#8220;I&#8221; or &#8220;me&#8221; to refer to the recipient of a piece of communication, &#8220;hey, do I fancy going to the pub?&#8221; on the grounds that, to the recipient, they are &#8220;I&#8221;.</p>
<p>&#8220;me&#8221; is the source of communication, &#8220;you&#8221; is the destination of communication; if a computer is communicating, the user is the recipient of the communication so should be called &#8220;you&#8221;.</p>
<p>Specifically Gmail is the main culprit for this in my life, it lists conversations between &#8220;me, Joe&#8221;; having &#8220;you, Joe&#8221; or &#8220;Adrian, Joe&#8221; would be much better! Gmail even, on the same screen that it lists conversations between &#8220;me&#8221; and other people, says &#8220;You are using 25% of your 7000MB&#8221;, so it&#8217;s not even consistent!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/me-vs-you-in-user-interface-dialogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Learnt two new smileys today</title>
		<link>http://www.databasesandlife.com/learnt-two-new-smileys-today/</link>
		<comments>http://www.databasesandlife.com/learnt-two-new-smileys-today/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 11:46:12 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=398</guid>
		<description><![CDATA[Thanks to Nessus!
\o/ &#8211; arms raised in the air &#8211; success gesture
&#60;3&#160; &#8211; heart
]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.nessus.at/">Nessus</a>!</p>
<p><strong><code>\o/</code></strong> &#8211; arms raised in the air &#8211; success gesture<br />
<strong><code>&lt;3&nbsp;</code></strong> &#8211; heart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/learnt-two-new-smileys-today/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3 changes price from £10 to £1250 then charge me to cancel</title>
		<link>http://www.databasesandlife.com/3-changes-price-from-10-to-1250-then-charge-me-to-cancel/</link>
		<comments>http://www.databasesandlife.com/3-changes-price-from-10-to-1250-then-charge-me-to-cancel/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 14:27:10 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=363</guid>
		<description><![CDATA[Where do I begin to describe how much I hate three (mobile operator UK) today.
(I had a mobile internet subscription / device from them.)
Firstly &#8211; and this is not new &#8211; the program they supply with the computer to show you how many MB you&#8217;ve used (and thus how much you&#8217;ve got left before they charge [...]]]></description>
			<content:encoded><![CDATA[<p>Where do I begin to describe how much I hate <a href="http://three.co.uk/">three</a> (mobile operator UK) today.</p>
<p>(I had a mobile internet subscription / device from them.)</p>
<p>Firstly &#8211; and this is not new &#8211; the program they supply with the computer to show you how many MB you&#8217;ve used (and thus how much you&#8217;ve got left before they charge you) is &#8220;inaccurate&#8221; (= underestimates the amount you&#8217;ve used), some support person from three told me that. But this program has a massive window that comes up, with the 3 logo plastered all over it &#8211; I mean it&#8217;s not exactly obvious that this program is inaccurate. Why don&#8217;t they just put a huge warning up saying &#8220;this data is inaccurate&#8221;?</p>
<p>The product is something like 1000 MB surfing for £10 a month. The main point, for me, being that you can use it in certain foreign countries, including Austria, and the price is the same as if you used it in the UK. This is why I bought it &#8211; so I could use it from both the UK and Austria. This was called <strong>&#8220;roam like home&#8221;</strong>.</p>
<p>Well &#8211; that&#8217;s no longer the case. I noticed a bill (thankfully only £15), called them, tried to cancel, they told me I&#8217;d have to pay a cancellation fee as I&#8217;m still in the contract period. I mean this is so totally outrageous.</p>
<p>So I spent 45 minutes on the phone, failed to get them to drop the early cancellation fee (which admittedly is only 20 pounds). They say then sent me an SMS informing me of the changes, giving me 30 days in which to cancel. As I hadn&#8217;t cancelled within that time, I had to pay the fee.</p>
<p>However a UMTS modem for a computer &#8211; which I only use very rarely, simply isn&#8217;t switched on when it&#8217;s not in use. Normal SMS expire if they aren&#8217;t delivered after a certain period of time (10 days?) but they assured me this was a &#8220;special&#8221; SMS which didn&#8217;t expire. And I have often had problems with SMS when roaming, but they assured me this couldn&#8217;t have been the case.) Even if that had been the case, if the device is off for those 30 days, I wouldn&#8217;t receive the SMS in time. And anyway, I didn&#8217;t receive the SMS at all (but they claim I &#8220;must have done&#8221;)</p>
<p>And they also said they posted it on their website &#8211; nice one, as if I surf to three.co.uk every day to hang out &#8211; it&#8217;s the new Facebook, so much fun to be had there&#8230;.</p>
<p>They also say they are not obliged to provide this service, it&#8217;s not in the terms and conditions. I knew they&#8217;d say this. But there were <em>massive</em> advertisements for this feature when I went into the shop and bought it &#8211; I mean many huge person-size signs advertising the service. The guy in the shop told me this was the product, he didn&#8217;t say &#8220;this is the product until further notice&#8221;. I even have an email from 3 confirming this is the case, again with no mention of this being something which could expire or change:</p>
<blockquote><p>Austria is a 3 like home network. If you use data in this country then it’ll be first deducted from your allowance provided you are latched unto 3 network.</p>
<p>Normally out of allowance charges in Austria is £3.00 per MB however, as Austria is a 3 like home country if you exceed your allowance and are roaming to 3 network, you’ll be charged 10 pence per MB.</p></blockquote>
<p>I mean I understand services can change over their lifetime, and prices can change, etc. But I mean this is no minor service change:</p>
<ul class=tight>
<li>Before, when I bought it, I can use 1000 MB in Austria for <strong>£10</strong></li>
<li>Now, 1 MB in Austria costs £1.25, so 1000 MB would be <strong>£1,250</strong></li>
</ul>
<p>So I spoke to them, to all their &#8220;managers&#8221; etc, on the phone, and they told me there&#8217;s nothing they can do. I didn&#8217;t cancel it in time; they understand my frustration but their hands are tied.</p>
<p>They&#8217;ve fundamentally changed the service &#8211; making it useless to me &#8211; and now charge me for cancelling it</p>
<p>Thankfully it didn&#8217;t cost me much - £15 in extra MB used, and £20 cancellation fee. But that&#8217;s mainly due to the wisdom I acquired by being charged <strong>€2500</strong> by another mobile operator. <a href="http://britishexpats.com/forum/showthread.php?t=629044">This guy</a> got charged <strong>£500</strong> due to this change by 3, for example.</p>
<p>I hate mobile operators. Three is now added to my list of companies I&#8217;ll buy anything from again, the other being <a href="http://www.databasesandlife.com/deceptive-practices-in-mobile-data-tariffs/">T-Mobile</a>.</p>
<p>I mean this is capitalism &#8211; the operators are happy when they can charge people a few thousand Euros because they didn&#8217;t understand they were roaming, or didn&#8217;t understand the T&#038;C had changed. As a consumer one is powerless. Capitalism shouldn&#8217;t have come to this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/3-changes-price-from-10-to-1250-then-charge-me-to-cancel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ssh to easyname account</title>
		<link>http://www.databasesandlife.com/ssh-to-easyname-account/</link>
		<comments>http://www.databasesandlife.com/ssh-to-easyname-account/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 18:27:07 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=350</guid>
		<description><![CDATA[We have just released a feature on www.easyname.eu where I work &#8211; it&#8217;s an automated domain-registration and web-hosting service &#8211; that you can &#8220;ssh&#8221; (log in) to your easyname filespace account. I think that&#8217;s cool &#8211; I don&#8217;t know of many web hosting companies where that feature is offered!
(I didn&#8217;t program the feature &#8211; neither [...]]]></description>
			<content:encoded><![CDATA[<p>We have just released a feature on <a href="http://www.easyname.eu/">www.easyname.eu</a> where I work &#8211; it&#8217;s an automated domain-registration and web-hosting service &#8211; that you can &#8220;ssh&#8221; (log in) to your easyname filespace account. I think that&#8217;s cool &#8211; I don&#8217;t know of many web hosting companies where that feature is offered!</p>
<p>(I didn&#8217;t program the feature &#8211; neither the front-end nor the back-end &#8211; but I just released it, so I would have been responsible for any problems &#8211; although there weren&#8217;t any&#8230;.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/ssh-to-easyname-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wasted 3 hours of my life</title>
		<link>http://www.databasesandlife.com/wasted-3-hours-of-my-life-twitter/</link>
		<comments>http://www.databasesandlife.com/wasted-3-hours-of-my-life-twitter/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 12:29:11 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=347</guid>
		<description><![CDATA[Working at Easyname, I heard from our support department that strange things were happening with PayPal payments &#8211; either they seemed not to be appearing on our site, or there were errors in the logfiles, and the users were complaining.
This is obviously a &#8220;drop everything&#8221; kind of bug &#8211; no matter the fact I was [...]]]></description>
			<content:encoded><![CDATA[<p>Working at <a href="http://www.easyname.eu/">Easyname</a>, I heard from our support department that strange things were happening with PayPal payments &#8211; either they seemed not to be appearing on our site, or there were errors in the logfiles, and the users were complaining.</p>
<p>This is obviously a &#8220;drop everything&#8221; kind of bug &#8211; no matter the fact I was deep in the middle of doing some other software development (or even if I&#8217;d been working at another customer), if stuff to do with money doesn&#8217;t work, everything else must be stopped and that must be looked at with the highest priority.</p>
<p><strong>What I did:</strong></p>
<ul class=tight>
<li>Look at the logfiles, there was an &#8220;unknown error&#8221; there (not very helpful!)</li>
<li>Set up a developer account for Paypal, get our software on my dev system to work with it</li>
<li>Test the PayPal IDN protocol using their tools and my newly set-up development environment</li>
<li>Change the software to produce more logging (rather than &#8220;unknown error&#8221; &#8211; although to my knowledge, that log had never been printed before, in the year or so the system was online)</li>
<li>Release the version with more debugging online</li>
<li>Communicate with various people I&#8217;m working with (management, support, ops, ..)</li>
<li>Test the new version by making a payment</li>
<li>See that it still didn&#8217;t work</li>
</ul>
<p><strong>What I should have done:</strong></p>
<ul>
<li>Do a search using twitter.</li>
</ul>
<div style="margin-left: 40px"><a href="http://twitter.com/bluecrowbar">bluecrowbar</a> I&#8217;m seeing problems with <strong>PayPal IPN</strong> (Instant Payment Notification). The notification is currently not instant. <em>13 minutes ago from Twitterrific</em><br />
<a href="http://twitter.com/mystore">mystore</a> <strong>Paypal IPN</strong> payments recived, they were just 4 hours late ;) <em>27 minutes ago from web</em><br />
<a href="http://twitter.com/mystore">mystore</a><strong> </strong>@staleedstrom Check @chomasia &#8217;s This page has details of the <strong>IPN </strong>issue with <strong>PayPal </strong>http://bit.ly/3yJ1w <em>about 3 hours ago from web</em><br />
<a href="http://twitter.com/tonydalian2009">tonydalian2009</a><strong> Paypal IPN</strong> doesnt work by now. sigh~~~<em>about </em><em>4 hours ago from web</em><br />
<a href="http://twitter.com/travelfish">travelfish</a> What part of the word &#8220;Instant&#8221; in <strong>IPN </strong>doesn&#8217;t <strong>payPal </strong>understand? <em>about 4 hours ago from TwitterFox</em></div>
<p>What can I say? Looking at logfiles is such a legacy approach to bug solving.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/wasted-3-hours-of-my-life-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optical device</title>
		<link>http://www.databasesandlife.com/optical-device/</link>
		<comments>http://www.databasesandlife.com/optical-device/#comments</comments>
		<pubDate>Fri, 15 May 2009 23:35:43 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=343</guid>
		<description><![CDATA[I saw a cool device today. One of my customers manages data centers and they have a new data center and need to connect it to their old ones, so they&#8217;ve bought/rented some &#8220;dark fiber&#8221; between their data centers and have fiber multiplexers at each end so that lots of fiber-optical devices at each end [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a cool device today. One of my customers manages data centers and they have a new data center and need to connect it to their old ones, so they&#8217;ve bought/rented some &#8220;dark fiber&#8221; between their data centers and have fiber multiplexers at each end so that lots of fiber-optical devices at each end can all talk to one another over this single dark fiber. (Or something like that &#8211; I don&#8217;t know too much about networking equipment!)</p>
<p>So basically this multiplexer looks like any other switch thing, a long horizontal device with a bunch of identical ports on the back, each with a number etc, and one &#8220;master&#8221; port which connects to the dark fiber. (only the optical sockets look slightly different from e.g. RJ45 sockets..)</p>
<p>But then i noticed, this device <em>only</em> had the identical data ports/master port on the back. I couldn&#8217;t find a power socket, I looked at all of its sides, and was confused for a while. Until i worked out the reason why I couldn&#8217;t see the power socket &#8211; the device was purely optical and didn&#8217;t need power!</p>
<p>Imagine that, data center, a bunch of hard-core networking and computing equipment, the last thing one expects is devices that don&#8217;t need power!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/optical-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.aaa-plus.com</title>
		<link>http://www.databasesandlife.com/wwwaaa-pluscom/</link>
		<comments>http://www.databasesandlife.com/wwwaaa-pluscom/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:23:17 +0000</pubDate>
		<dc:creator>adrian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.databasesandlife.com/?p=335</guid>
		<description><![CDATA[
Thanks the the internet archive I found one of the first (or one of the only?) websites I designed i.e. I did the graphics, did the &#8220;implementation&#8221; using a tool which produced HTML, etc. (Although the company logo etc already existed, I didn&#8217;t write the texts..)
This was for AAA+ which was the first company I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://web.archive.org/web/20001204172400/www.aaa-plus.com/"><img src="/blog-attachments/20090428-aaa-plus.png" width=191 height=137 align=left style="padding-right:10px; padding-top:3px" border=0></a></p>
<p>Thanks the the internet archive I found one of the first (or one of the only?) websites I designed i.e. I did the graphics, did the &#8220;implementation&#8221; using a tool which produced HTML, etc. (Although the company logo etc already existed, I didn&#8217;t write the texts..)</p>
<p>This was for AAA+ which was the first company I worked for in my life, which was also the company I worked for just after coming to Vienna, so has a lot of associations of newness in my life.</p>
<p>And I think it doesn&#8217;t look too bad :) <a href="http://web.archive.org/web/20001204172400/www.aaa-plus.com/">www.aaa-plus.com</a> (Internet Archive)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.databasesandlife.com/wwwaaa-pluscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
