SubX, Subject X, Reactive Subject. Pronunciation: [Sub X]
SubX is next generation state container. It could replace Redux and MobX in our React apps.
SubX, Subject X, Reactive Subject. Pronunciation: [Sub X]
SubX is next generation state container. It could replace Redux and MobX in our React apps.
| var _ = require("lodash"); | |
| var R = require("ramda"); | |
| var companies = [ | |
| { name: "tw", since: 1993 }, | |
| { name: "pucrs", since: 1930 }, | |
| { name: "tw br", since: 2009 } | |
| ]; | |
| var r1 = _(companies).chain() |
| // Also works for normal methods | |
| class User { | |
| constructor (first, last) { | |
| this.firstName = first; | |
| this.lastName = last; | |
| } | |
| } | |
| Object.defineProperty(User.prototype, 'name', { | |
| get: function () { |
| // MIT License - Copyright (c) 2016 Can Güney Aksakalli | |
| // https://aksakalli.github.io/2014/02/24/simple-http-server-with-csparp.html | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Net.Sockets; | |
| using System.Net; | |
| using System.IO; |
| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |