Skip to content

Instantly share code, notes, and snippets.

View prplz's full-sized avatar

Michael prplz

  • MEL, AU
View GitHub Profile
@prplz
prplz / .md
Last active December 6, 2022 02:38
sipeed m1s notes
import time
import board
import digitalio
import neopixel
r = digitalio.DigitalInOut(board.LED_RED)
g = digitalio.DigitalInOut(board.LED_GREEN)
b = digitalio.DigitalInOut(board.LED_BLUE)
@prplz
prplz /
Last active November 14, 2022 15:58
We couldn’t find that file to show.
@prplz
prplz / twitter.css
Last active June 30, 2024 02:40
Twitter
[aria-label="Search and explore"],
[aria-label="Who to follow"],
[aria-label="Timeline: Trending now"],
[aria-label="Footer"],
[aria-label="Premium"],
[aria-label="Lists"],
[aria-label="Communities"],
[aria-label="Grok"],
[aria-label="Verified Orgs"] {
display: none;
from argparse import ArgumentParser
from zipfile import ZipFile
def main():
parser = ArgumentParser()
parser.add_argument('first')
parser.add_argument('second')
args = parser.parse_args()