Skip to content

Instantly share code, notes, and snippets.

View barzamin's full-sized avatar
🌆
i continue to work. the city sleeps.

erin petra sofiya moon barzamin

🌆
i continue to work. the city sleeps.
View GitHub Profile
#![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##"-_!"#$%&'()*+,./:;<=>?@\[\]^`{|}~"##;
Origami Angel ████▌░░░░░░░░░░░░ 19 plays
Imogen Heap ███▉░░░░░░░░░░░░░ 16 plays
Porter Robinson █▍░░░░░░░░░░░░░░░ 6 plays
Sweet Pill █▏░░░░░░░░░░░░░░░ 5 plays
trsh █▏░░░░░░░░░░░░░░░ 5 plays
user-177606669 █▏░░░░░░░░░░░░░░░ 5 plays
Brother Ali ▉░░░░░░░░░░░░░░░░ 4 plays
macseal ▉░░░░░░░░░░░░░░░░ 4 plays
2hollis ▋░░░░░░░░░░░░░░░░ 3 plays
ABSRDST ▋░░░░░░░░░░░░░░░░ 3 plays
@barzamin
barzamin / channel-points.js
Created June 4, 2022 21:22
twitch channel point claimer
// ==UserScript==
// @name channel point claimer
// @namespace 3moon
// @match https://www.twitch.tv/*
// @grant none
// @version 1.0
// @author 3moon
// @description autoclaim channel points
// ==/UserScript==