Skip to content

Instantly share code, notes, and snippets.

View amydevs's full-sized avatar
👋
half-time quarter-stack developer

Amy! amydevs

👋
half-time quarter-stack developer
View GitHub Profile
@amydevs
amydevs / sptd
Last active November 17, 2021 07:15
Bash Script to Start "spotifyd" Alongside "spotify-tui" / "spt"
#!/bin/bash
### When saving this script, please run "chmod +x" on it to make it executable! ###
# Default behaviour is that "spotifyd' is killed when "spt" is closed.
# To make spotifyd continue running in the background, simple start the command with the "-b" argument.
keepSptdInBackground=false
POSITIONAL=()
while [[ $# -gt 0 ]]; do
@anonymous1184
anonymous1184 / AppVol.ahk
Last active March 15, 2025 12:52
AppVol()
#Requires AutoHotkey v2.0
AppVol(Target := "A", Level := 0) {
if (Target ~= "^[-+]?\d+$") {
Level := Target
Target := "A"
} else if (SubStr(Target, -4) = ".exe") {
Target := "ahk_exe " Target
}
try {
@juanplopes
juanplopes / rsa.py
Last active July 14, 2023 17:35
RSA by example
from random import randint
#----Step 1
# First, choose two random primes.
# In real world, they should be really big primes (hundreds of digits).
p, q = 41, 47
#----Step 2
# From them we have n=p*q and phi(n)=(p-1)*(q-1).