Archive for the “Technology” Category

Over the last few weeks this has come up at my work a few times and I’ve just been watching The Gadget Show on Five when they came up a segment on this exact topic.  I figure it’s all too coincidental to not blog about it.

computer_splashcomputer_stopThis won’t work every time, but from my own experiences it has worked each time.  I’ve never personally filled a laptop with liquid or sunk a mobile phone (either I’m just more careful or really lucky), but I know a number of people that have done this.  So here is the advice I’ve given in all the cases an d it’s managed to work.  You must follow the advice closely and NOT try and rush the process!!!  I can’t say that enough, DO NOT RUSH THE PROCESS!!!

Here it goes.

Read the rest of this entry »

Comments 1 Comment »

Mega Scotland 2010 was very good to say the least. We’d got ourselves checked in about 11am or so I suppose.  We had a bit of a lazy morning on Saturday, but who can blame us after the 10hr marathon drive from Heathrow to Kinross.

Read the rest of this entry »

Comments 1 Comment »

I was asked by the good folks over at MobileFun.co.uk to review their Wind Up Mobile Phone Charger w/ Torch. This was in response to a recent blog posting where I mentioned I want to do some Wild Camping, you can read Things I want to do

Click on the photos to see the full size original photos

What they shipped me was in the box to the right, I’ve used a pen for size reference.  I was quite impressed with the size of the box to say the least. 09042010342
09042010344 Inside the box were two bags, one with the charger/torch in it and the other has all the various bits to fit a multitude of mobile phones.
There is an extension cable that allows you to plug the adapters for the phones into the charger, which is nice, it suggests that perhaps in the future they could simply offer new tips to fit other devices (and not only mobile phones?)  The back page of the manual identifies the tips and the phones they fit. 09042010345
09042010346 You can see how truly small the charger device is in this photo.  I don’t have the biggest hands around it’s fair to say, but I can nearly conceal it in my hand.

Continue reading for my review

Read the rest of this entry »

Comments Comments Off

Ok, perhaps not just in your pocket, but backpack/laptop bag, etc. The number of devices we carry really seem to be going up and up these days, despite the fact that devices are converging and doing so much more. My personal “battle load” consists of the following:

Devices that require power

  • Dell E6500 Latitude (with 9 and 6 cell batteries)
  • Nokia N97 (read my other blog postings for my opinion on this device)
  • Zoom 4506-N 3G Travel Router
  • Microsoft wireless travel mouse
  • Jabber BT3030 headset
  • Power adapter for laptop (travel adapter for use with mains, car and air plane (I’ve never been fortunate enough to travel in the right class where I can use it on a plane :( )

Devices that use power but leech off other sources

  • Vodafone K3820 3G/HSDPA modem
  • 500GB portable USB drive
  • Numerous Flash drives of various capacities, some have bootable OSes on them some just for data

Misc items that I carry that don’t need any power themselves

  • A number of 8cm CD’s and DVD’s with bootable OSes on them (all Re-Writable for reuse, and for those machines that can’t boot of USB, WTF?)
  • A couple of sets of head phones (in case of loss or damage)
  • Various cables to connect devices for data transfer or charging, most use the same USB cables so it keeps these to a minimum

All in all it’s a fair bit of gear slung on my shoulder.   The double batteries for the laptop are really just to make sure I can go for hours and hours..  One question I’m sure many are asking themselves – Is all that gear really necessary?   Of course the answer is NO, BUT it’s just become the norm for so many years now, not just with me but so many people.   I can do just nicely with only my phone in most cases.  I managed quite nicely last year to post very long blog postings while out camping.  However, it wasn’t as convenient as it would have been had I had my laptop with me.  I should put my normal “battle load” into my backpack and weight it.  I’m sure it’s the best part of 8KG, might be a  bit more.

The only reason I decided to write this blog posting now was because while I sit in the Starbucks here in Newmarket Road in Cambridge I pulled out my travel mouse to find the battery was flat in it.  That got me thinking about what else I have in my bag that might need a change of batteries.  Thankfully that’s really the only device that can’t be recharged (however that’s a bad thing too really).  By that I mean I can’t plug the mouse in to charge the battery, it’s just a single AA battery.  That in itself is a good thing really, I can get replacements anywhere for it, that however can’t be said for any of the other power hungry devices I carry.  They all have bespoke batteries, so they require having some sort of charger/power adapter (be it wall wart, USB cable or some such).

So, What do you carry with you on a day to day basis?   What do you wish you could carry with you but choose to leave at home for some reason?

Comments Comments Off

Ok, let me explain first what it is.. Synerygy2 is a way to share multiple computers with one keyboard and mouse.  No, it’s not a KVM replacement.. Synergy2 replaces only the keyboard and mouse, you’ll need to have a monitor attached to each machine on your desk.  This is actually a plus.  In the photo below you’ll see my working area at the office… I’ve labelled which each runs for an OS and below that the names of the computers (click to see the full size image)

office-desktop

The keyboard and mouse is actually attached to the Ubuntu machine, in other words that’s the “server”.  The XP and Windows 7 machines are “clients”.  One thing to consider with Synergy is that it’s not secure.  It does send everything you type in plain text over the network.  This can be avoided by tunnelling the connection over something like SSH.  Perhaps I’ll cover that later.  Synergy2 isn’t new, it’s been around a very long time.

I don’t want to reinvent the wheel or try to take any limelight from those that have already posted great articles on how to set it up, the best information can be found from the Synergy2 website itself.

What I’m posting about is really how to fix a problem that I’m sure others might have encountered.  Right.. so the problem is this.  As I’ve said, the server is on Ubuntu.  Naturally the “Windows key” on Ubuntu has no natural meaning to the OS, it’s just another key and not mapped to anything out of the box.  The problem I’ve had is that while using Synergy the “Windows Key” didn’t work on the Ubuntu machine even though I’d remapped it to do things, such as Win + T to open a new xterm, Win + R to open the Run Command Dialog (basically making it operate a bit like Windows).   the fix for this was a change in the $HOME/.synergy.ini file on the Ubuntu machine.  The weird thing was that when move the mouse to the XP machine the Windows key did what it should, however on the Windows 7 it wouldn’t work.

Right, so what was the fix?  Here is my .synergy.ini file

section: screens
burma:
scotland:
  meta = super
rambler:
  meta = super
end

section: links
burma:
left = scotland
right = rambler
scotland:
right = burma
left = rambler
rambler:
left = burma
right = scotland
end

section: options
screenSaverSync = true
end


The important lines above are the “meta = super”.  Under Ubuntu the Windows Key is called “meta”.  This tells Synergy when the focus is on the windows machines to map the “meta” key to the “super” key, or in other words the Windows key.  Once that was changed and synergys was restarted all was good again.

I’m posting this for anyone else that might have a problem with the windows key not working under synergy with Linux/Ubuntu/Unix machines and windows machines, but also as a reminder to myself should I forget how I fixed it :)   I’d been through this exercise about 4 years ago but having rebuilt that machine I couldn’t for the life of me recall how I fixed it .. well, now that I’ve blogged about it I’ll at least have one good place to go and find the answer again :)  

Comments Comments Off