Search
Categories
Hours & Info
Bookmark
Monthly Archives: May 2019
HOW TO RUN VISUAL STUDIO CODE FROM ZSH ON MAC OSX
Adding the codefunction to .zshrc file: function code { if [[ $# = 0 ]] then open -a "Visual Studio Code" else local argPath="$1" [[ $1 = /* ]] && argPath="$1" || argPath="$PWD/${1#./}" open -a "Visual Studio Code" "$argPath" fi … Continue reading
MongoDB on Mac
1.What’s MongoDB? MongoDB is a document database which belongs to a family of databases called NoSQL – not only SQL. In MongoDB, records are documents which behave a lot like JSON objects in JavaScript. Values in documents can be looked … Continue reading