Tue, 29 Jun 2010
Another day, another bill
Like most countries, the UK has been valiantly trying to force consumers to reduce their paper usage. Let's set aside the fact that most paper is not generated by consumers. And that, it isn't about reduce usage but reducing expenses relating to delivery of this paper.
Let's us also leave aside the fact that most airlines want consumers to print out their boarding cards at home. Because it reduces expenses incurred in maintaining staff at airport check-in counters. Anyway, most communications providers have taken up this challenge by making it more expensive to obtain a paper bill.
But I don't want a paper bill, per se, what I am really after is a copy of the bill I can keep for my own records. And print if I so need to.
Both Vodafone and Talktalk will send you notifications, via email, that you have a bill.
But neither of them allow you to obtain a copy of the PDF that would have been printed and sent to you.
Instead you have to fart-arse around with their systems to get (at best) a CSV file.
Why, oh why, can neither of them just send the PDF that was going to be generated? That have a bill run process anyway, it generates the PDF, sends the emails, and then promptly discards the PDFs. That would mean I have an immediate archive of all my bills from both companies in my email.
Just Broken.
[ / thisisbroken] Trackbacks (0) Comments (0) permanent link permanent link
Sun, 27 Jun 2010
Heartbreaker – ★★★★½
The setup and premise is fantastic. Alex is a professional in the love game.
He job is ensure that people do not end up with the “wrong” partner.
He is good looking, charming, speaks a multitude of languages are swears by a moral code to Never break-up a happy couple.
His mission is to break up the seemingly perfect couple — Juliette (played by Vanessa Paradis who has a lovely Diastema) and Jonathan (Andrew Lincoln) — before they marry in 10 days.
Stylish and set in luxurious Monaco.
It's damn French.
It's damn funny.
Plenty of high-tech. spy stuff, drama about loan sharks, lots of dancing and lots of fun, if you get the chance, see this. You'll enjoy it.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Sat, 26 Jun 2010
Get Low – ★★
A story about getting people together to tell them a story of regret involving the main character, which we see at the start.
The story itself isn't very dramatic. Which is why there isn't a film about that. Instead we have the story about getting people to tell the story.
This is a great example of a movie with a mind-boggingly amazing cast (Bill Murray, Robert Duvell, Sissy Spacek, Lucas Black) having a script that is crap.
Having the director present, to discuss the film, after the screening lifted this from a 1 to 2.
Hearing Aaron talk about the different styles of Duvell, Murray and how the editing process was actually done (Final Cut Pro) was very entertaining.
The story drifts, the soundtrack doesn't annoy and the filmography is alright. Oh, the period setting is done very well. Not much else to recommend it though.
‘Get Low’ refers to burying in the film. Something I think that should have happened to this film.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Fri, 25 Jun 2010
The Rebound – ★★★½
Another “coming of age” movie. All about age differences and timing. Somewhat ironical given the relationship Catherine Zeta-Hones is in.
Had some realism – from what I have observed of relationships with big age differences – but this is also very similiar to Prime (with Uma Thurman) except that this also involved children (and thus you get the associated children gags).
Seems to really play off of Aram Finkelstein (played by Justin Bartha), one of the protaganists, being Jewish. Just like Prime. The Jewishness only added two (or, maybe, three). I felt the film could have done without it. It might have forced the writers to come up with something a bit more original.
For me, the reason to watch this was Catherine Zeta-Jones who, as one of the characters notes is a MILF. The chemistry between two leads is really what saves this film.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Barry Munday – ★★★★½
This is a fairly classic “coming of age” story involving an unwanted pregnancy. Like the others in this genre, it has a twist (in this case neither of the parents are teenagers, like Juno) but revealing it would give away much of the plot.
Oddly this film was finished in 2008 but has taken two years to surface. Apparently the first cuts just did not work. So it was redone a few times. I am glad that the extra time was done, since this film feels "right".
Patrick Wilson, from Watchmen, is perfecly cast as Barry. The other big names make this a delight to watch, as they put in a comedic turn.
There are quite a few cringe worthy moments, especially when Barry is being his pick-up artist self. But he evolves and makes the film warm-hearted.
If you end up seeing this film, I think you'll enjoy it. It won't challenge you but it will entertain.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Oddly, I have had four different people ask me about the best way to begin a Django project or setup their system to make it easy to develop with Django.
Since I've now given my response via email so many times, I figure I might as well broadcast it and hopefully this will help others as well
My assumptions:
What we will do is create a private binary directory and another Python modules. Then take a checkout of the two most important Django projects, and make them work.
First: create your user
$ sudo adduser newbie $ ssh localhost -l newbie $ whoami newbie
Then we want to create some local bin and lib directories. First the binary directory
$ mkdir ~/bin # On Ubuntu/Debian, this will automatically be in your PATH the next time you login
And now a local directory for our various libraries
$ mkdir -p ~/lib/python $ echo "PYTHONPATH=~/lib/python:" >> ~/.bashrc $ echo "export PYTHONPATH" >> ~/.bashrc
This will add that directory to our Python path. If you happen to also use another language you can put things into ~/lib/ruby, ~/lib/perl as appropriate
$ mkdir ~/Projects $ cd ~/Projects
Here is where we will store copies of upstream software. What is the reason for using the repositories rather than packages? This allows us to checkout specific versions to match what our clients might be using. Or test things against newer versions of the upstream project.
First, let's setup Django. I tend to use git by default, especially if the upstream is using Subversion. If they are using Mercurial or Bazaar, I use those directly.
$ git svn clone -s http://code.djangoproject.com/svn/django/ Initialized empty Git repository in /home/newbie/Projects/django/.git/ Using higher level of URL: http://code.djangoproject.com/svn/django => http://code.djangoproject.com/svn r1 = 5cda37203ffa6ea83da2958a95c377984482877f (refs/remotes/trunk) A django-docs/images/flatfiles_admin.png A django-docs/images/users_changelist.png A django-docs/model-api.txt A django-docs/build.py A django-docs/db-api.txt A django-docs/writing-apps-guide-outline.txt A django-docs/templates.txt r2 = b8249ac45e2154933b9649fd8181d5769e31c9fc (refs/remotes/trunk) A django/utils/feedgenerator.py A django/utils/datastructures.py [...] r13399 = f3902c67a3b8788de2145899e435a394c512b455 (refs/remotes/releases) M tests/regressiontests/m2m_through_regress/tests.py r13400 = cd72207306a5a4eecdf07f65c109f37c8317ed81 (refs/remotes/trunk) $
Now we have Django, push it into our python path
$ cd ~/lib/python $ ln -s ~/Projects/django/django/ $ python Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> django.VERSION (1, 2, 1, 'final', 0)
Now, let's do the same for South. South is a database migration helper for Django. These are the two things you want to have in any Django at a minimum. There are also plenty of other amazing things like haystack, piston, satchmo, etc. You can follow the same recipie for them too.
$ cd ~/Projects $ hg clone http://bitbucket.org/andrewgodwin/south/ destination directory: south requesting all changes adding changesets adding manifests adding file changes added 802 changesets with 1340 changes to 183 files (+1 heads) updating to branch default 143 files updated, 0 files merged, 0 files removed, 0 files unresolved $ cd ~/lib/python $ ln -s ~/Projects/south/south $ python Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import south >>> south.__version__ '0.7.1'
Finally, we want to be able to create Django projects. There is a great helper called django-admin that will do this. Let's put it into our path
$ cd ~/bin $ ln -s ~/Projects/django/django/bin/django-admin.py $ hash -r
That last statment will cause your interpreter to re-read PATH and make anything new available for execution.
Now, you should go ahead and create your projects. There are a variety of ways to do this. However what I like to do is keep Django applications separate from the Django project. That way, they can easily be re-used if required.
So, for a project called 'foo', we might have
$ mkdir -p ~/Work/foo $ cd ~/Work/foo $ mkdir foo.example.com $ mkdir templates $ mkdir media $ mkdir <individual apps>
For each individual app, put them into the Python library. And you then have your re-usability from within Django. For a application called 'bar', you would do:
$ cd ~/Work/foo $ django-admin.py startapp bar $ cd ~/lib/python $ ln -s ~/Work/foo/bar
And now, in your Django foo.example.com setting.py's file you can put 'bar' as one the installed applications and things will Just Work
Obviously there are many way to slice this particular mango, but I've found that this works pretty well for me. You can spruce it up by revision controlling each directory in your project (I do) and also take advantage of things like virtualenv and Fabric to make deploying just as easy as developing. But I'll leave those topics until a later date
[ / django] Trackbacks (0) Comments (0) permanent link permanent link
Thu, 24 Jun 2010
billiantlove – ★★★★
With great love, comes great sex.
This felt like a truly British film, kind of like it captured the essense of Lily Allen (Noon looks a lot like Lily Allen), Natasha Beddingfield, Kate Nash. The photage is ‘raw’ there is probably too much nudity for this film to get a large run in the UK (or elsewhere).
Basically this is an exploration of young lovers, one of whom is a photographer, the other a taxidermist. So there is this undercurrent of trying to capture the present (photo, stuffed animals) for the future.
That exploitation theme runs throughout the movie, in fact you could say it is self-referential too. The story is fairly simplistic, so I'll focus more on the technical aspects of the film.
The costuming was excellent; Mel O'Connor really captured the „typical artist„ look. Slightly odd and somewhat edgy. Sometimes I wonder if artists really dress this way, or only because everyone expects them too
The soundtrack fitted the film: obscure, offbeat but all good. The Cinematograhy: lush, raw and very personal.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Silent Voices – ★★★½
The introduction of this movie felt really contrived. A group of people waiting to go on a prison visit, when one of them suddenly becomes hysterical because she is unable to read the piece of paper telling her if this is the right place. The pullaway shot of one person tugging the arm of another to drag them away from the specticle was a nice touch though.
There are three major story threads going on during this movie:
A young couple who have met, fallen for each other and are struggle to remain together even though one is behind bars
An older couple who are struggling to find direction, money and love with each other
A mother who is trying to understand what has happened to her son
Each of these has a number of sub-threads. Unfortunately, I found both the first two story threads to be clichéd. Cute, but clichéd. Obviously each of the threads intersects, and the finale helps you understand the title.
Farida Rahouadj's portrayal of Zorah was very compelling and makes up for all the other imperfections of the movie. It held the movie together and made it watchable. 3.5 out of 5.
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Once again, it is Edinburgh Film Festival time.
Which means a lot of great, obscure, or pre-release movies (and some dross and dreck thrown in too) to watch.
This week, rather than spending my meagre money on rather pointless stuff like food, instead I'll be spending it on movies!
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Wed, 23 Jun 2010
Yes, folks. If you haven't been stalkfollowing me on various other online channels (Facebook, Linkedin, Twitter, etc.), it might have appeared to you as if I was no longer alive.
A blog with no updates in over 6 months! Heavens.
However, the truth is that I've had a number of pressing matters to attend to.
Mostly they relate to my personal finances and to my Fathers' health.
Fortunately both of them are slightly better now.
I shall endeavour to post once a week, or more frequently, when I've got interesting news / reviews / rants I'd like to share with all three of you (Hi Mum! Hi Dad! Hello you other weirdo!)
[ / blogging] Trackbacks (0) Comments (0) permanent link permanent link
Wed, 28 Oct 2009
Note: via Blog post (obviously different formatting) and sent by email
roughly:
Lying in one, lying in all.
That is from Steve Waddington.
Please see the attached screenshot — I have obliterated service identifying information.
I find it telling that what I said in my original post, of all the things there the one you decided to fact-check was the number of emails between us.
And you got that wrong.
What was is you said again? Falsum in uno, falsum in omnibus
? Do you still stand by that statement?
If you have looked at the original complaint, no one asked for anything but information on 'what went wrong'.
It simply noted that fact that payment occurred, and we were disconnected and went on to say "We find the above experience of diconnecting [sic] our service by EXETEL a very poor customer relationship experience."
The response to that could have been: "Yes, that is a poor customer experience. We will look into it and see if we can improve."
Instead we had an accusatory email back commenting, firstly, of the amount of time of the disconnection.
As if someone paying for something and not receiving it for only 1 minute is OK.
The point being missed – we paid for something and we did not receive it.
The point being missed -- this is a poor customer experience
The second email then, falsely, accused us of not actually paying in the first place! Later the individual concerned, after the TIO complaint, clarifies that 'yes', we did indeed pay.
Very telling indeed, then, when you were pointed to my blog entry and rather than pick up on the stratgeic ("we are getting feedback, for free, on how we can improve our processes") you looked at the tactical ("he is lying! How I prove it and thus be happy in ignoring what was said").
As I said, It is easier to hear when your fingers are not in your ears.
In light of your recent blog post, and the recently released TIO report, I find Exetels' behaviour all the more perplexing.
Complain to Exetel, get your service contract summarily terminated.
Complain about Exetel, and get libelled publicly.
But I guess when you have 1/6th (163 out of 620) of your complaints related to Customer Service (from the TIO report) and 3% of your own existing customers (from your blog post) complaining, you get the reputation you earn.
[ / sydney / isp] Trackbacks (0) Comments (0) permanent link permanent link
Tue, 27 Oct 2009
But my thanks to the ladies who helped me with both (1) and (2). Feedback is always appreciated.
[ / salsa] Trackbacks (0) Comments (0) permanent link permanent link
Sun, 25 Oct 2009
Just a quick note.
Most routing is done on the basis of the destination address, unless you have a BGP feed.
However occassionally you need to do routing on the basis of some other policy: in my case this weekend it was the source address.
I spent quite a few hours this weekend looking at various Google results, lartc.org, www.policyrouting.org (the latter has a fairly detailed book with some useful examples) before I came up with a solution that works for me.
ip rule add from <source addr> table 203 ip route add default via <new default> table 203
You can also use the ToS field and act upon fwmarks thus linking your routing with your iptables policy.
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Thu, 15 Oct 2009
I read this post by Steve Waddington of Exetel where he says that customers never seem to follow-up with him when he asks them about their poor customer experiences. I just had to laugh. I had actually just filled a complaint with the TIO about Exetel.
I have emailed Steve Waddington a number of times, generally outlining problems, but I am yet to ever receive a response.
Generally if you want to hear feedback from your customers, you have to take your fingers out of your ears.
Here is my (most recent) Exetel story.
To set the scene, I am synchronising a large backup of data. Think around 100Gb. In reality a small amount.
Towards the end of September, we receive an email indicating that we had used a large amount of service. Furthermore that we had 72 hours to pay an interim fee of AUD$100. The email was sent in the early hours of a Friday morning. Which effectively turned it into a single business day. Heaven help you if you had decided to take a long weekend.
At any rate, the fee was paid by that afternoon and a name and receipt were obtained. Everything should have be hunky-dorey.
Come Monday morning - the Internet service had mysteriously failed. After some remote, expensive AU to UK phones calls and diagnostics I determined that the problem was that Exetel's system had disconnected the service anyway.
I emailed them to see what the problem was, and contact was made from Australia. Around the middle of the day, service was restored.
A complaint was filed with them (reference: #1691636), that day, which was summarily responded too. I left things for a while since I was busy.
But on the 13th Oct night, I decided to file a complaint with the TIO (reference: 09/251856). Here is the full text:
Describe your complaint
On 25 Sep, roughly 07:30am, an email was received from Exetel that they required an interim payment as our usage had exceeded AUD$100. The email indicated that if payment was not received within 72 hours - the service may be suspended.
At roughly 3:15pm, on 25 Sep - i.e. the same day. A payment of AUD$100 was made and we were issued receipt number 346650646 by an employee who indicated that there name was Rukshani.
On 28 Sep at roughly 8am, the Internet ceased to function. After some investigation we determined that Exetel's automated systems believed that the payment had not occurred.
#1: I sent an email at 11am on 28 Sep to their billing department, along with their senior management, with payment and service details asking why this occurred.
#2: A complaint was sent by the payee at 11:30am on 28 Sep indicating that we were unhappy with the service -- having been customers of long standing (over 4 years) -- being disconnected for over 4 hours despite paying is annoying.
Particular when this was not through fault of our own. Nor a technical fault.
How did the service provider respond to your complaint
#1: On 30 Sep at 12:45 an email was received from James Lowe, who said "Your service is un block now [sic]". No explanation was provided for the outage and non-application of the payment made.
#2: 2 responses were received to this email.
#2a: At ~11:50am on 28 Sep we received an email from Larry Kaeto who said that the service was unavailable for 2hrs 31mins, not the 4hrs as we had claimed. Additionally he indicated that we had a residental service which is not to be relied upon for business/mission critical requirements and suggested we purchase a more expensive service which has "business grade type support".
#2b: At ~09:40am on 29 Sep we received a further email from Larry Kaeto who claimed that no payment had been received by Exetel on 25 Sep.
How would you like the service provider resolve your complaint
Exetel appears to pride itself on its automated systems. (c.f. http://johnl.blogs.exetel.com.au/index.php?/archives/2783-Automating-Key-Systems-Is-A-Never-Ending-Task.html)
However, in this case, the automated system issued a demand for money. The money was paid, but it suspended access to the service anyway.
Service should not have been disrupted for 1 minute nor 150 minutes nor 240 minutes.
I believe the charge of AUD$100 and the monthly charge should be credited back to us for the hassle.
I've put in the headings as they are on the TIO complaint form, and made the URL a link otherwise it is exactly as I submitted it — which is also why the text is not very lengthy, as the TIO restrict how much you can submit.
This morning, at 09:10 I received an email from Exetel acknowledging receipt of the TIO complaint and asking Please detail in a point by point manner your concerns. This email was from Larry Kaeto. It also contained a copy of the most recent LNS logs. I replied with a full copy of the complaint as I submitted it to the TIO (reference: #1770435) and also indicated I would speak with the TIO to confirm what they had sent to Exetel (Exetel reference: #1771491).
By 12:56, Larry Kaeto was able to responsd, quoted here and edited to occlude privacy information:
Exetel acknowledge payment 25/9/09 was manually processed 25/9/09 but the record to remove the timer to suspend in 72 hrs was not removed.
I did not see the manual payment of the 25/9/09. Sorry for my ''incompetence'' for saying payment was not made.
The duration of suspension was 2 hours and 28 minutes (or thereabouts) as the facts show below (our session logs and your usage time logged in and out) and nto 4 hours as is claimed.
As gesture of goodwill, Exetel will provide a refund of $100
Exetel has made a commercial decision to end the relationship with you. See e-mail sent separately titled ''Ticket #1771491: XXXXXXXX5X - Notice of Termination - XXXXX XXXXXX ''
So, as you can see from John Linton's post, if there is a problem with taking payment – your service is summarily disconnected.
And, as you can see here, even if they take payment, but their automated system fails, if you complain about it, your service is summarily disconnected.
It is much easier to listen to your customers when you take your fingers out of your ears.
[ / sydney / isp] Trackbacks (0) Comments (0) permanent link permanent link
Fri, 18 Sep 2009
(aside: I have a number of blog posts in draft – don't worry they won't spam the various planets – but this was timely so I pushed it out first)
The most recent version of Firefox 3.x will also prompt you to update your Flash plugin if it is out of date. According to Ken Kovash, the response has been phenomenal. Almost 10,000,000 click through.
That is 10,000,000 failures.
Like a lot of people, I provide technical support for my Windows using family (and some friends). So I get to see how badly Windows is in the 'update' space. It is pretty common to have: Windows, Anti-virus, Java and one / two other applications (e.g. Google apps, Skype, Yahoo IM, etc.) prompt you with little annoying notification bubbles.
Most of them have trained themselves to not look in the bottom right of the screen and to ignore requests to update.
Which means that whenever I see a big, important update, like the Firefox one — I end up having to remotely take over their machine and do it on their behalf.
The user experience was:
So far, so good.
Excellent. Click on link.
Great. It also includes, checked by default, a download of McCafe's anti-virus tool something or other.
Why is Adobe offering me more than just an upgrade of the product I am after? Apparently this is very common in the Windows world (think Safari included with iTunes, etc.)
It includes instructions on how to enable things so that this plugin is updated by Adobe all the time. I, rather pointlessly, ponder why Flash does not do this itself.
At this point a normal person would think that they are now secure. Nothing could be further from the truth. Adobe has stupidly decided that first you need to have their update plugin. Then you need to actually do the update. FAIL.
I click through to Adobe's site (again), this time, it figures out that it needs to update Flash. It autoinvokes the autoupdate plugin and does the update.
That was a total user experience failure.
Not Mozilla's fault but Adobe's.
But Mozilla can make a difference in this area. And work around the stupidity of Adobe.
That implies that there is a, separate "Your plugins are out of date page" distinct from "You've installed an upgraded version of Firefox"
[ / software] Trackbacks (0) Comments (3) permanent link permanent link
Fri, 14 Aug 2009
It is odd seeing various reports that implementing properly state-funded health care in the US will lead to problems with death panels, or poor service.
I can only really comment on my own experience of the NHS.
I've found that the system of registering yourself to a GP is fairly pointless, time-consuming and buearucratic. Actually seeing a GP requires it to be an emergency or you to "plan" your sick days, because you need to have an appointment or be willing to wait, many, many, hours.
However, once you have a referral to a specialist, and you see them, further appointments, tests other diagnostic stuff is amazingly fast.
I've been in and out of hospital all this week on various days and I've got at least another 3 - 4 appointments covering the next month already lined up.
I don't recommend visiting hospitals so frequently but if you have, the NHS is a nice way to do it
[ / health] Trackbacks (0) Comments (2) permanent link permanent link
Sun, 09 Aug 2009
I just received an automated call from Santander.
Let's set aside the stupidity of calling me on a Sunday, when all banks are closed, as the parent organisation being in Spain and the call centre being in India and this being a case of cultural stupidity.
What really annoyed me is that they wanted me to answer a few security questions, like what my address is, my date of birth.
They called me.
There is no guarantee that the person who claims to be from Santander is actually from there. It could be any random person calling and pretender to be them.
But what mechanism could they use to validate themselves? What about using two-factor authentication?
They could have called me from a number that they print on the back of the card, which is would have at least been a good starting point. It is not impossible to spoof an originating number but does increase the burden of effort on someone trying to perform identity theft. Fail one.
After explaining this to the women on the other end, she kept asking me to fill in the questions and then hung up in a gruff. Fail two. I had a similar call from HSBC earlier in the week as well. After explaning that since they called me, they either have something to tell / sell to me or they don't. He agreed. HSBC wanted me to come in for an appointment to review some ways they can "help me".
So it was a marketing call. At least HSBC have someone who is able to independently reason. They only score a single fail for trying to have me authenticate to them.
Principals of outbound calling:
[ / security] Trackbacks (0) Comments (0) permanent link permanent link
Fri, 07 Aug 2009
I came across Graze, a few weeks back and thought that even though I try to eat healthy, it might be simpler for me if I just had the food delivered.
It can be a hassle buying for one and then finding out that you don't like the food — or that you have to buy it in bulk just to have a portain of it each day. Plus food is nicer when it is fresh.
The boxes are, apparently, custom designed to have three different foods in them. My first box contains, pineapple, apple strudel and cashews. It looked like this:

And about 2 minutes later it looked like

Pretty good but the pineapple was almost fermented — it had not kept very well. I dropped the guys at Graze an email saying that. I was not expecting much, as I am on a trial offer and the first box was free, after all. But I was pleasantly surprised when I received a response from Natalia apologising for the pineapple and indicating that my next box would also be free.
Sweet!
My second box, below, also disappeared pretty quickly. Although I was not a fan of the dried raspberries as compared to the grapes and nut mix.

Their website is pretty slick, and the sign-up process is lovely. My one complaint is that when you rate foods, you have to 'bin' them, or 'love' them. I don't mind cashews and dried raspberries — I'd still like them to be sent up, just not as as frequently as, say, apple strudel. I'd rather give it a thumbs up, thumbs down are wavy hand.
I think that at £2.99 / box, the service is a bit too expensive for an individual to have. But a company might be able to arrange a "bulk rate". However one thing I particularly like is that each box contains a different image inside the lide. If they included some kind of inspirational quote as well, it be even better.
[ / health] Trackbacks (0) Comments (3) permanent link permanent link
Tue, 30 Jun 2009
Going to see films has been, for me, usually a solitary exercise.
Either no one was interested in seeing what I wanted to, my tastes are somewhat elceltic. Or they wanted to see that right at the beginning or right at the end.
Fortunately there are film festivals where other people with eclectic tastes gather. And even more fortuitously there is one in Edinburgh.
Whilst I would have loved to see some films during working hours -- that was not to be. Instead I saw My Last 5 Girlfriends. It stars Brendan Patricks and, judging by the swooning going on in the audience, he is likely to be the Hugh Grant of his time. The story is a cross between Eternal Sunshine of the Spotless Mind and Being John Malkovich in style.
Most of the girlfriend scenes are what you expect them to be: alternatively predictable, funny and often cringe-worthy. That is not because the script is bad, actually it is the opposite. It is due to the fact that everyone has gone through this exact set of problems and issues with girlfriends. If you get the chance, well worth seeing. ★★★★☆
Oscar Redding wrote and stares in Van Dieman's Land. The movie is graphic, haunting and beautifully shot. In particular I liked the fact that there was little "flinching".
If the guys had to cross the river, the camera was setup and the guys crossed. Buttocks and all.
If the guys had to hit someone, and they were still not dead. You hit them again. And again.
If you want 'popcorn' entertainment, this isn't for you. Why isn't this a 5? Basically — even though I was unaware of the original historical story — I felt that the ending of the film was telegraphed too early. ★★★★☆
[ / edinburgh] Trackbacks (0) Comments (0) permanent link permanent link
Wed, 13 May 2009
That basically sums up my interactions with TalkTalk, so far.
But, let's begin at the beginning.
Having moved to Edinburgh earlier in the year, and finding a place, the next most important thing is to get connected to the 'Net. I had a look around at various deals. The closest the UK has to broadbandchoice.com.au is SamKnows.
It basically told me that in my exchange area I could choose between BT, TalkTalk and Virginmedia. Despite the fact that LLU has been around for longer here than in Australia very few companies choose to put in their own equipment. That is because openreach, apparently, do not attempt to charge an arm and a leg for their service. Just an arm and a foot.
I quickly discovered my choices were:
Obviously, this was a no brain-er. Particularly as the "activation" here is related to re-connecting the MDF(and/or street cabinet) back to the exchange — which is literally 10 metres walk away from me. I choose TalkTalk.
TalkTalk's offer was (at time of writing – 2009-05-12), £11.25 line rental and £6.49 for broadband. Yes, £17 / month. As offers go, it is not a bad one. I get unlimited (i.e. no longer than 60 mintues) call to any landline in the EU, Australia, New Zealand, Canada and the United States.
The first catch is that whilst the offer is for 18 months, if you are a "new" customer, you have to sign up for 24 months.
That is because TalkTalk have no confidence in the quality of their product or it's continued competitiveness. There can be no other reason, since you are also obliged to pay more for a 'new' install.
I believe that is broken because it was never any specific persons' job to think about it.
The second catch that occurred is the wait time. I know this information after the fact, after having discussed it with a number of TalkTalk employees, but their systems impose a minimum 14 day (that is working days) delay before submitting an order to BT.
This means that from the time you order the Phone + Broadband service, it can be up to 6 — yes, six — weeks before you have network connectivity.
Catch 3 is not having any access / idea about your usage -- but being charged for it!!!
Again, you get unlimited usage (i.e. up until 40Gb) but there is no mechanism to see your existing usage for the month. Why bother to charge for something where there is no meter?
Catch 4 is having to specifically sign-up to new 'price plans' -- why not just make it automatic?
It is good that price changes are announced in the corporate blog but as it notes on TalkTalk price changes, you have to opt-in to every change which is beneficial to you. For every change (rental increase, etc.,) that is not; you are automagically opted in. Nice.
Catch 5 is discovering that the blog engine will take your comments but moderate them out the wazzo. My comment was about Catch 4 -- price increases you are automatically opt-ed in for, whereas price decreases you are not.
Catch 6 is finding out that whilst TalkTalk can email you, you can never respond to an email -- you either have to use their 'contact us' web form, or ring.
What is with arrogant companies who want to use email as a one-way tool? Why can't they tie the sending address to a ticketing system so that if/when a customer replies it can be looked at? This is trivial to do, and I've done it at a number of companies. Without exception, when customers realise they can use the existing tools -- rather than to find the number on the website, or work out some stupid 'contact us' form they are happier.
[ / thisisbroken] Trackbacks (0) Comments (0) permanent link permanent link
Tue, 16 Dec 2008
... cry.
In my prior entry, I noted that I resigned from Debian. I also upgraded my system to Ubuntu.
This is my story.
Something that I think would be very useful, would be a script that took a stable Debian release and updated you to the latest Ubuntu LTS. In the past I used be okay with the release cycle that Debian had but now-a-days, I think I would prefer knowing an upgrade is coming every 24 months and be able to plan for it.
[ / software / ubuntu] Trackbacks (0) Comments (0) permanent link permanent link
... and Debian.
Today I resigned from Debian. It has been something I have been thinking about for quite a while but it was a recent post by Bastian Vethur that brought about a tipping point.
For me, Debian has always been about new, and shiny. I've always used unstable, and over the last few months had switched to experimental because the flow of updates had basically stopped. Bastian's graphic shows the issue dramatically.
There are also a whole bunch of other reasons but if I have not already discussed the political reasons with you in person they do not bear repeating again.
So, I changed my laptop over to Ubuntu (running Jaunty, and updating daily). The process was far from simple, but if you are used to living on the unstable (or, even, experimental) edge of the blade relatively uncomplicated.
I noted the issues I had upgrading in another entry.
Anyway, Debian is going through a growing phase. Whether it grows to be bigger, more relevant or more useful is what others will have to decide. It's been fun, and I hope the future brings success.
[ / debian] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 15 Dec 2008
I use exetel for a number of services in Sydney.
I have always found them to be the cheapest, even if their ability to support their service is sub-optimal.
An example is right now, they are currently totally offline.
a2@eve:~$ dig +trace exetel.com.au ; <<>> DiG 9.5.0-P2 <<>> +trace exetel.com.au ;; global options: printcmd . 338458 IN NS G.ROOT-SERVERS.NET. . 338458 IN NS H.ROOT-SERVERS.NET. . 338458 IN NS I.ROOT-SERVERS.NET. . 338458 IN NS J.ROOT-SERVERS.NET. . 338458 IN NS K.ROOT-SERVERS.NET. . 338458 IN NS L.ROOT-SERVERS.NET. . 338458 IN NS M.ROOT-SERVERS.NET. . 338458 IN NS A.ROOT-SERVERS.NET. . 338458 IN NS B.ROOT-SERVERS.NET. . 338458 IN NS C.ROOT-SERVERS.NET. . 338458 IN NS D.ROOT-SERVERS.NET. . 338458 IN NS E.ROOT-SERVERS.NET. . 338458 IN NS F.ROOT-SERVERS.NET. ;; Received 228 bytes from 192.168.1.1#53(192.168.1.1) in 58 ms au. 172800 IN NS ADNS2.BERKELEY.EDU. au. 172800 IN NS AUDNS.OPTUS.NET. au. 172800 IN NS NS1.AUDNS.NET.au. au. 172800 IN NS NS2.AUDNS.NET.au. au. 172800 IN NS DNS1.TELSTRA.NET. au. 172800 IN NS SEC1.APNIC.NET. au. 172800 IN NS SEC3.APNIC.NET. au. 172800 IN NS ADNS1.BERKELEY.EDU. ;; Received 413 bytes from 2001:503:ba3e::2:30#53(A.ROOT-SERVERS.NET) in 620 ms com.au. 259200 IN NS ns1.ausregistry.net.au. com.au. 259200 IN NS ns2.ausregistry.net.au. com.au. 259200 IN NS ns3.ausregistry.net.au. com.au. 259200 IN NS ns3.melbourneit.com. com.au. 259200 IN NS ns4.ausregistry.net.au. com.au. 259200 IN NS dns1.telstra.net. com.au. 259200 IN NS au2ld.CSIRO.au. com.au. 259200 IN NS audns.optus.net. com.au. 259200 IN NS ns1.audns.net.au. ;; Received 354 bytes from 2001:dc0:2001:a:4608::59#53(SEC1.APNIC.NET) in 1302 ms exetel.com.au. 3600 IN NS ns2.exetel.com.au. exetel.com.au. 3600 IN NS ns1.exetel.com.au. ;; Received 99 bytes from 128.242.113.189#53(ns3.ausregistry.net.au) in 193 ms dig: couldn't get address for 'ns2.exetel.com.au': not found
This is something I reported (ticket #853640) to them around Oct 2008 (when they last had a failure), that the auDA has no in-balliwick glue for their DNS. I was told by their support supervisor, Dylan Friedewald, via email:
The DNS for helpdesk.exetel.com.au is operational and valid, I do not see the point in discussing that further.
It is interesting to note that Steve Waddington has blogged many times about customers being unable to identify issues, but it is even more interesting that when a customer does – it is explicitly denied as being a problem and then ignored.
Apart from no in-ballwick DNS glue, their nameservers are also open recursive ones. Great if you would like to perform a DoS attack against some unsuspecting person.
I have raised other issues with them that warrant further investigation and corrective action, lest they affect all their customers. But I no longer have the time to continually ping them about things.
[ / sydney / isp] Trackbacks (0) Comments (3) permanent link permanent link
Mon, 08 Dec 2008
Normally, those would not be the search terms I would plug into Google, first thing in the morning. But they were appropriate, today.
Because that was what was happening.
When I was younger, I used to have asthma and, as part of that, I would invariably contract bronchitis periodicially.
Over the past years, even though my asthma has receeded, I would still get bronchitis at the interface between seasons. It did not matter if the season change was hot to cool, or cool to hot. Whatever the change, I would get it.
I've been used to this. It is, in it's own way, comforting. I can watch the seasons change, and notice that are changing earlier. It's like I have an in-built global warming detector!
This latest bout came on about 3 weeks ago. So, as usual, I thought nothing of it, bought my normal supply of strepsils and went about my life.
It was not until I was doing some training, and was left exhausted and wondering why that I decided to head to the doctor. He could not hear anything wrong with my lungs.
We did a few peak flow tests; my best of 3 being 250. Typical values for a health person are 600+.
His conclusion: ‘Your asthma has recurred.’.
A week later and I am still short of breath, but also coughing up blood. So after some searching on the interwebs, it appears that this can be normal with excessive coughing. And that the best ways to control excessive coughing are: codine1 (paracetamol / panadol) and chocolate 2
So, I've been indulging myself in both.
I'm off to get a chest X-Ray just in case this is more serious and the blood re-appears tomorrow. But now you know that chocolate is good for you (and your cough).
[ / health] Trackbacks (0) Comments (0) permanent link permanent link
Sun, 19 Oct 2008
Christian worries about how to grow the desktop share in the free desktop.
Some recent events (Chromium, Geode) have led me to believe that … We've won … already.
For example let's look at the reactions to Chromium (which I believe was released way too early):
Linux and Mac versions have not been launched
Google announce ... Linux version ... delayed. Why do they do this by not considering ... Linux
I've just picked three links but the trend is clear. The digirati want to use Linux and Mac OS X to evaluate new technologies NOT Windows. Sure, some of them still have those boxes around for “client work”. But that is not what they use day-to-day.
Now let's take a look at Mozillas' Geode. Here is the Introduction to Geode. Look at the comments:
Why is it not compatible with Linux(first one)
Ele é compativel com linux?(seventh one)
In fact the outcry was enough for lack of Linux support that is merited a follow-up Common Geode Q&As:
Geode is meant as a temporary solution to allow websites to experiment with geolocation today. … Skyhook is built in. A side effect is that Linux isn't supported for the simple reason that Skyhook hasn't implemented Linux drivers. Although not ideal. …
A year ago this would not have happened. This amount of push-back from the digirati that the new technology they are supposed to look at and evaluate is not available on their platform would have been accepted as a matter of course.
Now, though, they all expect it on their platform of choice. We've won, already.
Whilst the largest user-base remains the Windows market, if you want the digirati to look at and evaluate what you have to offer it needs to work on Linux & Mac OS X. Another example, while I remember, is Adobe releasing Flash 10 for Linux on the same day as other platforms.
Unheard of.
So what does mean for Christian's question?
[ / software / gnome] Trackbacks (0) Comments (0) permanent link permanent link
Sun, 05 Oct 2008
Apologies to anyone bored of this topic but it is something I have been thinking about recently.
You have people commenting on why Banks are special and need government funded bailouts. Others arguing that the Free market is not dead.
We have even have a few solutions from some people within the Free Software community.
I think the first thing is to identify who should lose, and who should win.
Much of the annoyance about the rescue from ordinary people is that it seems that investors are not losing (enough). They took some risks, those gambles failed, and now everyone else is paying the price.
If IBM were to go bankrupt, would the government step in? Unlikely. Investors would lose (money), staff -- another word for investors -- would lose (jobs), but customers would win (their computers would keep working). Some customers would win more than others (especially those who had the equipment on lease); if no one is collecting, why pay?.
So let's apply the same set of outcomes to banks.
But hang on, you rightly ask, - a bank has the title deed (a mortgage is a promise to pay amount X over Y year in return for the deed) - why would customers (depositors), realising a bank is no longer viable, since remove their funds
I think that those two issues can be addressed fairly simply. The government would guarantee all depositors money. Customers never lose. They never have to worry about their funds.
For banks, who enter into administration, the standard laws about possession should apply. If a borrower is utilising (living in) the asset to which the bank has title for over Z years (where Z equals 5 or 7), then the possesor now owns it outright. That is plenty of time for a bank to either be bought, have the underlying asset value recalibrated, or to completely go bust.
All without a detrimental effect.
[ / finance] Trackbacks (1) Comments (3) permanent link permanent link
Fri, 03 Oct 2008
The premise of this restauant is to give you the typical feel of an Austrian ski hut.
The low ceilings, the cosy place and the okay beer assist in evoking that feeling.
Unfortunately the very average food, and really poor service also do the same.
If you are going, make sure you enjoy the host's bell ringing but keep in mind that apart from this there is very little else to redeem this place.
This hReview brought to you by the hReview Creator.
[ / london / review] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 30 Jun 2008
No, I'm not talking about Melbourians (besides I believe that it is actually bogan). I mean bogon which is a quantum on bogosity and as applied to IP packets.
I run a number of nameservers, someone of them are slaves for some high-profile sites (e.g. gnome.org, linux.conf.au, openmoko.org, etc.), and some zones the nameservers are (dynamic) primaries for.
I had someone send me an email but my various systems refused to receive -- this I tracked down to BIND not returning any data when an MX request was received. This was particularly perplexing as my laptop, also running BIND, and some of my other test systems all had no trouble.
After much faffing about, including running BIND in debug mode on a production machine, I found this gem in the debug log:
... ignoring blackholed / bogus server ...
Ah ha! Lights clicked and it all fell into place. The network was on the DNS bogon list.
In case you do not want to run the full bogon list, or keep it up to do, here are the IPv4 network you should filter out (from RFC3330).
acl "rfc3330" {
// Filter out any IPv4 networks specified in RFC3330
// These networks (IP addresses) should rarely be seen
// in the wild on normal networks.
0.0.0.0/8;
10.0.0.0/8;
169.254.0.0/16;
172.16.0.0/12;
192.0.2.0/24;
192.168.0.0/16;
198.18.0.0/15;
224.0.0.0/3;
};
I've just updated from bogon list 5.9 to 6.3 across all my DNS machines. If you can remember if you have, or haven't, it might be worth checking too.
Oh, and if you require some assistance with DNS stuff, drop me a line.
Update: July 6th. Fixed URL for RFC3330.
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Fri, 13 Jun 2008
I've just spent the the last two days in Ireland.
Obviously I went out. Lots.
Whilst I found lots of very attractive Irish lasses to chat with, it reminded me that a week ago I had been surfing the interwebs and stumbled over Shanalogic.
They / She sells "indie" stuff. What caught my eye was the girl on the front: more ...
Gorgeous!
But when I was in Ireland — completely different types of women appealed to me.
The fickleness of beauty. Not only is it in the eye of the beholder, but the date, time and place too.
Oh, and yes, older entries are appearing as well as newer ones. I'm sending them out slowly so that various tools, aggregators and other things are able to catch up sensibly.
[ / beauty] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 28 Apr 2008
Information wants to be free.
That is a fairly common saying 'round the 'Net.
And, as I've grown up with it repeated enough, it is something that I think - more and more - is an good way to function. Not just at a country level but organisationally and interpersonally too.
When you release more information, you gain more trust.
So it is somewhat amusing to me that a parlimentry enquiry, ostensibly into the use of the word fuck and cunt on TV notes:
Submissions become committee documents and are made public only after a decision by the Committee. Persons making submissions must not release them without the approval of the Committee. Submissions are covered by parliamentary privilege but the unauthorised release of them is not.
So, if I were to put my submission up on as a blog entry I'm breaking the law. Stupid.
There might be some good reasons to keep a submission confidential (off the top of my head, refers to minors by name; commerically sensitive) but if the submitting party wants to make it public there should be nothing that prevents that.
[ / freedom] Trackbacks (0) Comments (1) permanent link permanent link
Mon, 17 Mar 2008
Interesting report on how IPv4 was shut-off and everything continued to work.
Especially interesting was Google and the interesting logo effect.
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 03 Mar 2008
At the Python Beer-up, I had a discussion with a few entrepreneurs who are looking for some people.
The problem:
So, how would you find the appropriate person to implement your vision? What criteria do you use to determine competence and trustworthiness?
I've parenthesised technical but, I presume, the same applies to anyone really. No doubt I've presumed that because I am technically inclined.
[ / work / general] Trackbacks (0) Comments (0) permanent link permanent link
Tue, 12 Feb 2008
Like most people I like good company. Good company and free booze is even better.
If you are in London, you missed out, as last week was when flag and bell was on. If you are going be around for their next event – 4th March 2008 – drop Megan a line.
Yes, people, it really is good company. And free beer.
Speaking of beer, those of you when a penchant for all things Python may want to come along to the London Python booze-up.
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 11 Feb 2008
Something else that bothers me about Jordi's GRUB2 screen shot is that it is all localised.
I've had to assist people using foreign versions of Windows which had no way to present the English version of the interface. Sometimes I've been lucky enough to figure out the text but, just as often, I've had to shrug my shoulders and give up.
Which leads me to suggest that there should be some mechanism — it need not be the default, it need not even be displayed until a specific keypress occurs (or something) — to get an English version of the boot loader screens so you can assist someone knowing there is a common baseline.
[ / debian] Trackbacks (0) Comments (9) permanent link permanent link
Wanting to help along GRUB2 adoption as per Jordi's suggestion. I tried out apt-get install grub-pc.
I'm not so sure that a bugreport entitled Installing grub-pc achieves nothing
would be so useful.
Here is what seemed to happen:
eve:[~]% diff -u /boot/grub/menu.lst_backup_by_grub2_postinst /boot/grub/menu.lst --- /boot/grub/menu.lst_backup_by_grub2_postinst 2008-02-09 18:59:46.000000000 +0000 +++ /boot/grub/menu.lst 2008-02-09 18:59:47.000000000 +0000 @@ -9,7 +9,7 @@ # # You can specify 'saved' instead of a number. In this case, the default entry # is the entry saved with the command 'savedefault'. -default saved +default 0saved ## timeout sec # Set a timeout, in SEC seconds, before automatically booting the default entry @@ -113,6 +113,11 @@ ## ## End Default Options ## +title Chainload into GRUB 2 +root (hd0,0) +kernel /boot/grub/core.img +savedefault + title Debian GNU/Linux, kernel 2.6.24-1-686 root (hd0,0) kernel /boot/vmlinuz-2.6.24-1-686 quiet root=/dev/hda1 ro resume=/dev/hda5 usbcore.autosuspend=1
Booting into the chain loaded GRUB2 and I get a nice prompt with no idea what to do next.
[ / debian] Trackbacks (0) Comments (4) permanent link permanent link
Wed, 16 Jan 2008
Actually I never went away, yes 22 months is a long time between blog entries, I just got distracted by travelling and working at AwayPhone. I'm still there and we are looking for one or two developers, principally in the US (Washington state) — but as a global company, not necessarily — so let us know (ASCII only, spell-checked, coherent English, etc.) if you are interested.
I've been on (technically) holidays for the past few weeks, but I find myself awake, reviewing code at 02:45 (now 03:30) and trying to catch up on emails. I'm reminded of a friend of mine who always used to shout “RELAX!” whenever we went bar-hopping. I've been trying to apply that to a broader area of life than just bars but it appears that it just isn't how I'm wired to operate; for better or worse.
That means, that whilst in Australia, I'm also rebuilding my mothers' IT infrastructure at her publishing company. I want it all to survive without any intervention for at least 2 years. So, I've been evaluating various pieces of kit. My conclusions:
I realise everyone has probably been burnt but some of the vendors mentioned above but this is my experience of them. You'll notice nothing about laptops. I'm looking around for a decent vendor, I'll let you know if I find one.
If you have been following along, you will notice that the Netgear ADSL modems (DM111P) runs Linux. The WD MyBook World Editions II's, run Linux (and I'd expect that they could be coaxed very easily into running generic Debian). The HP stuff (mostly) runs Linux. As does the Linksys and snom handsets.
We won.
Now, I've got to figure out how to setup Clonezilla so that the desktop Windows machines can be replaced when they fail. And I have less than 144 hours to do so. There is nothing like a deadline to concentrate your mind.
P.S. I do have some half-finished entries for the intervening 22 months, I will clean them up and post them under their original dates in the next few weeks
[ / blogging] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 20 Aug 2007
Whilst checking one of my various mailserver logs, a site presented a certificate signed by VeriSign. It has an embedded URL, so I thought I should check out what it said.
It turned out to be a link to Versign's Relying Party Agreement. In it, it disclaims various liabilities related to Verisign primary function (authenticating identity and certifying trust) but also put monetary damages against things if they fail to do a good job.
Section 11.3 and 11.4 set out the damages. To wit (emphasis mine):
11.3 VERISIGN'S TOTAL LIABILITY FOR ALL DAMAGES SUSTAINED BY ALL RELYING PARTIES CONCERNING A SPECIFIC CERTIFICATE (OTHER THAN AN EXTENDED VALIDATION CERTIFICATE) SHALL BE DETERMINED ACCORDING TO THE CLASS OF THE CERTIFICATE RELIED UPON AND LIMITED, IN THE AGGREGATE, TO THE AMOUNT SET FORTH BELOW.
Class Liability Cap Class 1 One Hundred U.S. Dollars (US $100.00) (or the local currency equivalent thereof) Class 2 Five Thousand U.S. Dollars (US $5,000.00) (or the local currency equivalent thereof) Class 3 One Hundred Thousand U.S. Dollars (US $100,000.00) (or the local currency equivalent thereof) THE LIABILITY LIMITATIONS PROVIDED IN THIS SUBSECTION 11.3 SHALL BE THE SAME REGARDLESS OF THE NUMBER OF DIGITAL SIGNATURES, TRANSACTIONS, OR CLAIMS RELATED TO SUCH CERTIFICATE.
11.4 THIS SUBSECTION 11.4 APPLIES TO VERISIGN SSL CERTIFICATES WITH EXTENDED VALIDATION ONLY: IF VERISIGN FAILED TO ISSUE THE EXTENDED VALIDATION CERTIFICATE IN COMPLETE COMPLIANCE WITH THE EXTENDED VALIDATION GUIDELINES, THEN VERISIGN’S LIABILITY FOR LEGALLY RECOGNIZED AND PROVEN CLAIMS SHALL BE LIMITED TO USD$2000 PER RELYING PARTY PER CERTIFICATE.
So, basically, an Extended Validation certificate is not even worth the electrons.
[ / security] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 16 Jul 2007
Like a lot of people, I've install Google Desktop for Linux.
First off, I've installed Beagle and Tracker before. So, I've played with a couple of these things. Obviously since I've installed GDL I felt that none of the existing Free Software solutions worked as well as I expected.
A while back I read Joe Shaw's note about how Beagle is tested with ~180K files. I considered this for a moment and realised that is why Beagle would turn my system into a pile of steaming dog poo.
My home directory has, normally, over 1,000,000 files (currently 893790 as I deleted some things before I fired up gtk-gnutella).
Considering Google handles web indexes significantly larger, you'd assume that their desktop search would be more than capable.
Alas.
I've had it installed for a week and it has achieved a 5% index. At least it does not chew up memory and only causes excessive CPU load. Oh, and the fact that it must have a browser (seemingly only Iceweasel will do) to use makes it even less useful. I'd let someone know but Google is also in on the whole "Let's make it as arduous as possible to report a problem" caper that seems to be common nowadays. Oh, well.
They went to all that time and effort to make a Debian package, why not put in the extra few minutes of work so that reportbug Just Works.
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Tue, 06 Mar 2007
[ / software] Trackbacks (0) Comments (0) permanent link permanent link
Mon, 27 Mar 2006
Craige, it might be the first time that the exhibition has run under the Linux World Expo banner, but I recall an earlier one after the last linux.conf.au in Sydney.
Indeed, a bit of Yahoo!ing reveals this from the Internet Archive, linuxexpo.com.au and the front page. It looks like I might have been there too at the Debian stand. Ah, memories.
[ / sydney] Trackbacks (0) Comments (0) permanent link permanent link
ॐ (aum) - what was, what is and what will be, wildfire's musing
Anand Kumria
wildfire@progsoc.org
Subscribe to a syndicated feed of my weblog, brought to you by the wonders of Atom.
Rendered in only 0.3015 seconds.