type CapsuleType ¶| pkg.go.dev
Overview ¶| pkg.go.dev
Caddy is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go| caddyserver.com
HTTP1 is simple and easy. With enough care you can open a TCP connection and hand-write an HTTP request to a server and get a response. Good fun. HTTP2 is more complex. Multiple bidirectional requests can be multiplexed over a single connection. You might use it with something like GRPC, or to get web pages to load faster. HTTP3 is wild stuff. Implemented over UDP instead of TCP. You can open a connection, open streams on that connection, send data with different types of ordering and deliver...| Max McDonnell
Go uses the net.Conn interface to abstract different types of network connections. A net.Conn has both Read and Write methods, and is usable as an io.Reader and an io.Writer. Some common implementations of net.Conn are net.TCPConn, which uses TCP to provide reliable streams, and tls.Conn, which wraps an existing net.Conn and uses TLS to provide secure streams. A net.Conn object is usually created with a Dialer object, or with the net.| dadrian.io
Discover how I transformed my reMarkable tablet into a portable whiteboard 📒✨, accessible from anywhere via a secure WireGuard VPN (tailscale) and cloud-based reverse proxy setup. From the comforts of WFH to the dynamic world of mobility, learn the tech behind the solution.| blog.owulveryck.info
Learn how to print the local outbound IP address of your machine| gosamples.dev
type ClientConn ¶| pkg.go.dev
type AlertError ¶| pkg.go.dev
Every Linux socket server is subject to inbound connection and request queueing at runtime. Learn how the kernel accept queue works, and how to observe it at runtime.| Kris Nóva
type URL ¶| pkg.go.dev
An introduction to Go errors.| go.dev
type Server ¶| pkg.go.dev
Summary| danp.net
Overview ¶| pkg.go.dev
Streaming video decoding via file descriptor passing| jonwillia.ms