Skip to content

jyotika-dev/fullstack-integraminds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

First markdown line

HTML

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Bold Text Itallic Text Bold and Itallic Text

Resume

  • List Item 1
  • List Item 2
  • List Item 3
  • List Item 4
  • List Item 5
  • List Item 6
  1. List Item 1
  2. List Item 2
    1. Sub List Item 1
    2. Sub List Item 2
  3. List Item 3
  4. List Item 4
column 1 column 2 column 3
row 1 row 2 row 3
row 1 row 2 row 3
row 1 row 2 row 3

Tips to remember

  • Element
  • Tag -> Opening and Closing
  • Attribute
    • Mandatory Attributes
    • Optional Attributes
  • Whenever opening a tag/symbol, immediately close it

Resize the screen

Repository

#Truthy Falsy

if {(0) console.log("Truthy)}else{console.log("Falsy")} => False https://developer.mozilla.org/en-US/docs/Glossary/Truthy

if (true) if ({}) if ([]) if (42) if ("0") if ("false") if (new Date()) if (-42) if (12n) if (3.14) if (-3.14) if (Infinity) if (-Infinity)

CHECKLIST

TO DO

  • Medium Home Page ✅
  • Promise ✅
  • Async Await ✅
  • Mouse event listener ✅
  • Rest API ✅
  • React (16 Aug) ✅
  • use Memo
  • use ref
  • context
  • routing
  • iterate.py
  • resume.
  • Flask

REACT

  • Official Documentation: https://react.dev/
  • npm create vite@latest my-react-app -- --template react
  • npm install
  • npm run dev

-destructuring

FLASK

Read

  • find(query, projection) - returns array or empty array
  • findOne - returns object or null

Write

  • insertOne
  • insertMany

Update

  • updateOne
    • $set
    • $unset
    • $inc
    • $push
    • $pull ....
  • updateMany

Delete

  • deleteOne
  • deleteMany keep Pinned Aggregation
  • aggregate
  • pipeline
    • $match
    • $group
    • $project
    • $sort
    • $limit