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
| --- | |
| Language: CSharp | |
| # BasedOnStyle: Microsoft | |
| AccessModifierOffset: -2 | |
| AlignAfterOpenBracket: Align | |
| AlignArrayOfStructures: None | |
| AlignConsecutiveAssignments: | |
| Enabled: false | |
| AcrossEmptyLines: false | |
| AcrossComments: 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
| #!/bin/bash | |
| # | |
| # An easy way to install PrivateBin in a secure method, seperating files that can be | |
| # publicly accessible and ones that shouldn't be. | |
| # | |
| # NOTE: | |
| # This script requires root privileges to modify ownership of the files. | |
| # | |
| # Version: v1.0.0 | |
| # License: MIT License |
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
| // Easily remove bookmarks en masse on Twitter/X via the browser's developer tools console. | |
| // | |
| // NOTE: If you have many bookmarks, you WILL encounter the "429 (Too Many Requests)" error. | |
| // The best way to resolve this is use a VPN to change your IP while still logged into your existing account. | |
| // | |
| // NOTE 2: Code was generated by ChatGPT and modified by me. | |
| const bulkUnbookmark = (() => { | |
| let running = false; | |
| const sleep = (ms) => new Promise(r => setTimeout(r, ms)); |
OlderNewer