Skip to content

Instantly share code, notes, and snippets.

View ChrisGallardo's full-sized avatar

Chris Gallardo ChrisGallardo

View GitHub Profile
@ChrisGallardo
ChrisGallardo / cs50.h
Created October 31, 2020 20:38
cs50.h
/****************************************************************************
* CS50 Library 3.0
*
* https://manual.cs50.net/Library
*
* Glenn Holloway <holloway@eecs.harvard.edu>
* David J. Malan <malan@harvard.edu>
*
* Based on Eric Roberts' genlib.c and simpio.c.
*
@ChrisGallardo
ChrisGallardo / compiler.py
Last active August 26, 2020 16:49
Compiler Bot
import discord
from keepAlive import keepAlive
from subprocess import check_output
import json
TOKEN = ''
with open("token.json") as f:
j = json.load(f)
TOKEN = j["token"]