This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. scp command (SecureCoPy file/directory over ssh) | |
a. Copy from local to remote server | |
scp /absolute/path/on/local/to/file.txt <user>@<server-ip>:/absolute/path/to/file.txt | |
b. Copy from server to local | |
scp <user>@<server-ip>:/absolute/path/to/file.txt /absolute/path/on/local/to/file.txt | |
c. Copy directories (recursive) | |
scp -r <user>@<server-ip>:/absolute/path/to/directory/ /absolute/path/on/local/to/directory/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Web Development | |
https://github.com/kamranahmedse/developer-roadmap | |
2. Front-End (user side) | |
https://www.breakdown-notes.com/make/load/front_end/true | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Difference b/w threads and processes in Linux | |
https://www.slashroot.in/difference-between-process-and-thread-linux | |
2. Node & Spring comparison | |
https://rclayton.silvrback.com/speaking-intelligently-about-java-vs-node-performance | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Copy/duplicate current line (on the next line) | |
- In normal mode, | |
:t. | |
2. Duplicate line on line 7 | |
- In normal mode, | |
:t 7 | |
3. Save changed file as sudo which was opened as a user with less access | |
:w !sudo tee % |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[sendemail] | |
smtpencryption = tls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
elasticsearch: | |
image: elasticsearch:1.5.2 | |
ports: | |
- '9200:9200' | |
- '9300:9300' | |
kibana: | |
image: kibana:4.1.2 |