Skip to content

Instantly share code, notes, and snippets.

View Miltonheber's full-sized avatar

Milton Héber Miltonheber

View GitHub Profile
This file has been truncated, but you can view the full file.
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "shapeName": "Cabo Delgado", "shapeISO": "MZ-P", "shapeID": "27363107B79734749620930", "shapeGroup": "MOZ", "shapeType": "ADM1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.5850738, -12.231012 ], [ 40.5855296, -12.2319096 ], [ 40.5862766, -12.2338619 ], [ 40.5865111, -12.2346768 ], [ 40.586624, -12.23595 ], [ 40.5866413, -12.2372232 ], [ 40.5865545, -12.2382248 ], [ 40.5863374, -12.2384624 ], [ 40.5862244, -12.2388783 ], [ 40.5861376, -12.2410937 ], [ 40.5859552, -12.2427658 ], [ 40.5858249, -12.2431308 ], [ 40.5842964, -12.2446725 ], [ 40.5839447, -12.2451945 ], [ 40.5835321, -12.2454873 ], [ 40.582529, -12.2463955 ], [ 40.5824855, -12.2466162 ], [ 40.5824942, -12.2469133 ], [ 40.5825811, -12.247083 ], [ 40.5830153, -12.2476262 ], [ 40.5833071, -12.2482734 ], [ 40.5833547, -12.2484925 ], [ 40.5835605, -12.2488075 ], [ 40.
javascript: (function() {
var scripts = document.getElementsByTagName("script"),
regex = /(?<=(\"|\%27|\`))\/[a-zA-Z0-9_?&=\/\-\#\.]*(?=(\"|\'|\%60))/g;
const results = new Set;
for (var i = 0; i < scripts.length; i++) {
var t = scripts[i].src;
"" != t && fetch(t).then(function(t) {
return t.text()
}).then(function(t) {
var e = t.matchAll(regex);
@Miltonheber
Miltonheber / curl.md
Created February 12, 2025 16:26 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.