Skip to content

Instantly share code, notes, and snippets.

View wildneuro's full-sized avatar

Victor Brunko wildneuro

View GitHub Profile
@wildneuro
wildneuro / main.go
Created April 15, 2020 23:19
Closures and Go routines
package main
import (
"fmt"
)
func works() {
done := make(chan bool)
values := []string{"a", "b", "c"}
@wildneuro
wildneuro / keybase.md
Created October 25, 2018 03:08
keybase.md

Keybase proof

I hereby claim:

  • I am wildneuro on github.
  • I am wildneuro (https://keybase.io/wildneuro) on keybase.
  • I have a public key ASDbtCfIlqCTUGRh6ZkC1QeLU134SxTCDETeCh3v3N2M_wo

To claim this, I am signing this object:

@wildneuro
wildneuro / main.go
Created October 21, 2018 15:50
medium.com / DB2 Golang Sample Main
package main
import (
"fmt"
"log"
"os"
_ "github.com/alexbrainman/odbc"
"github.com/jmoiron/sqlx"
)