Skip to content

Instantly share code, notes, and snippets.

View obiknows's full-sized avatar
🥋
cookin'

Obinna obiknows

🥋
cookin'
  • ask me
View GitHub Profile
@obiknows
obiknows / docker-compose-template.yaml
Created December 11, 2017 00:31
Example Docker Compose .yaml file
version: "3"
services:
redis:
image: redis:alpine
ports:
- "6379"
networks:
- frontend
deploy:
@obiknows
obiknows / keybase.md
Created January 9, 2018 14:48
github Keybase

Keybase proof

I hereby claim:

  • I am obiknows on github.
  • I am thes0urce (https://keybase.io/thes0urce) on keybase.
  • I have a public key ASCHULlo5BufXS-0Up-sPKOcKRzq0RdXWBkSiVRrTiJKoAo

To claim this, I am signing this object:

@obiknows
obiknows / golang.md
Created April 8, 2018 14:05
A Golang Reference Sheet
@obiknows
obiknows / blockchain.go
Created May 30, 2018 06:32
A Tiny Blockchain
package main
import (
"crypto/sha256"
"encoding/hex"
"encoding/json"
"io"
"log"
"net/http"
"os"