Skip to content

Instantly share code, notes, and snippets.

View princ09's full-sized avatar
💭
student

Rajkumar Gupta princ09

💭
student
  • Mumbai , India
View GitHub Profile
@princ09
princ09 / cheatsheet-elasticsearch.md
Created June 30, 2021 05:57 — forked from ruanbekker/cheatsheet-elasticsearch.md
Elasticsearch Cheatsheet : Example API usage of using Elasticsearch with curl
@princ09
princ09 / elasticsearch-cheatsheet.txt
Created June 30, 2021 05:57 — forked from stephen-puiszis/elasticsearch-cheatsheet.txt
Elasticsearch Cheatsheet - An Overview of Commonly Used Elasticsearch API Endpoints and What They Do
# Elasticsearch Cheatsheet - an overview of commonly used Elasticsearch API commands
# cat paths
/_cat/allocation
/_cat/shards
/_cat/shards/{index}
/_cat/master
/_cat/nodes
/_cat/indices
/_cat/indices/{index}
@princ09
princ09 / css-media-queries-cheat-sheet.css
Created June 11, 2021 05:48 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }