You are here |
myadventuresincoding.wordpress.com | ||
| | | |
blog.nuculabs.de
|
|
| | | | 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: | |
| | | |
newcome.wordpress.com
|
|
| | | | I wanted to spin up a Linux development environment to hack on some code that needed epoll. I could have run everything in a Docker container, but I kinda wanted to be in that environment for total hackage. I thought maybe I'd just do it in a Virtualbox instance. Then I didn't want to install... | |
| | | |
juffalow.com
|
|
| | | | I am currently working on three computers and it is real pain to get everything synchronized. Of course I am using git repositories and cloud but I still have to get rid of apache server, databases, etc. So I decided to create Virtual Machine which I save on USB drive and try to do it this way. | |
| | | |
collantes.us
|
|
| | Ever since Amazon announced it's Route 53 service I have been dreaming on using it, but since I dislike to have services too spread out (got Google Apps and Linode now), I held up. Two days ago or so, Amazon announced new features that make hosting static websites-such as this one-on AWS S3 buckets possible. This was it, just what I have been waiting for! Promptly I set off to migrate one of my domains over Route 53. |