(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.
| using System; | |
| using Akavache; | |
| using Splat; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Globalization; | |
| using ReactiveUI; | |
| using System.Reactive.Linq; | |
| using System.Reactive.Threading.Tasks; |
| var gulp = require('gulp'); | |
| var uglify = require('gulp-uglify'); | |
| var concat = require('gulp-concat'); | |
| var templates = require('gulp-angular-templatecache'); | |
| var minifyHTML = require('gulp-minify-html'); | |
| // Minify and templateCache your Angular Templates | |
| // Add a 'templates' module dependency to your app: | |
| // var app = angular.module('appname', [ ... , 'templates']); |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using System.Xml; | |
| using System.Xml.Linq; | |
| namespace GithubWikiDoc | |
| { |
(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.
| @using Sitecore.Mvc.Presentation | |
| @using Sitecore.Mvc | |
| @model RenderingModel | |
| @{ | |
| Layout = null; | |
| Sitecore.Context.Items["twitter:title"] = Model.Item["title"] | |
| Sitecore.Context.Items["twitter:description"] = Model.Item["description"] | |
| } | |
| <h1>@Html.Sitecore().Field("title")</h1> | |
| @Html.Sitecore().Field("text") |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
| var React = require('react'); | |
| var events = require('add-event-listener'); | |
| var isVisible = require('../isVisible'); | |
| var LazyLoad = React.createClass({ | |
| displayName: 'LazyLoad', | |
| propTypes: { | |
| distance: React.PropTypes.number, | |
| component: React.PropTypes.node.isRequired, | |
| children: React.PropTypes.node.isRequired |
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
| 'use 6to5'; | |
| const rx = require('rx'); | |
| const request = require('request'); | |
| let wrapMethodInRx = (method) => { | |
| return function(...args) { | |
| return rx.Observable.create((subj) => { | |
| // Push the callback as the last parameter | |
| args.push((err, resp, body) => { |
| import React from 'react'; | |
| import _ from 'lodash'; | |
| import Rx from 'rx'; | |
| import superagent from 'superagent'; | |
| let api = { | |
| host: 'http//localhost:3001', | |
| getData(query, cb) { | |
| superagent |