Skip to content

Instantly share code, notes, and snippets.

View Jiantastic's full-sized avatar

Wei Jian Wong Jiantastic

View GitHub Profile
@Jiantastic
Jiantastic / design.gr
Last active December 28, 2015 03:31
All about design
website design mockup tools
Balsamiq
Sketch for Mac
Google Sketchup
Pencil
sketch.io
@Jiantastic
Jiantastic / ajax-JSON.js
Last active February 25, 2023 20:12
All about AJAX and JSON
// 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){
@Jiantastic
Jiantastic / vimrc settings
Last active December 28, 2015 03:31
My Vim configurations
" 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