This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.when( | |
| createBaseCharts('.tile-area') | |
| .then(createTicks), | |
| fetchTalkContentData() | |
| .then(parseTalkContentData) | |
| ) | |
| .then((charts, data) => { | |
| fadeUnnecessaryTicks(charts) | |
| .then(addWordDensityBubbles) | |
| .then(addCursor) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button class='refresh'>refresh</button> | |
| <div> | |
| <div id='s1'><span class='name'></span><span class='x'>X</span></div> | |
| <div id='s2'><span class='name'></span><span class='x'>X</span></div> | |
| <div id='s3'><span class='name'></span><span class='x'>X</span></div> | |
| </div> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Rx from 'rx'; | |
| const RxFuncSubject = () => { | |
| const subject = Object.assign( | |
| (...args) => subject.onNext(...args), | |
| Rx.Observable.prototype, | |
| Rx.Subject.prototype); | |
| Rx.Subject.call(subject); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| getStream(callback) : Get a stream of items. | |
| Each item get passed in to the provided callback. | |
| Each item is an object with following format: | |
| { | |
| id: Number, | |
| title: String | |
| date: Number (timestamp in ms) | |
| imageURL: String |
Noblos.
A list of sites that don't set the css background-color property but do set the font color. Or do set the background-color but don't set the font color. That is, it wasn't done by choice.
Change the default colors in your browser, and the internet goes bananas. Modifying defaults is not unreasonable - switching black and white can help readablilty at night, and stops the bright flash-of-unstyled-content as a page is loading. It also messes up a web page's design if someone forgets to include basic css properties!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I now only communicate via gists. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let cons = (x, y) => f => f(x, y); | |
| let car = p => p((x, y) => x); | |
| let cdr = p => p((x, y) => y); | |
| let p = cons("a", cons("b", "c")); | |
| console.log(car(p), cdr(cdr(p))); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BasicUpstart2(entry) | |
| entry: | |
| sei | |
| jsr init_sprites | |
| lda #$7f | |
| sta $dc0d // Disable CIA #1 | |
| lda $dc0d |
