There are more ways to do it in perl6, so thats bad!
# Python
map('link-{}'.format, itertools.count())
# or
(f'link-{n}' for n in itertools.count())
Cloudflare: | |
1.1.1.1 | |
1.0.0.1 | |
2606:4700:4700::1111 | |
2606:4700:4700::1001 | |
Quad9: | |
9.9.9.9 | |
149.112.112.112 | |
2620:fe::fe | |
2620:fe::9 |
Instead of Google Calander...
Instead of Google Keep...
#!/bin/dash | |
seq 1000000 | | |
sed 's|^|https://example.com/|' | | |
xargs -P20 -n1000 \ | |
curl -sSNL -X HEAD --retry 5 -w '%{http_code},%{url_effective}\n' | | |
tee urls.txt |
{ | |
"array" = [ | |
"value" | |
"value" | |
] | |
"array_empty" = [ | |
] | |
"array_nested" = [ | |
[ | |
[ |
from signal import signal as _signal | |
from collections import defaultdict as _defaultdict | |
__all__ = ['pls_handle'] | |
_pls_handlets = _defaultdict(list) | |
def _the_pls_handle_signal_handler(signalnum, frame): |
#!/bin/sh | |
detect_color_resolution() { | |
# 24bit | |
if [ "$COLORTERM" = "truecolor" ] | |
then | |
printf '%s\n' 24 | |
return | |
elif [ "$COLORTERM" = "24bit" ] | |
then |