Skip to content

Instantly share code, notes, and snippets.

View user404d's full-sized avatar

Quincy Conduff user404d

View GitHub Profile

Keybase proof

I hereby claim:

  • I am user404d on github.
  • I am user404d (https://keybase.io/user404d) on keybase.
  • I have a public key ASAvUXF7EoRiEP8Q_vrjFmEP_3g3xyUDjLXL1Lgi9MCGDgo

To claim this, I am signing this object:

@user404d
user404d / jhwhw.cls
Created February 11, 2018 00:44 — forked from jhwilson/jhwhw.cls
JHW document class for Homework assignments
%=====================================================================
% jhwhw.cls
% Provide jhwhw.cls class
%=====================================================================
%=====================================================================
% Identification
%=====================================================================
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{jhwhw}[2009/02/11 Justin Wilson's Homework Class]
@user404d
user404d / data.sql
Created September 3, 2017 06:38
sample data for testing
insert into teams (name, contact_email, is_eligible, password) values ('bob', 'b', 'f', ''), ('cat', 'c', 'f', '');
insert into submissions (team_id, version, status, submission_url, image_name) values (1, 1, 'finished', '', 'siggame/joueur.py'), (2, 1, 'finished', '', 'siggame/joueur.py');
insert into games (status) values ('queued'), ('queued'), ('queued');
insert into games_submissions (game_id, submission_id) values (1, 1), (1,2), (2,1), (2,2), (3,1), (3,2);