This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
website design mockup tools | |
Balsamiq | |
Sketch for Mac | |
Google Sketchup | |
Pencil | |
sketch.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Learn all about AJAX - post on public github | |
// first, the vanilla JavaScript approach ( before jQuery ) | |
// initialise new XMLHttpRequest() object | |
var xhr = new XMLHttpRequest(); | |
// check if AJAX request is completed | |
// state 4 = completed request | |
xhr.onreadystatechange = function(){ | |
if(xhr.readyState === 4){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" use Vim mode instead of pure Vi, it must be the first instruction | |
set nocompatible | |
" syntax highlighting | |
syntax enable | |
"line numbering | |
set number | |
"creates a ~file backup before every edit - nobackup disables this |