just the bare necessities of state management.
Hotlink it from https://unpkg.com/valoo.
just the bare necessities of state management.
Hotlink it from https://unpkg.com/valoo.
In this talk we will be all discussing the origin of the furry fandom. How we will thogheter create a new furry-in-js framework. We will going over how they have changed the current fandom world, our hearts and the js world in 5 very awesome minutes! This talk is to prove a point that stars mean nothing in this case.
| /** | |
| * Generate a Netlify HTTP2 Server Push configuration. | |
| * | |
| * Options: | |
| * - headersFile {string} path to the _headers file that should be generated (relative to your output dir) | |
| */ | |
| function NetlifyServerPushPlugin(options) { | |
| this.options = options; | |
| } |
| import { ApolloClient, createNetworkInterface } from 'react-apollo' | |
| import { SubscriptionClient, addGraphQLSubscriptions } from 'subscriptions-transport-ws' | |
| const uri = 'http://localhost:4000/graphql' | |
| const subscriptionsURI = 'ws://localhost:4000/' | |
| let apolloClient = null | |
| function _initClient (headers, initialState, subscriptionsInterface) { | |
| return new ApolloClient({ | |
| initialState, |
| { | |
| "rules": { | |
| ".read": "auth != null", | |
| "users": { | |
| "$userId": { | |
| ".write": "$userId === auth.uid" | |
| } | |
| } | |
| } | |
| } |
| import React, { Component } from 'react' | |
| import logo from './logo.svg' | |
| import './App.css' | |
| import { Route, Link, Redirect } from './Zero' | |
| const paths = [ 'one', 'two', 'three' ] | |
| class App extends Component { | |
| render() { |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/.git/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/node_modules/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/_build/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> | |
| <excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/deps/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" /> |
| function JSON_to_URLEncoded(element,key,list){ | |
| var list = list || []; | |
| if(typeof(element)=='object'){ | |
| for (var idx in element) | |
| JSON_to_URLEncoded(element[idx],key?key+'['+idx+']':idx,list); | |
| } else { | |
| list.push(key+'='+encodeURIComponent(element)); | |
| } | |
| return list.join('&'); | |
| } |