I’ve written a script to parse the London Underground real-time tube status page and convert it into an Xml feed. It caches the output from TfL for 1 minute. If their page structure changes i’ll endeavour to update my parser.
You can get the feed as Xml or HTML. I’ve also started the ball rolling with [...]
Posted in Computers, Fun on May 31st, 2007 No Comments »
Remember those video games tables pubs had back in the 70s and 80s? Well they’ve evolved in the guise of Microsoft Surfaces – check out the website ‘magic’ demonstration. There are some great ways to interact photos with it – similar to the multitouch feature of the forthcoming iPhone.
It’ll be pretty neat to sync [...]
Posted in Computers, Firefox, Internet on February 18th, 2007 No Comments »
iSquint – Mac OS X only, converts and imports movies you have which aren’t in .MOV format into iTunes. This means you can use Front Row to watch them. Takes about 15 minutes for a 75 minute movie. Fingers crossed it also means I’ll be able to use Apple TV to watch them over the [...]
Posted in Computers, Fun, Internet on December 24th, 2006 No Comments »
I’ve spent a short while today upgrading my Pub Finder to use the Google Maps 2.0 API. I’ve also added indexes onto the data set to improve the speed.
Finding any one of the 5,149 pubs now in the database is now even quicker so there’s no excuse to drink in a dodgy pub.
Spent a while trying to get sub-projects opening within Visual Studio today where the root project has SSL security setup. Every time VS tried to open the sub-projects it would error with the message “Secure channel failed”.
Figured it out eventually – you need to add a location element to the web.config for the get_aspx_ver.aspx to [...]
Posted in Computers on August 16th, 2006 1 Comment »
Since buying my MacBook a few weeks ago i’ve found that my evenings at home are now pretty quiet. That’s not to say that things on the MacBook don’t work – far from it, it boots amazingly quickly, gets on the Internet – first time, every time – and has not needed reconfiguring, updating, patching, [...]
This is interesting, a port scanner written completely in Javascript. It creates a series of image objects and points the URL to an image file which would be found on a default installation of some web servers. Once found, the script could be modified to do something malicious to that webserver using any well known [...]
Posted in Computers on July 5th, 2006 No Comments »
Vote here for your fave IT support anecdote. Some great quotes, including my favourite:
Someone telling me their “broadbean” connection may be down.”
using System;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
namespace SocialAnimal.Web.UserControls
{
/// <summary>
/// If ControlToValidate has a value then DependantControl
/// must also have a value
/// </summary>
public class DependantFieldValidator : CustomValidator
{
private string _dependantControl = null;
private bool _showAlertBox = false;
[Description(@"If true, will show an alert box if the control validates false, otherwise will display an inline message"),
Category("Behavior")]
public bool ShowAlertBox
{
get { return _showAlertBox; [...]
The website I work on recently received a large increase in visitors due to a marketing drive. This caused IIS to start recycling the worker process very often as memory consumption was increasing out of control. The user experience wasn’t affected by this problem as we run a load-balanced system, however we had to fix [...]