| s | s-max | d-max | update |
|---|---|---|---|
| streamable | ? | ? | 08/26/2023 |
| imgur | 200mb | 60sec | 08/26/2023 |
| catbox | 200mb | ? | 08/26/2023 |
| litterbox | 1gb | ? | 08/26/2023 |
| send | 2.5gb | ? | 08/26/2023 |
| wormhole | 5gb | ? | 08/26/2023 |
| lufi | 100mb | ? | 08/26/2023 |
| filebin | ? | ? | 08/26/2023 |
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
| (Get-WmiObject Win32_Process -Filter "name = 'appName.exe'" | where {$_.CommandLine -like '*ARGS*'}).Terminate() |
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
| { | |
| "iqs": [], | |
| "pgx": [], | |
| "juf": [], | |
| "jqr": [], | |
| "uni": [], | |
| "nfb": [], | |
| "ccr": [], | |
| "hcn": [], | |
| "dls": [ |
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 os | |
| import sys | |
| import ctypes | |
| from PyQt5.QtCore import Qt | |
| from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QPushButton | |
| def is_admin(): | |
| try: return ctypes.windll.shell32.IsUserAnAdmin() | |
| except: return False |
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=2022-06-23&rangetype=1day < 2 | |
| ?from=2022-06-24&rangetype=1day | |
| ?from=2022-06-25&rangetype=1day | |
| ?from=2022-06-26&rangetype=1day | |
| ?from=2022-06-27&rangetype=1day | |
| ?from=2022-06-28&rangetype=1day | |
| ?from=2022-06-29&rangetype=1day | |
| ?from=2022-06-30&rangetype=1day | |
| ?from=2022-07-01&rangetype=1day |
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
| # Github bookmarks | |
| --- | |
| bookmarks: | |
| keyboard: | |
| - https://www.farah.cl/Keyboardery/A-Visual-Comparison-of-Different-National-Layouts | |
| andr: | |
| - https://stackoverflow.com/a/72406336 | |
| - https://stackoverflow.com/a/35691988 | |
| github: | |
| - https://github.com/littlecodersh/ItChat/blob/master/itchat/config.py |
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
| { | |
| "sessions": { | |
| "12308": { | |
| "start_key": "11072023190618", | |
| "last_key": "11072023190618", | |
| "processes": { | |
| "11072023190618": { | |
| "finished": false | |
| } | |
| } |
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
| interface fastEthernet 0/0 | |
| ip address 192.168.1.2 255.255.255.0 | |
| no sh | |
| security passwords min-length ? | |
| security passwords min-length 10 | |
| line vty 0 4 | |
| login local | |
| exec-timeout ? | |
| execc-timeout 2 |
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
| javascript:(() => { | |
| function toggleBlurEffect() { | |
| const e = document.body.style.filter; | |
| e && e.includes("blur") ? document.body.style.filter = "" : document.body.style.filter = "blur(30px)"; | |
| } | |
| document.addEventListener("click", toggleBlurEffect); | |
| document.title = "Tab name hidden."; | |
| document.querySelectorAll('link[href$=".ico"],link[href*="favicon"]').forEach(e => e.href = "data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="); | |
| })(); |
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
| html | |
| bootstrap | |
| docs | |
| https://getbootstrap.com/docs/5.3/customize/color-modes/#enable-dark-mode | |
| https://getbootstrap.com/docs/5.3/getting-started/download/ | |
| python | |
| scraping | |
| https://selenium-python.readthedocs.io/ | |
| flask | |
| https://flask.palletsprojects.com/en/2.3.x/patterns/flashing/ |