Pinned Repositories
auth
calendar
editorjs
expense-tracker
favroite-place
Feedback_Management_System
frontend-assignment
generate_password
Write a programme, which generates a random password for the user. Ask the user how long they want their password to be, and how many letters and numbers they want in their password. Have a mix of upper and lowercase letters, as well as numbers and symbols. The password should be a minimum of 6 characters long.
Generating-a-sine-vs-cosine-curve
For this project, you will have a generate a sine vs cosine curve. You will need to use the numpy library to access the sine and cosine functions. You will also need to use the matplotlib library to draw the curve. To make this more difficult, make the graph go from -360° to 360°, with there being a 90° difference between each point on the x-axis.
Guess_Game.py
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
booleanShudhanshu's Repositories
booleanShudhanshu/frontend-assignment
booleanShudhanshu/favroite-place
booleanShudhanshu/auth
booleanShudhanshu/expense-tracker
booleanShudhanshu/meal
booleanShudhanshu/guessNumber
booleanShudhanshu/truthAndDare
booleanShudhanshu/editorjs
booleanShudhanshu/template-app
React, redux, typescript, url
booleanShudhanshu/calendar
booleanShudhanshu/infiniteScroll
booleanShudhanshu/tic-tac-toe-React.js
This project demonstrate the very famous tic-tac-toe game using React.js
booleanShudhanshu/table-add-delete-update
booleanShudhanshu/login-form
This is login form demo
booleanShudhanshu/Feedback_Management_System
booleanShudhanshu/tic_tac_toe.c
Tic Tac toe is a game in which two players seek in alternate turns to complete a row, a column, or a diagonal with either three O's or three X's drawn in the spaces of a grid of nine squares; noughts and crosses.
booleanShudhanshu/Generating-a-sine-vs-cosine-curve
For this project, you will have a generate a sine vs cosine curve. You will need to use the numpy library to access the sine and cosine functions. You will also need to use the matplotlib library to draw the curve. To make this more difficult, make the graph go from -360° to 360°, with there being a 90° difference between each point on the x-axis.
booleanShudhanshu/generate_password
Write a programme, which generates a random password for the user. Ask the user how long they want their password to be, and how many letters and numbers they want in their password. Have a mix of upper and lowercase letters, as well as numbers and symbols. The password should be a minimum of 6 characters long.
booleanShudhanshu/Guess_Game.py
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
booleanShudhanshu/rock_papper_scissor_game.py
Make a rock-paper-scissors game where it is the player vs the computer. The computer’s answer will be randomly generated, while the program will ask the user for their input. This project will better your understanding of while loops and if statements.