Skip to content

Instantly share code, notes, and snippets.

View AmanSinghBhogal's full-sized avatar
🎯
Focusing

Aman Singh Bhogal AmanSinghBhogal

🎯
Focusing
View GitHub Profile
@AmanSinghBhogal
AmanSinghBhogal / .cpp
Last active December 3, 2020 12:02
Snake and Ladder
//Snake and Ladder Game
//Project 1: Built Year 2019
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
#include<process.h>
char *square={"01234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950"};
char *nul={" "};
char *ernul={" "};
char *erase={"01234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950"};

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@satwikkansal
satwikkansal / cheatsheet.cpp
Last active December 25, 2024 23:50
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@dhammikamare
dhammikamare / Contest_Guide.md
Last active June 25, 2024 17:46 — forked from shashank21j/Contest_Guide.md
Tutorial for create your own contest on HackerRank.