/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

boyter.org
| | benhoyt.com
5.2 parsecs away

Travel
| | A brief introduction to Go for programmers who haven't used Go before: Why use it? The standard library. And the language itself.
| | lipanski.com
4.1 parsecs away

Travel
| | Speed up your Docker builds with -cache-from
| | earthly.dev
3.8 parsecs away

Travel
| | This tutorial explains how to use BuildKit cache to speed up Docker builds. By leveraging BuildKit's caching feature, developers can significan...
| | blog.nuculabs.de
18.6 parsecs away

Travel
| Hello, In this article I will show you how to install Python versions on Linux using the following methods: compiling from source, dead snakes ppa and pyenv. To make things easier, if you want to follow along in an environment that you can break, you can create a local Kubernetes cluster using Minikube. Next, I'm going to use the following yaml file to create an Ubuntu pod: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 apiVersion: v1 kind: Pod metadata: name: ubuntu labels: app: ubuntu spec: containers: - image: ubuntu command: - "sleep" - "604800" imagePullPolicy: IfNotPresent name: ubuntu restartPolicy: Always Save the above yaml in a file ubuntu_pod.yaml and run: