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 numerosMegaVirada() { | |
const min = 1; | |
const max = 60; | |
const max_numbers = 6; | |
let numbers = []; | |
do { | |
let number = Math.random() * (max - min) + min; | |
if (number >= min && number <= max && !numbers.includes(parseInt(number))) numbers.push(parseInt(number)); | |
} while (numbers.length != max_numbers); |
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
<?php | |
class BulmaWalker extends \Walker_Nav_Menu | |
{ | |
/** | |
* [private stored in start_el and used in start_lvl to pass custom classes on ] | |
* @var [array] | |
*/ | |
private $right_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
version: '3' | |
# Named volumes | |
volumes: | |
pg-container-data: | |
driver: local | |
redis-container-data: | |
driver: local | |
services: |
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 distance(lat, long, lat1, long1, useManhatan) { | |
var r = Math.sqrt; | |
var o = Math.cos; | |
var l = Math.sin; | |
var p = Math.PI; | |
var m = Math.round; | |
var earthCurve = 6371; | |
var manthatanConst = 1.309; |
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 gerarCPF(a) { | |
var b = !0 | |
, c = 9 | |
, d = randomiza(c) | |
, e = randomiza(c) | |
, f = randomiza(c) | |
, g = randomiza(c) | |
, h = randomiza(c) | |
, i = randomiza(c) | |
, j = randomiza(c) |
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
cfpValido () { | |
const regexCPF = /^\d{3}\.\d{3}\.\d{3}-\d{2}$/ | |
let i = 0 | |
let soma = 0 | |
let resto = 0 | |
if (regexCPF.test(this.cpf)) { | |
for (i = 1; i <= 9; i++) { | |
soma = soma + parseInt(this.cpf.substring(i - 1, i)) * (11 - i) | |
} | |
resto = soma % 11 |
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
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
indent_style = tab | |
indent_size = 4 | |
# We recommend you to keep these unchanged |
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
Number.prototype.formatMoney = function (places, symbol, thousand, decimal) { | |
places = !isNaN(places = Math.abs(places)) ? places : 2; | |
symbol = symbol !== undefined ? symbol : "$"; | |
thousand = thousand || ","; | |
decimal = decimal || "."; | |
var number = this, | |
negative = number < 0 ? "-" : "", | |
i = parseInt(number = Math.abs(+number || 0).toFixed(places), 10) + "", | |
j = (j = i.length) > 3 ? j % 3 : 0; | |
return symbol + negative + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousand) + (places ? decimal + Math.abs(number - i).toFixed(places).slice(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
.column { | |
display: block; | |
flex-basis: 0; | |
flex-grow: 1; | |
flex-shrink: 1; | |
padding: 0.75rem; | |
} | |
.columns { | |
&.is-mobile > .column { |
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
<?php | |
namespace App\Lib; | |
use Utils; | |
class BulmaWalker extends \Walker_Nav_Menu | |
{ | |
private $cpt; // CPT, is current post a custom post type | |
private $archive; // Stores the archive page for current URL | |
public function __construct() |
NewerOlder