This file contains 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
<html ng-app> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.min.js"></script> | |
</head> | |
<body> | |
<div> | |
<div id="ctrl" ng-controller="MyController"></div> | |
<div id="loader"></div> | |
</div> |
This file contains 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
<!DOCTYPE html> | |
<html ng-app="myApp"> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.min.js"></script> | |
</head> | |
<body> | |
<div ng-controller="MyController"> | |
<button id="load">Load products</button> |
This file contains 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
" Install required tools on Linux | |
" sudo apt-get install ctags | |
" sudo apt-get install cscope | |
" sudo apt-get install vim-gnome | |
" sudo apt-get install silversearcher-ag | |
" set the runtime path to include Vundle and initialize | |
filetype off | |
set nocompatible | |
set backspace=indent,eol,start |