Map
%3 Content creation workflow--Daily open-source software guide Content creation workflow--Software Alternatives Daily open-source software guide--Software Alternatives Daily open-source software guide--Caddy Software Alternatives--MacBook Air M4 Adventures Software Alternatives--Model-Based Systems Engineering MacBook Air M4 Adventures--NixOS MacBook Air M4 Adventures--Model-Based Systems Engineering NixOS--Daily open-source software guide NixOS--Software Alternatives Model-Based Systems Engineering--NixOS Model-Based Systems Engineering--ReqSnake Bookmarks--Registry-based search engine Bookmarks--Storybook Registry-based search engine--Website experience Registry-based search engine--Map Storybook--Website experience Storybook--Map Audio & DSP--Making music on Linux Audio & DSP--GPU Synth Making music on Linux--Sounds & Melodies Making music on Linux--Luthier GPU Synth--Making music on Linux GPU Synth--Sonification Custom synth--Making music on Linux Custom synth--GPU Synth 2024's Devlog--Contact 2024's Devlog--Scratchpad Contact--Daily open-source software guide Contact--About Scratchpad--Contact Scratchpad--The Waiting room 2025's Devlog--Scratchpad 2025's Devlog--2025's Devlog 2025's Devlog--2022's Devlog 2025's Devlog--About 2022's Devlog--2025's Devlog 2022's Devlog--2023's Devlog Piano--Music Transcribing Piano--Sounds & Melodies Music Transcribing--Sounds & Melodies Music Transcribing--Rust Sounds & Melodies--Audio & DSP Sounds & Melodies--Sonification Custom sequencer--Making music on Linux Custom sequencer--Custom synth Flying Shooting Game--2025's Devlog Flying Shooting Game--2022's Devlog Colour scheme--Model-Based Systems Engineering Colour scheme--System configuration System configuration--Model-Based Systems Engineering System configuration--ReqSnake Sonification--Audio & DSP Sonification--Luthier Excellent Words--How to think Excellent Words--Cosmic Horror How to think--Cosmic Horror How to think--The Waiting room Cosmic Horror--Reading Cosmic Horror--Movies/shows ReqSnake--MacBook Air M4 Adventures ReqSnake--About Exocortex--Bookmarks Exocortex--Storybook About--2024's Devlog About--Scratchpad Travel--Contact Travel--The word *Bączek* The word *Bączek*--Excellent Words The word *Bączek*--How to think Caddy--Content creation workflow Caddy--Decentralisation Decentralisation--Content creation workflow Decentralisation--Bookmarks The Ławka Initiative--The word *Bączek* The Ławka Initiative--Paintings Paintings--Travel Paintings--The word *Bączek* The Waiting room--2026's Devlog The Waiting room--Reading 2023's Devlog--The Waiting room 2023's Devlog--2026's Devlog 2026's Devlog--2022's Devlog 2026's Devlog--Reading Luthier--Audio & DSP Luthier--Sounds & Melodies Reading--2023's Devlog Reading--Movies/shows Movies/shows--2023's Devlog Movies/shows--2026's Devlog Rust--Making music on Linux Rust--Sounds & Melodies Listening--Reading Listening--Movies/shows Website experience--Bookmarks Website experience--Exocortex Map--The Ławka Initiative Map--Website experience Content creation workflow Content creation workflow Daily open-source software guide Daily open- source software guide Software Alternatives Software Alternatives MacBook Air M4 Adventures MacBook Air M4 Adventures NixOS NixOS Model-Based Systems Engineering Model-Based Systems Engineering ! Bookmarks Bookmarks Registry-based search engine Registry-based search engine Storybook Storybook Audio & DSP Audio & DSP Making music on Linux Making music on Linux GPU Synth GPU Synth Custom synth Custom synth 2024's Devlog 2024's Devlog Contact Contact Scratchpad Scratchpad 2025's Devlog 2025's Devlog 2022's Devlog 2022's Devlog Piano Piano Music Transcribing Music Transcribing Sounds & Melodies Sounds & Melodies Custom sequencer Custom sequencer Flying Shooting Game Flying Shooting Game Colour scheme Colour scheme System configuration System configuration Sonification Sonification ! Excellent Words Excellent Words How to think How to think Cosmic Horror Cosmic Horror ReqSnake ReqSnake Exocortex Exocortex About About Travel Travel The word *Bączek* The word *Bączek* Caddy Caddy Decentralisation Decentralisation The Ławka Initiative The Ławka Initiative Paintings Paintings The Waiting room The Waiting room 2023's Devlog 2023's Devlog 2026's Devlog 2026's Devlog ! Luthier Luthier Reading Reading Movies/shows Movies/shows Rust Rust Listening Listening Website experience Website experience Map Map
You can click on each node, they are links!

This is an automatically generated graph containing all pages on my website, along with the connections calculated using sentence embeddings. If you're interested, you can read the source code.

How is this thing generated?

Explained non-technically

  1. Using an AI-esque tool, I'm generating a mathematical representation of what each page on my site contains, in terms of contents
  2. I'm laying out each page on a graph, so that it is placed close to pages with similar contents and far away from pages with different contents. E.x. programming-related stuff will be grouped together, far away from something travel-related.
  3. I'm drawing links between pages which are the closest. This also generates the "related posts" section at the bottom of each page. The drawn links only serve aesthetic purposes.
  4. Posts are colored depending on their relatedness to 3 topics:
    • More red: art-related
    • More green: computers-related
    • More blue: music-related
    • I'm working on better coloring algorithms based on various gradients

The gory technical details

  1. All of the posts are fed through an embeddings generator, I'm using the Sentence Transformers Python library.
  2. The embeddings are passed to UMAP, a dimensionality reduction algorithm, which takes in multi-dimensional embeddings and projects it down to a 2D representation, which can be drawn as a graph. The projection is done so that the high-level "structure" of the data is preserved (at least that's what the UMAP paper states, I'm not data scientist to argue with the experts).
  3. I'm connecting each post with its top 2 nearest posts (using more clutters up the map).
  4. Coloring is done via calculating cosine similarity between the post content embeddings and embeddings of simple tag-based sentences, such as "music, melodies" or "art, beauty". Currently the gradient is dead-simple, similarity directly affects the R/G/B channel.
  5. graphviz renders the graphs and outputs them as SVGs.

A much better description of a similiar idea on Simon Willison's blog.

Future plans

  1. Make this thing look more "map-alike", whatever that might mean.
  2. Experiment with text clusterisation & dimensionality reduction algorithms, such as:
    • tSNE
    • K-means clustering
    • UMAP
    • Latent Dirichlet allocation
    • DBSCAN
  3. Add #tags. Automatically assign posts to categories with cosine distances.
  4. Introduce color-coding and other visual markers, allowing viewers to make sense of the data based on different metrics:
    • Post tags
    • Links to/from other posts
    • Links outside (to the netsphere)
    • Other connections generated by NLP
  5. Check out KagiSearch/vectordb
  6. Color gradients with Python
  7. Circos