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
/* set all text to lowercase */ | |
body { | |
text-transform: lowercase; | |
} | |
/* gray out prior credit */ | |
.term.credit { | |
background: #dedede; | |
} | |
.term.credit .classdiv { |
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
/* background */ | |
body { | |
font-family: 'Karla', sans-serif !important; | |
background-color: white; | |
} | |
/* classes */ | |
.fc-event-container a { |
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
/* ======================================== | |
* | |
* Shannon Peng | |
* 6.115 Final Project -- Grid Sequencer | |
* Spring 2019 | |
* | |
* ======================================== | |
*/ | |
#include <device.h> |
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
# 370_RINGTONE.py | |
# Created by Ian Hattwick with Fred Kelly | |
# Modified by Shannon Peng | |
# Original file created May 4 2020 | |
RAW_INCOMING_SERIAL_MONITOR = 0 | |
PACKET_INCOMING_SERIAL_MONITOR = 1 | |
import serial, serial.tools.list_ports, socket, sys | |
from pythonosc import osc_message_builder |