Programming

Lua Basics Cheat Sheet

1. Installation Windows: Download from https://lua.org/download.html Linux/Mac: sudo apt install lua5.3 # Ubuntu brew install lua # macOS Check Version: lua -v 2. Hello World print(“Hello, Lua!”) 3. Variables and…

Read more

OpenCV & Python Basics Cheat Sheet

1. Installation pip install opencv-python opencv-python-headless Verify Installation: import cv2 print(cv2.__version__) 2. Import OpenCV import cv2 3. Reading and Displaying an Image img = cv2.imread(‘image.jpg’) cv2.imshow(‘Image’, img) cv2.waitKey(0) # Wait…

Read more

Django Basics Cheat Sheet

1. What is Django? Django is a Python-based web framework that follows the Model-View-Template (MVT) architecture. Why Use Django? Fast development Secure by default Scalable and maintainable 2. Installation pip…

Read more

Pandas Basics Cheat Sheet

Pandas is a powerful Python library for data manipulation, analysis, and visualization. 1. Installing and Importing Pandas pip install pandas import pandas as pd 2. Creating DataFrames and Series Create…

Read more

Golang (Go) Basics Cheat Sheet

1. Introduction to Golang Go (Golang) is an open-source programming language developed by Google. Known for simplicity, efficiency, and concurrency support. Designed for scalable and high-performance applications. 2. Setup and…

Read more