This file contains hidden or 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
HOW TO UPDATE YOUR SKY2040 README | |
================================= | |
https://gp2040-ce.info/ | |
https://github.com/OpenStickCommunity/GP2040-CE | |
Tested from 0.7.3 to 0.7.7 | |
- SKY2040 uses the default 'Raspberry Pi Pico' chip as of Jan 2024. | |
- You want the Pico version of the firmware: GP2040-CE_0.X.X_Pico.uf2 | |
- You can find official GP2040 firmware here: https://gp2040-ce.info/downloads/download-page |
This file contains hidden or 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
import urllib2 | |
import json | |
import time | |
import threading | |
import socket | |
import string | |
import os | |
import random | |
import traceback | |
import sys |
This file contains hidden or 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
import socket | |
import requests | |
import json | |
import time | |
import threading | |
# Connection Information | |
network = "irc.twitch.net" | |
port = 6667 | |
channel = "#channelname" |
This file contains hidden or 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/bash | |
# +----------------------------------------------------------------------+ | |
# | | | |
# | Set up Mac OS X to store temporary files in RAM rather than on disk.| | |
# | | | |
# | By Philipp Klaus <http://blog.philippklaus.de> | | |
# | | | |
# | Originally by Ricardo Gameiro <http://blogs.nullvision.com/?p=357> | | |
# | Changes by Daniel Jenkins | |