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
{ | |
"file_types": { | |
"Ruby": ["Jenkinsfile"] | |
}, | |
"telemetry": { | |
"metrics": false | |
}, | |
"theme": "Ayu Dark", | |
"ui_font_size": 16, | |
"buffer_font_size": 14, |
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
// @juliomatcom | |
study("CM_Williams_Vix_Fix", overlay=false) | |
pd = input(22, title="LookBack Period Standard Deviation High") | |
bbl = input(20, title="Bolinger Band Length") | |
mult = input(2.0 , minval=1, maxval=5, title="Bollinger Band Standard Devaition Up") | |
lb = input(50 , title="Look Back Period Percentile High") | |
ph = input(.85, title="Highest Percentile - 0.90=90%, 0.95=95%, 0.99=99%") | |
pl = input(1.01, title="Lowest Percentile - 1.10=90%, 1.05=95%, 1.01=99%") | |
hp = input(false, title="Show High Range - Based on Percentile and LookBack Period?") | |
sd = input(false, title="Show Standard Deviation Line?") |
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
Show hidden characters
// Documentation at https://www.sublimetext.com/docs/color_schemes.html | |
{ | |
"variables": | |
{ | |
"yellow": "#F0DB4F", | |
"function_argument": "#79b8ff", | |
"variable_blue": "#9ecbff", | |
}, | |
"globals": | |
{ |
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
# example for node | |
git submodule foreach "npm i || :" |
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
# Comment next lines depending on your environment | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# COLORS PROFILES START | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
autoload -U colors && colors |
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
function curry(f) { | |
return function currify() { | |
const args = Array.prototype.slice.call(arguments); | |
return args.length >= f.length ? | |
f.apply(null, args) : | |
currify.bind(null, ...args) | |
} | |
} |
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
Boolean(myVar) === !!myVar // true |
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
Boolean(""); // false | |
Boolean(0); // false | |
Boolean(1); // true | |
Number("10"); // 10 | |
Number("foo"); // NaN | |
String(10); // "10" | |
var stuff = ["", 1, undefined, { foo: "bar" }]; |
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
var b = Boolean(false); // false | |
var n = Number(10); // 10 | |
var s = String("foo"); // "foo" |
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
var b = new Boolean(false); // { [[PrimitiveValue]]: false } | |
var n = new Number(10); // { [[PrimitiveValue]]: 10 } | |
var s = new String('foo'); // { 0: "f", 1: "o", 2: "o", length: 3, [[PrimitiveValue]]: "foo" } |
NewerOlder