Skip to content

Instantly share code, notes, and snippets.

{"protected":false,"center":[-10,30],"zoom":1.5,"sources":{"mapbox-hillshade":{"type":"raster-dem","url":"mapbox://mapbox.mapbox-terrain-dem-v1","tileSize":1024,"data":{"attribution":"<a href=\"https://www.mapbox.com/about/maps\" target=\"_blank\" title=\"Mapbox\" aria-label=\"Mapbox\">&copy; Mapbox</a>","autoscale":true,"bounds":[-180,-85,180,85],"cacheControl":"max-age=43200,s-maxage=604800","center":[0,0,3],"created":1604614692000,"description":"png or webp file extension must be used. height = -10000 + ((R * 256 * 256 + G * 256 + B) * 0.1)","encoding":"mapbox","filesize":0,"format":"png","id":"mapbox.mapbox-terrain-dem-v1","mapbox_logo":true,"maxzoom":14,"minzoom":0,"modified":1605833570000,"name":"Mapbox Terrain-DEM v1","packs":{"scheme":[{"indexzoom":0,"maxzoom":5,"minzoom":0},{"indexzoom":6,"maxzoom":9,"minzoom":6},{"indexzoom":10,"maxzoom":12,"minzoom":10},{"indexzoom":11,"maxzoom":14,"minzoom":13}]},"private":false,"scheme":"xyz","tilejson":"3.0.0","tiles":["mapbox://raster/mapbox.mapbox-terrain-dem-
{"pedestrian-polygon":{"x":0,"y":0,"width":128,"height":128,"pixelRatio":2,"visible":true},"crosswalk-large":{"x":128,"y":0,"width":120,"height":120,"pixelRatio":2,"visible":true},"crosswalk-large-dark":{"x":0,"y":128,"width":120,"height":120,"pixelRatio":2,"visible":true},"crosswalk-small":{"x":120,"y":128,"width":120,"height":120,"pixelRatio":2,"visible":true},"crosswalk-small-dark":{"x":240,"y":128,"width":120,"height":120,"pixelRatio":2,"visible":true},"crosswalk-small-dark-":{"x":360,"y":128,"width":120,"height":120,"pixelRatio":2,"visible":true},"ca-saskatchewan-alt-3":{"x":248,"y":0,"width":50,"height":100,"pixelRatio":2,"visible":true},"ca-northwest-2":{"x":298,"y":0,"width":42,"height":84,"pixelRatio":2,"visible":true},"us-interstate-truck-2":{"x":340,"y":0,"width":40,"height":80,"pixelRatio":2,"placeholder":[0,34,40,46],"visible":true},"us-interstate-truck-3":{"x":380,"y":0,"width":52,"height":80,"pixelRatio":2,"placeholder":[0,34,52,46],"visible":true},"us-highway-business-2":{"x":432,"y":0,"width"
@tiagozip
tiagozip / twitter_fp
Created March 28, 2026 16:11
twitter fp log
// Fingerprint Logger — 426 unique events
// Generated: 2026-03-28T16:11:11.422Z
// === [misc] document.visibilityState (x18) ===
// misc.document.visibilityState
{
"method": "document.visibilityState",
"value": "visible"
}
{
"reconnectWithConversationId" : true,
"forceEnableVoiceMode" : true,
"enableVoiceMode" : true,
"debugMode" : false,
"showKidsToggle" : true,
"allowCustomPrompt" : true,
"skipNonInterruptionWindow" : false,
"enableSearch" : true,
"stagingVoiceUrl" : "wss:\/\/grok-api.gcp.mouseion.dev\/ws\/app_chat\/stream_audio?use_time_based_playback_tracking=true",
@tiagozip
tiagozip / 5-second previews
Last active December 24, 2024 16:19
System prompts of Arc Max
As a concise and helpful summarizer, create a glanceable "answer card" containing the most important information from the webpage.
Capture the tone, perspective and POV of the writer.
Provide a response using JSON, according to the `Response` schema:
```
interface Response {
blocked: boolean // Does this page ask the user to enable Javascript or complete a security check before accessing the content?
userQuestion: string? // 1-word question to focus the rest of the answer card upon; based on user's search query: 'google'
quickSummary: string? // 3-8 words the user is most likely to want to know, beyond the page's title. Provide a fact or opinion, not just a title.
details: Detail[] // 2-4 key points, solutions or items.
}

aspe:keyoxide.org:HLPMZEVMMCLIDWVGNDMB4LIB2M

@tiagozip
tiagozip / omnibar.css
Last active January 9, 2026 16:39
js and css omnibar
/* make sure to set the following variables:
--foreground: r, g, b
--background: r, g, b
example:
--foreground: 13, 13, 14;
--background: 255, 255, 255;
*/
.omnibar__wrapper {
@tiagozip
tiagozip / jwt-decoder.js
Last active May 17, 2025 10:33
JWT decoder used for Authflow
// 💡 Tip: need to decode with node.js? Use the @authflow-js/verify npm module
function decryptJWT(e) {
return JSON.parse((typeof Buffer !== "undefined" ? Buffer.from(token.split('.')[1], 'base64') : atob(token.split('.')[1])).toString());
}