Repositories (2)

TacoBot
2 snippets stored for this repo
Python IconPython
'You’re so dense, light bends around you.',
            'Your mother may have told you that you could be anything you wanted, but a douchebag wasn’t what she meant.',
            'You are so ugly that when you were born, the doctor slapped your mother.',
Python IconPython
'Your face looks like it was set on fire and put out with chains.',
            'Your mother may have told you that you could be anything you wanted, but a douchebag wasn’t what she meant.',
            'You are so ugly that when you were born, the doctor slapped your mother.',
yuyu
2 snippets stored for this repo
Rust IconRust
characters,
        site: "e-hentai".to_string(),
        id: metadata.gid.to_string(),
Rust IconRust
pub async fn get_metadata(url: &str) -> Result<GMetaData> {
    let url_regex = RegexBuilder::new(r"https://e-hentai.org/g/([0-9]+)/([a-zA-Z0-9]+)").build()?;
    let c = url_regex.captures(url).unwrap();