Um guia de descoberta de lugares e acontecimentos do Vale Europeu (SC) — bonito, instantâneo e sem fricção — que ajuda qualquer pessoa a encontrar o que ver, comer e fazer ao redor, e como chegar lá. Sem login, sem conta, sem cadastro. Você abre e já
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
| #!/bin/bash | |
| # | |
| # Backup of Claude Code + Claude Desktop (cowork) durable state. | |
| # Allowlist approach: copies ONLY what is hard to recreate (instructions, | |
| # settings, skills, plugin config, and all `memory/` dirs). Everything | |
| # ephemeral or secret (caches, telemetry, sessions, cookies, tokens) is | |
| # left out on purpose — it regenerates on the next login. | |
| # | |
| set -euo pipefail |
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
| <DialogPrimitive.Overlay | |
| ref={ref} | |
| className={cn( | |
| "fixed inset-0 z-50 bg-black/30 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 overflow-y-auto max-h-screen grid place-items-center", | |
| className | |
| )} | |
| {...props} | |
| /> | |
| <DialogPortal> |
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
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Maratona Santa Maria 2025</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.0/flowbite.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap'); |
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
| [ | |
| { | |
| "label": "DEFAULT_ADMIN_PERMISSION", | |
| "roles": [ | |
| "license.collaborators.delete", | |
| "license.collaborators.invite", | |
| "license.collaborators.read", | |
| "license.collaborators.update", | |
| "license.delete", | |
| "license.delete.ads", |
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 worker = async (queue, concurrency = 25) => { | |
| let index = 0; | |
| let results = []; | |
| let threads = []; | |
| const execThread = async () => { | |
| while (index < queue.length) { | |
| const currentIndex = index++; | |
| // Use of `currentIndex` is important because `index` may change after await is resolved |
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 putData = async (data, ms) => { | |
| return new Promise(resolve => { | |
| setTimeout(() => { | |
| resolve(data); | |
| }, ms); | |
| }); | |
| }; | |
| const clearAll = async () => { | |
| // logic to clear all data |
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 putData = async (data, ms) => { | |
| return new Promise(resolve => { | |
| setTimeout(() => { | |
| resolve(data); | |
| }, ms); | |
| }); | |
| }; | |
| const clearAll = async () => { | |
| // logic to clear all data |
NewerOlder