Skip to content

Instantly share code, notes, and snippets.

View Tee-Stark's full-sized avatar
🌩️
learning Cloud & DevOps

Timmy Omolana Tee-Stark

🌩️
learning Cloud & DevOps
View GitHub Profile
@LordGhostX
LordGhostX / blockchain.go
Last active March 27, 2024 20:34
Blockchain POC with Golang
package main
import (
"crypto/sha256"
"encoding/json"
"fmt"
"strconv"
"strings"
"time"
)