draft
optional
author:melvincarvalho
This NIP defines a way to associate a Nostr public key with a domain name.
Nostr NIP-05 specification makes it a bit harder to serve identifiers from a simple webserver without CGI to run an external program handling the name
URL query parameter. I really didn't want to do all that, so instead I focused on how to handle everything just in Nginx itself.
Inside the http
block insert map
and map_hash_bucket_size
directives:
map_hash_bucket_size 256;
map $arg_name $nostr_key {
This doc has been replaced by the official Ordinals Handbook - https://docs.ordinals.com/guides/collecting/sparrow-wallet.html
Explanations are only given for commands not present in the original DuckyScript, for everything else refer to DuckyScript documentation.
These mean exactly what one would expect and should need no further explanation.
CTRL
, CONTROL
, SHIFT
, ALT
, GUI
, WINDOWS
CTRL-ALT
, CTRL-SHIFT
, ALT-SHIFT
, ALT-GUI
, GUI-SHIFT
REM Navigate Chrome on macOS to The Verge website | |
DELAY 2000 | |
ATTACKMODE HID STORAGE VID_05AC PID_0220 MAN_HAK5 PROD_DUCKY SERIAL_1337 | |
DELAY 1000 | |
REM Open Launcher | |
F4 | |
DELAY 500 | |
REM Launch Chrome | |
STRING Chrome | |
DELAY 200 |
# OSX for Hackers (Mavericks/Yosemite) | |
# | |
# Source: https://gist.github.com/brandonb927/3195465 | |
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Ask for the administrator password upfront |