/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

epicserve.com
| | hakanu.net
2.1 parsecs away

Travel
| | Hit an error today, solution is very stupid, so I had to blog it here.
| | brunty.me
3.6 parsecs away

Travel
| | Developer and problem solver
| | ounapuu.ee
2.9 parsecs away

Travel
| | I use Uptime Kuma to check the availability of a few services that I run, with the most important one being my blog. It's really nice. Today I wanted to set it up on a different machine to help troubleshoot and confirm some latency issues that I've observed, and for that purpose I picked the cheapest ARM-based Hetzner Cloud VM hosted in Helsinki, Finland. Hetzner provides a public IPv6 address for free, but you have to pay extra for an IPv4 address. I didn't want to do that out of principle, so I went ahead and copied my Docker Compose definition over to the new server.
| | blog.nuculabs.de
18.3 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: