by ray | Aug 11, 2021 | Linux / Ubuntu
You can use following commands for the same: Method 1 (md5, sha256, sha512) openssl passwd -6 -salt xyz yourpass Note: passing -1 will generate an MD5 password, -5 a SHA256 and -6 SHA512 (recommended) Method 2 (md5, sha256, sha512)...
by ray | Aug 11, 2021 | Linux / Ubuntu
echo will normally output a newline, which is suppressed with -n. Try this: echo -n foobar | sha256sum
by ray | Aug 11, 2021 | Linux / Ubuntu
The Slack desktop app is the easiest way to use Slack on Linux. To get started, take a look at the steps we’ve outlined below. Note: Slack for Linux is in beta. We’re still busy adding features and making adjustments to the app. 🐝 Step 1: Download the Slack app...
by ray | Aug 11, 2021 | Linux / Ubuntu, Mac OS X
The big advantage of using a package manager like Homebrew is it makes it easier to keep your Python installation up to date. If you download Python from the website, then to update it means you’ll need to go back to the website and download a new copy of Python...
by ray | Aug 6, 2021 | Mac OS X
How To Homebrew is a package management system for OS X. You can read more about it here, or simply run ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” to install it. First things first, you need to familiarize...