Skip to content

Instantly share code, notes, and snippets.

View jkrovitz's full-sized avatar

Jeremy Krovitz jkrovitz

View GitHub Profile
@jkrovitz
jkrovitz / index.html
Created March 1, 2022 21:13
Svg 403 Access Forbidden.
<link href="https://fonts.googleapis.com/css?family=Do+Hyeon|Frijole|Josefin+Sans:300,400,400i,600,700|Viga" rel="stylesheet">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 306.8 404.9" style="enable-background:new 0 0 306.8 404.9;" xml:space="preserve">
<g>
<g class="st6">
@jkrovitz
jkrovitz / minmaxheap.py
Created February 28, 2017 22:01 — forked from gnarmis/minmaxheap.py
min max heap implementation in python
from math import log, floor, pow
class MinMaxHeap(object):
"""an implementation of min-max heap using an array,
which starts at 1 (ignores 0th element)
"""
def __init__(self, array=[]):
super(MinMaxHeap, self).__init__()
@jkrovitz
jkrovitz / StanfordBreakoutGame
Created March 30, 2016 19:58 — forked from NatashaTheRobot/StanfordBreakoutGame
Stanford CS106A Breakout Game Solution
/*
* File: Breakout.java
* -------------------
* Name:
* Section Leader:
*
* This file will eventually implement the game of Breakout.
*/
import acm.graphics.*;