User contributions for 413vhcu1lq0463ob
A user with 305 edits. Account created on 6 October 2024.
16 November 2024
- 00:2600:26, 16 November 2024 diff hist +144 N ProxMox Advanced Course Created page with "== Importing disks images from other virtualizers == qm importdisk <vm id> <disk image> <storage pool> (e.g.) qm importdisk 101 disk.vhd local" Tag: Visual edit
- 00:2600:26, 16 November 2024 diff hist +30 Linux No edit summary Tag: Visual edit
15 November 2024
- 23:3123:31, 15 November 2024 diff hist +1 Run one script in multiple servers →run.py current Tag: Visual edit
14 November 2024
- 05:1705:17, 14 November 2024 diff hist +73 MarkDown No edit summary current Tag: Visual edit
- 05:1505:15, 14 November 2024 diff hist +135 MarkDown No edit summary Tag: Visual edit
- 05:1105:11, 14 November 2024 diff hist +195 N MarkDown Created page with "markdown basic syntax : https://www.markdownguide.org/basic-syntax/ markdown extended syntax : https://www.markdownguide.org/extended-syntax/ here is the idea, make a markdown to html compiler." Tag: Visual edit
- 05:0805:08, 14 November 2024 diff hist +15 Main Page →Stuffs Tag: Visual edit
- 04:5204:52, 14 November 2024 diff hist +43 Pedro's Fedora Linux setup No edit summary
- 04:3204:32, 14 November 2024 diff hist +17 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
- 04:2504:25, 14 November 2024 diff hist +4 Pedro's Fedora Linux setup No edit summary
- 04:2204:22, 14 November 2024 diff hist +114 Pedro's Fedora Linux setup No edit summary
- 04:1904:19, 14 November 2024 diff hist +399 Pedro's Fedora Linux setup No edit summary
12 November 2024
- 13:0613:06, 12 November 2024 diff hist −68 Run one script in multiple servers →run.py Tag: Visual edit
- 13:0613:06, 12 November 2024 diff hist −15 Run one script in multiple servers →run.py Tag: Visual edit
10 November 2024
- 03:2903:29, 10 November 2024 diff hist +158 Jinja2 →Check by a pattern on the end of a string current Tag: Visual edit
- 03:1503:15, 10 November 2024 diff hist +300 N Jinja2 Created page with "== Check a pattern on a string == === Check by a pattern on the beginning of a string === {% if my_string.startswith('pattern') %}{% endif %} {% if my_string[:len('pattern')] == 'pattern' %}{% endif %} === Check by a pattern on the end of a string === === Check by a pattern into a string ===" Tag: Visual edit
- 03:1003:10, 10 November 2024 diff hist +13 Main Page No edit summary Tag: Visual edit
9 November 2024
- 22:1622:16, 9 November 2024 diff hist 0 Python No edit summary Tag: Visual edit
- 22:1622:16, 9 November 2024 diff hist 0 Linux No edit summary Tag: Visual edit
- 22:1522:15, 9 November 2024 diff hist −67 Main Page →Stuffs Tag: Visual edit
- 22:1522:15, 9 November 2024 diff hist 0 Main Page →Stuffs Tag: Visual edit: Switched
- 21:5121:51, 9 November 2024 diff hist +8 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
8 November 2024
- 02:4802:48, 8 November 2024 diff hist +418 N Sha sum files with Python Created page with " import hashlib def calculate_sha256(file_path): sha256_hash = hashlib.sha256() with open(file_path, "rb") as f: # Read and update hash string value in chunks of 4K for byte_block in iter(lambda: f.read(4096), b""): sha256_hash.update(byte_block) return sha256_hash.hexdigest() # Usage file_path = "path/to/your/file" print("SHA-256:", calculate_sha256(file_path))" current Tag: Visual edit
- 02:4702:47, 8 November 2024 diff hist +32 Python No edit summary Tag: Visual edit
7 November 2024
- 16:5016:50, 7 November 2024 diff hist −704 Linux Password Less Authentication (rsa key file) No edit summary current Tag: Visual edit
- 16:0316:03, 7 November 2024 diff hist +999 N Linux Password Less Authentication (rsa key file) Created page with "=== '''Generate the SSH key pair on your local machine''' (the one you want to connect from): === ssh-keygen -t rsa -b 4096 -f ~/.ssh/username * <code>-t rsa</code>: Specifies the RSA algorithm (you can also use <code>ed25519</code> for better security). * <code>-b 4096</code>: Sets the key size (4096 bits for RSA). * <code>-f ~/.ssh/username</code>: This option lets you set the filename and path for the key. Here, it will save the private key as <code>~/.ssh/username<..." Tag: Visual edit
- 15:5815:58, 7 November 2024 diff hist +56 Linux →Stuffs Tag: Visual edit
6 November 2024
- 22:4822:48, 6 November 2024 diff hist 0 Adding app on gnome menu No edit summary current Tag: Visual edit
5 November 2024
- 17:2417:24, 5 November 2024 diff hist +1,147 N Adding app on gnome menu Created page with "create myapp.desktop file nano ~/.local/share/applications/myapp.desktop Write all the configurations [Desktop Entry] Version=1.0 Name=MyApp Comment=This is my custom app Exec=/path/to/your/binary Icon=/path/to/your/icon.png Terminal=false Type=Application Categories=Utility;Application; * <code>Version</code>: (Optional) Specifies the version of the desktop entry format. * <code>Name</code>: The name of your application that will appear in the GNOME menu...." Tag: Visual edit
- 17:2117:21, 5 November 2024 diff hist +31 Linux No edit summary Tag: Visual edit
- 00:3000:30, 5 November 2024 diff hist +7 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
4 November 2024
- 18:5918:59, 4 November 2024 diff hist +42 Vim Cheat Sheet No edit summary current Tag: Visual edit
- 18:1318:13, 4 November 2024 diff hist +16,197 N Vim Cheat Sheet Created page with " == Global == * <kbd>:h[elp] keyword</kbd> - open help for keyword * <kbd>:sav[eas] file</kbd> - save file as * <kbd>:clo[se]</kbd> - close current pane * <kbd>:ter[minal]</kbd> - open a terminal window * <kbd>K</kbd> - open man page for word under the cursor '''Tip''' Run <kbd>vimtutor</kbd> in a terminal to learn the first Vim commands. == Cursor movement == * <kbd>h</kbd> - move cursor left * <kbd>j</kbd> - move cursor down * <kbd>k</kbd> - move cursor up * <kbd>l..." Tag: Visual edit
2 November 2024
- 19:3819:38, 2 November 2024 diff hist +11 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
- 19:3519:35, 2 November 2024 diff hist +5 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
- 19:3119:31, 2 November 2024 diff hist −31 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
- 19:3119:31, 2 November 2024 diff hist +362 Pedro's Fedora Linux setup No edit summary Tag: Visual edit
31 October 2024
- 18:2318:23, 31 October 2024 diff hist +152 Pedro's Fedora Linux setup No edit summary Tag: Visual edit: Switched
- 15:3215:32, 31 October 2024 diff hist +22 Configuring Linux static IP No edit summary current Tag: Visual edit
30 October 2024
- 14:3814:38, 30 October 2024 diff hist +329 N SSH Tunnel Created page with "To expose a local port so that it is accessible remotely, use the following command: ssh -R [remote_port]:localhost:[local_port] [user]@[ssh_host] To listen locally for a remote port, use this command: ssh -L [local_port]:[remote_host]:[remote_port] [user]@[ssh_host] * -N no remote command to execute, will not show the shell" current Tag: Visual edit
- 14:3314:33, 30 October 2024 diff hist +17 Linux →Stuffs Tag: Visual edit
22 October 2024
- 13:2513:25, 22 October 2024 diff hist +49 Just a place to store all my certifications No edit summary current Tag: Visual edit
- 00:4100:41, 22 October 2024 diff hist +487 Just a place to store all my certifications No edit summary Tag: Visual edit
- 00:1000:10, 22 October 2024 diff hist −48 Just a place to store all my certifications No edit summary Tag: Visual edit
- 00:0900:09, 22 October 2024 diff hist +3,312 N Just a place to store all my certifications Created page with "*Introdução ao Pentest na PráticaIntrodução ao Pentest na Prática *C1 Avanced English LevelC1 Avanced English Level *Ultimate Rust Crash CourseUltimate Rust Crash Course *Docker Mastery: with Kubernetes +Swarm from a Docker CaptainDocker Mastery: with Kubernetes +Swarm from a Docker Captain *SharePointSharePoint *Lei Geral de Proteção de DadosLei Geral de Proteção de Dados *DevOps in the Cloud with Terraform, Ansible, and JenkinsDevOps in the Cloud with Terrafo..." Tag: Visual edit
20 October 2024
- 22:5222:52, 20 October 2024 diff hist +2 Pedro's Fedora Linux setup No edit summary
- 22:5222:52, 20 October 2024 diff hist +61 Pedro's Fedora Linux setup No edit summary Tag: Visual edit: Switched
18 October 2024
- 21:5721:57, 18 October 2024 diff hist +134 Kubernetes No edit summary current Tag: Visual edit
- 21:5621:56, 18 October 2024 diff hist +169 Kubernetes No edit summary Tag: Visual edit
- 21:5421:54, 18 October 2024 diff hist +67 Kubernetes No edit summary Tag: Visual edit