rob's profileScribbleCodePhotosBlogLists Tools Help

Blog


    August 31

    Improving freebie hosting

    Its amazing what you come up with in the gym. This is what wandered through my head while gently torturing my body this evening.
     
    "How can you get rid of those bloody banner ads that freebie hosts stick on your website?"
    *TING!*
     
    Use CSS to get rid of the damned things!
     
    Start with a generic page. Anything will do as long as its got some content. Get it published and then access it. Finding the ads in the markup shouldn't be hard and if you're really lucky they'll already have given it a class or an id. If they have then just put a stylesheet rule in that moves the appropriate class to a couple of thousand ems off the screen or set to display: none;
     
    If there isn't an identifier then the same thoughts apply only backwards. Set all the images (I'm going to assume that the ads are images) to display: none; then give all your images a class e.g. ownimage. This gives you an anchor to set to display: block; and bobs your uncle. Or in this case, the guy you nicked the idea off :)
    July 01

    Google Earth

    First of all I'm surprised that noone else out of the usual suspects has blogged this, esp. Mr Hicks as its right up his street but here we go anyway.
     
    Google Earth is a 3D model of the entire planet based on satellite photographs laid onto a big ball. So at its most basic is like a 3D atlas. On to this Google have added a few funky features tho. All the terrain can be height mapped so flying round Mt. St. Helens or the Grand Canyon (two of the built in places of interest) is like taking a helicopter trip there. Also there are 3D buildings for about a dozen US cities which really adds to the realism. All the usual accompaniments like roads and railways are in there as well along with all sorts of random things like crime stats for areas and coffee shop locations. It also has the ability to store and label points and has the best route planner I've seen since MS Autoroute. 
     
    There are a few problems which come in to spoil the party, from my perspective at least. Firstly its not very stable and has a tendancy to crash although I haven't experienced it personally. Its also very US-centric which is fine but I'm waiting on a UK port. Some of the lines don't line up with what they are supposed to be representing, esp. the railways. Finally, and this isn't Googles fault, a lot of the world is covered in lo-res pictures which only make sense from about 20,000 feet. Also the lat/long coordinates are in decimal for the search box and deg:min:sec on the screen.
     
    BHut on the plus side when you get a good high definition photo the quality is unbelievable. I've bookmarked my desk in work cause the res is so good. type Marlow in the search box for an example of how good it can be. That and grab a fly through downtown NYC for the buildings and take a look at the Grand Canyon for the 3D terrain.
     
    All in all its the current greatest geeks toy with a couple of really useful bits built in, esp. the route planner.
    June 13

    Is Andy Budd moonlighting?

    I think the man from @media is leading a double life. What do you think?

    Photos nicked from webstandards.org and garyoldman.info

    June 12

    @Pub 2005

    All the best networking happens in the pub. In my case it was Clinks Bar on Southwark Bridge Rd. After wandering down and catching the last 20 minutes of the Q&A session at @media I collected the Freshfields crew and followed the mass of orange bags down to the pub. We then spent about 2 hours wandering round collecting bloggers. I think I only actually scared Roger from 456 Berea Street with my opening gambit of "So is the hotel comfier than a floor?" from his 'where the heck do I stay' post a couple of weeks back. Fortunately light dawned and we had a decent conversation about Icelandic versus Swedish for 5 minutes.

    Also caught Andy Budd looking very scared at signing his first autograph and got invited (to stretch the definition slightly) to apply for a job at Stuff And Nonsense by Malarkey. Jon Hicks also wins the prize for the most words on one tshirt I've ever seen.

    I really enjoyed my first conference even if I missed most of it. Its good fun going to the pub and having a natter.

    June 08

    @media 2005

    As everyone else has done one I'm going to do a post on the biggest web design and accessibility conference on this side of the Atlantic. Unfortunately mines going to start with:

    I can't go, boo hoo

    However I AM going to the pub on Friday night to hopefully meet a few of the speakers and catch up on whats happened over the two days. I really want to meet Andy 'Malarkey' Clarke, Andy Budd and the other guys on my blog roll. Thanks to my gf getting tickets I'll also be getting updates which I'll post on here when I've translated them from the drunk. :)

    To anyone who's gonna be there I'll see you on Friday night, have fun. 

    June 07

    First Boulter sesh

    I had my first trip to Boulters on Sunday with Craig, Bex, Jake, Small Robin and others (sorry guys, I didn't catch everybodies names). It was mad fun and I got photographed :)

    Its definatly easier to work with than Chertsey and no where near as grippy although it was pretty impressive the previous weekend so that might be the ramp angle. Unfortunatly I missed the old skool session which is currently on show in the gallery at http://www.marsport.co.uk but I think Bex (pink boat) wins the best move and Craig (saluting) wins most random expression. The simultainious cartwheeling is also worth a look and theres no photoshoppage involved what so ever!

    Looking forward to going back on Sunday, I'm still getting used to my G-Force and I want to be able to nail at least left and right cartwheels and a loop before the Rodeo which has been moved to the beginning of August. Only downer was I got water in my ear and spent most of monday wandering around trying not to fall over from the vertigo. Must remember to wedge the earplugs in better next time... 

    May 29

    IE5 list bug

    OK, heres a cry to the masses, has anyone ever come across this one before?

    I've got an unordered list of links set up as a horizontal bars using display: inline; One of the links is two words. In FF, Opera and IE 6 those two words sit on the same line as you would expect. In IE 5.01 they jump on to two lines without affecting the rest of the list. I think its something to do with the <li> but other than that I really don't understand it.

    CSS follows:

    ul {
     border: 0;
     padding: 0;
     text-align: center;
     }

    li {
     display: inline;
     border-left: solid 2px #FFF;
     padding: 0 2.3em;
     width: 1px;
     width/**/: auto;
     }

    a {

     color: #FFF;
     text-decoration: none;
     font-weight: bold;
     font-size: 1.5em;
     line-height: 1.7em;
     }

    #nav {
     background-color: #C0C0C0;
     border: solid 3px #808080;
     list-style-type: none;
     margin: 0 15%;
     }

    HTML for the list:

    <ul id="nav">
     <li class="firstli"><a href="#">BLAH</a></li>
     <li><a href="#">BLAH</a></li>
     <li><a href="#">FIRST&nbsp;SECOND</a></li>
     <li><a href="#">BLAH</a></li>
     <li><a href="#">BLAH</a></li>
    </ul>

    As you can see I've had to encode the space to get it to work properly so its also got something to do with the split between the words.

    HELP! please :)

    Boulters is back

    I went and gave the guys a hand installing the latest redesign of the Boulters ramp yesterday. Well helped is stretching a point slightly, I acted as a heavy weight for some sawing and held up a plank while getting a face full of Thames water.

    The design is quite a bit different this year, the downstream foot or so is attached to a couple of adjustable poles so it can be infinitely tuned. Also Graeme has added a pair of slanted sideboards which should concentrate the flow a bit more than last year. Its also turned a tasteful green colour to match that water

    All in all its looking pretty good and I'm looking forward to getting my first trashing of the summer season. I know some of you have been down already so tell us all what its like, I wanna know who swum!

    May 24

    First post

    Welcome to my new, and in fact only, space on the internet. The idea of this psuedo-blog is act as a dump for anything I think is interesting in web accessibility, web standards and my local kayaking scene until I can get some hosting and a proper blog. It'll probably get dragged off into dark corners relating to uni life, placements and the art of getting drunk on a Friday as well but those probably won't make it across the river into a real blog.

    It also allows me to find out if I can stick with having my thoughts dissected by an uncaring public (yes, you lot) and whether I can think of anything interesting to write more than once a month (I am better than Bill Gates, I AM!).

    Pleasant welcomes, hellos and the like are fine, comment spammers will be hunted down, shot, shot again cause I like the sound and then hung by their little toes from the edge of a cliff.