@urmzd/github-insights 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +28 -0
- package/.github/dependabot.yml +6 -0
- package/.github/pull_request_template.md +14 -0
- package/.github/workflows/ci.yml +93 -0
- package/.github/workflows/release.yml +59 -0
- package/.nvmrc +1 -0
- package/.pre-commit-config.yaml +5 -0
- package/AGENTS.md +69 -0
- package/CHANGELOG.md +260 -0
- package/CONTRIBUTING.md +87 -0
- package/LICENSE +190 -0
- package/README.md +188 -0
- package/action.yml +45 -0
- package/biome.json +40 -0
- package/examples/classic/README.md +9 -0
- package/examples/classic/index.svg +14 -0
- package/examples/classic/metrics-calendar.svg +14 -0
- package/examples/classic/metrics-complexity.svg +14 -0
- package/examples/classic/metrics-contributions.svg +14 -0
- package/examples/classic/metrics-expertise.svg +14 -0
- package/examples/classic/metrics-languages.svg +14 -0
- package/examples/classic/metrics-pulse.svg +14 -0
- package/examples/ecosystem/README.md +59 -0
- package/examples/ecosystem/index.svg +14 -0
- package/examples/ecosystem/metrics-calendar.svg +14 -0
- package/examples/ecosystem/metrics-complexity.svg +14 -0
- package/examples/ecosystem/metrics-contributions.svg +14 -0
- package/examples/ecosystem/metrics-expertise.svg +14 -0
- package/examples/ecosystem/metrics-languages.svg +14 -0
- package/examples/ecosystem/metrics-pulse.svg +14 -0
- package/examples/minimal/README.md +9 -0
- package/examples/minimal/index.svg +14 -0
- package/examples/minimal/metrics-calendar.svg +14 -0
- package/examples/minimal/metrics-complexity.svg +14 -0
- package/examples/minimal/metrics-contributions.svg +14 -0
- package/examples/minimal/metrics-expertise.svg +14 -0
- package/examples/minimal/metrics-languages.svg +14 -0
- package/examples/minimal/metrics-pulse.svg +14 -0
- package/examples/modern/README.md +111 -0
- package/examples/modern/index.svg +14 -0
- package/examples/modern/metrics-calendar.svg +14 -0
- package/examples/modern/metrics-complexity.svg +14 -0
- package/examples/modern/metrics-contributions.svg +14 -0
- package/examples/modern/metrics-expertise.svg +14 -0
- package/examples/modern/metrics-languages.svg +14 -0
- package/examples/modern/metrics-pulse.svg +14 -0
- package/llms.txt +24 -0
- package/metrics/index.svg +14 -0
- package/metrics/metrics-calendar.svg +14 -0
- package/metrics/metrics-complexity.svg +14 -0
- package/metrics/metrics-contributions.svg +14 -0
- package/metrics/metrics-domains.svg +14 -0
- package/metrics/metrics-expertise.svg +14 -0
- package/metrics/metrics-languages.svg +14 -0
- package/metrics/metrics-pulse.svg +14 -0
- package/metrics/metrics-tech-stack.svg +14 -0
- package/package.json +35 -0
- package/skills/github-insights/SKILL.md +237 -0
- package/sr.yaml +16 -0
- package/src/__fixtures__/repos.ts +84 -0
- package/src/api.ts +729 -0
- package/src/components/bar-chart.test.tsx +38 -0
- package/src/components/bar-chart.tsx +54 -0
- package/src/components/contribution-calendar.test.tsx +44 -0
- package/src/components/contribution-calendar.tsx +94 -0
- package/src/components/contribution-cards.test.tsx +36 -0
- package/src/components/contribution-cards.tsx +58 -0
- package/src/components/donut-chart.test.tsx +36 -0
- package/src/components/donut-chart.tsx +102 -0
- package/src/components/full-svg.test.tsx +54 -0
- package/src/components/full-svg.tsx +59 -0
- package/src/components/project-cards.test.tsx +46 -0
- package/src/components/project-cards.tsx +66 -0
- package/src/components/section.test.tsx +69 -0
- package/src/components/section.tsx +79 -0
- package/src/components/stat-cards.test.tsx +32 -0
- package/src/components/stat-cards.tsx +57 -0
- package/src/components/style-defs.test.tsx +26 -0
- package/src/components/style-defs.tsx +27 -0
- package/src/components/tech-highlights.test.tsx +63 -0
- package/src/components/tech-highlights.tsx +109 -0
- package/src/config.test.ts +127 -0
- package/src/config.ts +103 -0
- package/src/index.ts +363 -0
- package/src/jsx-factory.test.tsx +86 -0
- package/src/jsx-factory.ts +46 -0
- package/src/jsx.d.ts +6 -0
- package/src/metrics.test.ts +669 -0
- package/src/metrics.ts +365 -0
- package/src/parsers.test.ts +247 -0
- package/src/parsers.ts +146 -0
- package/src/readme.test.ts +189 -0
- package/src/readme.ts +70 -0
- package/src/svg-utils.test.ts +66 -0
- package/src/svg-utils.ts +33 -0
- package/src/templates.test.ts +412 -0
- package/src/templates.ts +296 -0
- package/src/theme.ts +33 -0
- package/src/types.ts +235 -0
- package/teasr.toml +14 -0
- package/tsconfig.json +21 -0
- package/vitest.config.ts +12 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="1759" viewBox="0 0 808 1759"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="1759" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">AT A GLANCE</text><text x="24" y="56" class="t t-sub">Contribution activity over the past year</text><rect x="24" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="38" cy="82" r="4" fill="#58a6ff"/><text x="48" y="86" class="t t-stat-label">COMMITS</text><text x="94" y="118" fill="#58a6ff" class="t t-stat-value" text-anchor="middle">1,049</text><rect x="179" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="193" cy="82" r="4" fill="#3fb950"/><text x="203" y="86" class="t t-stat-label">PRS</text><text x="249" y="118" fill="#3fb950" class="t t-stat-value" text-anchor="middle">3</text><rect x="334" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="348" cy="82" r="4" fill="#d29922"/><text x="358" y="86" class="t t-stat-label">REVIEWS</text><text x="404" y="118" fill="#d29922" class="t t-stat-value" text-anchor="middle">5</text><rect x="489" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="503" cy="82" r="4" fill="#bc8cff"/><text x="513" y="86" class="t t-stat-label">REPOS</text><text x="559" y="118" fill="#bc8cff" class="t t-stat-value" text-anchor="middle">24</text><text x="24" y="184" class="t t-h">LANGUAGES</text><text x="24" y="200" class="t t-sub">By bytes of code across all public repos</text><circle cx="114" cy="300" r="70" fill="none" stroke="#00ADD8" stroke-width="28" stroke-dasharray="124.03007796372502 315.792893538846" stroke-dashoffset="0" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#dea584" stroke-width="28" stroke-dasharray="109.07609693263761 330.7468745699334" stroke-dashoffset="-124.03007796372502" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#3178c6" stroke-width="28" stroke-dasharray="103.35839830310418 336.4645731994668" stroke-dashoffset="-233.10617489636263" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#3D6117" stroke-width="28" stroke-dasharray="20.231856689118267 419.59111481345275" stroke-dashoffset="-336.4645731994668" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#3572A5" stroke-width="28" stroke-dasharray="17.15309588860027 422.66987561397076" stroke-dashoffset="-356.6964298885851" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#89e051" stroke-width="28" stroke-dasharray="16.713272917097697 423.1096985854733" stroke-dashoffset="-373.84952577718536" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#a52a22" stroke-width="28" stroke-dasharray="7.916813487046279 431.90615801552474" stroke-dashoffset="-390.56279869428306" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#b07219" stroke-width="28" stroke-dasharray="6.597344572538565 433.22562693003243" stroke-dashoffset="-398.47961218132934" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#000080" stroke-width="28" stroke-dasharray="6.157521601035993 433.66544990153506" stroke-dashoffset="-405.07695675386793" transform="rotate(-90 114 300)" opacity="0.85"/><circle cx="114" cy="300" r="70" fill="none" stroke="#e34c26" stroke-width="28" stroke-dasharray="5.717698629533424 434.1052728730376" stroke-dashoffset="-411.2344783549039" transform="rotate(-90 114 300)" opacity="0.85"/><text x="114" y="305" class="t" fill="#c9d1d9" font-size="14" font-weight="700" text-anchor="middle">10</text><text x="114" y="320" class="t" fill="#6e7681" font-size="10" text-anchor="middle">languages</text><rect x="244" y="220" width="12" height="12" rx="2" fill="#00ADD8" opacity="0.85"/><text x="264" y="230" class="t t-label">Go</text><text x="444" y="230" class="t t-value" text-anchor="end">28.2%</text><rect x="244" y="244" width="12" height="12" rx="2" fill="#dea584" opacity="0.85"/><text x="264" y="254" class="t t-label">Rust</text><text x="444" y="254" class="t t-value" text-anchor="end">24.8%</text><rect x="244" y="268" width="12" height="12" rx="2" fill="#3178c6" opacity="0.85"/><text x="264" y="278" class="t t-label">TypeScript</text><text x="444" y="278" class="t t-value" text-anchor="end">23.5%</text><rect x="244" y="292" width="12" height="12" rx="2" fill="#3D6117" opacity="0.85"/><text x="264" y="302" class="t t-label">TeX</text><text x="444" y="302" class="t t-value" text-anchor="end">4.6%</text><rect x="244" y="316" width="12" height="12" rx="2" fill="#3572A5" opacity="0.85"/><text x="264" y="326" class="t t-label">Python</text><text x="444" y="326" class="t t-value" text-anchor="end">3.9%</text><rect x="244" y="340" width="12" height="12" rx="2" fill="#89e051" opacity="0.85"/><text x="264" y="350" class="t t-label">Shell</text><text x="444" y="350" class="t t-value" text-anchor="end">3.8%</text><rect x="244" y="364" width="12" height="12" rx="2" fill="#a52a22" opacity="0.85"/><text x="264" y="374" class="t t-label">Jinja</text><text x="444" y="374" class="t t-value" text-anchor="end">1.8%</text><rect x="244" y="388" width="12" height="12" rx="2" fill="#b07219" opacity="0.85"/><text x="264" y="398" class="t t-label">Java</text><text x="444" y="398" class="t t-value" text-anchor="end">1.5%</text><rect x="244" y="412" width="12" height="12" rx="2" fill="#000080" opacity="0.85"/><text x="264" y="422" class="t t-label">Lua</text><text x="444" y="422" class="t t-value" text-anchor="end">1.4%</text><rect x="244" y="436" width="12" height="12" rx="2" fill="#e34c26" opacity="0.85"/><text x="264" y="446" class="t t-label">HTML</text><text x="444" y="446" class="t t-value" text-anchor="end">1.3%</text><text x="24" y="516" class="t t-h">EXPERTISE</text><text x="24" y="532" class="t t-sub">Curated from dependencies, topics, and languages via AI analysis</text><text x="24" y="556" class="t t-subhdr">SYSTEMS PROGRAMMING & CLI TOOLS</text><rect x="24" y="568" width="700" height="18" rx="4" fill="#58a6ff" fill-opacity="0.15"/><rect x="24" y="568" width="665" height="18" rx="4" fill="#58a6ff" fill-opacity="0.85"/><text x="734" y="581" class="t t-value">95%</text><text x="24" y="602" class="t t-card-detail">Go · Rust · Wails · Chezmoi · Nix</text><text x="24" y="630" class="t t-subhdr">MACHINE LEARNING & AI</text><rect x="24" y="642" width="700" height="18" rx="4" fill="#3fb950" fill-opacity="0.15"/><rect x="24" y="642" width="630" height="18" rx="4" fill="#3fb950" fill-opacity="0.85"/><text x="734" y="655" class="t t-value">90%</text><text x="24" y="676" class="t t-card-detail">PyTorch · TensorFlow · Keras · Transformers · CNNs</text><text x="24" y="704" class="t t-subhdr">WEB DEVELOPMENT & STATIC SITES</text><rect x="24" y="716" width="700" height="18" rx="4" fill="#d29922" fill-opacity="0.15"/><rect x="24" y="716" width="595" height="18" rx="4" fill="#d29922" fill-opacity="0.85"/><text x="734" y="729" class="t t-value">85%</text><text x="24" y="750" class="t t-card-detail">Astro · React · TypeScript · Tailwind CSS · MDX</text><text x="24" y="778" class="t t-subhdr">DEVOPS & CI/CD AUTOMATION</text><rect x="24" y="790" width="700" height="18" rx="4" fill="#f85149" fill-opacity="0.15"/><rect x="24" y="790" width="560" height="18" rx="4" fill="#f85149" fill-opacity="0.85"/><text x="734" y="803" class="t t-value">80%</text><text x="24" y="824" class="t t-card-detail">GitHub Actions · Docker · Semantic Release · CI/CD · Embed-src</text><text x="24" y="852" class="t t-subhdr">KNOWLEDGE GRAPHS & RETRIEVAL-AUGMENTED GENERATION</text><rect x="24" y="864" width="700" height="18" rx="4" fill="#bc8cff" fill-opacity="0.15"/><rect x="24" y="864" width="525" height="18" rx="4" fill="#bc8cff" fill-opacity="0.85"/><text x="734" y="877" class="t t-value">75%</text><text x="24" y="898" class="t t-card-detail">SurrealDB · Vector Search · RAG · kgdk · ragdk</text><text x="24" y="926" class="t t-subhdr">DESKTOP & CROSS-PLATFORM APPS</text><rect x="24" y="938" width="700" height="18" rx="4" fill="#39d2c0" fill-opacity="0.15"/><rect x="24" y="938" width="489.99999999999994" height="18" rx="4" fill="#39d2c0" fill-opacity="0.85"/><text x="734" y="951" class="t t-value">70%</text><text x="24" y="972" class="t t-card-detail">JavaFX · Wails · React · Go · Rust</text><text x="24" y="1032" class="t t-h">SIGNATURE PROJECTS</text><text x="24" y="1048" class="t t-sub">Top projects by technical complexity</text><rect x="24" y="1058" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1058" width="4" height="52" rx="2" fill="#58a6ff"/><text x="40" y="1076" class="t t-card-title">resume-generator</text><text x="768" y="1076" class="t t-value" text-anchor="end">★ 10</text><text x="40" y="1092" class="t t-card-detail">A data-driven CLI tool that converts YAML/JSON/TOML resume data into polished PDFs, DOCX,…</text><rect x="24" y="1120" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1120" width="4" height="52" rx="2" fill="#3fb950"/><text x="40" y="1138" class="t t-card-title">lepus-classifier</text><text x="768" y="1138" class="t t-value" text-anchor="end">★ 2</text><text x="40" y="1154" class="t t-card-detail">A CNN research project exploring optimal image classification architectures for small dat…</text><rect x="24" y="1182" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1182" width="4" height="52" rx="2" fill="#d29922"/><text x="40" y="1200" class="t t-card-title">linear-gp</text><text x="768" y="1200" class="t t-value" text-anchor="end">★ 2</text><text x="40" y="1216" class="t t-card-detail">A production-grade Rust framework for Linear Genetic Programming research, featuring modu…</text><rect x="24" y="1244" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1244" width="4" height="52" rx="2" fill="#f85149"/><text x="40" y="1262" class="t t-card-title">homai</text><text x="768" y="1262" class="t t-value" text-anchor="end">★ 0</text><text x="40" y="1278" class="t t-card-detail">Local-first, privacy-focused smart home control system. Manage Zigbee devices through a R…</text><rect x="24" y="1306" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1306" width="4" height="52" rx="2" fill="#bc8cff"/><text x="40" y="1324" class="t t-card-title">urmzd.com</text><text x="768" y="1324" class="t t-value" text-anchor="end">★ 0</text><text x="40" y="1340" class="t t-card-detail">Personal website and blog built with Astro, TypeScript, and MDX—featuring fast static sit…</text><text x="24" y="1404" class="t t-h">CONTRIBUTION CALENDAR</text><text x="24" y="1420" class="t t-sub">1,155 contributions in the last year</text><text x="54" y="1441" class="t t-value">Mar</text><text x="93" y="1441" class="t t-value">Apr</text><text x="145" y="1441" class="t t-value">May</text><text x="210" y="1441" class="t t-value">Jun</text><text x="262" y="1441" class="t t-value">Jul</text><text x="314" y="1441" class="t t-value">Aug</text><text x="379" y="1441" class="t t-value">Sep</text><text x="431" y="1441" class="t t-value">Oct</text><text x="483" y="1441" class="t t-value">Nov</text><text x="548" y="1441" class="t t-value">Dec</text><text x="600" y="1441" class="t t-value">Jan</text><text x="665" y="1441" class="t t-value">Feb</text><text x="717" y="1441" class="t t-value">Mar</text><text x="24" y="1469" class="t t-value">Mon</text><text x="24" y="1495" class="t t-value">Wed</text><text x="24" y="1521" class="t t-value">Fri</text><rect x="54" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="158" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="171" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="249" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="249" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="262" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="301" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="379" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="379" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="470" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="483" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="522" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="522" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="535" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="548" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="548" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="561" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1472" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="1524" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="626" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="639" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="639" y="1524" width="11" height="11" rx="2" fill="#216e39"/><rect x="652" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="1446" width="11" height="11" rx="2" fill="#216e39"/><rect x="665" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="1472" width="11" height="11" rx="2" fill="#40c463"/><rect x="665" y="1485" width="11" height="11" rx="2" fill="#216e39"/><rect x="665" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="1511" width="11" height="11" rx="2" fill="#40c463"/><rect x="665" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="1446" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="1472" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="1511" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="1524" width="11" height="11" rx="2" fill="#40c463"/><rect x="691" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="1472" width="11" height="11" rx="2" fill="#30a14e"/><rect x="691" y="1485" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="1498" width="11" height="11" rx="2" fill="#40c463"/><rect x="691" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="1446" width="11" height="11" rx="2" fill="#40c463"/><rect x="704" y="1459" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="1472" width="11" height="11" rx="2" fill="#30a14e"/><rect x="704" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="704" y="1498" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="704" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="1524" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="1446" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="1459" width="11" height="11" rx="2" fill="#40c463"/><rect x="717" y="1472" width="11" height="11" rx="2" fill="#40c463"/><rect x="717" y="1485" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="717" y="1498" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="1511" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="1524" width="11" height="11" rx="2" fill="#216e39"/><rect x="730" y="1446" width="11" height="11" rx="2" fill="#40c463"/><rect x="730" y="1459" width="11" height="11" rx="2" fill="#ebedf0"/><text x="24" y="1583" class="t t-h">OPEN SOURCE CONTRIBUTIONS</text><text x="24" y="1599" class="t t-sub">External repositories contributed to (all time)</text><rect x="24" y="1609" width="760" height="44" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1609" width="4" height="44" rx="2" fill="#58a6ff"/><text x="40" y="1627" class="t t-card-title">MathisWellmann/gym-rs</text><text x="40" y="1643" class="t t-card-detail">★ 126 · Rust</text><rect x="24" y="1661" width="760" height="44" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="1661" width="4" height="44" rx="2" fill="#3fb950"/><text x="40" y="1679" class="t t-card-title">getzep/graphiti</text><text x="40" y="1695" class="t t-card-detail">★ 23,772 · Python</text></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="197" viewBox="0 0 808 197"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="197" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">CONTRIBUTION CALENDAR</text><text x="24" y="56" class="t t-sub">1,155 contributions in the last year</text><text x="54" y="77" class="t t-value">Mar</text><text x="93" y="77" class="t t-value">Apr</text><text x="145" y="77" class="t t-value">May</text><text x="210" y="77" class="t t-value">Jun</text><text x="262" y="77" class="t t-value">Jul</text><text x="314" y="77" class="t t-value">Aug</text><text x="379" y="77" class="t t-value">Sep</text><text x="431" y="77" class="t t-value">Oct</text><text x="483" y="77" class="t t-value">Nov</text><text x="548" y="77" class="t t-value">Dec</text><text x="600" y="77" class="t t-value">Jan</text><text x="665" y="77" class="t t-value">Feb</text><text x="717" y="77" class="t t-value">Mar</text><text x="24" y="105" class="t t-value">Mon</text><text x="24" y="131" class="t t-value">Wed</text><text x="24" y="157" class="t t-value">Fri</text><rect x="54" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="54" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="67" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="80" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="93" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="106" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="119" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="132" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="145" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="158" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="158" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="171" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="171" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="184" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="197" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="210" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="223" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="236" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="249" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="249" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="249" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="262" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="262" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="275" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="288" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="301" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="301" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="314" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="327" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="340" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="353" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="366" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="379" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="379" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="379" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="392" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="392" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="405" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="418" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="431" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="444" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="457" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="470" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="470" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="483" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="483" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="496" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="496" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="509" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="522" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="522" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="522" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="535" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="535" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="548" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="548" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="548" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="561" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="561" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="574" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="108" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="587" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="600" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="600" y="160" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="613" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="613" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="626" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="626" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="639" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="639" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="639" y="160" width="11" height="11" rx="2" fill="#216e39"/><rect x="652" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="652" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="82" width="11" height="11" rx="2" fill="#216e39"/><rect x="665" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="108" width="11" height="11" rx="2" fill="#40c463"/><rect x="665" y="121" width="11" height="11" rx="2" fill="#216e39"/><rect x="665" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="665" y="147" width="11" height="11" rx="2" fill="#40c463"/><rect x="665" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="82" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="95" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="108" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="678" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="147" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="678" y="160" width="11" height="11" rx="2" fill="#40c463"/><rect x="691" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="108" width="11" height="11" rx="2" fill="#30a14e"/><rect x="691" y="121" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="134" width="11" height="11" rx="2" fill="#40c463"/><rect x="691" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="691" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="82" width="11" height="11" rx="2" fill="#40c463"/><rect x="704" y="95" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="108" width="11" height="11" rx="2" fill="#30a14e"/><rect x="704" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="704" y="134" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="704" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="704" y="160" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="82" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="95" width="11" height="11" rx="2" fill="#40c463"/><rect x="717" y="108" width="11" height="11" rx="2" fill="#40c463"/><rect x="717" y="121" width="11" height="11" rx="2" fill="#ebedf0"/><rect x="717" y="134" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="147" width="11" height="11" rx="2" fill="#9be9a8"/><rect x="717" y="160" width="11" height="11" rx="2" fill="#216e39"/><rect x="730" y="82" width="11" height="11" rx="2" fill="#40c463"/><rect x="730" y="95" width="11" height="11" rx="2" fill="#ebedf0"/></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="390" viewBox="0 0 808 390"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="390" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">SIGNATURE PROJECTS</text><text x="24" y="56" class="t t-sub">Top projects by technical complexity</text><rect x="24" y="66" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="66" width="4" height="52" rx="2" fill="#58a6ff"/><text x="40" y="84" class="t t-card-title">resume-generator</text><text x="768" y="84" class="t t-value" text-anchor="end">★ 10</text><text x="40" y="100" class="t t-card-detail">A data-driven CLI tool that converts YAML/JSON/TOML resume data into polished PDFs, DOCX,…</text><rect x="24" y="128" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="128" width="4" height="52" rx="2" fill="#3fb950"/><text x="40" y="146" class="t t-card-title">lepus-classifier</text><text x="768" y="146" class="t t-value" text-anchor="end">★ 2</text><text x="40" y="162" class="t t-card-detail">A CNN research project exploring optimal image classification architectures for small dat…</text><rect x="24" y="190" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="190" width="4" height="52" rx="2" fill="#d29922"/><text x="40" y="208" class="t t-card-title">linear-gp</text><text x="768" y="208" class="t t-value" text-anchor="end">★ 2</text><text x="40" y="224" class="t t-card-detail">A production-grade Rust framework for Linear Genetic Programming research, featuring modu…</text><rect x="24" y="252" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="252" width="4" height="52" rx="2" fill="#f85149"/><text x="40" y="270" class="t t-card-title">homai</text><text x="768" y="270" class="t t-value" text-anchor="end">★ 0</text><text x="40" y="286" class="t t-card-detail">Local-first, privacy-focused smart home control system. Manage Zigbee devices through a R…</text><rect x="24" y="314" width="760" height="52" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="314" width="4" height="52" rx="2" fill="#bc8cff"/><text x="40" y="332" class="t t-card-title">urmzd.com</text><text x="768" y="332" class="t t-value" text-anchor="end">★ 0</text><text x="40" y="348" class="t t-card-detail">Personal website and blog built with Astro, TypeScript, and MDX—featuring fast static sit…</text></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="186" viewBox="0 0 808 186"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="186" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">OPEN SOURCE CONTRIBUTIONS</text><text x="24" y="56" class="t t-sub">External repositories contributed to (all time)</text><rect x="24" y="66" width="760" height="44" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="66" width="4" height="44" rx="2" fill="#58a6ff"/><text x="40" y="84" class="t t-card-title">MathisWellmann/gym-rs</text><text x="40" y="100" class="t t-card-detail">★ 126 · Rust</text><rect x="24" y="118" width="760" height="44" rx="6" fill="#161b22" stroke="#30363d" stroke-width="1"/><rect x="24" y="118" width="4" height="44" rx="2" fill="#3fb950"/><text x="40" y="136" class="t t-card-title">getzep/graphiti</text><text x="40" y="152" class="t t-card-detail">★ 23,772 · Python</text></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="534" viewBox="0 0 808 534"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="534" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">EXPERTISE</text><text x="24" y="56" class="t t-sub">Curated from dependencies, topics, and languages via AI analysis</text><text x="24" y="80" class="t t-subhdr">SYSTEMS PROGRAMMING & CLI TOOLS</text><rect x="24" y="92" width="700" height="18" rx="4" fill="#58a6ff" fill-opacity="0.15"/><rect x="24" y="92" width="665" height="18" rx="4" fill="#58a6ff" fill-opacity="0.85"/><text x="734" y="105" class="t t-value">95%</text><text x="24" y="126" class="t t-card-detail">Go · Rust · Wails · Chezmoi · Nix</text><text x="24" y="154" class="t t-subhdr">MACHINE LEARNING & AI</text><rect x="24" y="166" width="700" height="18" rx="4" fill="#3fb950" fill-opacity="0.15"/><rect x="24" y="166" width="630" height="18" rx="4" fill="#3fb950" fill-opacity="0.85"/><text x="734" y="179" class="t t-value">90%</text><text x="24" y="200" class="t t-card-detail">PyTorch · TensorFlow · Keras · Transformers · CNNs</text><text x="24" y="228" class="t t-subhdr">WEB DEVELOPMENT & STATIC SITES</text><rect x="24" y="240" width="700" height="18" rx="4" fill="#d29922" fill-opacity="0.15"/><rect x="24" y="240" width="595" height="18" rx="4" fill="#d29922" fill-opacity="0.85"/><text x="734" y="253" class="t t-value">85%</text><text x="24" y="274" class="t t-card-detail">Astro · React · TypeScript · Tailwind CSS · MDX</text><text x="24" y="302" class="t t-subhdr">DEVOPS & CI/CD AUTOMATION</text><rect x="24" y="314" width="700" height="18" rx="4" fill="#f85149" fill-opacity="0.15"/><rect x="24" y="314" width="560" height="18" rx="4" fill="#f85149" fill-opacity="0.85"/><text x="734" y="327" class="t t-value">80%</text><text x="24" y="348" class="t t-card-detail">GitHub Actions · Docker · Semantic Release · CI/CD · Embed-src</text><text x="24" y="376" class="t t-subhdr">KNOWLEDGE GRAPHS & RETRIEVAL-AUGMENTED GENERATION</text><rect x="24" y="388" width="700" height="18" rx="4" fill="#bc8cff" fill-opacity="0.15"/><rect x="24" y="388" width="525" height="18" rx="4" fill="#bc8cff" fill-opacity="0.85"/><text x="734" y="401" class="t t-value">75%</text><text x="24" y="422" class="t t-card-detail">SurrealDB · Vector Search · RAG · kgdk · ragdk</text><text x="24" y="450" class="t t-subhdr">DESKTOP & CROSS-PLATFORM APPS</text><rect x="24" y="462" width="700" height="18" rx="4" fill="#39d2c0" fill-opacity="0.15"/><rect x="24" y="462" width="489.99999999999994" height="18" rx="4" fill="#39d2c0" fill-opacity="0.85"/><text x="734" y="475" class="t t-value">70%</text><text x="24" y="496" class="t t-card-detail">JavaFX · Wails · React · Go · Rust</text></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="350" viewBox="0 0 808 350"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="350" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">LANGUAGES</text><text x="24" y="56" class="t t-sub">By bytes of code across all public repos</text><circle cx="114" cy="156" r="70" fill="none" stroke="#00ADD8" stroke-width="28" stroke-dasharray="124.03007796372502 315.792893538846" stroke-dashoffset="0" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#dea584" stroke-width="28" stroke-dasharray="109.07609693263761 330.7468745699334" stroke-dashoffset="-124.03007796372502" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#3178c6" stroke-width="28" stroke-dasharray="103.35839830310418 336.4645731994668" stroke-dashoffset="-233.10617489636263" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#3D6117" stroke-width="28" stroke-dasharray="20.231856689118267 419.59111481345275" stroke-dashoffset="-336.4645731994668" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#3572A5" stroke-width="28" stroke-dasharray="17.15309588860027 422.66987561397076" stroke-dashoffset="-356.6964298885851" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#89e051" stroke-width="28" stroke-dasharray="16.713272917097697 423.1096985854733" stroke-dashoffset="-373.84952577718536" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#a52a22" stroke-width="28" stroke-dasharray="7.916813487046279 431.90615801552474" stroke-dashoffset="-390.56279869428306" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#b07219" stroke-width="28" stroke-dasharray="6.597344572538565 433.22562693003243" stroke-dashoffset="-398.47961218132934" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#000080" stroke-width="28" stroke-dasharray="6.157521601035993 433.66544990153506" stroke-dashoffset="-405.07695675386793" transform="rotate(-90 114 156)" opacity="0.85"/><circle cx="114" cy="156" r="70" fill="none" stroke="#e34c26" stroke-width="28" stroke-dasharray="5.717698629533424 434.1052728730376" stroke-dashoffset="-411.2344783549039" transform="rotate(-90 114 156)" opacity="0.85"/><text x="114" y="161" class="t" fill="#c9d1d9" font-size="14" font-weight="700" text-anchor="middle">10</text><text x="114" y="176" class="t" fill="#6e7681" font-size="10" text-anchor="middle">languages</text><rect x="244" y="76" width="12" height="12" rx="2" fill="#00ADD8" opacity="0.85"/><text x="264" y="86" class="t t-label">Go</text><text x="444" y="86" class="t t-value" text-anchor="end">28.2%</text><rect x="244" y="100" width="12" height="12" rx="2" fill="#dea584" opacity="0.85"/><text x="264" y="110" class="t t-label">Rust</text><text x="444" y="110" class="t t-value" text-anchor="end">24.8%</text><rect x="244" y="124" width="12" height="12" rx="2" fill="#3178c6" opacity="0.85"/><text x="264" y="134" class="t t-label">TypeScript</text><text x="444" y="134" class="t t-value" text-anchor="end">23.5%</text><rect x="244" y="148" width="12" height="12" rx="2" fill="#3D6117" opacity="0.85"/><text x="264" y="158" class="t t-label">TeX</text><text x="444" y="158" class="t t-value" text-anchor="end">4.6%</text><rect x="244" y="172" width="12" height="12" rx="2" fill="#3572A5" opacity="0.85"/><text x="264" y="182" class="t t-label">Python</text><text x="444" y="182" class="t t-value" text-anchor="end">3.9%</text><rect x="244" y="196" width="12" height="12" rx="2" fill="#89e051" opacity="0.85"/><text x="264" y="206" class="t t-label">Shell</text><text x="444" y="206" class="t t-value" text-anchor="end">3.8%</text><rect x="244" y="220" width="12" height="12" rx="2" fill="#a52a22" opacity="0.85"/><text x="264" y="230" class="t t-label">Jinja</text><text x="444" y="230" class="t t-value" text-anchor="end">1.8%</text><rect x="244" y="244" width="12" height="12" rx="2" fill="#b07219" opacity="0.85"/><text x="264" y="254" class="t t-label">Java</text><text x="444" y="254" class="t t-value" text-anchor="end">1.5%</text><rect x="244" y="268" width="12" height="12" rx="2" fill="#000080" opacity="0.85"/><text x="264" y="278" class="t t-label">Lua</text><text x="444" y="278" class="t t-value" text-anchor="end">1.4%</text><rect x="244" y="292" width="12" height="12" rx="2" fill="#e34c26" opacity="0.85"/><text x="264" y="302" class="t t-label">HTML</text><text x="444" y="302" class="t t-value" text-anchor="end">1.3%</text></svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="808" height="162" viewBox="0 0 808 162"><defs><style>
|
|
2
|
+
.t { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif; }
|
|
3
|
+
.t-h { font-size: 13px; fill: #c9d1d9; letter-spacing: 1.5px; font-weight: 600; }
|
|
4
|
+
.t-sub { font-size: 11px; fill: #6e7681; }
|
|
5
|
+
.t-label { font-size: 12px; fill: #8b949e; }
|
|
6
|
+
.t-value { font-size: 11px; fill: #6e7681; }
|
|
7
|
+
.t-subhdr { font-size: 11px; fill: #8b949e; letter-spacing: 1px; font-weight: 600; }
|
|
8
|
+
.t-stat-label { font-size: 10px; fill: #8b949e; font-weight: 600; }
|
|
9
|
+
.t-stat-value { font-size: 22px; font-weight: 700; }
|
|
10
|
+
.t-card-title { font-size: 12px; fill: #58a6ff; font-weight: 700; }
|
|
11
|
+
.t-card-detail { font-size: 11px; fill: #8b949e; }
|
|
12
|
+
.t-pill { font-size: 11px; font-weight: 600; }
|
|
13
|
+
.t-bullet { font-size: 12px; fill: #c9d1d9; }
|
|
14
|
+
</style></defs><rect width="808" height="162" rx="12" fill="#0d1117"/><text x="24" y="40" class="t t-h">AT A GLANCE</text><text x="24" y="56" class="t t-sub">Contribution activity over the past year</text><rect x="24" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="38" cy="82" r="4" fill="#58a6ff"/><text x="48" y="86" class="t t-stat-label">COMMITS</text><text x="94" y="118" fill="#58a6ff" class="t t-stat-value" text-anchor="middle">1,049</text><rect x="179" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="193" cy="82" r="4" fill="#3fb950"/><text x="203" y="86" class="t t-stat-label">PRS</text><text x="249" y="118" fill="#3fb950" class="t t-stat-value" text-anchor="middle">3</text><rect x="334" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="348" cy="82" r="4" fill="#d29922"/><text x="358" y="86" class="t t-stat-label">REVIEWS</text><text x="404" y="118" fill="#d29922" class="t t-stat-value" text-anchor="middle">5</text><rect x="489" y="66" width="140" height="72" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/><circle cx="503" cy="82" r="4" fill="#bc8cff"/><text x="513" y="86" class="t t-stat-label">REPOS</text><text x="559" y="118" fill="#bc8cff" class="t t-stat-value" text-anchor="middle">24</text></svg>
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# Hi, I'm Urmzd 👋
|
|
2
|
+
|
|
3
|
+
I build robust, multi-language systems—from AI-powered CLI tools and resume generators in Go, Rust, and TypeScript to privacy-first agents and knowledge graphs—empowering people with scalable, user-centric tech.
|
|
4
|
+
|
|
5
|
+
[](https://urmzd.com) [](https://x.com/urmzd_) [](https://linkedin.com/in/urmzd)
|
|
6
|
+
|
|
7
|
+
## Active Projects
|
|
8
|
+
|
|
9
|
+
### [urmzd.com](https://github.com/urmzd/urmzd.com)
|
|
10
|
+
A personal website and blog built with Astro, TypeScript, and MDX, featuring fast static site generation and interactive components for content and portfolio.
|
|
11
|
+
TypeScript, MDX, CSS
|
|
12
|
+
|
|
13
|
+
### [resume-generator-app](https://github.com/urmzd/resume-generator-app)
|
|
14
|
+
A native desktop application built with Wails, React, and Tailwind CSS for building resumes with live PDF preview, template gallery, and inline editing.
|
|
15
|
+
TypeScript, TeX, HTML
|
|
16
|
+
|
|
17
|
+
### [zoro](https://github.com/urmzd/zoro)
|
|
18
|
+
A privacy-first AI research agent built with TypeScript, Go, and Python, featuring a persistent knowledge graph and local inference for connecting ideas securely.
|
|
19
|
+
TypeScript, Go, Python
|
|
20
|
+
|
|
21
|
+
### [openapi-generator](https://github.com/urmzd/openapi-generator)
|
|
22
|
+
A Rust-based code generator that converts OpenAPI 3.x specifications into TypeScript and React clients, providing zero-dependency clients, SWR hooks, and SSE streaming support.
|
|
23
|
+
Rust, Jinja, Shell
|
|
24
|
+
|
|
25
|
+
### [teasr](https://github.com/urmzd/teasr)
|
|
26
|
+
A Rust-based tool for capturing showcase screenshots and GIFs from web apps, desktop, and terminal, distributed as a single binary with no runtime dependencies.
|
|
27
|
+
Rust, Shell
|
|
28
|
+
|
|
29
|
+
### [semantic-release](https://github.com/urmzd/semantic-release)
|
|
30
|
+
A Rust CLI for trunk-based semantic release, supporting conventional commits, changelog generation, git tagging, and GitHub releases.
|
|
31
|
+
Rust, Shell, Just
|
|
32
|
+
|
|
33
|
+
### [adk](https://github.com/urmzd/adk)
|
|
34
|
+
A strongly-typed Go SDK for building streaming LLM agent loops, featuring conversation trees, tool registry, sub-agents, compaction, embeddings, and pluggable providers.
|
|
35
|
+
Go
|
|
36
|
+
|
|
37
|
+
### [gitit](https://github.com/urmzd/gitit)
|
|
38
|
+
A Rust CLI tool for AI-powered git commands, generating atomic conventional commits, code reviews, branch names, and PR descriptions using Claude or Gemini.
|
|
39
|
+
Rust, Shell, Just
|
|
40
|
+
|
|
41
|
+
### [ragdk](https://github.com/urmzd/ragdk)
|
|
42
|
+
A Go library for multi-modal retrieval augmented generation (RAG) with graph-enhanced retrieval, supporting document hierarchy, pluggable extractors, vector search, and kgdk integration.
|
|
43
|
+
Go
|
|
44
|
+
|
|
45
|
+
### [lightning-kfold](https://github.com/urmzd/lightning-kfold)
|
|
46
|
+
A Python library providing stratified K-fold cross-validation with ensemble voting for PyTorch Lightning.
|
|
47
|
+
Python
|
|
48
|
+
|
|
49
|
+
### [github-insights](https://github.com/urmzd/github-insights)
|
|
50
|
+
A GitHub Action written in TypeScript that generates SVG visualizations of GitHub profile metrics.
|
|
51
|
+
TypeScript
|
|
52
|
+
|
|
53
|
+
### [kgdk](https://github.com/urmzd/kgdk)
|
|
54
|
+
A Go SDK for building and querying knowledge graphs with a SurrealDB backend, entity extraction pipeline, vector search, and pluggable Graph interface.
|
|
55
|
+
Go
|
|
56
|
+
|
|
57
|
+
## Maintained Projects
|
|
58
|
+
|
|
59
|
+
### [resume-generator](https://github.com/urmzd/resume-generator)
|
|
60
|
+
A CLI tool written in Go that converts resume data from YAML/JSON/TOML into polished PDFs, DOCX, HTML, LaTeX, and Markdown, featuring multi-agent AI assessment via Ollama.
|
|
61
|
+
★ 10 · Go, TeX, HTML
|
|
62
|
+
|
|
63
|
+
### [lepus-classifier](https://github.com/urmzd/lepus-classifier)
|
|
64
|
+
A CNN research project using Jupyter Notebook and Python to explore optimal image classification architectures for small datasets, focusing on data quantity as a bottleneck for deep learning.
|
|
65
|
+
★ 2 · Jupyter Notebook, Python, Shell
|
|
66
|
+
|
|
67
|
+
### [linear-gp](https://github.com/urmzd/linear-gp)
|
|
68
|
+
A Rust framework for Linear Genetic Programming research, offering modular architecture, Q-Learning integration, automated hyperparameter optimization, and support for reinforcement learning and classification tasks.
|
|
69
|
+
★ 2 · Rust, TeX, Shell
|
|
70
|
+
|
|
71
|
+
### [homai](https://github.com/urmzd/homai)
|
|
72
|
+
A local-first, privacy-focused smart home control system written in Go, managing Zigbee devices through a REST API without cloud dependencies.
|
|
73
|
+
Go, Just, Shell
|
|
74
|
+
|
|
75
|
+
### [dotfiles](https://github.com/urmzd/dotfiles)
|
|
76
|
+
A collection of modern dotfiles managed with Chezmoi and Nix, enabling one-command environment bootstrap for macOS and Linux, including Neovim, Tmux, Zsh, and specialized development shells.
|
|
77
|
+
★ 2 · Shell, Lua, Go Template
|
|
78
|
+
|
|
79
|
+
### [md-classifier](https://github.com/urmzd/md-classifier)
|
|
80
|
+
A deep learning system combining transformers and CNNs in Jupyter Notebook and Python to classify diseases from patient-described symptoms, achieving high recall through semantic embeddings and feature extraction.
|
|
81
|
+
★ 2 · Jupyter Notebook, Shell, Python
|
|
82
|
+
|
|
83
|
+
### [languide](https://github.com/urmzd/languide)
|
|
84
|
+
A Python CLI that generates scenario-based language learning PDFs with full Unicode/CJK support, covering topics for travelers and language learners.
|
|
85
|
+
Python, TeX, Shell
|
|
86
|
+
|
|
87
|
+
### [flappy-bird](https://github.com/urmzd/flappy-bird)
|
|
88
|
+
A Flappy Bird clone built with JavaFX and Java 21, showcasing data-oriented design patterns and automated native builds for Linux, macOS, and Windows.
|
|
89
|
+
★ 4 · Java, Just
|
|
90
|
+
|
|
91
|
+
### [chess-cli](https://github.com/urmzd/chess-cli)
|
|
92
|
+
A fully playable chess game in Python with object-oriented design and a command-line interface, suitable for learning game logic and exploring chess AI algorithms.
|
|
93
|
+
★ 3 · Python, Just
|
|
94
|
+
|
|
95
|
+
### [embed-src](https://github.com/urmzd/embed-src)
|
|
96
|
+
A GitHub Action written in Rust that automatically syncs code snippets in markdown files with source code, keeping documentation up-to-date during CI/CD.
|
|
97
|
+
★ 1 · Rust, Shell
|
|
98
|
+
|
|
99
|
+
### [urmzd](https://github.com/urmzd/urmzd)
|
|
100
|
+
A GitHub profile README repository.
|
|
101
|
+
|
|
102
|
+
## GitHub Stats
|
|
103
|
+
|
|
104
|
+

|
|
105
|
+

|
|
106
|
+
|
|
107
|
+
## Other Areas of Interest
|
|
108
|
+
|
|
109
|
+

|
|
110
|
+
|
|
111
|
+
<sub>Last generated on 2026-03-16 using [@urmzd/github-insights](https://github.com/urmzd/github-insights)</sub>
|