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
["#F0F8FF", "#FAEBD7", "#00FFFF", "#7FFFD4", "#F0FFFF", "#F5F5DC", "#FFE4C4", "#000000", "#FFEBCD", "#0000FF", "#8A2BE2", "#A52A2A", "#DEB887", "#5F9EA0", "#7FFF00", "#D2691E", "#FF7F50", "#6495ED", "#FFF8DC", "#DC143C", "#00FFFF", "#00008B", "#008B8B", "#B8860B", "#A9A9A9", "#A9A9A9", "#006400", "#BDB76B", "#8B008B", "#556B2F", "#FF8C00", "#9932CC", "#8B0000", "#E9967A", "#8FBC8F", "#483D8B", "#2F4F4F", "#2F4F4F", "#00CED1", "#9400D3", "#FF1493", "#00BFFF", "#696969", "#696969", "#1E90FF", "#B22222", "#FFFAF0", "#228B22", "#FF00FF", "#DCDCDC", "#F8F8FF", "#FFD700", "#DAA520", "#808080", "#808080", "#008000", "#ADFF2F", "#F0FFF0", "#FF69B4", "#CD5C5C", "#4B0082", "#FFFFF0", "#F0E68C", "#E6E6FA", "#FFF0F5", "#7CFC00", "#FFFACD", "#ADD8E6", "#F08080", "#E0FFFF", "#FAFAD2", "#D3D3D3", "#D3D3D3", "#90EE90", "#FFB6C1", "#FFA07A", "#20B2AA", "#87CEFA", "#778899", "#778899", "#B0C4DE", "#FFFFE0", "#00FF00", "#32CD32", "#FAF0E6", "#FF00FF", "#800000", "#66CDAA", "#0000CD", "#BA55D3", "#9370DB", "#3CB371", "#7B68EE", |
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
__ __ ______ ______ ___ ______ _______ _______ | |
/ / / / / __ / / __ / / / / ____/ / _____/ / _____/ | |
/ / / / / /_/ / / / / / ___/ / / /__ / /____ / /____ | |
/ /_/ /_ / ____/ / / / / / __ / / ___/ /____ / /____ / | |
/ __ /_ ___ / /____ ___ / / / / ___ / /_/ / ___ / / ___ ____/ / ___ ____/ / | |
/__/ /____/ /__/ /______/ /__/ /__//__/ /__/ /______/ /__/ /_/ /__/ /______/ /__/ /______/ | |
__ __ ______ ______ ______ ______ __ __ | |
/ / / / / __ / / __ / / __ / / __ / / / / / |
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
// Derived from Gary Kessler's raw txt | |
// https://www.garykessler.net/library/file_sigs.html | |
// Having seen some erroneous rips, I had a go myself. Turns out the original had its fair share of issues too, but I think this is it | |
// { | |
// "these|extensions|share|a|profile": { | |
// "description": String, | |
// "head": Array, | |
// "kind": String, | |
// "offset": Integer, | |
// "tail": Array, |
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
""" | |
This script will count down from 5 and exit... unless you can press enter first ;) | |
""" | |
import keyboard, asyncio, time as t | |
async def get(key_checker): | |
await key_checker.wait() |