| Requirement | Reference |
|---|---|
| RSS validate | https://validator.w3.org/feed/ |
| Markdown | https://stackedit.io/app# |
| Hindi-enabled textbox integration in website | https://developers.google.com/transliterate/v1/getting_started |
| Adding emoji on github | https://www.webfx.com/tools/emoji-cheat-sheet/ Reference |
| Choose open source license | https://choosealicense.com/ |
| Portfolio website template | http://shreethemes.in/cristino/ |
| Convert cpp code to assembly | https://godbolt.org/ |
This file contains hidden or 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
| curl -X GET <endpoint:9200>/_cluster/settings?pretty | |
| curl -X GET <endpoint:9200>/_cluster/settings?include_defaults=true&flat_settings=true | |
| curl -X GET <vpc-endpoint>/_nodes/stats | |
| curl -X GET <endpoint:9200>/_cat/indices | |
| curl -X GET <endpoint:9200>/_cat/shards | |
| curl -X GET <vpc-endpoint>/_cat/shards/<index-name> | |
| curl -X GET <endpoint:9200>/<index_name>?pretty |
This file contains hidden or 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
| control + left/right arrow keys -> move start/end of line | |
| option + command + esc -> force quit dialogue | |
| open `pwd` -> open current directory in terminal in finder | |
| bloomrpc: | |
| collect all proto paths via this command - `find $(pwd) -type d | grep -v -e "git\|node_modules\|idea" | awk '{printf "\"%s\",\n", $0 }' | sort -r | sed '$ s/.$//' | pbcopy` | |
This file contains hidden or 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
| brew install graphviz | |
| curl --location --request GET '<uri>/debug/pprof/heap' > pprofHeap.out | |
| go tool pprof -http=':8081' pprofHeap.out |
There are two ways to clone a repository:
- From terminal: git clone https://github.com/<user>/<repo-name>.git
- From Github: Click on
Forkbutton on Top-Right corner of the repository you'd like to clone
git branch -a
git branch -b [branch-name]
This file contains hidden or 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
| " source /etc/vimrc | |
| set number | |
| set ic | |
| set wrap | |
| set autoindent | |
| set copyindent " copy the prev indentation on autoindenting | |
| set showcmd | |
| set nocursorline | |
| set wildmenu |