Skip to content

Instantly share code, notes, and snippets.

View huskyui's full-sized avatar
😀
the world is worth fighting for

huskyui huskyui

😀
the world is worth fighting for
  • ly
  • suzhou,china
View GitHub Profile
@huskyui
huskyui / gist:8b27f795c8c82e683f3f21135c7fe98d
Created March 23, 2023 11:48 — forked from mattetti/gist:3798173
async fetching of urls using goroutines and channels
package main
import (
"fmt"
"net/http"
"time"
)
var urls = []string{
"https://splice.com/",
@huskyui
huskyui / main.go
Created September 15, 2022 10:27 — forked from xyproto/main.go
gzip compression/decompression example
package main
import (
"fmt"
"compress/gzip"
"io"
"io/ioutil"
"bytes"
"log"
)