Skip to content

Instantly share code, notes, and snippets.

View geosoft1's full-sized avatar
:octocat:

George Calianu geosoft1

:octocat:
  • European Union, RO
View GitHub Profile
@geosoft1
geosoft1 / main.go
Last active November 29, 2022 17:44
Gorilla mux implementation for this example https://twitter.com/tebeka/status/1597506203218718721
package main
import (
"context"
"fmt"
"net/http"
"github.com/google/uuid"
"github.com/gorilla/mux"
)
@geosoft1
geosoft1 / main.go
Last active January 2, 2020 18:00
Simple RESTful pipeline
package main
import (
"fmt"
"io"
"io/ioutil"
"net/http"
)
/*
@geosoft1
geosoft1 / main.go
Last active November 17, 2022 18:02
Simple blockchain example
package main
import (
"crypto/sha256"
"encoding/hex"
"strconv"
"time"
)
type Data struct {