TECH TIPS
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 yourself with...
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 change the password of a user in SQL Server?
The following example changes the password of login Mary5 to a strong password. ALTER LOGIN Mary5 WITH PASSWORD = '';
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 then back to Full. The...