Skip to content

Instantly share code, notes, and snippets.

@Dev240908
Dev240908 / memory_graph.html
Last active April 22, 2026 20:16
Gigi Memory Graph — visualizzazione interattiva
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gigi Memory Graph</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; background: #0f0f13; color: #e0e0f0; font-family: 'Segoe UI', system-ui, sans-serif; }
#header { height: 44px; background: #16161e; border-bottom: 1px solid #2a2a3e; display: flex; align-items: center; padding: 0 18px; gap: 10px; }
@Dev240908
Dev240908 / graph.html
Last active April 22, 2026 09:50
Obsidian Graph — Brian Gastaldelli
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Obsidian Graph</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; }
body { background:#0f0f23; overflow:hidden; font-family:sans-serif; }
svg { width:100vw; height:100vh; }
.node circle { stroke:#fff; stroke-width:1.5px; cursor:pointer; }