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 | |
// simulateC.c comes from api.pshdl.org | |
// http://api.pshdl.org/api/v0.1/workspace/3978D82198FB1F6B | |
// in this case | |
// #include "simulateC.h" | |
import "C" | |
import ( |
// mailing helpers | |
type loginAuth struct { | |
username, password string | |
} | |
func LoginAuth(username, password string) smtp.Auth { | |
return &loginAuth{username, password} | |
} | |
func (a *loginAuth) Start(server *smtp.ServerInfo) (string, []byte, error) { |
package main | |
import ( | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"net" | |
"os/exec" | |
) |
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" | |
) |
MIT License | |
Copyright (c) <year> <copyright holders> | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE S |
package main | |
import ( | |
"bufio" | |
"encoding/binary" | |
"fmt" | |
"io" | |
"os" | |
"os/exec" | |
"runtime" |