Skip to content

Instantly share code, notes, and snippets.

View daleianni's full-sized avatar

Dale Ianni daleianni

  • Coventry, CT, USA
  • 17:52 (UTC -04:00)
View GitHub Profile
@lfhbento
lfhbento / userscript.js
Last active January 17, 2026 07:15 — forked from spf13/script.js
Download all your Kindle books before Feb 26, 2025
// ==UserScript==
// @name Kindle Download
// @namespace http://tampermonkey.net/
// @version 2025-02-20
// @description Download all your kindle books
// @author You
// @match https://www.amazon.com/hz/mycd/digital-console/contentlist/booksPurchases/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.com
// @grant none
// ==/UserScript==
#!/bin/bash
# ----------------------------------------------------------------------------
# ESP32 Firmware Uploader © 2020 Stéphane Calderoni
# ----------------------------------------------------------------------------
# This program is designed to flash the ESP32 from the following binary files:
# - firmware.bin your application
# - partitions.bin the partition table
# ----------------------------------------------------------------------------
@m1cr0lab
m1cr0lab / snake.py
Last active May 24, 2025 12:14
Learn to Code a Snake Game with CircuitPython on Gamebuino META
# ----------------------------------------------------------
# Learn to Code a Snake Game with Python
# Gamebuino Academy Workshop
# https://gamebuino.com/academy/workshop/learn-to-code-a-snake-game-with-python
# ----------------------------------------------------------
# This game is based on the CircuitPython environment, which
# is an implementation of the Python language specific to
# microcontrollers. CircuitPython runs on the SAMD21G18
# architecture of the Gamebuino META.
# ----------------------------------------------------------