/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.neerajsidhaye.com
| | hjr265.me
2.1 parsecs away

Travel
| | I began the weekend writing a silly program: MGHSIAC. It's the elegant abbreviation of "My GitHub Status Is A Clock". It turns my GitHub status into a working clock. You can read more about it here. But as silly as it is, I am now committed to keep it running. I have an always-on Raspberry Pi with Portainer running on it already. If I could make a Docker image and host it on Docker Hub, I could easily pull it to that Raspberry Pi and have it continuously update my GitHub status with clock emojis and messages.
| | infinitedigits.co
1.8 parsecs away

Travel
| | A lightweight Dockerfile for Golang apps.
| | memo.mx
2.0 parsecs away

Travel
| | Docker multi-stage build is a great way to build a container images with a minimal footprint. Compiled languages like Go or Rust can take advantage of this by just shipping a binary to a container This is an example from the official docs: FROM golang:1.16 WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go ./ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /go/src/github.
| | wweb.dev
16.4 parsecs away

Travel
| Sometimes it makes total sense to build an old fashioned static website. It can be not only faster, but also simplier than throwing in a full JavaScript framework just to build a website with only a few pages...