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
from pdfreader import SimplePDFViewer | |
def to_float(string): | |
return float(string.strip()) | |
def extract_usage_from_pdf(file_name): | |
fd = open(file_name, "rb") | |
viewer = SimplePDFViewer(fd) |
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
esphome: | |
name: test-ble | |
platform: ESP32 | |
board: mhetesp32minikit | |
esp32_ble_tracker: | |
ble_client: | |
- mac_address: F0:5E:CD:BB:21:07 | |
id: potting_shed_ble_client |
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
{ | |
"name": "cncjs-app", | |
"version": "1.9.27-20230115-e163c2c2", | |
"lockfileVersion": 3, | |
"requires": true, | |
"packages": { | |
"": { | |
"name": "cncjs-app", | |
"version": "1.9.27-20230115-e163c2c2", | |
"license": "MIT", |
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
brew tap proxmark/proxmark3 | |
brew install proxmark3 | |
proxmark3 /dev/tty.usbmodem214401 | |
lf hid read 1 | |
# present card | |
# read the tag id and copy it | |
# place the ring on the LF antena, have the antenna cutting the ring in half (don't just put it in the middle) | |
lf hid clone SOMEHEXVALUE | |
# remove ring | |
lf hid read 1 |
OlderNewer