top of page
Search
Mac Useful Commands
Show hidden files in Finder Command + Shift + .

Kiazsoft
Dec 29, 20201 min read
Git
Removing file from all history. git filter-branch --force --index-filter \ "git rm --cached --ignore-unmatch PATH-TO-FILE" \...

Kiazsoft
Dec 14, 20201 min read
MongoDB
Mongo Sample find query db.getCollection("user").find( { "username" : "kia" }, {//projections "username": 1.0, //1.0 means include...

Kiazsoft
Dec 11, 20201 min read
Expo for React Native
Install expo-cli. If on Mac you get any permission errors then run as sudo npm install expo-cli --global Create expo project expo init...

Kiazsoft
Oct 2, 20201 min read
firebase
Setup Mac to use firebase $ npm install -g firebase-tools Login to you firebase account $ firebase login Initialize your project for...

Kiazsoft
Aug 25, 20201 min read
Bootstrap 4
Sticky divs <div class="card sticky-top"> Fixed navbar top <nav class="fixed-top">

Kiazsoft
Jun 12, 20201 min read


Selecting multiple file in SourceTree makes it too slow
In case if you are working on a project and frequently need to delete updated files from you project. One way is to use source tree to...

Kiazsoft
May 29, 20201 min read
JHipster
Install JHipster using npm npm install -g generator-jhipster Create JHipster Application mkdir myapp cd myapp hipster Ref -...

Kiazsoft
May 22, 20201 min read
Node.js
To list all dependencies and their versions npm list To list dependencies of only the current application npm list --depth=0 To list...

Kiazsoft
May 21, 20201 min read
Python
Install a python package using pip (on mac use pip3) pip install <package name> On Mac pip3 install <package name> Upgrade pip...

Kiazsoft
Apr 29, 20201 min read
Kubernetes
To get all pods in all namespaces kubectl get pods --all-namespaces To get all pods in a particular namespace kubectl get pods -n...

Kiazsoft
Mar 11, 20201 min read
Docker
How to create a tar file from local docker image and run it on local cluster First check local images on you docker using command 'docker...
Kiazsoft
Feb 29, 20201 min read
bottom of page
