Skip to content

Instantly share code, notes, and snippets.

View Guichaguri's full-sized avatar

Guilherme Chaguri Guichaguri

View GitHub Profile
@Guichaguri
Guichaguri / blog-posts-output.json
Last active March 21, 2022 01:18
Mozilla Blog Posts Example
{
"container": {
"type": "wordpress-rest-api",
"version": "v2",
"metadata": {
"params": {
"page": 1,
"_embed": true
}
}
@Guichaguri
Guichaguri / monday.m
Last active April 3, 2024 08:21
Power BI Monday.com Query - Power Query M
// Queries Monday.com items from a specific board. Limits to 500 items.
// Tested in API version 2024-01
// Created by Guilherme Chaguri
// Replace the API Key and Board ID for it to work
// In Power BI: "Get Data" -> "Blank Query" -> Right click the "Query" in the left panel and open the "Advanced Editor" -> Paste this code
let
Key = "YOUR MONDAY API KEY",
Board = "YOUR MONDAY BOARD ID NUMBER",
Source = Web.Contents(
@Guichaguri
Guichaguri / Consulta-CNPJ-CEP.md
Last active July 10, 2023 19:57
Consulta CNPJ e CEP - Javascript

Consulta de CNPJ e CEP em Javascript (Web ou NodeJS)

Funções para consultar informações sobre CNPJ e CEP pela web (sem backend necessário) ou através de Node.JS

  • nodejs-lib.js - Código para realizar a requisição através do módulo de HTTPS do Node.JS
  • web-lib.js - Código para realizar a requisição através de JSONP na Web
  • consulta.js - Funções para realizar consultas de CNPJ e CEP

Se você está usando Node.JS, adicione o código de nodejs-lib.js.