Skip to content

Instantly share code, notes, and snippets.

View itishprasad30's full-sized avatar
:octocat:
Focusing

Itish Prasad Sahoo itishprasad30

:octocat:
Focusing
View GitHub Profile
@itishprasad30
itishprasad30 / Test.css
Created August 1, 2023 06:07
TodoApp Using Spring Boot
todo-list-app/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── com.example.todolist/
│ │ │ │ ├── controller/
│ │ │ │ │ ├── TodoController.java
│ │ │ │ ├── model/
│ │ │ │ │ ├── Todo.java
│ │ │ │ ├── repository/
@itishprasad30
itishprasad30 / actual-output.md
Created April 4, 2022 15:24
Tailwind Css profile rounded with ranbow

image image

ezgif-1-4b9fa72376

@itishprasad30
itishprasad30 / app.js
Last active March 27, 2022 12:05
Wordle Game
let wordList = ["apple", "horse", "music", "pintu", "water", "pizza"];
let randomIndex = Math.floor(Math.random() * wordList.length);
let secret = wordList[randomIndex];
let history = [];
let currentAttempt = "";
let counter = 0;
let grid = document.getElementById("grid");
buildGrid();