Skip to content

Instantly share code, notes, and snippets.

View a-deeb's full-sized avatar
💭
Level Up 🦖

A. Deeb a-deeb

💭
Level Up 🦖
  • Seneca College
  • Toronto
View GitHub Profile

FWIW: I (@Rondy) am not the author of the content presented here, which is an outline from Edmond Lau's book. I've just copy-pasted it from somewhere and saved as a personal gist, before it got popular on newsnews.ycombinator.com. I don't remember where exactly the original source is from and neither could find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

@a-deeb
a-deeb / mysql_cheat_sheet.md
Created October 30, 2019 14:35 — forked from bradtraversy/mysql_cheat_sheet.md
MySQL Cheat Sheet

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

@a-deeb
a-deeb / mongodb_cheat_sheet.md
Created October 30, 2019 14:34 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@a-deeb
a-deeb / FastForward.cpp
Created March 2, 2019 18:42
C++ Reference Sheet
// OOP345 FastForward.cpp - sumarize entire course in one program
// contains composition, association, aggregation examples.
#ifdef __GNUC__
// turn off most compiler warnings
// #pragma GCC diagnostic warning "-w"
// turn off 'variable not used' compiler warnings.
#pragma GCC diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
@a-deeb
a-deeb / jquery.md
Last active February 22, 2019 15:32 — forked from gabolopez90/jquery.md
Apuntes de JQuery.

JQuery

It is a multiplatform library of JavaScript, initially created by John Resig, which allows to simplify the way to interact with HTML documents, manipulate the DOM tree, manage events, develop animations and add interaction with the AJAX technique to web pages.

Add JQuery

	<script type="text/javascript" src="script.js"></script>
@a-deeb
a-deeb / pdocrash.php
Created February 19, 2019 06:02 — forked from bradtraversy/pdocrash.php
PDO & Prepared Statements Snippets
<?php
$host = 'localhost';
$user = 'root';
$password = '123456';
$dbname = 'pdoposts';
// Set DSN
$dsn = 'mysql:host='. $host .';dbname='. $dbname;
// Create a PDO instance