💡 quote of the day

https://indify.co/widgets/live/quotes/iUwRwEyCFl5db1t6jC3A

☑️ habit tracker

🔗 quick access

Quick access

🏗️ Personal projects


make your own vscode theme

netflix clone

website

my website

news tracker

game

discord bot

app

https://open.spotify.com/playlist/4xqaDMF4E9zFOoENyZQ9Fk?si=4733e3f01cac4018

resources and videos

🧑‍💻 Code snippets

CSS

.center {
  text-align: center;
}
.box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box div {
  width: 100px;
  height: 100px;
}

Python

for i in range(5):
	print(i)
print("Mob Psycho 100", end="")
arr = [2, 4, 6, 3, 8, 10]

for index,value in enumerate(arr):
  print(f"At Index {index} The Value Is -> {value}")

JavaScript

for (let i = 0; i < 5; i++) {
  console.log(i)
}
const elem = document.getElementById('p');
function myFunction(p1, p2) 
{
  return p1 * p2;
}