Git-City Turns Your Coding History Into a Playable 3D Pixel Metropolis

GitHub June 2026
⭐ 5687📈 +278
Source: GitHubArchive: June 2026
A new open-source project called Git-City lets developers see their GitHub contribution history as a vibrant, interactive 3D pixel city. By pulling repository and commit data via the GitHub API, it builds a unique, explorable skyline where each building represents a project.

Git-City, created by developer srizzon, has rapidly gained traction on GitHub, amassing over 5,600 stars with a daily surge of nearly 300. The project offers a novel way to visualize a developer's coding activity: it fetches public GitHub data for any given username, then uses the Three.js library to render a 3D pixel-art cityscape. Each repository becomes a building whose height, color, and position are determined by factors like commit count, language, and last update time. The result is an instantly shareable, interactive 3D scene that users can rotate, zoom, and explore. While the concept is playful, it taps into a deeper need for developers to showcase their work in visually engaging, portfolio-friendly formats. Git-City is not just a toy; it represents a growing intersection of data art, gamification, and personal branding in the tech industry. The project's simplicity—requiring only a GitHub username—and its immediate visual payoff explain its viral appeal. It also serves as a practical example of how modern web technologies like Three.js and the GitHub REST API can be combined to create compelling user experiences with minimal setup.

Technical Deep Dive

Git-City's architecture is elegantly simple but built on a solid stack. At its core, the application follows a three-step pipeline: data ingestion, data transformation, and 3D rendering.

Data Ingestion: The frontend application makes a series of calls to the GitHub REST API v3. It first fetches the user's public repositories via `GET /users/{username}/repos`. For each repository, it then optionally fetches commit statistics using `GET /repos/{owner}/{repo}/stats/contributors` to get a more granular view of the user's activity. The API responses are cached client-side to avoid rate limits and improve performance.

Data Transformation: This is where the creative logic lives. Each repository is mapped to a building. The building's height is derived from a weighted formula: total commits (60%), number of stars (25%), and recency of last push (15%). The color is determined by the primary programming language, using a predefined color palette (e.g., blue for Python, orange for JavaScript, green for Go). The position on the grid is pseudo-random but seeded by the repository name, ensuring consistency across reloads. Repositories with more activity get placed closer to the center of the city, creating a natural skyline hierarchy.

3D Rendering: The transformed data is fed into a Three.js scene. Each building is a `BoxGeometry` with a `MeshLambertMaterial`. The city grid is generated on a flat plane, with streets represented as thin, dark rectangles. The camera orbits around the city using `OrbitControls`, allowing the user to pan, zoom, and rotate. A subtle ambient light and a directional light create depth and shadows, enhancing the pixel-art aesthetic. The entire scene is rendered in real-time within a standard web browser, leveraging WebGL.

Performance Considerations: For users with hundreds of repositories, rendering thousands of buildings could become a bottleneck. Git-City addresses this by implementing a maximum building count (default 200) and using instancing for repetitive geometry. The project also uses LOD (Level of Detail) techniques, reducing polygon count for distant buildings. A recent update added a 'low-power mode' that disables shadows and reduces texture resolution for mobile devices.

| Aspect | Git-City (srizzon) | Alternative: GitHub Skyline (GitHub) | Alternative: Profile City (community fork) |
|---|---|---|---|
| Rendering Engine | Three.js (WebGL) | Custom WebGL / Canvas | Three.js (forked) |
| Data Source | GitHub REST API v3 | GitHub GraphQL API | GitHub REST API |
| Customization | Color by language, height by activity | Fixed height by contribution count | Height by stars, optional building labels |
| Interactivity | Orbit controls, click building for repo link | Orbit controls only | Orbit controls, hover tooltip |
| Max Buildings | 200 (configurable) | 365 (one per day) | 500 (configurable) |
| Stars on GitHub | 5,687 (as of writing) | N/A (official feature) | ~200 |

Data Takeaway: Git-City's flexible, configurable architecture gives it an edge over both GitHub's own 'Skyline' feature and community forks. Its use of a weighted formula for building height provides a more nuanced representation of a developer's activity than a simple commit count, and its language-based coloring adds immediate visual context.

Key Players & Case Studies

