shaique7.devAWS Cheat SheetAn AWS cheat sheet provides an overview of key services: EC2 (Elastic Compute Cloud): Scalable virtual servers. S3 (Simple Storage Service): Object storage for files and data. RDS (Relational Database Service): Managed databases like MySQL, Postgr...Sep 2, 2024·1 min read
shaique7.devIntroduction to DSAA DSA cheat sheet covers essential concepts for efficient coding: Arrays: Fixed-size, indexed collection; fast access. Linked Lists: Elements linked via pointers; dynamic size. Stacks: LIFO structure; use push and pop operations. Queues: FIFO str...Sep 1, 2024·1 min read
shaique7.devIntroduction to MYSQLMySQL is a popular relational database management system. Key commands in a MySQL cheat sheet include those found in a typical MySQL cheat sheet: Connecting: mysql -u username -p to log in. Creating Databases: CREATE DATABASE dbname;. Selecting Da...Aug 31, 2024·1 min read
shaique7.devIntroduction to NumpyNumPy is a fundamental Python library for numerical computing. Key elements in a NumPy cheat sheet include: Importing: Use import numpy as np to access NumPy functions. Arrays: Create arrays with np.array([1, 2, 3]). Array Operations: Perform elem...Aug 30, 2024·1 min read
shaique7.devIntroduction to Mongodb Cheat SheetMongoDB is a popular NoSQL database known for its flexibility and scalability. Key commands in a MongoDB cheat sheet include: Insert Documents: db.collection.insertOne({}) or db.collection.insertMany([{}]). Query Documents: Use db.collection.find({...Aug 29, 2024·1 min read