I hereby claim:
- I am nicklanng on github.
- I am nicklanng (https://keybase.io/nicklanng) on keybase.
- I have a public key ASCXwczclyx3sZjB3h0VbXTIL_LMvGT9HZWcjLvHTsjRwwo
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"github.com/faiface/pixel" | |
"github.com/faiface/pixel/imdraw" | |
"github.com/faiface/pixel/pixelgl" | |
"github.com/faiface/pixel/text" | |
"golang.org/x/image/colornames" | |
"golang.org/x/image/font/basicfont" |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"image" | |
"image/color" | |
"image/png" | |
"math" | |
"os" |
package my_test | |
import "testing" | |
type AnInterface interface { | |
Update() int | |
} | |
type ImplementsInterface struct { | |
} |
package lib | |
import ( | |
"math" | |
) | |
const ( | |
QuadTreeCapacity = 32 | |
QuadTreeMaxDepth = 12 | |
) |
package main | |
// useful links | |
// http://wavefilegem.com/how_wave_files_work.html | |
// https://wiki.multimedia.cx/index.php/Microsoft_ADPCM | |
// https://github.com/bovarysme/adpcm/blob/master/status.go | |
import ( | |
"bytes" | |
"encoding/binary" |
<html> | |
<body> | |
Im an iframe! | |
<script> | |
console.log(window.parent.origin) | |
console.log(window.parent) | |
</script> | |
</body> | |
</html> |
#!/bin/sh | |
if [ "$TERM" = "linux" ]; then | |
/bin/echo -e " | |
\e]P0050304 | |
\e]P1181114 | |
\e]P22d2227 | |
\e]P3493941 | |
\e]P46d5762 | |
\e]P5997b89 | |
\e]P6bdabb3 |
if [ -z $TRAVIS_TAG ]; then | |
lastVersion=$(git tag -l --sort=v:refname *.*.* | tail -1) | |
if [ -z $lastVersion ]; then | |
lastVersion=0.0.0 | |
fi | |
version=$lastVersion-dev | |
else | |
version=$TRAVIS_TAG | |
fi |
html { | |
background: #000 !important; | |
} | |
/* main elements */ | |
html > body, | |
table, | |
tbody, | |
tr, | |
td, |