While Git-City is a solo project by developer srizzon, it sits within a broader ecosystem of developer data visualization tools. The most direct comparison is GitHub's own GitHub Skyline, a feature launched in 2020 that generates a 3D printable model of a user's contribution graph. However, Skyline is a linear timeline, not an interactive city. Git-City's city metaphor is more abstract and arguably more engaging for casual viewers.

Other notable players in this space include:
- Wakatime: A time-tracking tool for developers that generates beautiful, language-based bar charts and pie charts. It focuses on productivity metrics rather than visual art.
- Codestats.net: A gamified coding tracker that awards experience points (XP) for coding activity, with leaderboards and badges. It emphasizes competition.
- GitHub Readme Stats: An open-source project that dynamically generates SVG cards for GitHub profiles, showing stats like stars, commits, and top languages. It is purely 2D and static.

Git-City occupies a unique niche: it is the only tool that transforms GitHub data into a fully interactive, explorable 3D environment. This makes it particularly suited for:
- Developer Portfolios: A developer can embed their Git-City on their personal website, giving visitors an instant, visual overview of their work.
- Conference Demos: At hackathons or tech conferences, a live Git-City display can serve as a conversation starter.
- Team Dashboards: Engineering teams could theoretically use a modified version to visualize team-wide activity, though Git-City currently only supports individual profiles.

| Tool | Format | Data Source | Primary Use Case | GitHub Stars |
|---|---|---|---|---|
| Git-City | 3D Interactive City | GitHub API | Personal branding, fun | 5,687 |
| GitHub Skyline | 3D Printable Model | GitHub GraphQL | Year-in-review | N/A (official) |
| Wakatime | 2D Charts & Graphs | Wakatime API | Productivity tracking | 1,200+ |
| GitHub Readme Stats | 2D SVG Cards | GitHub API | Profile README | 70,000+ |

Data Takeaway: Git-City's star count (5,687) is impressive for a project that is only a few weeks old, but it is still dwarfed by established tools like GitHub Readme Stats (70k+ stars). This suggests that while the novelty factor is high, the long-term utility may be lower. However, its growth rate (daily +278) indicates strong viral potential.

Industry Impact & Market Dynamics

The rise of tools like Git-City signals a broader shift in how developers approach personal branding. The traditional resume is being replaced by dynamic, interactive portfolios. GitHub profiles have become the de facto resume for many technical roles, and developers are increasingly looking for ways to make their profiles stand out.

This trend is driven by several factors:
1. The Creator Economy: Developers are creators, and they need tools to showcase their work. Git-City fits into a growing market of 'developer experience' (DX) tools that help developers build their personal brand.
2. Gamification: The use of game-like elements (cities, buildings, colors) makes data consumption more enjoyable. This is not new (think of Duolingo or Strava), but its application to developer data is relatively fresh.
3. Web3 & Metaverse Adjacency: While Git-City is not a blockchain project, its 3D, interactive nature aligns with the broader cultural interest in virtual spaces and digital identity. It is a 'mini-metaverse' for your code.

From a market perspective, Git-City is unlikely to become a standalone business. There is no clear monetization path (no ads, no premium features). However, it could serve as a lead generation tool for a larger platform. For example, a company like Vercel or Netlify could acquire or sponsor the project to offer it as a free feature for their deployment platforms, driving user engagement.

| Market Segment | Estimated Size (2025) | Growth Rate | Relevance to Git-City |
|---|---|---|---|
| Developer Portfolio Tools | $200M | 15% CAGR | Direct competitor space |
| Data Visualization Software | $8B | 10% CAGR | Indirect, broader category |
| Gamification Platforms | $12B | 25% CAGR | Conceptual overlap |

Data Takeaway: The gamification market is growing faster than the data visualization market, suggesting that Git-City's playful approach may be more aligned with future trends than traditional chart-based tools. However, the developer portfolio tool market is still relatively small, meaning Git-City's impact may remain niche.

Risks, Limitations & Open Questions

Despite its charm, Git-City has several limitations that could hinder its long-term adoption:

