Skip to content

Instantly share code, notes, and snippets.

View fang0rnz's full-sized avatar
🤡

Lucas Sartori fang0rnz

🤡
  • Outreach
  • Prague, CZ
View GitHub Profile
@fang0rnz
fang0rnz / README.md
Created January 28, 2019 23:41
SCRIPT-8
npm i -g mapshaper
mapshaper Quadrado_Est_Bacia_Potiguar.shp -each 'ESFORCO = Math.floor(Math.random() * (Math.floor(100))), PERMANENCI = Math.floor(Math.random() * (Math.floor(1440) - 1)) + 1, VOLUME_PES = Math.floor(Math.random() * (Math.floor(1000))), PROB_INTER = Math.random()' -o ceara.shp

Keybase proof

I hereby claim:

  • I am fang0rnz on github.
  • I am fang0rnz (https://keybase.io/fang0rnz) on keybase.
  • I have a public key ASCqo40zsXc9IrdRlsPSou7qfklhIPC1gGNUJomeMjKy0Ao

To claim this, I am signing this object:

export function debounce(func, wait, immediate) {
let timeout;
return function() {
const later = () => {
timeout = null;
if (!immediate) func.apply(this, arguments);
};
const callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
{"teams":[{"id":99,"name":"Seleção brasileira de futebol","slug":"brasil","commonName":"Brasil","abbr":"BRA","type":"selecao","groupPosition":"1","color":{"color1":"#6da544","color2":"#ffda44"}},{"id":161,"name":"1º colocado do Grupo A","slug":"1o-do-grupo-a","commonName":"1º do Grupo A","abbr":"","type":"coringa","groupPosition":""},{"id":163,"name":"1º colocado do Grupo B","slug":"1o-do-grupo-b","commonName":"1º do Grupo B","abbr":"","type":"coringa","groupPosition":""},{"id":165,"name":"1º colocado do Grupo C","slug":"1o-do-grupo-c","commonName":"1º do Grupo C","abbr":"","type":"coringa","groupPosition":""},{"id":167,"name":"1º colocado do Grupo D","slug":"1o-do-grupo-d","commonName":"1º do Grupo D","abbr":"","type":"coringa","groupPosition":""},{"id":171,"name":"1º colocado do Grupo E","slug":"1o-do-grupo-e","commonName":"1º do Grupo E","abbr":"","type":"coringa","groupPosition":""},{"id":173,"name":"1º colocado do Grupo F","slug":"1o-do-grupo-f","commonName":"1º do Grupo F","abbr":"","type":"coringa","gr
@fang0rnz
fang0rnz / css-selectors.md
Created December 4, 2017 01:03 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;