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
| import { Injectable } from "@angular/core"; | |
| import { ReplaySubject, Observable } from "rxjs/Rx"; | |
| interface Message { | |
| channel: string; | |
| data: any; | |
| } | |
| @Injectable() | |
| export class MessageBus { |
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
| Dir { | |
| ArchiveDir "./debian"; | |
| CacheDir "./cache"; | |
| }; | |
| Default { | |
| Packages::Compress ". gzip bzip2"; | |
| Sources::Compress ". gzip bzip2"; | |
| Contents::Compress ". gzip bzip2"; | |
| }; | |
| TreeDefault { |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |