From 9965a3195967dd1c3dce8bd48662cbeefdf281b5 Mon Sep 17 00:00:00 2001 From: Tamwile Date: Mon, 30 Dec 2024 15:20:56 +0100 Subject: [PATCH 1/3] add erlang static http server oneliner; add python and erlang to toc --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 2c1b9e4e..fda4a11b 100644 --- a/README.md +++ b/README.md @@ -1712,6 +1712,8 @@ text :arrow_left: encoded * [certbot](#tool-certbot) * [network-other](#tool-network-other) * [git](#tool-git) + * [python](#tool-python) + * [erlang](#tool-erlang) * [awk](#tool-awk) * [sed](#tool-sed) * [grep](#tool-grep) @@ -4043,6 +4045,16 @@ python -m base64 -e <<< "sample string" python -m base64 -d <<< "dGhpcyBpcyBlbmNvZGVkCg==" ``` +##### Tool: [erlang](https://www.erlang.org/) + +###### Static HTTP web server + +```bash +erl -S httpd serve --port 8000 /path/to/serve +``` + + __ + ##### Tool: [awk](http://www.grymoire.com/Unix/Awk.html) ###### Search for matching lines From 01b89e63d2edf97bf822f34bf6055d2499fa1369 Mon Sep 17 00:00:00 2001 From: Tamwile Date: Mon, 30 Dec 2024 15:23:12 +0100 Subject: [PATCH 2/3] fix separator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fda4a11b..475313d5 100644 --- a/README.md +++ b/README.md @@ -4053,7 +4053,7 @@ python -m base64 -d <<< "dGhpcyBpcyBlbmNvZGVkCg==" erl -S httpd serve --port 8000 /path/to/serve ``` - __ +___ ##### Tool: [awk](http://www.grymoire.com/Unix/Awk.html) From 0ae3f549bce6a7013ae606f993477ef182fb982c Mon Sep 17 00:00:00 2001 From: Tamwile Date: Mon, 30 Dec 2024 15:29:08 +0100 Subject: [PATCH 3/3] GUI Tools - terminal emulators - add wezterm and ghostty --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 475313d5..04a8b969 100644 --- a/README.md +++ b/README.md @@ -388,6 +388,8 @@ Only main chapters:    Terminator - is based on GNOME Terminal, useful features for sysadmins and other users.
   Kitty - is a GPU based terminal emulator that supports smooth scrolling and images.
   Alacritty - is a fast, cross-platform, OpenGL terminal emulator.
+   Wezterm - is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust.
+   Ghostty - is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration.

##### :black_small_square: Network