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
| #![allow(dead_code)] | |
| use regex::{Regex, RegexBuilder}; | |
| static CTRL_CHARS: &str = r"\x00-\x1F\x7F"; | |
| static INVALID_CHARS: &str = "\u{FFFE}\u{FEFF}\u{FFFF}\u{202A}-\u{202E}"; | |
| static UNICODE_SPACES: &str = "\u{09}-\u{0D}\u{20}\u{85}\u{A0}\u{1680}\u{180E}\u{2000}-\u{200A}\u{2028}\u{2029}\u{202F}\u{205F}\u{3000}"; | |
| static LATIN_ACCENTS: &str = "\u{00C0}-\u{00D6}\u{00D8}-\u{00F6}\u{00F8}-\u{00FF}\u{0100}-\u{024F}\u{0253}-\u{0254}\ | |
| \u{0256}-\u{0257}\u{0259}\u{025b}\u{0263}\u{0268}\u{026F}\u{0272}\u{0289}\u{02BB}\u{1E00}-\u{1EFF}"; | |
| static PUNCTUATION: &str = r##"-_!"#$%&'()*+,./:;<=>?@\[\]^`{|}~"##; |
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
| Dexter in the Newsagent βββββββββββββββββ 10 plays | |
| gabby start βββββββββββββββββ 9 plays | |
| Elxnce βββββββββββββββββ 8 plays | |
| Anatole Muster βββββββββββββββββ 4 plays | |
| android52 βββββββββββββββββ 3 plays | |
| Can Of Bliss βββββββββββββββββ 3 plays | |
| Ahadadream βββββββββββββββββ 2 plays | |
| angelRay βββββββββββββββββ 2 plays | |
| Frost Children βββββββββββββββββ 2 plays | |
| Higgo βββββββββββββββββ 2 plays |
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
| // ==UserScript== | |
| // @name channel point claimer | |
| // @namespace 3moon | |
| // @match https://www.twitch.tv/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author 3moon | |
| // @description autoclaim channel points | |
| // ==/UserScript== |
OlderNewer