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

Kiazsoft
Dec 29, 20201 min read
8 views
0 comments
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
9 views
0 comments
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
11 views
0 comments
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
5 views
0 comments
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
13 views
0 comments
Bootstrap 4
Sticky divs <div class="card sticky-top"> Fixed navbar top <nav class="fixed-top">

Kiazsoft
Jun 13, 20201 min read
11 views
0 comments


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
70 views
0 comments
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
57 views
0 comments
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
5 views
0 comments
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
4 views
0 comments
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
25 views
0 comments
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
44 views
0 comments
bottom of page