Skip to content

Instantly share code, notes, and snippets.

@r4phf43l
r4phf43l / facebok ip list
Created September 14, 2021 13:59 — forked from Whitexp/facebok ip list
facebook ip list
31.13.24.0/21
31.13.64.0/19
31.13.64.0/24
31.13.69.0/24
31.13.70.0/24
31.13.71.0/24
31.13.72.0/24
31.13.73.0/24
31.13.75.0/24
31.13.76.0/24
{
"UF": [
{"nome": "Acre", "sigla": "AC"},
{"nome": "Alagoas", "sigla": "AL"},
{"nome": "Amapá", "sigla": "AP"},
{"nome": "Amazonas", "sigla": "AM"},
{"nome": "Bahia", "sigla": "BA"},
{"nome": "Ceará", "sigla": "CE"},
{"nome": "Distrito Federal", "sigla": "DF"},
{"nome": "Espírito Santo", "sigla": "ES"},
@r4phf43l
r4phf43l / sprintf.js
Last active November 8, 2020 01:17 — forked from rmariuzzo/sprintf.js
Simple and minimal `sprintf` function in JavaScript.
const sprintf = ( format, ...args ) => ( i = 0, format.replace( /%s/g, () => args[i++] ) );