Skip to content

Instantly share code, notes, and snippets.

View codingconcepts's full-sized avatar
🪳

Rob Reid codingconcepts

🪳
View GitHub Profile

Keybase proof

I hereby claim:

  • I am codingconcepts on github.
  • I am ngc4594 (https://keybase.io/ngc4594) on keybase.
  • I have a public key ASCafvKw1Bd0sdRnBlz3RIs0Wdg9AamphjyEhn1thdvX0Ao

To claim this, I am signing this object:

package main
import (
"crypto/rand"
"database/sql"
"encoding/json"
"fmt"
"log"
"net/http"
"time"
package main
import (
"crypto/rand"
"encoding/binary"
"fmt"
"time"
)
const (
package main
import (
"encoding/json"
"fmt"
"log"
"strings"
)
func main() {
package main
import (
"fmt"
"log"
mgo "gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
@codingconcepts
codingconcepts / main.go
Created January 4, 2018 10:04
FizzBuzz web server test
package main
import (
"fmt"
"log"
"net/http"
"strconv"
)
func main() {