vagrant suspend
vagrant resume
###Python "For" Simple Syntax
[album.album for album in albumes]
###ANGULAR.JS
<html ng-app>
###Data Binding
<input type="text" ng-model="yourModel">
###JQUERY Cycler Custom Titles
var titles = ['Features', 'Specifications'];
$(function() {
$('#bContent').cycle({
fx: 'scrollHorz',
speed: 300,
timeout: 0,
pager: '#bNav',
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
Carousel (Scroll On Hover) | |
http://manos.malihu.gr/jquery-thumbnail-scroller/ | |
http://rascarlito.free.fr/hoverscroll/ | |
http://jquery-plugins.net/any-list-scroller-jquery-plugin-to-scroll-lists | |
http://jquery-plugins.net/jscarousel-jquery-content-slider |
###Django base project commands
djr --settings=project_name.settings.development
###CSS3 Animation Properties
-webkit-animation-name: left-to-right;
-webkit-animation-duration: 2s;
-webkit-animation-timing-function:ease;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-play-state: running;*
-webkit-animation: left-to-right 2s ease 0s infinite alternate;
##MONGODB & PYTHON
###Ubuntu Install
sudo apt-get install mongodb
pip install pymongo
Table - Collection
Column - Property
Row - Document
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |