Skip to content

Instantly share code, notes, and snippets.

View SteveRyherd's full-sized avatar
💭
I may be slow to respond.

Steve Ryherd SteveRyherd

💭
I may be slow to respond.
View GitHub Profile
// ==UserScript==
// @name Change OTP Field Type
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Change the password field for OTP to a standard text field with autocomplete for one-time codes.
// @match https://ep.fram.idm.toyota.com/*
// @grant none
// ==/UserScript==
(function() {
@SteveRyherd
SteveRyherd / gist:d306b6556db812f1bd141e8031764ca7
Created February 26, 2025 00:25
Backup message attachments
#!/bin/bash
# Set destination folder (change as needed)
dest=~/dest
# Create destination folder if it doesn't exist
mkdir -p "$dest"
# Recursively find all files in ~/Messages/Attachments/
find ~/Messages/Attachments/ -type f | while IFS= read -r file; do
base=$(basename "$file")