This file has been truncated, but you can view the full file.
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
| // Open direct messages window, paste this into console. | |
| function deleteNextConversation() | |
| { | |
| if (!(dm = document.getElementsByClassName("DMInbox-conversationItem")[0])) { | |
| clearInterval(tmr) | |
| return; | |
| } | |
| dm.firstChild.click(); | |
| setTimeout('document.getElementsByClassName("js-actionDeleteConversation")[0].click()', 1000); |
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
| # IMPORTANT! | |
| # This gist has been transformed into a github repo | |
| # You can find the most recent version there: | |
| # https://github.com/Neo23x0/auditd | |
| # ___ ___ __ __ | |
| # / | __ ______/ (_) /_____/ / | |
| # / /| |/ / / / __ / / __/ __ / | |
| # / ___ / /_/ / /_/ / / /_/ /_/ / | |
| # /_/ |_\__,_/\__,_/_/\__/\__,_/ |
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
| even_letters = "bcdfghlmnprstwx" | |
| odd_letters = "aeiou" | |
| def format_uid_digit (n, level): | |
| if n != 0: | |
| letters = odd_letters if (level & 1) else even_letters | |
| base = len(letters) | |
| s = format_uid_digit(n / base, level + 1) | |
| return s + letters[(n % base)] | |
| return "" |
OlderNewer