_      _           _
 | |    (_)         | |
 | |     _ _ __   __| |_      _____ _ __
 | |    | | '_ \ / _` \ \ /\ / / _ \ '_ \
 | |____| | | | | (_| |\ V  V /  __/ | | |
 |______|_|_| |_|\__,_| \_/\_/ \___|_| |_|
        

lindwen@deb:~$ whoami

Name:    Alexandre

Age:     23

Job:     Student

lindwen@deb:~$ ls -lah

drwxr-xr-x 1 lindwen lindwen 4.0K juin 17 14:27 .

drwxr-xr-x 6 lindwen lindwen 4.0K juin 17 14:27 ..

drwxr-xr-x 4 lindwen lindwen 4.0K juin 12 15:47 knowledges

drwxr-xr-x 2 lindwen lindwen 4.0K déc. 28 13:40 admin-only

drwxr-xr-x 2 lindwen lindwen 4.0K déc. 28 15:30 contact

drwxr-xr-x 2 lindwen lindwen 4.0K déc. 28 15:30 projects

lindwen@deb:~$ cd knowledges/

lindwen@deb:~/knowledges$ head -n 4 skills

Programming languages:

HTML, CSS, PHP, JS, PYTHON, C, JAVA, JS (NodeJS)

Others :

VPN, PROXY, VIRTUALISATION, FIREWALL, DNS, ...

lindwen@deb:~/knowledges$ mysql -u root -p

Enter password:

Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 123
Server version: 20.8.14-MariaDB Debian 12
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> use informations;

MariaDB [informations]> SELECT * FROM socials;

+----+---------+--------------------+
| id | Name    | Link               |
+----+---------+--------------------+
| 1  | github  | github.com/Lindwen |
+----+---------+--------------------+
| 2  | discord | lindwen#0001       |
+----+---------+--------------------+
4 rows in set (0.00 sec)

MariaDB [informations]> exit

lindwen@deb:~/knowledges$ _