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
=index(SPLIT(AK2;",");0;1) | |
=TEXT(AK2; "YYYY/mm") | |
=TEXT(index(SPLIT('Página1'!AS2;",");0;counta(split('Página1'!AS2;","))); "mm/YYYY") | |
SWITCH(F2, 0, “No”, 1, “Other”) | |
=ifs( | |
REGEXMATCH(F2, "this" ),"that", |
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
#include <Trade\Trade.mqh> | |
#include <Trade\SymbolInfo.mqh> | |
CTrade trade; | |
CSymbolInfo m_symbol; | |
MqlDateTime mql_StartTime, mql_StopTime, mql_CloseOrdersTime, mql_currentDateTime; | |
//--- input parameters | |
input double Volume = 1; | |
input double TakeProfit_Level = 20; // Take Profit |
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
#include <Trade\Trade.mqh> | |
#include <Trade\SymbolInfo.mqh> | |
CTrade trade; | |
CSymbolInfo m_symbol; | |
MqlDateTime mql_StartTime, mql_StopTime, mql_CloseOrdersTime, mql_currentDateTime; | |
//--- input parameters | |
input double Volume = 1; | |
input double TakeProfit_Level = 20; // Take Profit |
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
status CHANGED AFTER -1d OR ( status CHANGED DURING (-3d, endOfWeek(-1w) ) ) |
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
# webgefrickel/docker-frontend-tools | |
# VERSION 1.0.0 | |
# using debian results in a smaller image-size :-) | |
FROM debian:jessie | |
# Twitter: @webgefrickel | |
MAINTAINER Steffen Rademacker <[email protected]> | |
# set the wanted versions for dev-tools here |
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
// The number of spaces a tab is considered equal to | |
"tab_size": 4, | |
// Set to true to insert spaces when tab is pressed | |
"translate_tabs_to_spaces": true, | |
// Additional spacing at the top of each line, in pixels | |
"line_padding_top": 1, | |
// Additional spacing at the bottom of each line, in pixels |
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 numbers = []; | |
$('.sorteioItem').eq(3).find('.numberDicker').each(function(i, item){ | |
numbers.push(parseInt($(this).text())); | |
}) | |
console.log( numbers.sort(function(a, b) { | |
return a - b; | |
}).join(', ')) |
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
$('a').filter('[href$=".csv"], [href$=".xls"], [href$=".xlsx"], [href$=".ods"], [href$=".pdf"], [href$="/file"]') | |
.attr('download', '') |
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
alias nginx-service="sudo service nginx" | |
alias nginx-conf-rw="sudo subl /etc/nginx/conf.d/realwave-ui.conf" | |
alias edit-hosts="subl /etc/hosts" | |
alias edit-alias="subl ~/.oh-my-zsh/custom/alias.zsh" | |
alias rm-node-modules="rm -rf node_modules" | |
alias rm-bower-components="rm -rf bower_components" | |
alias npm-fresh-install="rm-node-modules && npm cache clean && npm install && bower cache clean" | |
alias gmtmeld="git mergetool --tool=meld" | |
alias reveal="xdg-open ." |
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
killport(){ | |
sudo kill -9 $(sudo fuser -n tcp $1 2> /dev/null); | |
} |
NewerOlder