How to navigate to to different directories in the terminal (mac)?

To check that the file you’re trying to open actually exists, you can change directories in terminal using cd. To change to ~/Desktop/sass/css: cd ~/Desktop/sass/css. To see what files are in the directory: ls. If you want information about either of those commands, use the man page: man cd or man ls, for example. Google for “basic unix command line commands” or similar; that … Read more

How can I display the current branch and folder path in terminal?

It’s not about a plugin. It’s about prompt tricks in the shell. For a cool setup in bash, check out the dotfiles project of this guy: To get a fancy prompt, include the .bash_prompt in your ~/.bash_profile or ~/.bashrc. To get the exact same prompt as in your question, change the export PS1 line at the end of .bash_prompt like this: I ended up using all … Read more

SQL Client for Mac OS X that works with MS SQL Server

Let’s work together on a canonical answer. Native Apps SQLPro for MSSQL Navicat Valentina Studio TablePlus Java-Based Oracle SQL Developer (free) SQuirrel SQL (free, open source) Razor SQL DB Visualizer DBeaver (free, open source) SQL Workbench/J (free, open source) JetBrains DataGrip Metabase (free, open source) Netbeans (free, open source, full development environment) Electron-Based Visual Studio Code with mssql extension Azure Data … Read more

How to completely uninstall Android Studio on Mac?

Execute these commands in the terminal (excluding the lines with hashtags – they’re comments): If you would like to delete all projects: To remove gradle related files (caches & wrapper) Use the below command to delete all Android Virtual Devices(AVDs) and keystores. Note: This folder is used by other Android IDEs as well, so if … Read more