STFU in Stoke-on-Trent

Stoke-on-Trent was the scene for the latest STFU ride. Although a sunny day had been requested, the driving rain and cold air upon arrival was evidence that this appeal had found no favour with the weather gods.

The ride was relocated to the dry confines of the Unit 1 Park Works, a locally-run indoor skate park. A video from the day:

Huge shout-out to @unit1parkworks for hosting us for our monthly group ride today. Cheers for this sick little video!

#Repost @unit1parkworks

・・・

Such an awesome day today especially due to a visit from the @stfulondon boys! Never seen such talent on 1 wheel… CRAZY, so glad you boys decided to visit us today. Roll on next time 😁😉🤙🤙🧡 @ilosthalfmybike @lunicrew @simondberry @eddhawkes #unicycle #unicyclelife #indoorskatepark #rainyday #onewheel #madness #skill #ukunicycling #ukbikelife #bikestormz #knivesdownbikesup #bikesupknivesdown #tricktrack #fixedgear #track #fgfs

Visit the calendar at http://www.unicycle.org.uk/events.html for more unicycling events.

The UUU announce the 2019 unicycling calendar

In collaboration with our friends at STFU, The Union of UK Unicyclists have published a calendar of this year’s unicycling events. Highlights include:

  • UK Trials Championships (25-27 May) hosted by STFU
  • UK Road Race Championships at the Horwich Festival of Racing (16 June)
  • The European Championship of Unicycling, 27 July-4 August, in the Netherlands, and the Extreme Unicycle Championships in Newark (8-11 August)
  • 14 STFU weekend day rides
  • Six British Muni Weekend mountain unicycle weekend events

Visit the calendar at http://www.unicycle.org.uk/events.html and import it to your diary.

Joe's BMW Muni day

Muni events in the UK are run under the banner of British Muni Weekend, or BMW. The latest one was organised by Joe Baxter from Whitley Bay.

Joe Baxter

The event was held at Hamsterley Forest near Durham. This is one of the favourite venues for unicyclists in the North East of England, because it has a mixture of easy and hard routes that can be combined together to keep everyone happy. The one day event attracted 15 riders of mixed ability, includind international standard riders along with two riders who were on their very first muni ride.

The total ride distance was just over 16km and had a climb of 1100ft. The route of course include a water splash that everyone rode with only marginal wetness!

Crossing the wet sea

We will be announcing a new unicycle calendar with all the upcoming UK unicycle events for the next year.

The transition to Jekyll and GitHub pages

After many years of volunteering his time to maintain the UUU website Gavin McGreggor (GKMac) decided to step down from his role as UUU webmaster. Thanks for all your effort GK, we wish you all the best!

It looks like maintaining the website has fallen to me again. With the existing hosting for the UUU website about the expire it was time to look else where.

Given that the UUU no longer hosts a forum and the rest of the content is static I decided it didn’t make much sense to use any server side scripting at all.

Instead I went down the route of using a static site generator. I also decided I’d like to try using GitHub pages for hosting which limited my choice to using Jekyll.

Doing this gives us many advantages

  • The content generated is static HTML so it is portable. It can be dumped on to any webserver and it should just work.
  • We let GitHub worry about the hosting. They do all the load-balancing for us meaning the website should scale to many users without us having to do anything. WIN!. It’s also free, so we don’t pay for web hosting anymore. Sweet!
  • The code for our website is now GitHub which means people can fork it and contribute back improvements.
  • No more PHP. I’m not a big fan of the language and using a static website generator means I don’t need to use it anymore :)
  • Deploying changes to our website is buttery smooth. We just push to our GitHub repo and GitHub takes care of doing the rest. Nice!

The only real downside is that we can’t have any server side scripting at all (e.g. some sort of submission form). Right now we don’t need it so I’ll keep things how they are.

It was a non-trivial amount of work to port the old website to Jekyll but now that it’s done I think it paves the way for some fun and intersting things we could do.

Guest blogs

Jekyll is designed for blogging and it makes doing so very easy. Just take a look at the code for this blog post. It’s very easy to read because it is written using markdown.

I’m hoping that it’s simple enough that we could have something like monthly (too optimistic?) “guest blog” articles. These could be about anything unicycle related. For example like a recent ride someone went on or a guide to fixing something on your unicycle.

Better handling of club data

Our club data is seperated from its presentation in YAML files. This could let us do some neat things.

  • Adding/removing or editing club entries is now really simple. Some just needs to edit this file and it will automatically appear on the website. Asking people to do pull requests on GitHub might be asking too much so we may need to take contributions manually by e-mail or on our issue tracker.

  • We could generate JSON files from this data and in effect provide a JSON API that others could pull in. This would be really cool because it means that there is ONE DEFINITIVE LIST that everyone can use.

  • I’d like to add a Google Maps (or OpenStreet Map) widget showing the location of the clubs. I think this is a much better way to visualise the data we have. UPDATE: This has been done. I went for Google Maps. There is a limit on requests but we’re unlikely to hit that.

Modernise the design

Our website isn’t particularlly pretty but now that we’ve transitioned to Jekyll a lot of the data and presentation have been seperated which should make it fairly simple for us to use a fancy web framework to make our website look pretty. I’m thinking Twitter’s Bootstrap would be a good choice.

Better handling of “Where to ride” data

A feature on the old website not available anymore is locations suitable for riding. We could put these locations into a structured data format (i.e. YAML) like we did for our club data and present this data on the website and also as a JSON API for other websites to pull in.

There is a work in progress here but it’s not anywhere near complete.

Right that’s enough yacking from me. Feel free to comment below.