Short present tense imperative phrase, less than 50 characters, like a git commit message.
proposed, accepted, rejected, deprecated, superseded, etc.
What is the issue that we're seeing that is motivating this decision or change.
............................................... | |
............................................... | |
....6Cw..6Cw................................... | |
...1A4..4A4.................................... | |
..aV5..bV8..................................... | |
............................................... | |
............................................... | |
.........#........8.......g.......o......x#.... | |
...Vb.Va..0.......1.......2.......3............ | |
...81O5xT#111222333444555666777888999aaabb..... |
I hereby claim:
To claim this, I am signing this object:
CREATE TABLE tseries AS | |
SELECT ts, (random()*9999)::int as count from generate_series( | |
'2015-01-01'::timestamptz, | |
'2016-06-01'::timestamptz, | |
'1 sec'::interval | |
) date; |
FROM ubuntu:14.04.3 | |
MAINTAINER Toby Hede <> | |
ENV ELIXIR_VERSION 1.1.1 | |
ENV PORT 80 | |
ENV MIX_ENV prod | |
# Elixir requires UTF-8 | |
RUN locale-gen en_US.UTF-8 |
// VSJONP ― Very Simple JSONP | |
// ========================== | |
// | |
// Usage: | |
// fetchJsonP({ | |
// url: 'http://shit-no-cors.json', | |
// complete: function(response) { | |
// console.log(response); | |
// } | |
// }); |
#!/usr/bin/env bash | |
uninstall() { | |
list=`gem list --no-versions` | |
for gem in $list; do | |
gem uninstall $gem -aIx | |
done | |
gem list | |
gem install bundler | |
} |
package main | |
import ( | |
// "fmt" | |
"log" | |
"net/http" | |
"runtime" | |
"github.com/go-martini/martini" | |
"github.com/jmoiron/sqlx" | |
"github.com/martini-contrib/render" |
<script type="text/jsx"> | |
/** @jsx React.DOM */ | |
var AppList = React.createClass({ | |
render: function() { | |
var elements = this.state.apps.map(function(app) { | |
return <AppElement app={app} /> | |
}) | |
return <ul>{elements}</ul>; |
defmodule Route do
import Weber.Route
require Weber.Route
route on("GET", "/new", :WeberTest.Main, :blah)
|> on("GET", "/", :WeberTest.Main, :index)
end