public_html
directory in your home directory was the place where the web server looked for to serve files from. This would make something like http://localhost/~your_username work. But it's been a while since I've done any of this myself...
# I am the Watcher. I am your guide through this vast new twtiverse. # # Usage: # https://watcher.sour.is/api/plain/users View list of users and latest twt date. # https://watcher.sour.is/api/plain/twt View all twts. # https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri. # https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject. # # Options: # uri Filter to show a specific users twts. # offset Start index for quey. # limit Count of items to return (going back in time). # # twt range = 1 60812 # self = https://watcher.sour.is?uri=https://twtxt.net/user/prologic/twtxt.txt&offset=56080 # next = https://watcher.sour.is?uri=https://twtxt.net/user/prologic/twtxt.txt&offset=56180 # prev = https://watcher.sour.is?uri=https://twtxt.net/user/prologic/twtxt.txt&offset=55980
public_html
directory in your home directory was the place where the web server looked for to serve files from. This would make something like http://localhost/~your_username work. But it's been a while since I've done any of this myself...
public_html
directory in your home directory was the place where the web server looked for to serve files from. This would make something like http://localhost/~ work. But it's been a while since I've done any of this myself...
$ dig @1.1.1.1 +short onlydomains.com.au a
198.50.252.65
$ nc -vvv 198.50.252.65 443
nc: connectx to 198.50.252.65 port 443 (tcp) failed: Connection refused
$ dig @1.1.1.1 +short onlydomains.com.au a
198.50.252.65
$ nc -vvv 198.50.252.65 443
nc: connectx to 198.50.252.65 port 443 (tcp) failed: Connection refused
dash
or ash
, very nice POSIX Sh compliant shells:
$ ./foo.sh
./foo.sh: line 5: [: bar: integer expression expected
shellcheck
to check your shell codedash
or ash
, very nice POSIX Sh compliant shells:
$ ./foo.sh
./foo.sh: line 5: [: bar: integer expression expected
shellcheck
to check your shell code[
and ]
errors out with shellcheck
as expected:
Invalid number for -eq. Use = to compare as string (or use $var to expand as a variable). [SC2170]
[
and ]
errors out with shellcheck
as expected:
Invalid number for -eq. Use = to compare as string (or use $var to expand as a variable). [SC2170]
In POSIX sh, [[ ]] is undefined. [SC3010]
In POSIX sh, [[ ]] is undefined. [SC3010]
shellcheck
being used here? It would have picked this (contrived) example up?
bar is referenced but not assigned. [SC2154]
shellcheck
being used here? It would have picked this (contrived) example up?
bar is referenced but not assigned. [SC2154]
sudo apt install apache2
sudo apt install apache2