Posts

Showing posts from April, 2024

Ai roadmap

 1:https://www.youtube.com/watch?v=H-RKfV2ZJbI maths: 3 blue one brown video  khan academy free code camp calculus diff and integration linera algebra probability diff and integration python:-basics datatypes if else for loop oops concept function simple project  game free code camp  tech with tim 3 data analysis :- 1:numpy:--number//array form   //Python library used for working with arrays 2 pandas:-tabular form//.csv how to extract data from that tabular form //Pandas is a Python library used for working with data sets 3:matpltib :-- //Matplotlib is a comprehensive library for  creating static, animated, and interactive visualizations in Python. to represent the data... framework:-- 1:pytorch 2:scikit learn .......................basic idea  3: tensorflow 4:kera model:--  course sera machine learning supervised learning........lebel.. regression problem:- logistic regression polynomial regression  classification problem k nearest neig...

nodeauthentication

  Dependencies are the crucial packages required for your application to function in a production environment. At the same time,  devDependencies are tools and utilities that aid in the development process but are not needed in production. npm i -D nodemon[dev dpendency] userController.js:- before jwt authentication:- import UserModel from "../Models/User.js" ; import bcrypt from 'bcrypt' export default class userController {     static userRegistration = async ( req , res ) => {         const { username , userpass } = req . body ;                 // console.log(req.body);                 try {                         const user = await UserModel . find ({ username : username })         if ( user ){ res . status ( 409 ). send ({ status : "failed" , message : "username alre...