/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

nsirap.com
| | jtreminio.com
0.9 parsecs away

Travel
| | Juan Treminio - Dallas based senior web developer
| | nikhiljha.com
2.1 parsecs away

Travel
| |
| | pavelkorolev.xyz
1.3 parsecs away

Travel
| | I had an idea to host a blog by myself for a long time and finally got it done. The main thing which stopped me until this moment was a lack of experience in DevOps stuff and perfectionism in terms of how to make things easier for me. All I wanted to do is write posts, push it to some repository. Another side of this pipeline looked so complex to implement.
| | memo.mx
13.9 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.