cps := 30
return ; End of auto-execute
This file contains 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
#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) | |
} |
This file contains 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: 2023.05.22.2 | |
; https://gist.github.com/8809edd5a0f212ecec688141da590a24 | |
/* | |
now := A_Now | |
file := A_Desktop "\file." now ".txt" | |
link := A_Desktop "\link." now ".txt" | |
FileOpen(file, 0x1).Write("Hello World!") | |
created := CreateHardLink(link, file) |
This file contains 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: 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!") |
This file contains 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: 2022.06.30.1 | |
; https://gist.github.com/071310f149978639f2f58eb92128c479 | |
/* ;region Example | |
if (!A_IsAdmin) { | |
Run % "*RunAs " A_ScriptFullPath | |
ExitApp | |
} | |
now := A_Now |
This file contains 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: 2023.04.20.1 | |
; Usages and examples: https://redd.it/m0kzdy | |
; Configuration ↓ | |
wide := true ; Display the full hashes | |
; Enables/disabled algorithms | |
use := {} |
Canonical Spec: https://github.com/ulid/spec
- By default operates in monotonic mode.
ULID()
is an alias ofULID.Monotonic()
.- Use
ULID.Random()
for non-monotonic mode.
This file contains 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: 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). |
This file contains 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
# 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 |