theboywonder.co.uk
… ok, well at least I'm trying.
New Year’s Resolutions for 2010
6:10 pm | January 26, 2010

Author: Robin | Category: Daily life | Comments: None

My New Year’s Resolutions are usually very similar each year – self improve with regard to fitness, both mental and physical, and work hard in my profession. This year I’m trying to set more explicit goals; rather than “read more”, I’ve set a target of reading a book a month. It may not sound like much, but when factoring in time spent on other things (not to mention reading technical literature) it’s a reasonable aim. Anyway, here they are:

Body:

  • After being ill, get cycling regularly again. Aiming for a consistant 100 miles/wk by May, then increase carefully.
  • Hit the cyclo-cross season in September feeling strong, not tired. Finish roughly 6-7 minutes down on the professionals.
  • Add running into the exercise routine.
  • Run my first 10K. Have a rough aim of beating 48 minutes.

Mind:

  • Listen to Radio 4 on the way to and from work (rather than music) – and hopefully absorb some of it.
  • Read a book a month.
  • Take the Microsoft 70-294 exam by the end of May.
  • Take the Microsoft 70-298 exam by the end of August, to get my MCSE.
  • Take the VMware VCP (Vsphere 4) exam by the end of October.
  • Learn to use my digital SLR properly in modes other than Automatic.

C-C-C-Combo:

  • Walk in the countryside more frequently.
  • Learn a new dish a month, and cook the well rated recipes more regularly!
Windows Update Multiple Fix Script
2:01 pm | January 22, 2010

Author: Robin | Category: Geek Stuff | Comments: None

I made a simple batch file to help fix Windows Update errors on our Windows Servers at work (both 2003 and 2008 / R2). It is based on some advice for various Windows Update errors that were on the internal knowledge base, which was no doubt gathered from information online somewhere. It performs a series of steps, saving a great deal of time over having to perform them manually.

Word of warning: The script will attempt to copy pending.xml before deleting it. If it cannot copy it it will delete it. Personally I have never been able to copy the file; most likely because I have not rebooted the server after taking ownership and granting myself full permissions to the file. I should add however that in all my use of this script I have not suffered any problems when deleting the file. Windows Update will recreate it the next time you/the computer downloads required updates.

:: Windows Update Multiple Fix Script
:: v1.00
@echo off
cd "C:\Windows\WinSxS"
echo Taking ownership of pending.xml
takeown /f C:\Windows\WinSxS\pending.xml
echo;
echo;
echo Granting you permissions on pending.xml
cacls C:\Windows\WinSxS\pending.xml /G %Username%:F
echo;
echo;
echo Attempting to copy pending.xml as pendingbackup.xml
copy "C:\Windows\WinSxS\pending.xml" "C:\Windows\WinSxS\pendingbackup.xml"
echo;
echo;
echo Deleting pending.xml
del "C:\Windows\WinSxS\pending.xml"
echo;
echo;
echo Exporting HKEY_LOCAL_MACHINE\COMPONENTS to C:\HKLM_backup.reg
REG EXPORT HKLM\Components C:\HKLM_backup.reg
echo;
echo;
echo Removing noted problematic registry keys
REG DELETE HKLM\Components /v AdvancedInstallersNeedResolving
REG DELETE HKLM\Components /v PendingXmlIdentifier
REG DELETE HKLM\Components /v NextQueueEntryIndex
echo;
echo;
echo Restarting Windows Update related services...
net stop "Background Intelligent Transfer Service"
net start "Background Intelligent Transfer Service"
net stop "Cryptographic Services"
net start "Cryptographic Services"
net stop "Windows Update"
net start "Windows Update"
echo;
echo;
echo Please try running Windows Update / patching again.
echo;
echo;
PAUSE

Copy the code and save it as a batch file.

A Kinder Philosophy of Success
1:38 pm | January 14, 2010

Author: Robin | Category: Thoughts | Comments: None

Ah. Alain. One of my favourite authors (having read “On Love”, “The Consolations of Philosophy”, “The Art of Travel” and “How Proust Can Change Your Life”). It’s nice to see that he is just as articulate and witty in person as he is in his writing.

As ever, at least for me anyway, the way in which he discusses elements of the human condition are often strikingly common sense, yet addressed in a manner that makes you feel as though somehow, you are being enlightened. Perhaps however that is a flawed feeling; is it not more likely having that which you feel to be true reinforced by someone far more suited to talk on such matters with authority? Whatever it is, I enjoy his work immensely. Infact, I can’t believe I missed the release of “The Pleasures and Sorrows of Work”. Time for an Amazon order…

Embikes.com – Scam site!
6:37 pm | April 13, 2009

Author: Robin | Category: Daily life Geek Stuff | Comments: 10

I came across Edward Murray bikes whilst searching for Kona Jake The Snake cross bikes. They were offering a seemingly impossible 30% off all orders placed before April 31st 2009 which seemed too good to be true so I decided to investigate.

  1. Using DNStools.com it’s possible to see that the domain was registered on the 18th Feb 2009. Has the site only just appeared? If so, why? They have “blog/news” articles dating back to 2002.
  2. For some reason, the robots.txt has been used to block a whole host of internet search engines. Why? A domain history in the “Way Back Machine” is blocked too.
  3. The checkout process is insecure, carried out entirely over http:// rather than https://
    Take a look at a few of the checkout options:
    embikes-shipping
    Enter your credit card details, over standard http! Haha, I think not.
    embikes-payment
    embikes-creditcard1

  4. They display a truste.org seal on their homepage. On a legitable website clicking this would redirect your browser to the truste.org website, which would subsequently display some kind of seal of approval. On this site however clicking it takes you to a copied version of the truste.org verification page, hosted on their own server. Here it is. Unsurprisingly when searching for seal holders on the truste website Embikes are not there, meaning they do not hold any seal of approval at current.
  5. Almost every product has 1 review, and of course those reviews are always 5 stars.
  6. They have all the bikes in the entire world in stock! Ok, not quite… but they have more than well known online retailers have. For instance, I could apparently choose any size Jake the Snake from the past 3 years (2007-2009 models). Unlikely.
  7. I entered a brief email correspondance with the “owner” about purchasing a bike. As soon as I asked for some reassurance on the authenticitiy of their site (by providing some of the above concerns), all correspondance stopped.
  8. Worryingly I found this site through Google Shopping. I haven’t yet found a way of reporting fraudulent shops but when I do I’ll be sure to send my “evidence” their way.

    Update: Embikes.com no longer appears in Google Shopping results. I wonder how much money they made away with though :/

« Previous PageNext Page »