Posts

Showing posts from June, 2024

Tic Tac Toe Using HTML,CSS,JAVASCRIPT

 HTML <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Tic Tac Toe </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "turn-container" >         < h3 > Turn For </ h3 >         < div class = "turn-box align" > X </ div >         < div class = "turn-box align" > O </ div >         < div class = "bg" ></ div >     </ div >     < div class = "main-grid" >         < div class = "box align" > 0 </ div >         < div class = "box align" > 1 </ div >      ...

Create,Read,Drop,Insert One and many, Ordered,Unordered insert in mongoDB

Image
(c) Microsoft Corporation. All rights reserved. C:\Users\ACER>mongosh Current Mongosh Log ID: 66611d66e3c4dda298cdcdf5 Connecting to:          mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+2.2.6 Using MongoDB:          7.0.11 Using Mongosh:          2.2.6 For mongosh info see: https://docs.mongodb.com/mongodb-shell/ ------    The server generated these startup warnings when booting    2024-06-04T11:56:28.597+05:30: Access control is not enabled for the database. Read and write access to data and configuration is unrestricted ------ test> use students switched to db students students> db.data.insertOne({'Name':'Debadatta', age:19}) {   acknowledged: true,   insertedId: ObjectId('66611e1ae3c4dda298cdcdf6') } students> db.data.insertMany([ {'Name':'Debadatta', age:19}, {'Name':'Jyotiranjan', age:20}, {'Name':'Aditya', ...