Skip to content

Instantly share code, notes, and snippets.

View saptakd's full-sized avatar

Saptak Dalvi saptakd

  • New York City, NY
View GitHub Profile
@saptakd
saptakd / gist:10ce8854747fa9ea66721826f575da51
Created October 13, 2016 07:31
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (PC)

Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.

Editing

Ctrl+C copy current line (if no selection)
Ctrl+X cut current line (if no selection)
Ctrl+⇧+K delete line
Ctrl+↩ insert line after
@saptakd
saptakd / class.database.php
Created August 18, 2016 15:00 — forked from jonashansen229/class.database.php
PHP OOP Database class using MySQLI and Singleton pattern. Only one instance of the class will be made, this requires less memory.
<?php
/*
* Mysql database class - only one connection alowed
*/
class Database {
private $_connection;
private static $_instance; //The single instance
private $_host = "HOSTt";
private $_username = "USERNAME";
private $_password = "PASSWORd";