Skip to content

Instantly share code, notes, and snippets.

View ehsannm's full-sized avatar

Ehsan N. Moosa ehsannm

View GitHub Profile
@ehsannm
ehsannm / gist:d8d5a16f9bf6029e6c089127613a165e
Last active May 23, 2024 17:21
Simple demonstration of reading gzipped content in Golang using builtin http client
package main
import (
"compress/gzip"
"fmt"
"io"
"net/http"
"strings"
)
@ehsannm
ehsannm / remote-module-keys.go
Last active June 4, 2022 11:16
remote module
package main
import (
"fmt"
"math/rand"
"os"
"os/signal"
"time"
)