Skip to content

Instantly share code, notes, and snippets.

View bronhy's full-sized avatar

Marko Antolović bronhy

View GitHub Profile
@bronhy
bronhy / js-snippets.md
Last active February 21, 2018 20:34
JavaScript snippets

JavaScript snippets

jQuery Shortuct for document ready

$( document ).ready(function() {
    //code here
});

$(function(){
 //code here
@bronhy
bronhy / sql-snippets.md
Last active April 18, 2018 16:43
SQL snippets

Quick SQL snippets for your daily work.

Snippets are a combination of the Transact-SQL language for MSSQL and ANSI/ISO SQL for MySQL

Mysql cli login

mysql -u [username] -p -h [hostname]

Select with no lock