Skip to content

Instantly share code, notes, and snippets.

View Dubhs's full-sized avatar

Dubh Dunne Dubhs

  • Missouri
View GitHub Profile
// ==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==
VERSION
9
COMMSETTINGS
0
COM6
COM7
115200
2
63
@Dubhs
Dubhs / clapArgToString.rs
Created January 24, 2024 00:42
simple rust function that takes first command line arg and returns it as a string
use clap::Parser;
#[derive(Parser)]
struct Cli {
/// Optional name to operate on
name: Option<String>,
}
fn parse_clap() -> String {