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
function createHorizontalRay(epoch, price) { | |
window.c = window.TradingViewApi.activeChart(); | |
// Ht | |
window.ht = window.c._chartWidget.paneWidgets()[0]; | |
// l = chart undo model | |
window.chartModel = window.c._chartWidget._model | |
var point = {index: epochToCandleIndex(epoch), price: price}; | |
var linetool = 'LineToolHorzRay'; | |
window.chartModel.createLineTool({ |
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 { performance } = require('perf_hooks'); | |
const assert = require('assert'); | |
const DURATION_COLUMN = 'time[ns]'; | |
// Create 1000 random numbers | |
const createTestArray = length => Array.from({ length }, () => 1 + Math.floor(Math.random() * 1000)); | |
const createReferenceArray = testArray => testArray.map(v => Math.ceil((v + 2) / 10)); | |
const sumUp = array => array.reduce((sum, value) => sum + value, 0); | |
const computeBenchmark = v => Math.ceil((v + 2) / 10); |
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
# Ask for the user password | |
# Script only works if sudo caches the password for a few minutes | |
sudo true | |
# Install kernel extra's to enable docker aufs support | |
# sudo apt-get -y install linux-image-extra-$(uname -r) | |
# Add Docker PPA and install latest version | |
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 | |
# sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" |
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
// https://gist.github.com/mikelehen/3596a30bd69384624c11 | |
/** | |
* Fancy ID generator that creates 20-character string identifiers with the following properties: | |
* | |
* 1. They're based on timestamp so that they sort *after* any existing ids. | |
* 2. They contain 72-bits of random data after the timestamp so that IDs won't collide with other clients' IDs. | |
* 3. They sort *lexicographically* (so the timestamp is converted to characters that will sort properly). | |
* 4. They're monotonically increasing. Even if you generate more than one in the same timestamp, the | |
* latter ones will sort after the former ones. We do this by using the previous random bits | |
* but "incrementing" them by 1 (only in the case of a timestamp collision). |
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
declare module 'react-grid-layout' { | |
export = __ReactGridLayout; | |
} | |
declare namespace __ReactGridLayout { | |
import React = __React; | |
let Responsive:__ReactGridLayout.ResponsiveReactGridLayout | |
interface GridItemProps<P> { | |
// Children must be only a single element | |
children: React.ReactElement<P>, |