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
| REM This script does two main things: | |
| REM | |
| REM 1. If run in a location containing the .github folder, it commits its contents to the chosen repo. | |
| REM 2. It deletes selected labels and creates new ones. | |
| REM | |
| REM The first part can be achieved by cloning a template repository. | |
| REM The second is trickier, since template repositories do not include label data. | |
| REM | |
| REM Very useful for me, probably not very useful for you. | |
| REM |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <script> | |
| // https://stackoverflow.com/a/76281061/1469208 | |
| var svgcontainer, svg, canvas, ctx, output, interval; | |
| var num = 101; |