Skip to content

Instantly share code, notes, and snippets.

View craigjperry2's full-sized avatar

Craig J Perry craigjperry2

View GitHub Profile
@craigjperry2
craigjperry2 / Browser Extension Example
Last active September 19, 2021 14:22
Simple Example of Augmenting a Vendor App with a Browser Extension
Simple example of a browser extension to augment a vendor web-app for a poster on HN.
@craigjperry2
craigjperry2 / Lisp Workbook
Last active September 19, 2021 14:19
Progress through the on lisp book
Sync notes & files as i work through learning lisp via various books.
@craigjperry2
craigjperry2 / scanner.py
Created February 4, 2019 20:23
Ultra Basic SunSDR2 Pro Scanner
#!/usr/bin/env python
import serial
import sys
import time
def main():
freqs = [145.350, 145.400, 145.500]
with serial.Serial('COM6', 19200, timeout=1) as ser:
while True: