I hereby claim:
- I am gilbert on github.
- I am mindeavor (https://keybase.io/mindeavor) on keybase.
- I have a public key whose fingerprint is 7DB8 DF5F 0720 815C 104C 416A F8BA C5DA 9D8C 1B56
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /* Create a new file at ~/Library/KeyBindings/DefaultKeyBinding.dict */ | |
| /* and copy/paste this into it. */ | |
| { | |
| "~f"="moveWordForward:"; | |
| "~b"="moveWordBackward:"; | |
| "~<"="moveToBeginningOfDocument:"; | |
| "~>"="moveToEndOfDocument:"; | |
| "~v"="pageUp:"; | |
| "~d"="deleteWordForward:"; | |
| "~^h"="deleteWordBackward:"; |
| <!doctype html><title>Minimal Mithril</title> | |
| <div id="app"></div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/mithril/1.0.1/mithril.min.js"></script> | |
| <script> | |
| var AppComponent = { | |
| view: function (vnode) { | |
| return m('h1', "Hello World!") |
| Configuring for host x86_64-apple-darwin16.6.0 ... | |
| Configuring for target x86_64-apple-darwin16.6.0 ... | |
| Using compiler gcc. | |
| The C compiler is ANSI-compliant. | |
| Checking the sizes of integers and pointers... | |
| Wow! A 64 bit architecture! | |
| This is a little-endian architecture. | |
| Doubles can be word-aligned. | |
| 64-bit integers can be word-aligned. | |
| Native division and modulus have round-towards-zero semantics, will use them. |
| var inc = (x) => x + 1; | |
| var double = (x) => x * 2; | |
| var x = 10 |> inc |> double; | |
| var y = 10 |> inc; |
| // | |
| // Our main data fetching tool. | |
| // This fetches an object of promise makers ONLY ON THE CLIENT SIDE, | |
| // and manages loading and data states for each key. | |
| // | |
| import React from 'react' | |
| import http from './http' | |
| export default (promisesMakers, options={}) => Component => | |
| class FetchHOC extends React.Component { |
| /* | |
| Create this as a file ~/Library/KeyBindings/DefaultKeyBinding.dict | |
| Then restart your computer. | |
| NOTE: ~ means alt/option | |
| ^ means ctrl | |
| */ | |
| { | |
| "~f"="moveWordForward:"; | |
| "~b"="moveWordBackward:"; | |
| "~<"="moveToBeginningOfDocument:"; |
| class Showcase extends React.Component { | |
| constructor(props) { | |
| super(props) | |
| this.state = { ... } | |
| } | |
| toggle() { | |
| this.setState({ open: ! this.state.open }) | |
| } | |
| render() { | |
| var {open, loading} = this.state |
| type QueueItem = { | |
| filename: string | |
| resolve: () => void | |
| originalValue: any | |
| stubValue: any | |
| } | |
| type Stub = { | |
| queue: QueueItem[] | |
| filename: string | |
| originalValue: any |
| dog(rover). | |
| dog(felix). | |
| dog(benny). | |
| has_owner(rover). | |
| has_owner(benny). | |
| is_happy(Dog) :- has_owner(Dog). | |
| is_happy(Dog) :- breed(Dog, poodle). |