Just some notes and references for myself.
- In bash, you can access your
C:\drive via/mnt/c/ ~=C:\Users\MLM\AppData\Local\lxss\home\mlmand is different from your Windows user directoryC:\Users\MLM
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
| package pc | |
| import akka.actor.Actor | |
| import akka.actor.Props | |
| import akka.actor.ActorRef | |
| import akka.actor.ActorRefFactory | |
| class Parent extends Actor { | |
| val child = context.actorOf(Props[Child], "child") | |
| var ponged = false |
When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.
Raw Attribute Strings
<div my-directive="some string" another-param="another string"></div>| app.configure(function () { | |
| app.set('views', __dirname + '/views'); | |
| app.set('view engine', 'ejs'); | |
| app.use(express.bodyParser()); | |
| app.use(express.methodOverride()); | |
| app.use(express.cookieParser()); | |
| app.configure('production', function () { | |
| app.use (function (req, res, next) { | |
| var schema = (req.headers['x-forwarded-proto'] || '').toLowerCase(); | |
| if (schema === 'https') { |