This file contains hidden or 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
| // Aperta F12 -> clique na aba console -> copie e cole esse texto lá e aperte enter | |
| // No canto inferior direito vai surgir um botão de exportar dados das ultimas 50 corridas | |
| (function () { | |
| 'use strict'; | |
| const PAGE_SIZE = 50; | |
| // ─── Estado global ──────────────────────────────────────────────────────── | |
| let allRows = []; | |
| let currentCursor = null; |
This file contains hidden or 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
| 140602 |
This file contains hidden or 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
| { | |
| "language": "pt", | |
| "tab": "agenda", | |
| "title": "Unidos Jovem", | |
| "url": "https://calendar.google.com/calendar/ical/c5c9e35e43d68f781eacad316f82149d23f6b563e1240aeecc2482e26fdf9723%40group.calendar.google.com/public/basic.ics" | |
| } |
This file contains hidden or 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
| [ | |
| { | |
| "name": "Afghanistan", | |
| "topLevelDomain": [".af"], | |
| "alpha2Code": "AF", | |
| "alpha3Code": "AFG", | |
| "callingCodes": ["93"], | |
| "capital": "Kabul", | |
| "altSpellings": ["AF", "Afġānistān"], | |
| "subregion": "Southern Asia", |
This file contains hidden or 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
| const http = require('http'); | |
| const port = 3349 | |
| const routes = { | |
| '/': handlePostReq | |
| } | |
| const server = http.createServer((req, res) => { | |
| routes[req.url](req, res); |