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
Verifying that I control the following Nostr public key: npub1ntvtt70k4r3y8tc0qmszwae68xn8l9df3j3phcdccrchdslwn7psqpx9ss |
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
/** | |
* | |
* ionic-storage for React/VanillaJS | |
* | |
* This file was simply copied from | |
* https://github.com/ionic-team/ionic-storage/blob/master/src/storage.ts | |
* and adjusted to work on vanilla JavaScript as well as on React. | |
* No Angular dependencies required. | |
* | |
* Dependencies: |
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
╔════════════════════════════════════════════════════════════════════════════╗ | |
║ Sessions ║ | |
╚════════════════════════════════════════════════════════════════════════════╝ | |
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ | |
┃ $ tmux ┃ ┃ $ tmux ls ┃ | |
┃ $ tmux new ┃ ┃ $ tmux list-sessions ┃ | |
┃ $ tmux new-session ┃ ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ | |
┃ : new ┃ [Ctrl] + [b] [s] | |
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛ Show all sessions | |
Start a new session |
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
#!/bin/bash | |
usage() { echo "Usage: $0 [-d <up|down>] [-f <directory>] [-v <cql version>] [-h <host>] [-p <port>] (-s <startpoint>)" 1>&2; exit 1; } | |
while getopts ":d:f:v:h:p:s:" opt; do | |
case $opt in | |
d) | |
MIGRATE_DIRECTION=$OPTARG | |
;; | |
f) |