Bootstrap: Spacing

Spacing Bootstrap 5 has a wide range of responsive margin and padding utility classes. They work for all breakpoints: xs (<=576px), sm (>=576px), md (>=768px), lg (>=992px), xl (>=1200px) or xxl (>=1400px)): The classes are used in the format: {property}{sides}-{size} for xs and {property}{sides}-{breakpoint}-{size} for sm, md, lg, xl and xxl. Where property is one of:…

MongoDB Shell

mongo show dbs use <your_db_name> show collections db.myCollection.find() db.myCollection.find().pretty() db.studentdata.getIndexes() db.studentdata.dropIndex({student_name: 1}) db.studentdata.dropIndexes() mongodump -d database_name -o directory_to_store_dumps mongorestore -d database_name directory_backup_where_mongodb_tobe_restored