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
const observables: any = {} | |
const subjects: any = {} | |
observables.log = Observable.create(subject => { | |
subjects.log = subject | |
}) | |
function log(...msgs) { | |
console.log(...msgs) |
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
const pastWinners = [ | |
[2, 3, 4, 8, 9, 20, 30], | |
[10, 15, 16, 17, 19, 27, 38], | |
[18, 31, 38, 45, 46, 47, 48], | |
[8, 9, 12, 20, 22, 27, 30], | |
[25, 28, 31, 36, 42, 44, 49], | |
[3, 9, 15, 16, 19, 45, 48], | |
[1, 3, 5, 10, 16, 27, 43], | |
[3, 12, 21, 34, 37, 38, 41], | |
[2, 4, 18, 19, 20, 39, 44], |
- Token entitles you to earnings based on other participant actions (eg. COSS)
- Token is burned/bought back at a future date (decreasing supply increases value)
- Token is required for exclusive abilities/features (participating in hosted ICOs eg. BNB)
- Token is required as a membership fee, consumed monthly/yearly (eg. Salt)
- Token is required to be held, but not consumed.
- Token is required to make operations inside the ecosystem (eg. Ethereum)
- Token is held purely on speculation of ecosystem demand (eg. B2BX)
- Token is required for voting purposes (eg. District0x)
- Token is used to incentivize contributors/miners (eg. 0x, ChainLink)
- Token must be purchased by app developers to allow users to interact freely.
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
# $1 = type; 0 - both, 1 - tab, 2 - title | |
# rest = text | |
setTerminalText () { | |
# echo works in bash & zsh | |
local mode=$1 ; shift | |
echo -ne "\033]$mode;$@\007" | |
} | |
set_tab_name () { setTerminalText 1 $@; } | |
stt_title_name () { setTerminalText 2 $@; } |
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
<!-- Expose keys of the `accordion` object to the scope --> | |
{#accordion} | |
<div class="accordion-wrapper"> | |
<!-- Output a component called `accordion` and pass it `items` + `class` --> | |
{@c-accordion items=items class="padding-top-small"} | |
<!-- Override the `footer` block --> | |
{:footer} | |
<!-- Iterate the `links` array and expose keys of each object --> | |
{#links} | |
<!-- Output a component called `link` and pass it a `class` --> |
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
module.exports = function(app) { | |
function sendResponse(res, callback, code, message, data) { | |
var data = {code: code, message: message, data: data}; | |
var content; | |
if (callback) { | |
content = callback + '(' + JSON.stringify(data) + ')'; | |
res.writeHead(200, { | |
'Content-Length': lengthInUtf8Bytes(content), |
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
// client/app/router.jsx | |
// Setup routes | |
// For different templates based on domain | |
var SiteRoutes = { | |
'test1.com': ( | |
<Route handler={ReactRouter.RouteHandler}> | |
<Route path='/' handler={require('./routes/test1.com/home.jsx')} /> | |
<Route path='/sets' handler={require('./routes/test1.com/sets.jsx')} /> | |
<Route path='/sets/:action' handler={require('./routes/test1.com/sets.jsx')} /> |
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 dummyLink = document.createElement('a'); | |
var absolutify = function (url) { | |
dummyLink.href = url; | |
return dummyLink; | |
}; | |
$('body').on('click', 'a', function(e) { | |
var $anchor = $(this); |
NewerOlder