Bikes vs Cars – Road Rules

There has been much debate in the media and on forums everywhere regarding the whole bikes vs cars thing. Whilst most cyclists are well behaved, and most cars are well behaved, i think there are a select few making things bad for everyone by behaving like a child.

So I would just like to clarify things for you all and quote the road code here, just in case anyone was in doubt.

80-90% of Cyclists are also drivers, they pay road taxes, etc and drive on the road just as you do. Stop using this as an argument to justify your bad driving.

It IS legal to ride 2 abreast cycling, this however does take up an entire lane and so single file should be used when overtaking parked cars, or if cars want to get through.

If you are a car, then sometimes they may not notice you behind them, it pays to give a couple of short beeps to let them know you are there. At this point people in bunches will start the call ‘Car Back’ which is passed from rider to rider and they should move into single file.

At the lights,  especially when there are people turning, cyclists will sit in the middle of the lane. This is so that nobody turns in front of them at all, and because they can usually do a fairly fast take off.

Probably the worst situation is the most common, and that’s when a car overtakes a cyclist nicely and without thinking with plenty of gap, then forgets they were there and turns left into a street or driveway effectively cutting them off.  Whilst the crash may be minor for the car involve if the cyclist can brake, a resulting road rash or broken bones etc can sting for some time.

Riding on the footpath is illegal for anyone over 12 who is not a postie, its not an option that works for cyclists. The ‘cycling paths’ that are painted onto footpaths  are great for teenagers and kids, and even those slower riders or beach cruisers, however they are not in any way suitable for anyone riding faster than 15km/ph. The reason is because often people have children and dogs on the same footpaths which are unpredictable and will often jump out in front of you, not to mention people getting in and out of cars which have to cross the cycle path to get to the walking part, and in general people just not honouring the actual ‘cycle path’ part being only for cyclists.

The average roadie speed on the flat is easily near 30km/ph. A lot of people underestimate the speed they are going and think ‘oh they wont get here before i turn’ or similar’. On a downhill, personally, I’ve seen a lot of cyclists doing up to, and over 80km/ph, can you please be aware of this when you are turning and see a cyclist?

Above all, both Cyclists and Drivers, try to be more tolerant and less angry. You dont NEED to get angry if you get cut off, or if somebody over takes you, its ok to just let it go. Life is too short to waste time on pointless anger or in a jail cell/hospital because of it.

http://www.ltsa.govt.nz/roadcode/about-other-road-users/information-for-cyclists.html

Safety rules for cyclists

  • Cyclists must wear an approved safety helmet. Always fasten it securely, by following the manufacturer’s instructions.
  • It’s a good idea to wear brightly coloured or reflective clothing when cycling. That way you’ll be easier to see.
  • Don’t ride your bicycle on a footpath unless you are delivering newspapers, mail or leaflets, or there is a sign indicating it is a shared pedestrian and cycle path.
  • At intersections, you must:
    • follow the rules for motor vehicles, or
    • get off your cycle and walk across.
  • You can only ride alongside another cyclist or moped. You must not ride alongside a car, truck or other motor vehicle.
  • Always ride in single file if passing another vehicle.
  • Your cycle must not be towed by another vehicle.
  • Your cycle can only tow a trailer (one designed to be towed by a cycle) and must not be fitted with a sidecar. Or you can have www.santantowingpros.com tow it for you.
  • You must not carry a pillion passenger on your cycle unless you have a pillion seat and footrest. If you are carrying a child, the pillion seat must protect the child’s legs from the wheels.
  • You must not leave a cycle blocking a footpath.
  • Where there is an adequate cycle path or cycle lane, cyclists should use it.
  • You must ride with lights on when it is dark (from 30 minutes after sunset until 30 minutes before sunrise).
  • You must keep your cycle in good working condition.

http://www.ltsa.govt.nz/roadcode/about-other-road-users/sharing-road-with-cyclists.html

Safe driving around cyclists

  • Hazards like parked cars, potholes, glass, litter and opening car doors may cause cyclists to veer off-line and move into your path. Because of this, give cyclists plenty of room when passing them. Ideally, allow at least 1.5 metres between you and the cyclist.
  • Wait for a clear space before passing a cyclist on a narrow road.
  • At intersections, apply the same rules to cyclists that you would to any other vehicle on the road. Take care to indicate turns.
  • Only drive across cycle lanes when entering or leaving side roads, driveways or parking spaces.
  • If you are crossing a cycle lane, give way to cyclists before you cross.
  • Take extra care around young cyclists.
  • You must not drive in a cycle lane.

Hacking Tweeterwall to Autovote

Okay you may have seen my previous post which used a shell script to just vote every 20 seconds. Very simple, but they have got wise and now put a stop to that!

Tweeterwall is at http://tweeterwall.mallplace.com and is like a popularity contest. I got all my friends or people i knew into top 20, then we went into the continental (NZ and Aussies) at which point i had this setup to vote for all the NZ people, this way no Aussies got through into the finals (except one!).
We finally got into the World competitions at which point I really just couldn’t be buggered with it anymore, its no fun (shorter comps for people with low attention spans would be nice!). And secondly, I would get really beaten down if i beat Miley Cyrus by my 2 daughters! Hence why im making this post.

I’m not the first person to do this, im fairly sure, im just publicizing it so others can mess with it. So when  you see those people in the top of the polls, who only have only 30 odd followers and are kicking your butt, its not because you arn’t a cool person. its just that there isnt many ways to prevent people from doing this kind of thing.

Ideally they need to impliment some sort of statistics which checks what IP addresses are hitting what users and look for things like ‘never having a break’ (real people sleep!) and browser versions being different, time being an exact rather than random amount etc.  All of which can be faked with a few more lines of code anyway, but it will still make it hard enough that people wont bother with it.

After that i looked at Grease monkey and a co-worker came up some code that worked nicely. All you had to do was install the firefox Grease Monkey addon, then load this script and leave the browser open in a tab!

Grab this code, modify the URLs at the top to reflect the one you need, and edit your username near the bottom.

/ ==UserScript==
// @name Vote Velofille
// @namespace http://tweeterwall.mallplace.com/tw/new-zealand/ms-twitter
// @description Vote for Velofille
// @include http://tweeterwall.mallplace.com/tw/new-zealand/ms-twitter
// ==/UserScript==
var $;

// Add jQuery
var GM_JQ = document.createElement(“script”);
GM_JQ.src = “http://code.jquery.com/jquery-latest.min.js”;
GM_JQ.type = “text/javascript”;

document.body.appendChild(GM_JQ);

// Check if jQuery’s loaded
var checker=setInterval(function(){
if(typeof ($ = unsafeWindow.jQuery) != “undefined”) {
clearInterval(checker);
setTimeout(‘window.location.reload()’,1260000);
voteforperson();
}
},100);

function voteforperson() {
$(‘#velofille div.tweeter-vote > a’).click();
console.log(‘velofille voted’);
}

Save the file as something.user.js then open it with firefox. the file name must end in .user.js for Grease monkey to Pick it up.

So have fun with that, and go forth and hackery!