Icons for Pentaho tools
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 roundNumber(num, dec) { | |
return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec); | |
} | |
function floorNumber(num, dec) { | |
return roundNumber(num - (5 / Math.pow(10, dec + 1)), dec); | |
} | |
function ceilNumber(num, dec) { | |
var numStr = num.toString(); |
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
// ==UserScript== | |
// @name ADBlock Dia A Dia Arapongas | |
// @namespace http://tampermonkey.net/ | |
// @version 0.7 | |
// @downloadURL https://gist.githubusercontent.com/raw/a91df53662778e2ff58a4820a9534a12/adblock_diaadiaarapongas.js | |
// @description Remover propagandas do Dia A Dia Arapongas! | |
// @author You | |
// @include /^https?://(www\.)?diaadiaarapongas\.com\.br/ | |
// @grant none | |
// ==/UserScript== |
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
/** | |
* Whatsapp injection script. | |
* | |
* You can use this script to get any module from Whatsapp Web page | |
*/ | |
// Set the default webpackJson | |
window["webpackJsonp"] = window["webpackJsonp"] || []; | |
(function () { |