Skip to content

Instantly share code, notes, and snippets.

View niksteff's full-sized avatar
⌨️
Just hacking away ...

Nik niksteff

⌨️
Just hacking away ...
View GitHub Profile
@niksteff
niksteff / http2_test.go
Last active December 14, 2023 12:33
Testing golang http2 client and server
package http2_test
import (
"crypto/tls"
"crypto/x509"
"net/http"
"net/http/httptest"
"testing"
"time"
@niksteff
niksteff / context.go
Created December 18, 2024 13:43
Just a play projec to check context behaviour
package gocontext
import (
"context"
"log/slog"
"sync"
"testing"
"time"
)