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 New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-05-07 | |
// @description try to take over the world! | |
// @author You | |
// @match https://app.textrequest.com/app/queue | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=textrequest.com | |
// @grant none | |
// ==/UserScript== |
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
VERSION | |
9 | |
COMMSETTINGS | |
0 | |
COM6 | |
COM7 | |
115200 | |
2 | |
63 |
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
use clap::Parser; | |
#[derive(Parser)] | |
struct Cli { | |
/// Optional name to operate on | |
name: Option<String>, | |
} | |
fn parse_clap() -> String { |