Skip to content

Instantly share code, notes, and snippets.

View pa-0's full-sized avatar

Peter Abbasi pa-0

View GitHub Profile
@pa-0
pa-0 / Elevate.ahk
Created December 24, 2023 04:40 — forked from anonymous1184/Elevate.ahk
Elevate() / ElevateWait()
#Requires AutoHotkey v2.0
; Version: 2023.06.09.2
; https://gist.github.com/d92498381a74a4535662306152b34ab
; Usage and examples: https://redd.it/1450upb
Elevate(Target, WorkingDir := "", Options := "", &OutputVarPID := 0) {
return Elevate_(false, Target, WorkingDir, Options, &OutputVarPID)
}

; Version: 2022.06.30.1
; https://gist.github.com/49a60fb49402c2ebd4d9bc6db03813a1
/* ;region Example
now := A_Now
junction := A_Desktop "\Junction." now
directory := A_Desktop "\Directory." now
FileCreateDir % directory
FileOpen(directory "\test.txt", 0x1).Write("Hello World!")
@pa-0
pa-0 / HashFile.ahk
Last active December 24, 2023 15:23 — forked from anonymous1184/HashFile.ahk
Quick File Hashing

; Version: 2023.04.20.1
; Usages and examples: https://redd.it/m0kzdy
; Configuration ↓
wide := true ; Display the full hashes
; Enables/disabled algorithms
use := {}
@pa-0
pa-0 / AutoClickers.md
Created December 24, 2023 15:25 — forked from anonymous1184/AutoClickers.md
Auto-Clickers

Auto-Clickers

Toggle + Click & Hold (loop)

cps := 30

return ; End of auto-execute
@pa-0
pa-0 / README.md
Created December 24, 2023 15:33 — forked from anonymous1184/README.md
ahk.v1-2.ULID

Universally Unique Lexicographically Sortable Identifier

Canonical Spec: https://github.com/ulid/spec

ULID()

  • By default operates in monotonic mode.
  • ULID() is an alias of ULID.Monotonic().
  • Use ULID.Random() for non-monotonic mode.
@pa-0
pa-0 / Clip.ahk
Last active September 16, 2024 06:11 — forked from anonymous1184/Clip.ahk
Clipboard Wrapper
; Version: 2022.06.30.1
; Usages and examples: https://redd.it/mpf896
/* Clipboard Wrapper
.Locked ; Clipboard status.
.Check() ; Automated check (throws Exception).
.Backup() ; Manual backup.
.Clear([Backup := true]) ; Empties (automatic backup).
@pa-0
pa-0 / wget.sh
Created December 27, 2023 02:39 — forked from Dammmien/wget.sh
wget cheat sheet
# POST a JSON file and redirect output to stdout
wget -q -O - --header="Content-Type:application/json" --post-file=foo.json http://127.0.0.1
# Download a complete website
wget -m -r -linf -k -p -q -E -e robots=off http://127.0.0.1
# But it may be sufficient
wget -mpk http://127.0.0.1
# Download all images of a website