Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| import hashlib | |
| import hmac | |
| import time | |
| import starlette | |
| WEBHOOK_SIGNING_KEY = "<YOUR_WEBHOOK_SIGNING_KEY>" | |
| SECONDS_TO_STALE = 300 # 5 minutes | |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| // Written by Nick Gammon | |
| // February 2011 | |
| /** | |
| * Send arbitrary number of bits at whatever clock rate (tested at 500 KHZ and 500 HZ). | |
| * This script will capture the SPI bytes, when a '\n' is recieved it will then output | |
| * the captured byte stream via the serial. | |
| */ | |
| #include <SPI.h> |