Skip to content

Instantly share code, notes, and snippets.

View pradyungn's full-sized avatar
🏔️
Making stuff - but only with mountain theme.

Pradyun Narkadamilli pradyungn

🏔️
Making stuff - but only with mountain theme.
  • University of Illinois, Urbana Champaign
  • San Ramon, California
View GitHub Profile
@pradyungn
pradyungn / discord.css
Last active June 22, 2020 08:09
BetterDiscord Rice - Dracula Theme
.theme-dark,
.theme-light,
:root {
--background-tertiary: #1e1f29 !important;
--background-secondary-alt: #44475a !important;
--background-secondary: #1e1f29 !important;
--background-primary: #282a36 !important;
--background-accent: #44475a !important;
--background-floating: #1e1f29 !important;
@pradyungn
pradyungn / ScrappyStyle.css
Last active June 19, 2020 06:51
SOM Scrapbook!
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
background-color: #282a36;
font-family: 'Roboto', sans-serif;
}
.nav-link {
font-weight: 900;
font-style: italic;
text-decoration: none;
from random import randint
board = []
for x in range(5):
board.append(["O"] * 5)
def print_board(board):
for row in board:
print " ".join(row)