7z a -tzip -mem=AES128 -bd -y -pPASSWORD -mx=0 -- OUTPUT_FILE.zip file1 file2 file3 file3
This uses AES128 encryption and uses a compression rate of 0 (archive mode). You can pick a number up to 9 (highest compression rate)
Enjoy!
7z a -tzip -mem=AES128 -bd -y -pPASSWORD -mx=0 -- OUTPUT_FILE.zip file1 file2 file3 file3
This uses AES128 encryption and uses a compression rate of 0 (archive mode). You can pick a number up to 9 (highest compression rate)
Enjoy!
sed -i 's/original/new/g' filename.txt
This basically replaces every occurrence of the “original” string with the “new” string in the file named “filename.txt”
e.g.
sed -i 's/192.168.0.1/192.168.1.1/g' /etc/fstab
Will replace all occurrences of the IP “192.168.0.1” with the IP “192.168.1.1” in the “/etc/fstab” file.
That’s it, Enjoy!
Sources:
It’s Tilda! My previous best was Guake, but it’s having compatibility issues and not maintained frequently like this one.
sudo apt install tilda
Very customizable and has a lot of options, including position, colors, scroll bars and transparency.
Tested on Ubuntu 17.10 (Works ONLY on Xorg, not Wayland).

Tilda on Ubuntu 17.10
Just go to Online Accounts -> Microsoft Exchange -> Type your e-mail and password!

This basically connects using Exchange Web Services (EWS).
If this doesn’t work out with you, click on custom and enter your username and server. I had to do that in my case, since my mail server’s address was different from the mail address.
That’s it! Enjoy! Here are some screenshots showing the results :))

Evolution Contacts

Evolution Calendar

Evolution Mail
Note: Tested and worked perfectly in Ubuntu 17.10 (Gnome 3.26).
Sources:
ffmpeg -i source_video.mp4 -t 50 -c copy output_video.mp4
This cuts the first 50 seconds of the video named source_video.mp4 and outputs them without any re-encoding to output_video.mp4
Another example for audio files:
ffmpeg -i input_file.mp3 -ss 00:00:05 -t 00:00:21 -c copy output_file.mp3
This cuts the audio file from the 5th second to the 21st second and places it in a file named output_file.mp3, no re-encoding done whatsoever.
Source: https://ubuntuforums.org/showthread.php?t=2027333