I hereby claim:
- I am cryptix on github.
- I am cryptix (https://keybase.io/cryptix) on keybase.
- I have a public key whose fingerprint is FD14 3DF5 8E62 AB23 421D EAE5 8D7D 5D44 0B9F 6E26
To claim this, I am signing this object:
package main | |
import ( | |
"database/sql" | |
_ "github.com/go-sql-driver/mysql" | |
"log" | |
) | |
const sqlConf = "root:root@tcp(localhost:3306)/testJoinScan" |
I hereby claim:
To claim this, I am signing this object:
0.0000 169.4456 -248.4184 | |
0.0000 169.4412 -248.4166 | |
0.0000 169.4411 -248.4100 | |
0.0000 169.4363 -248.4091 | |
0.0000 169.4333 -248.4034 | |
0.0000 169.4315 -248.4015 | |
0.0000 169.4271 -248.3997 | |
0.0000 169.4237 -248.3950 | |
0.0000 169.4212 -248.3950 | |
0.0000 169.4178 -248.3903 |
package main | |
import ( | |
"github.com/go-martini/martini" | |
"github.com/martini-contrib/render" | |
"html/template" | |
) | |
var templateFuncs = template.FuncMap{ | |
// define an empty stub first, otherwise html/template will complain with "missing function" |
package main | |
import ( | |
"fmt" | |
"io" | |
"os" | |
"labix.org/v2/mgo" | |
) |
package main | |
import ( | |
"bufio" | |
"encoding/binary" | |
"fmt" | |
"io" | |
"os" | |
"os/exec" | |
"runtime" |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>test</title> | |
</head> | |
<script src="main.js"></script> | |
<script> | |
function mkListInJs (id) { | |
var div = document.getElementById(id); | |
var ul = document.createElement("ul"); |
# DOCKER-VERSION 1.0.0 | |
FROM postgres:9.3 | |
# install extensions thanks @georged | |
RUN cd contrib/pgcrypto && make && make install | |
ADD . /schemaSetup | |
# try to statup db.. blocks... :/ |
package main | |
import ( | |
"fmt" | |
"github.com/GeertJohan/go.rice" | |
) | |
const weirdTmp = "/tmp/weird" |