<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Sempala Daniel</title>
    <description>The latest articles on Forem by Sempala Daniel (@astrav).</description>
    <link>https://forem.com/astrav</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3687778%2F331a4a5d-4f8e-4cff-a6b4-1063b8890432.jpeg</url>
      <title>Forem: Sempala Daniel</title>
      <link>https://forem.com/astrav</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/astrav"/>
    <language>en</language>
    <item>
      <title>I’m turning my GitHub Contribution Graph into a playable screen for DOOM. Am I insane?</title>
      <dc:creator>Sempala Daniel</dc:creator>
      <pubDate>Wed, 31 Dec 2025 19:04:19 +0000</pubDate>
      <link>https://forem.com/astrav/im-turning-my-github-contribution-graph-into-a-playable-screen-for-doom-am-i-insane-203m</link>
      <guid>https://forem.com/astrav/im-turning-my-github-contribution-graph-into-a-playable-screen-for-doom-am-i-insane-203m</guid>
      <description>&lt;h2&gt;
  
  
  It Runs DOOM. Now It Runs on GitHub.
&lt;/h2&gt;

&lt;p&gt;We’ve all heard the rule:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;If it can run DOOM, it’s a real computer.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Over the years, we’ve seen DOOM running on &lt;strong&gt;pregnancy tests&lt;/strong&gt;, &lt;strong&gt;tractors&lt;/strong&gt;, &lt;strong&gt;ATMs&lt;/strong&gt;, and &lt;strong&gt;digital cameras&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But one day, while staring at those little green squares on my &lt;strong&gt;GitHub contribution graph&lt;/strong&gt;, a dangerous thought crossed my mind:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Why are they just sitting there?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What if… they &lt;em&gt;did something&lt;/em&gt;?&lt;/p&gt;




&lt;h2&gt;
  
  
  The Goal
&lt;/h2&gt;

&lt;p&gt;I’m officially starting an experiment to &lt;strong&gt;render DOOM directly onto the GitHub Contribution Graph&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Yes, the exact 7×52 grid that tracks your commits.&lt;/p&gt;

&lt;p&gt;This is not a joke project.&lt;br&gt;
This is not a useful project.&lt;br&gt;
This is a &lt;strong&gt;“should-not-exist-but-now-it-must”&lt;/strong&gt; project.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Vision
&lt;/h2&gt;

&lt;p&gt;Here’s the plan (at least, the current version of it):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extract raw &lt;strong&gt;DOOM gameplay frames&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Downsample&lt;/strong&gt; each frame to a &lt;strong&gt;7×52 resolution&lt;/strong&gt; (the contribution grid size)&lt;/li&gt;
&lt;li&gt;Map grayscale pixels to GitHub’s &lt;strong&gt;4 shades of green&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Use &lt;code&gt;git commit --date&lt;/code&gt; to &lt;strong&gt;paint frames into history&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Let the contribution graph become a &lt;strong&gt;display&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If this works, your GitHub profile becomes a DOOM renderer.&lt;/p&gt;




&lt;h2&gt;
  
  
  The “Impossible” Challenges
&lt;/h2&gt;

&lt;p&gt;This isn’t just a script — it’s a fight against reality.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. The Refresh Rate
&lt;/h3&gt;

&lt;p&gt;GitHub doesn’t update contribution graphs instantly.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How slow is it really?&lt;/li&gt;
&lt;li&gt;Can it be tricked into pseudo-animation?&lt;/li&gt;
&lt;li&gt;Is DOOM at &lt;strong&gt;0.1 FPS&lt;/strong&gt; still DOOM?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. The Commit Explosion
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Will GitHub rate-limit commits?&lt;/li&gt;
&lt;li&gt;Will my profile get flagged?&lt;/li&gt;
&lt;li&gt;What happens if I make &lt;strong&gt;10,000 commits in 5 minutes&lt;/strong&gt;?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;(We are about to find out.)&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  3. The Input Problem
&lt;/h3&gt;

&lt;p&gt;This is the wild part:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Can &lt;strong&gt;git pushes&lt;/strong&gt; control movement?&lt;/li&gt;
&lt;li&gt;Can branch names represent actions?&lt;/li&gt;
&lt;li&gt;Can DOOM be &lt;em&gt;played&lt;/em&gt; using version control?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I don’t know yet.&lt;/p&gt;

&lt;p&gt;And that’s the fun.&lt;/p&gt;




&lt;p&gt;This experiment will probably:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Break things&lt;/li&gt;
&lt;li&gt;Confuse recruiters&lt;/li&gt;
&lt;li&gt;Permanently ruin a GitHub profile&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Worth it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Join the Chaos
&lt;/h2&gt;

&lt;p&gt;I need help from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Git wizards&lt;/li&gt;
&lt;li&gt;DOOM enthusiasts&lt;/li&gt;
&lt;li&gt;People who enjoy unnecessary technical suffering&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If this idea made you smile, cringe, or question my sanity — that’s a sign.&lt;/p&gt;

&lt;p&gt;This is &lt;strong&gt;Day 1&lt;/strong&gt; of the &lt;strong&gt;GitHub DOOM&lt;/strong&gt; experiment.&lt;/p&gt;

&lt;p&gt;Let’s see how far green squares can be pushed.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If it runs DOOM… it deserves to exist.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>github</category>
      <category>opensource</category>
      <category>doom</category>
    </item>
  </channel>
</rss>
