Explore >> Select a destination


You are here

blog.kulman.sk
| | memo.mx
10.6 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 /g...
| | taonaw.com
10.7 parsecs away

Travel
| | Thoughts about upgrading Emacs on macOS: 28.4 to 30.1
| | ash.ms
7.9 parsecs away

Travel
| | Tonight I set up a ssh tunnel that punches out from my server skipping the NAT, forwarding, and DNS complexities entirely. It'll dial home from anywhere there's network so I could even take my server to the park and it should work over 5g.
| | epicserve.com
71.0 parsecs away

Travel
| Since Heroku no longer has a free plan, I wanted to try out fly.io that I've heard about as an alternative to Heroku. For me there is no better way to try it than to use my Django Base Site. In the past, I made sure that my starter template project worked with Heroku, so it makes sense that I should try it out with a new and up and coming PaaS.