top of page
Search
Kiazsoft
Dec 29, 20201 min read
Mac Useful Commands
Show hidden files in Finder Command + Shift + .
4 views0 comments
Kiazsoft
Dec 14, 20201 min read
Git
Removing file from all history. git filter-branch --force --index-filter \ "git rm --cached --ignore-unmatch PATH-TO-FILE" \...
5 views0 comments
Kiazsoft
Dec 11, 20201 min read
MongoDB
Mongo Sample find query db.getCollection("user").find( { "username" : "kia" }, {//projections "username": 1.0, //1.0 means include...
7 views0 comments
Kiazsoft
Oct 2, 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...
2 views0 comments
Kiazsoft
Aug 25, 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...
9 views0 comments
Kiazsoft
Jun 13, 20201 min read
Bootstrap 4
Sticky divs <div class="card sticky-top"> Fixed navbar top <nav class="fixed-top">
7 views0 comments
Kiazsoft
May 29, 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...
57 views0 comments
Kiazsoft
May 22, 20201 min read
JHipster
Install JHipster using npm npm install -g generator-jhipster Create JHipster Application mkdir myapp cd myapp hipster Ref -...
56 views0 comments
Kiazsoft
May 21, 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...
3 views0 comments
Kiazsoft
Apr 29, 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...
4 views0 comments
Kiazsoft
Mar 11, 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...
23 views0 comments
Kiazsoft
Feb 29, 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...
44 views0 comments
bottom of page