How to uninstall slack from Ubuntu

Uninstall slack To uninstall just slack package itself from Ubuntu execute on terminal: sudo apt-get remove slack Uninstall slack and it’s dependent packages To uninstall the slack package and any other dependant package which are no longer needed on Ubuntu....

How to completely remove virtualbox

Your problem : Virtual Box keeps its folder and settings in your home folder. Delete everything inside the folder. Uninstall VirtualBox first. sudo apt-get remove –purge virtualbox Run these commands to delete all virtual machines and settings and Virtual...

Ubuntu fix broken package (best solution)

After trying sudo apt-get update –fix-missing and sudo dpkg –configure -a and sudo apt-get install -f the problem of a broken package still exist the solution is to edit the dpkg status file manually. $ sudo nano...

Manually generating your SSH key in macOS

You generate an SSH key through macOS by using the Terminal application. Once you upload a valid public SSH key, the Triton Compute Service uses SmartLogin to copy the public key to any new SmartMachine you provision. Joyent recommends RSA keys because the node-manta...

Manually generate password for /etc/shadow

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)...

Slack for Linux

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...

Why Should Homebrew be used to Install Python?

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...

Homebrew

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...

Show Folder on the side of Sublime Text

Check menu View > Side Bar > Show Side Bar (for OS X) Menu: File > Open > select folder and open button (folder, not the file) Or drag and drop the selected folder in the Sublime Text window.

How to Set up and Configure Postman SMTP on WordPress

In October 2017, popular SMTP plugin Postman SMTP, with 100k+ active installs, was removed from the WordPress repository due to an XSS vulnerability. This news spread like wildfire. The plugin had not just been removed because of the vulnerability – it had...

How to modify or disable auto-correct on your Android keyboard

I hope you had the chance to optimize your web experience by changing your Chrome flags through last week’s Android customization post. This week, we want to head back to a fairly beginner’s task, changing the settings, or completely disabling, auto-correct...

How do I truncate a log file in SQL Server?

Shrinking a log file to a specified target size SQL Dev servers typically use “Simple” for the Recovery Mode while SQL Prod servers use “Full.” The SQL query below assumes that you are temporarily switching from Full Recovery Mode to Simple and...

How To Clone a Hard Drive In Windows 10

You might be replacing a broken drive or thinking about upgrading to a faster solid state drive. Whatever you’re planning, it can often be an inconvenience when you’re switching from one hard drive to another, especially if it’s the drive that contains...

GitHub Error: Authentication Failed from the Command Line

After setting up 2 Factor Authentication on GitHub, I couldn’t push my remote repositories from the command line anymore. When I tried to push a remote repo, the command line threw this error: ~ :> git push origin my-branchUsername for...