Skip to content

Instantly share code, notes, and snippets.

@Edznux
Edznux / .travis.yml
Created May 22, 2018 20:34 — forked from ryboe/.travis.yml
Example .travis.yml for Golang
language: go
# Only the last two Go releases are supported by the Go team with security
# updates. Any versions older than that should be considered deprecated.
# Don't bother testing with them. tip builds your code with the latest
# development version of Go. This can warn you that your code will break
# in the next version of Go. Don't worry! Later we declare that test runs
# are allowed to fail on Go tip.
go:
- 1.9

Keybase proof

I hereby claim:

  • I am edznux on github.
  • I am edznux (https://keybase.io/edznux) on keybase.
  • I have a public key ASCVlFidV2lZXP2CNONs3sI6ddzGz7DouBEI-j0eAx76_Ao

To claim this, I am signing this object:

var all = document.getElementsByTagName("*");
for (var i=0, max=all.length; i < max; i++) {
color = "#"+Math.floor(Math.random()*16777215).toString(16);
while(color.length < 7){
color+="0";
}
console.log(i + " : " + color);
all[i].style.background = color;
}