Skip to content

Instantly share code, notes, and snippets.

View mohitkumartoshniwal's full-sized avatar

Mohit Kumar Toshniwal mohitkumartoshniwal

View GitHub Profile
@mohitkumartoshniwal
mohitkumartoshniwal / bash-cheatsheet.sh
Created September 21, 2022 14:44 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@mohitkumartoshniwal
mohitkumartoshniwal / index.html
Last active February 2, 2020 18:22
Product Landing Page Freecodecamp
<!DOCTYPE html>
<html>
<head>
<title>GeeksAssociation</title>
<meta charset="UTF-8" />
<link href="https://fonts.googleapis.com/css?family=Roboto|Yanone+Kaffeesatz" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css" />
</head>
@mohitkumartoshniwal
mohitkumartoshniwal / curl.md
Created December 28, 2019 13:11 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.