Skip to content

Instantly share code, notes, and snippets.

View Alex-CD's full-sized avatar
🎯
Focusing

Alex Alex-CD

🎯
Focusing
View GitHub Profile
PROCESS_TITLE=terrible_meme_bot_prod
LOCAL_AUDIO_DIR=../audio
DISCORD_TOKEN=[Your token]
DEFAULT_COMMAND_PREFIX=!
@Alex-CD
Alex-CD / keybase.md
Created April 1, 2019 11:54
keybase.md

Keybase proof

I hereby claim:

  • I am alex-cd on github.
  • I am alexcd (https://keybase.io/alexcd) on keybase.
  • I have a public key ASD3__47TXzA3WAH-K-ixjHWqZAbRwrKybo3Yp_XQuU57wo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am alex-cd on github.
* I am alexcd (https://keybase.io/alexcd) on keybase.
* I have a public key ASD3__47TXzA3WAH-K-ixjHWqZAbRwrKybo3Yp_XQuU57wo
To claim this, I am signing this object:
@Alex-CD
Alex-CD / shawn-demo-run
Last active January 29, 2020 12:23
shawn-demo-script
#!/usr/bin/env bash
echo -e 'This script checks whether all devices are ready, then runs the demo.\nTurn all of the devices on and wait a minute before running this.\n\n\n'
###################
# SHAWN-DEMO SSID #
@Alex-CD
Alex-CD / PassFailParse.py
Last active June 9, 2018 16:52
Calculates Pass/Fail ratios on preliminary results released by RHUL.
class Subject:
passes = 0
fails = 0
def pass_(self):
self.passes += 1
def fail(self):
self.fails += 1