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
| from __future__ import annotations | |
| class BoxCli(): | |
| def __init__(self: BoxCli, title: str = "", width: int = 0, lines: list[str] = [], _parent_width: int = 0) -> None: | |
| self.__width: int = (width if width > len(title) else len(title))+4 | |
| self.title: str = title | |
| self.lines: list[str] = lines | |
| self._parent_width: int = _parent_width | |
| self._child: BoxCli | None = None |
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
| import sys | |
| import os | |
| import re | |
| import gzip | |
| ### ARGUMENTS ### | |
| if not len(sys.argv) == 2: # No arguments given | |
| print(""" | |
| help: python IPCensorship.py [DIRECTORY] <Replacement String> |
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
| //Use on https://store.steampowered.com/search/ | |
| //By Folfy Blue | |
| function startLoadingGames() { | |
| var scroll = setInterval(function(){ window.scrollBy(0,1000000); }, 1000); //load new games by scrolling down | |
| } | |
| function listFreeGames() { | |
| for(var i = 0; i < 10000; i++) { | |
| window.clearInterval(i); |
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
| return { | |
| ["regional_indicator_a"] = "", | |
| ["regional_indicator_b"] = "🇧", | |
| ["regional_indicator_c"] = "🇨", | |
| ["regional_indicator_d"] = "🇩", | |
| ["regional_indicator_e"] = "🇪", | |
| ["regional_indicator_f"] = "🇫", | |
| ["regional_indicator_g"] = "🇬", | |
| ["regional_indicator_h"] = "🇭", | |
| ["regional_indicator_i"] = "🇮", |