for i in $(shuf -n 2 /usr/share/dict/words); do printf "%s_" $i;done
Robert_Aspidoganoidei_
lifeless_disloyally_
| # /bin/python | |
| # -*- coding: utf-8 -*- | |
| # send_random_udp.py | |
| # send and receive random data over udp for testing | |
| # usage: send_random_udp.py [-h] {send,recv} ... | |
| # positional arguments: | |
| # {send,recv} send or receive data | |
| # optional arguments: | |
| # -h, --help show this help message and exit |
| #!/usr/bin/python3 | |
| import argparse | |
| from zlib import decompress | |
| from base64 import b64decode | |
| from random import randint | |
| from random import seed | |
| try: | |
| import argcomplete | |
| except ImportError: |
| /* | |
| * NAME: Arduino Mouse Jiggler | |
| * DATE: 2020-09-17 | |
| * DESC: Arduino based mouse emulator | |
| * VERSION: 1.0 | |
| */ | |
| #include <Mouse.h> | |
| //#define debug true |
DigitalOcean does not provide a way to download a snapshot of your droplet locally. You can use rsync to accomplish this instead.
On your local machine, assuming you have added your-server in your SSH config:
rsync -aAXHv --append-verify --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} your-server:/
-a : archive mode (all files, with permissions, etc.)-A : preserve ACLs/permissions (not included with -a)| on run argv | |
| tell application "iTerm" | |
| set t to make new terminal | |
| tell t | |
| activate current session | |
| launch session "Default Session" | |
| tell the last session | |
| write text "cd \"" & item 1 of argv & "\"; clear; pwd" | |
| end tell | |
| end tell |
| subnetFOUR=10.10.10 | |
| subnetSIX=fd86:ea05:1111: | |
| serverPubKey=$(cat /etc/wireguard/publickey) | |
| endPoint=12.13.14.15:51820 | |
| serverListenPort=51820 | |
| wgSrvNum=wg0 |
Pseudo-Compressed Zip Code table. Any 5 consecutive numbers in these sequences are legal US Zip (postal) codes. This is helpful for building dummy data in databases.
| Starting | Len | Sequence |
|---|---|---|
| 19807 | 50 | 198070585775925571950465464040390774860523389028027397 |
| 20575 | 51 | 2057523232605068040228326175650207072901029204027258558 |
| 26041 | 56 | 260412288020703105101582931605544033044890744442221913461358 |
| 38859 | 58 | 38859024035973120853082243604992281157652315482218301270145142 |
| from __future__ import annotations | |
| from rich.panel import Panel | |
| from rich.align import Align | |
| from rich.pretty import Pretty | |
| from rich import box | |
| from rich.traceback import Traceback | |
| from rich.console import RenderableType | |
| import rich.repr | |
| from textual import events |