Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
| /** | |
| * Directive to easily toggle utility classes to disable elements | |
| * | |
| * Default usage: | |
| * v-disabled="true" // adds default disabled classes | |
| * | |
| * Advanced usage: | |
| * v-disabled:"{ disabled: true, classes: ['hidden']" // adds specified classes when disabled is true | |
| * | |
| */ |
Getting started:
Related tutorials:
| (function(){ | |
| 'use strict'; | |
| var celebrationHeight = jQuery(window).height() - 87; | |
| var celebrationWidth = jQuery(window).width(); | |
| if(celebrationHeight < 800) { | |
| return false; | |
| } |
| // Mobile Detect and redirect | |
| var isMobileSite = document.location.search.match('mobile=1'); | |
| var mobileUrl = 'http://www.yoururl.com/'; | |
| if( !isMobileSite && /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) | |
| { | |
| window.top.location = mobileUrl + '?mobile=1'; | |
| } |
These instructions will guide you through the process of setting up local, trusted websites on your own computer.
These instructions are intended to be used on Mac OSX Yosemite.
NOTE: You may substitute the edit command for nano, vim, or whatever the editor of your choice is. Personally, I forward edit to Sublime Text:
alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>PouchDB #2342</title> | |
| <script src="pouch.js"></script> | |
| <script src="main.js"></script> | |
| </head> | |
| <body> | |
| </body> |
| #!/usr/bin/env bash | |
| # Update Repositories | |
| sudo apt-get -y update | |
| sudo apt-get install -y python-software-properties python g++ make | |
| sudo add-apt-repository -y ppa:chris-lea/node.js | |
| sudo apt-get -y update | |
| # NODE |