Skip to content

Instantly share code, notes, and snippets.

View kbingham's full-sized avatar

Kieran Bingham kbingham

View GitHub Profile
@KaairaGupta
KaairaGupta / libcamera_dev.md
Last active June 15, 2020 09:35
Steps to set up libcamera for dev (with latest media_master) using virtme
  • Follow https://libcamera.org/getting-started.html to install libcamera on your native machine.
  • Clone latest media_tree using:
    git clone git://linuxtv.org/media_tree.git
    
  • Install virtme:
    pip3 install --user git+https://github.com/ezequielgarcia/virtme.git
    
  • Compile Kernel with Virtme:
@atoponce
atoponce / wordlist-builder.py
Last active June 2, 2021 22:10
Simple proposal using BIPS-0039 to encode plus code character pairs into readable English words
#!/usr/bin/env python3
# https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt
with open('/tmp/english.txt', 'r') as f:
bips = f.readlines()
short_bips = []
# 442 unique words (all 4-character words)
for n in range(2048):