1. API Rate Limiting: The GitHub API has strict rate limits (60 requests per hour for unauthenticated users, 5,000 for authenticated). For users with many repositories, fetching all data could exhaust the limit quickly, leading to an incomplete city. The project currently does not handle partial data gracefully.
2. Privacy Concerns: The tool only uses public data, but it aggregates and visualizes it in a way that might reveal patterns the developer did not intend to highlight. For example, a large, central building for a side project that the developer considers low-quality could be misleading.
3. Accessibility: The 3D experience is not accessible to screen readers or users with motion sensitivity. There is no text-based alternative or 'audio city' mode.
4. Maintenance Burden: The project relies on the GitHub API, which changes over time. The current version uses v3, but GitHub is pushing GraphQL. If the maintainer loses interest, the project could break.
5. Scalability: For users with thousands of repositories (e.g., open-source maintainers), the city becomes cluttered and loses its aesthetic appeal. The 200-building cap is a workaround, but it means some repositories are invisible.

Open questions remain: Should the city be dynamic, updating in real-time as new commits are pushed? Should users be able to customize the layout manually? Could it be extended to support organizations or teams? These are all potential avenues for future development.

AINews Verdict & Predictions

Git-City is a brilliant, fun, and technically sound project that perfectly captures the zeitgeist of developer culture. It is not a tool for productivity, but a tool for expression. Its viral growth is well-deserved.

Our Predictions:
1. Short-term (3-6 months): Git-City will be picked up by major developer platforms. Expect to see it integrated into GitHub's own 'Profile' settings as an optional feature, or as a plugin for portfolio builders like Hashnode or Dev.to. The project will likely hit 15,000 stars within three months.
2. Medium-term (6-12 months): A fork will emerge that supports team/org data, allowing engineering managers to visualize their team's output as a city. This will be used in internal hackathons and team-building exercises.
3. Long-term (1-2 years): The concept will be abstracted into a generic 'data-to-city' engine. Other platforms (e.g., Strava for running routes, Goodreads for reading history) will adopt the same visual metaphor. Git-City will be remembered as the pioneer of this genre.

What to Watch: Keep an eye on the project's GitHub Issues page. If the maintainer adds support for GitHub Actions (e.g., auto-rebuilding the city on a schedule) or WebSocket-based real-time updates, the project will leapfrog its competitors.

Final Editorial Judgment: Git-City is more than a novelty. It is a proof-of-concept that data visualization can be both informative and delightful. It challenges the assumption that developer tools must be utilitarian. We recommend every developer try it at least once—and then consider contributing to its open-source codebase. The future of personal branding is interactive, and Git-City is leading the way.

More from GitHub

UntitledTerraform, the brainchild of HashiCorp, has fundamentally reshaped how organizations provision and manage cloud infrastrUntitledThe rapid deployment of autonomous AI agents—from coding assistants to financial trading bots—has exposed a glaring vulnUntitledThe LLM Engineer Toolkit, maintained by GitHub user kalyanks-nlp, has become a phenomenon in the AI engineering communitOpen source hub3037 indexed articles from GitHub

Archive

June 20262596 published articles

Further Reading

Three.js at 113K Stars: How a Solo Developer's Library Became the Web's 3D BackboneThree.js has crossed 112,000 GitHub stars, cementing its role as the de facto standard for browser-based 3D graphics. AITerraform at 48K Stars: Why HashiCorp's IaC Crown Faces Its Toughest Challenge YetHashiCorp's Terraform remains the de facto standard for Infrastructure as Code, but its switch to a Business Source LiceCtxgov: The Local-First Tool That Could Fix AI Agent Safety Before It BreaksA new open-source project, ctxgov, proposes a radical shift in AI agent safety: evaluating context, memory, and governanThe LLM Engineer Toolkit: Why This 10K-Star GitHub List MattersA single GitHub repository has amassed over 10,000 stars by curating 120+ open-source LLM libraries into a structured in

常见问题

GitHub 热点“Git-City Turns Your Coding History Into a Playable 3D Pixel Metropolis”主要讲了什么?

Git-City, created by developer srizzon, has rapidly gained traction on GitHub, amassing over 5,600 stars with a daily surge of nearly 300. The project offers a novel way to visuali…

这个 GitHub 项目在“how to make git-city buildings taller”上为什么会引发关注?

Git-City's architecture is elegantly simple but built on a solid stack. At its core, the application follows a three-step pipeline: data ingestion, data transformation, and 3D rendering. Data Ingestion: The frontend appl…

从“git-city vs github skyline comparison”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 5687,近一日增长约为 278,这说明它在开源社区具有较强讨论度和扩散能力。