Skip to content

Instantly share code, notes, and snippets.

View nobodywasishere's full-sized avatar
🐝

Margret Riegert nobodywasishere

🐝
View GitHub Profile
@tonyallan
tonyallan / $README.md
Last active April 2, 2022 15:16
Python 3 update for Peter Norvig's Python Lisp
python3 lispytest.py
python3 lispy.py factorial.lsp

Source pages are:

  • https://norvig.com/lispy.html
  • https://norvig.com/lispy2.html

Moved to repo: /quenhus/uBlock-Origin-dev-filter

In order to keep filters up to date, please use this repo.

@sunsetsonwheels
sunsetsonwheels / Music.swift
Created July 29, 2021 02:28
macOS Monterey Music.app ScriptingBridge
import AppKit
import ScriptingBridge
@objc public protocol SBObjectProtocol: NSObjectProtocol {
func get() -> Any!
}
@objc public protocol SBApplicationProtocol: SBObjectProtocol {
func activate()
var delegate: SBApplicationDelegate! { get set }
/*
Jig for GoSund WP3 Serial Flash
Version 3.0
Created May 27, 2021
Modified May 28, 2021
NOTES:
@meganukebmp
meganukebmp / LineageDownloader.py
Created February 25, 2019 21:19
LineageOS batch downloader for archive purposes
import json
import urllib
import urllib.request
import os
import sys
import hashlib
# BUF_SIZE is totally arbitrary, change for your app!
BUF_SIZE = 65536 # lets read stuff in 64kb chunks!