<aside> 💡 Notion Tip: Studying computer science in college means juggling coursework, side projects, internships, and more. Use this template to help you get organized and stay on top of your school to-do’s.

</aside>

https://indify.co/widgets/live/clock/iupnoiEhpTHIoHjN7YXy

🔗 Quick access

Quick access

https://indify.co/widgets/live/countdown/UZg2aqwtceGvWIfN5UrG

☑️ Habit tracker

September 2, 2022


September 1, 2022

↓ Click through the database tabs to create and see other views

Courses

↓ Click through the database tabs to create and see other views

Homework

🏗️ Personal projects


Social media app

Website redesign

Personal website

Weather tracker

Game of life

Trading bot

To-do app

↓ Click through the database tabs to create and see other views

Internship search

🧑‍💻 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;
}

↓ Click through the database tabs to create and see other views

Resources