<?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>DEV Community: Paul Krause</title>
    <description>The latest articles on DEV Community by Paul Krause (@paul_krause_48bb51422f656).</description>
    <link>https://dev.to/paul_krause_48bb51422f656</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4016444%2F4f917e60-6b92-4489-9f52-bde40ba205d2.jpeg</url>
      <title>DEV Community: Paul Krause</title>
      <link>https://dev.to/paul_krause_48bb51422f656</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/paul_krause_48bb51422f656"/>
    <language>en</language>
    <item>
      <title>I Built a Pentomino Game That Escalates From 2D to 5D in a Single HTML File</title>
      <dc:creator>Paul Krause</dc:creator>
      <pubDate>Wed, 08 Jul 2026 23:23:20 +0000</pubDate>
      <link>https://dev.to/paul_krause_48bb51422f656/i-built-a-pentomino-game-that-escalates-from-2d-to-5d-in-a-single-html-file-3p8n</link>
      <guid>https://dev.to/paul_krause_48bb51422f656/i-built-a-pentomino-game-that-escalates-from-2d-to-5d-in-a-single-html-file-3p8n</guid>
      <description>&lt;p&gt;You don’t just unlock higher dimensions in this game. You have to earn them.&lt;/p&gt;

&lt;p&gt;LVL5 is a pentomino puzzle that starts as familiar 2D and progressively adds dimensions — all the way to 5D. Each new tier doesn’t just give you more space. It adds rotation planes, changes how pieces behave, and demands better spatial reasoning. There’s no hand-holding when you cross from 3D into 4D or 4D into 5D.&lt;br&gt;
If you can’t get to 4D chess, you wouldn’t like it there anyway.&lt;/p&gt;

&lt;p&gt;What it actually is&lt;/p&gt;

&lt;p&gt;LVL5 is a single HTML file. No frameworks, no build step, no server, no dependencies. Open it in a browser and it just works.&lt;br&gt;
The core loop is classic pentominoes, but the well wraps toroidally in every axis perpendicular to gravity. Pieces are always 5 cells. As you clear layers, the game advances:&lt;br&gt;
•  2D — Classic wrapping pentominoes&lt;br&gt;
•  3D — Pentacubes on a toroidal floor&lt;br&gt;
•  4D — Pieces now span multiple 3D slices&lt;br&gt;
•  5D — Full 5D with an isoclinic double rotation (a motion that literally cannot exist in lower dimensions)&lt;/p&gt;

&lt;p&gt;The piece generation uses signed permutations with canonicalization so the same underlying shapes work across dimensions. 5D pieces are essentially 4D pieces with an extra axis fixed at zero. The coloring uses the golden angle. Scoring is Fibonacci-based with combo multipliers.&lt;/p&gt;

&lt;p&gt;Everything — rendering (including isometric projection and slice views), collision, rotation across all planes, controls, and progression — lives in one file.&lt;br&gt;
Why I built it this way&lt;br&gt;
I wanted the dimensional jump to feel earned.&lt;/p&gt;

&lt;p&gt;Most “higher dimensional” games either throw you straight into the deep end or simplify things so much that the extra dimensions feel like a gimmick. I wanted the game to respect the player’s growing understanding. If you brute-force your way through 2D and 3D without developing better intuition, 4D and 5D will punish you.&lt;/p&gt;

&lt;p&gt;The controls also evolve. By 5D you have access to an isoclinic rotation — a simultaneous rotation in two orthogonal planes. It’s disorienting at first, which is the point.&lt;/p&gt;

&lt;p&gt;Technical notes (for the curious)&lt;br&gt;
•  Piece shapes are generated using signed permutations across N dimensions, then deduplicated via canonical sorting.&lt;br&gt;
•  Toroidal wrapping is handled with a proper modular coordinate system.&lt;br&gt;
•  Rendering switches between 2D grid, 3D isometric cubes, and sliced multi-view for 4D/5D.&lt;br&gt;
•  All rotation planes are precomputed. In 5D there are 10 possible rotation planes.&lt;br&gt;
•  The entire game (including the adaptive on-screen controls) is under 500 lines of JavaScript.&lt;/p&gt;

&lt;p&gt;You can see the full source here:&lt;br&gt;
&lt;a href="https://github.com/onePaulKrause/LVL5-Game-5D" rel="noopener noreferrer"&gt;https://github.com/onePaulKrause/LVL5-Game-5D&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Play it&lt;/p&gt;

&lt;p&gt;Try it here: &lt;a href="https://lvl5.hom3.org" rel="noopener noreferrer"&gt;https://lvl5.hom3.org&lt;/a&gt;&lt;br&gt;
It works on desktop and mobile. Keyboard controls are available, and there’s a full touch control pad that adapts to the current dimension.&lt;/p&gt;

&lt;p&gt;Final thought&lt;br&gt;
Higher dimensions in games are often treated as spectacle. In LVL5 they’re treated as a skill check. The game doesn’t congratulate you for reaching 5D. It just quietly raises the bar and waits to see if you can keep up.&lt;br&gt;
Some people will hate that.&lt;br&gt;
I’m fine with it.&lt;br&gt;
.-.&lt;br&gt;
1&amp;lt;3&lt;br&gt;
Paul&lt;br&gt;
Hom3.org&lt;/p&gt;

</description>
      <category>gamedev</category>
      <category>javascript</category>
      <category>5d</category>
      <category>puzzles</category>
    </item>
    <item>
      <title>They are stealing your brains and your loosing your memory</title>
      <dc:creator>Paul Krause</dc:creator>
      <pubDate>Sun, 05 Jul 2026 16:53:16 +0000</pubDate>
      <link>https://dev.to/paul_krause_48bb51422f656/they-are-stealing-your-brains-and-your-loosing-your-memory-1eai</link>
      <guid>https://dev.to/paul_krause_48bb51422f656/they-are-stealing-your-brains-and-your-loosing-your-memory-1eai</guid>
      <description>&lt;p&gt;Ok so clickbait aside it’s true.  What began as just a convenient way to minimize hardware needs with cloud data storage has bled into every area of our digital lives. The facts are in, the puns aren’t funny - and we need a better solution.&lt;/p&gt;

&lt;p&gt;Practically speaking the most ai users share their knowledge experiences data and ip directly with cloud hosts who share it wherever the money leads. When it’s time for you to switch providers, for whatever reason, your memory stays with the provider not the author.&lt;/p&gt;

&lt;p&gt;The innovation we need today isn’t just in smarter models, but in sovereign rails that allow your data to persist with you, not with anyone else.  Sure this is grandiose but we will see the needs only grow. I don’t imagine I can win the whole world over to a safer way but wanted to provide an option.&lt;/p&gt;

&lt;p&gt;The culmination of decades in cryptography data security system architecture and ai has led me to develop my work at &lt;a href="https://hom3.org" rel="noopener noreferrer"&gt;HOM3&lt;/a&gt; - &lt;br&gt;
A life raft in the “cloudy” waters bringing you and your data back HOM3. &lt;/p&gt;

&lt;p&gt;My biggest hope is there is enough others out there like me wanting a more sovereign solution. Thanks for checking in and taking a look at how I’m taking to solve some of the problems . learning and always .&lt;br&gt;
Always growing &lt;/p&gt;

</description>
      <category>sovereign</category>
      <category>selfhosted</category>
      <category>aitools</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
