This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ================================================== | |
// ====== James' line dot Perlin noise thing ======== | |
// ========= (heavily inspired by Corbin) =========== | |
// ================================================== | |
import themidibus.*; | |
MidiBus myBus; | |
// ================================================== | |
// Mess with these variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
echo "Cloning necessary repositories..." | |
git clone https://github.com/neomutt/neomutt | |
git clone --recursive https://github.com/neomutt/neomutt.github.io | |
git clone https://github.com/neomutt/doxygen | |
cd neomutt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from bs4 import BeautifulSoup | |
from twilio.rest import TwilioRestClient | |
import json | |
import os | |
import re | |
import requests | |
url = 'https://postmates.com/los-angeles' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from subprocess import run | |
def main(): | |
run(['vim']) | |
if __name__ == "__main__": | |
main() |