Home
Ajay Tekam
Cancel
Preview Image

GoLang Programming Basics Notes

Contents Program Structure Running and Compilation Package Imports Creating Custom Packages Variables Basic Data Types User Input Output with fmt Array and Slices Loops in Go ...

Preview Image

Github Actions for Beginners

Contents Introduction Definition Use Cases Workflow File Steps Sections Managing Secrets Setting up Environment Variables Setting up Different Events Introduction GitHub Act...

Preview Image

Python Programming Basics for Beginners

Contents Simple Python Code Example Taking input from User Functions Main Function like Structure Simple try-except Block Python Command-line Arguments File IO Data types in Pytho...

Preview Image

Terraform Notes for Absolute Beginners

Contents What is Terraform Terraform Providers Provider Versioning Terraform Resources Terraform State Terraform Configuration Basics Attributes Variables Simpl...

Preview Image

What is DNS and how it works

Contents How DNS Works Types of DNS Servers Types of DNS Queries Recursive Query Iterative Query Non-Recursive Query Resource Records (RR) and Zone file D...

Preview Image

Building and Running Services with Docker Compose

Docker Compose docker-compsoe is used for defining and running multi-container Docker applications. docker-compose uses docker-compose.yaml file to configure application’s services, and after...

Preview Image

Building Docker Images with Dockerfile

Building Docker image with Dockerfile Dockerfile Instructions : FROM : Specify Base image. LABELS : Adds metadata to an image. RUN : Executes commands in a new layer and commit the results...

Preview Image

Docker Containers Basic Notes for Beginners

Contents Docker Introduction Docker Containers Containerization Docker Architecture Docker Image Dockerfile Basic command usages Sh...

Preview Image

Kubernetes Basics Notes for Beginners

Contents Kubernetes Basics What is kubernetes Container Orchastration Kubernetes Architecture Kubernetes Services Setting up k8s cluster with minikube in ubuntu s...

Preview Image

Javascript Window.Open() method basics

The window.open() method open a new brower window like a new tab or popup depending on the parameter values. Syntax : window.open(URL, NAME, SPECS, REPLACE) Where : URL : Specifies the URL o...