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