This file contains 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
var lightScheme = { | |
cursor: "rgba(146, 146, 146, 0.5)", // #929292 | |
foreground: "#000000", | |
background: "#FFFFFF", | |
normalBlack: "#000000", | |
normalRed: "#FC2025", | |
normalGreen: "#29C732", | |
normalYellow: "#FC820A", | |
normalBlue: "#0B5FFE", | |
normalMagenta: "#463BCC", |
This file contains 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
Verifying my Blockstack ID is secured with the address 122BridWCRqDo9QYDBdevrjiAewiKZEEE5 https://explorer.blockstack.org/address/122BridWCRqDo9QYDBdevrjiAewiKZEEE5 |
This file contains 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
Verifying my Blockstack ID is secured with the address 122BridWCRqDo9QYDBdevrjiAewiKZEEE5 https://explorer.blockstack.org/address/122BridWCRqDo9QYDBdevrjiAewiKZEEE5 |
This file contains 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
<scheme name="tob" version="142" parent_scheme="Default"> | |
<option name="LINE_SPACING" value="1.0" /> | |
<option name="EDITOR_FONT_SIZE" value="11" /> | |
<option name="CONSOLE_FONT_NAME" value="Monospaced" /> | |
<option name="CONSOLE_FONT_SIZE" value="10" /> | |
<option name="EDITOR_FONT_NAME" value="DejaVu Sans Mono" /> | |
<colors> | |
<option name="ADDED_LINES_COLOR" value="989898" /> | |
<option name="ANNOTATIONS_COLOR" value="0" /> | |
<option name="CARET_COLOR" value="c4ef3f" /> |
This file contains 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 { EventEmitter } from "events" | |
/** | |
* Transforms a stream of events into an array-like iterable which produces promises. | |
* Empty event value means the end of the stream. | |
* | |
* Poor-man's async iterator. | |
* | |
* Usage: | |
* ``` |
This file contains 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
# CoffeeScript classes supported? | |
# https://github.com/disnet/contracts.coffee/issues/26 | |
# TServer is a contract | |
# Server is a class | |
for prop, Tcontr of TServer.oc | |
continue if not Server::[prop] or | |
prop is 'constructor' | |
Server::[prop] :: Tcontr | |
Server::[prop] = Server::[prop] |