You are here |
blog.jerrycodes.com | ||
| | | |
tomekdev.com
|
|
| | | | A bunch of actions you should set when starting a new project that will set you in the right direction | |
| | | |
sam.hooke.me
|
|
| | | | software notes | |
| | | |
jinyuz.dev
|
|
| | | | It's really worth investing time configuring your project and make it easy for other developers to contribute. One way of enabling this is a clean, organized, and well-formatted code. This is really helpful especially for first time developers or contributors as it makes pull request reviews less painful (e.g. trailing white space, unorganized imports, debug statements) We can easily prevent this by using a tool called pre-commit. Let's get started! | |
| | | |
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: |