Skip to content

Instantly share code, notes, and snippets.

View rishiosaur's full-sized avatar
🌁
dreamin'

Rishi Kothari rishiosaur

🌁
dreamin'
View GitHub Profile
@rishiosaur
rishiosaur / main.css
Last active June 18, 2020 16:40
Summer of Making Theme!
/*! 98.css v0.1.16 - https://github.com/jdan/98.css */@font-face{font-family:"Pixelated MS Sans Serif";src:url(ms_sans_serif.woff) format("woff");src:url(ms_sans_serif.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:"Pixelated MS Sans Serif";src:url(ms_sans_serif_bold.woff) format("woff");src:url(ms_sans_serif_bold.woff2) format("woff2");font-weight:700;font-style:normal}body{font-family:Arial;font-size:12px;color:#222}.title-bar,.window,button,input,label,option,select,textarea,ul.tree-view{font-family:"Pixelated MS Sans Serif",Arial;-webkit-font-smoothing:none;font-size:11px}h1{font-size:5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}u{text-decoration:none;border-bottom:.5px solid #222}button{box-sizing:border-box;border:none;border-radius:0;min-width:75px;min-height:23px;padding:0 12px}.vertical-bar,button{background:silver;box-shadow:inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf}.vertical-bar{width:4px;height:20px}butt
@rishiosaur
rishiosaur / index.md
Last active June 1, 2020 11:41
The end of the last chapter, the beginning of the next.

An introduction.

When I was in Grade 3, I built my first website and my first few programs.

When I was in Grade 5, I started my own YT Channel (now defunct, of course) for programming and CS theory, and in Grade 7, I started my very first Coding Club at school.

Back then, everything that I did was secure. My code was mine, and that was it. My reasoning for that decision? Nobody wanted to see it anyways.

However, in Grade 8, everything changed.

Keybase proof

I hereby claim:

  • I am rishiosaur on github.
  • I am heyrishi (https://keybase.io/heyrishi) on keybase.
  • I have a public key ASAqWwt4wv9VJeu4m_WqtIU2zdEm0kgM4Wyo-RnxBf6AFAo

To claim this, I am signing this object:

@rishiosaur
rishiosaur / Incremental Game.markdown
Last active March 1, 2016 20:06
Incremental Game
@rishiosaur
rishiosaur / Incremental Game.markdown
Last active March 1, 2016 18:19
Incremental Game
@rishiosaur
rishiosaur / index.html
Created December 11, 2015 14:29
the hexagon
<canvas id = 'canv'></canvas>
@rishiosaur
rishiosaur / Tic-Tac-Toe-2.markdown
Last active November 26, 2015 19:27
Tic-Tac-Toe-2
@rishiosaur
rishiosaur / app.js
Last active November 13, 2015 16:05
rOodgW
$(function() {
var squares = [],
SIZE = 3,
EMPTY = "&nbsp;",
score,
moves,
turn = "X",
/*