Skip to content

Instantly share code, notes, and snippets.

{
"awards": [
{
"awarder": "The Drum Media Awards",
"date": "2020-05-01",
"summary": "as part of BBC Voice News Team for BBC News on Smart Speakers",
"title": "Highly Commended, Editorial Innovation of the Year"
},
{
"awarder": "Webby Awards",
@leemacaulay
leemacaulay / whoaskswhat.R
Created May 12, 2019 20:08
Who asks what - using R to visualise Commons questions
library(hansard)
library(mnis)
library(tidyr)
library(dplyr)
library(lubridate)
library(stringr)
library(ggplot2)
library(bbplot)
library(RColorBrewer)
library(forcats)
@leemacaulay
leemacaulay / gplussinatra.rb
Created July 17, 2011 15:48
Google+ redirect using Sinatra
require 'sinatra'
get '/ ' do
redirect 'https://plus.google.com/[YOUR-GOOGLE-ID]/posts'
end