Skip to content

Instantly share code, notes, and snippets.

View devplayg's full-sized avatar

Devplayg devplayg

  • Developer Playground
  • Republic of Korea
View GitHub Profile
@devplayg
devplayg / hash_test.go
Created February 2, 2020 00:12
Benchmark test in Go
package test
import (
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"crypto/sha512"
"hash"
"hash/fnv"
"log"
@devplayg
devplayg / consumer_group.go
Created June 7, 2019 04:35
sarama/examples/consumergroup/main.go
package main
import (
"context"
"flag"
"log"
"os"
"os/signal"
"strings"
"syscall"
@devplayg
devplayg / tcpserver.go
Last active March 25, 2019 10:23
Simple TCP Server
package main
import (
"flag"
"io"
"log"
"net"
"os"
"strings"
)