Bored? Read some articles!
I passed the PCEP – Certified Entry-Level Python Programmer exam!
I just want to share a few tips on how I passed the PCEP Python exam. Course from ACloudGuru Before I took the exam, I enrolled in the ACG course Certified Entry-Level Python Programmer Certification. At the start, it was kind of boring. It feels like all just basic...
Python Face Recognition
Basic python recognition using face_recognition library. Below you can find a few simple examples of face_recognition library. Requirements: dlibcmake Follow this guide to install those (for Windows...
GKE default SA security risk
Create a Cluster and Node Pool using the default service account Create a pod and SSH to that pod Example nginx.yml apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - name: nginx image: nginx Create that nginx pod then SSH to it....
Python and GCP setup
This article will guide us on how to interact with our Google Cloud Platform account using Python code. Our goal here is to get the instance's data like its name, internal IP, and status. Overview: Setup local python environmentInstall the Google API Python client...
Python GCP snippets
Get all GCP instance data like name, status, internal IP.Update GCP Cloud DNS (delete and add from Instances)Python + GKE - Get the pods! Get all GCP instance data like name, status, internal IP. # Credentials from specific GCP SA import os...
Basic Docker Image Build and deploy to K8s
This article will guide us to the basic steps on how to wrap your codes (for example a basic HTML file) to a docker image, upload it to docker hub so we can use it later for Kubernetes deployment, and run a deployment in K8s using that image. I will list some steps on...