(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <template name="ForgotPassword"> | |
| <form action="/forgot" id="forgotPasswordForm" method="post"> | |
| <input id="forgotPasswordEmail" type="text" name="email" placeholder="Email Address"> | |
| <input class="btn-submit" type="submit" value="Send"> | |
| </form> | |
| <!-- end #forgot-password-form --> | |
| </template> |
This tutorial guides you through creating your first Vagrant project.
We start with a generic Ubuntu VM, and use the Chef provisioning tool to:
Afterwards, we'll see how easy it is to package our newly provisioned VM
| define(["require", "exports"], function (require, exports) { | |
| exports.YouTubeHelper = function (settings) { | |
| // MEMBERS & DEFAULTS ################################################################################################################################################# | |
| var documentRef; | |
| var originURL = ""; // for cross site checks | |
| var targetContainer; | |
| var target; | |
| var parentContainer; // used for adding popups back into the original spot |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script data-main="usage" src="http://requirejs.org/docs/release/1.0.8/comments/require.js"></script> | |
| </head> | |
| <body> | |
| <p>Check your JavaScript console for output!</p> | |
| </body> | |
| </head> |
| table { | |
| border: solid 1px #fc0; | |
| border-collapse: collapse; | |
| } | |
| table caption { | |
| font-weight: bold; | |
| font-size: 125%; | |
| text-transform: uppercase; | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <script src="jquery.ketchup.all.min.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="email"> | |
| <span>Enter your email to sign up</span> | |
| <form action="/subscribe.php" id="invite" method="POST"> |
| // ==UserScript== | |
| // @name Use Markdown, sometimes, in your HTML. | |
| // @author Paul Irish <http://paulirish.com/> | |
| // @link http://git.io/data-markdown | |
| // @match * | |
| // ==/UserScript== | |
| // If you're not using this as a userscript just delete from this line up. It's cool, homey. |
| express = require "express" | |
| sys = require "sys" | |
| util = require "util" | |
| oauth = require "oauth" | |
| fs = require "fs" | |
| app = module.exports = express.createServer() | |
| app.configure('development', () -> | |
| app.use(express.errorHandler({ dumpExceptions: true, showStack: true })) |
| au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery | |
| set nocompatible | |
| set autoindent | |
| set tabstop=2 | |
| set showmatch | |
| set vb t_vb= | |
| set ruler | |
| set nohls | |
| set incsearch | |
| syntax on |