Explore >> Select a destination


You are here

www.mattlayman.com
| | www.blog.pythonlibrary.org
5.9 parsecs away

Travel
| | The TOML (Tom's Obvious Minimal Language) format came out in 2013, so it's been around for more than a decade. Python added support for TOML in Python
| | pythonspeed.com
3.8 parsecs away

Travel
| | Python has two packaging systems, pip and Conda. Learn the differences between them so you can pick the right one for you.
| | blog.miguelgrinberg.com
1.7 parsecs away

Travel
| | miguelgrinberg.com
| | memo.mx
19.4 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...