https://youtu.be/Z1dIRjazpBw
Author Archives: Aboubacar Douno
#1026
Started learning Building and Deploying Deep Learning Applications with TensorFlow on LinkedIn Learning.
#894
Started learning Adobe Captivate Essential Training from Lynda.com
How to Create a Python3 Virtual Environment with VirtualEnv?
To create a virtual environment running Python version 3 using VirtualEnv run the following command: virtualenv env_name -p python3 We use the -p option to specify the version of Python we want to use. Without this, it will default to Python version 2 which comes installed by default on macOS. After activating the virtual environment with source bin/activate , run…
#1020
A Bruxa de Portobello de Paulo Coelho. O novo romance de Paulo Coelho conta a história de Athena, uma jovem adoptada por emigrantes libaneses que se estabeleceram em Inglaterra para fugir à…
Começou a ler A Bruxa de Portobello de Paulo Coelho #paulo_coelho #portugues
How to Fix the “DNS_PROBE_FINISHED_NXDOMAIN” error on macOS?
I got a brand new MacBook few weeks ago and I have been having an DNS_PROBE_FINISHED_NXDOMAIN error while trying to access one of our web apps at work. After some time researching the cause of the error, I found out that it was due the DNS settings on my MacBook for the Wifi network I was…
#876
Estou a gostar mesmo! Bom som 👍 #kizomba
#874
Joyeux Anniversaire 🎂a ma petite soeur Sogbe Douno. #family
Compressing and Extracting with Zip in the Terminal
Compressing a folder:
1 |
zip -r archive_name.zip folder_to_compress |
1 |
zip -r -X archive_name.zip folder_to_compress |
Note: With the -X option, you are compressing without the invisible files such as “_MACOSX” or “._Filename” Extracting an archive:
1 |
unzip archive_name.zip |
SSH Download from Remote/Server to Computer
Copy a folder: scp -r username@example.com:/path/to/foo ./home/user/Desktop/ Copy a file: scp username@example.com:/path/to/foo.zip ./home/user/Desktop/