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
| // ==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== |
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
| #!/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 | |
| # ---------------------------------------------------------------------------- |
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
| # ---------------------------------------------------------- | |
| # 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. | |
| # ---------------------------------------------------------- |