Skip to content

Instantly share code, notes, and snippets.

View phil8192's full-sized avatar
🦇

Phil Stubbings phil8192

🦇
View GitHub Profile
@phil8192
phil8192 / web-server.rb
Created April 8, 2016 15:26
dummy webserver
require 'sinatra'
require 'json'
post '/*' do
puts JSON.pretty_generate(JSON.parse(request.body.read))
status 201
end
@phil8192
phil8192 / red-tint.r
Created March 29, 2016 16:47
255 tints of red
# 255 tints of red
red_tint <- function(v) as.hexmode(bitwOr(0xff0000, bitwOr(bitwShiftL(v, 8), v)))
cols <- paste0("#", red_tint(1:255))
barplot(255:1, col=cols, border=cols)