I hereby claim:
- I am appleton on github.
- I am appltn (https://keybase.io/appltn) on keybase.
- I have a public key whose fingerprint is 5C33 F217 E61F F737 CE04 50E8 E464 B0E0 241C 31E4
To claim this, I am signing this object:
| const black = '#272c33' | |
| const red = '#e06b74' | |
| const green = '#98c378' | |
| const yellow = '#e5c07a' | |
| const blue = '#60aeee' | |
| const magenta = '#c677dc' | |
| const cyan = '#56b6c1' | |
| const white = '#abb1bf' | |
| const lightBlack = '#31353f' | |
| const lightRed = '#f97782' |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // Choose either "stable" for receiving highly polished, | |
| // or "canary" for less polished but more frequent updates | |
| updateChannel: 'stable', |
I hereby claim:
To claim this, I am signing this object:
| var d = document.createElement('div'); | |
| d.innerHTML = 'a load of html that you got back from the server'; | |
| var contents = d.querySelector('div.whatever').innerHTML; |
| describe('A test', function() { | |
| set('data', function() { | |
| return { some: 'stuff' }; | |
| }); | |
| set('subject', function() { | |
| return new FooThing(data); | |
| }); | |
| it('does stuff', function() { |
| def multiply(x, y) | |
| x * y | |
| end | |
| p [1,2,3].map(&method(:multiply, 2)) | |
| # ArgumentError :( |
| export default function() { | |
| return 'hai'; | |
| } |
| express.use(connect.static({maxAge: 12345})); |
| #... | |
| after_transition do |parent, transition| | |
| parent.state = transition.to_state | |
| parent.save! | |
| end | |
| #... |