<?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: KELL</title>
    <description>The latest articles on DEV Community by KELL (@caminhodaspedras).</description>
    <link>https://dev.to/caminhodaspedras</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%2F3783402%2F170cc10f-cfe0-4691-9b16-e297c61f9e4c.png</url>
      <title>DEV Community: KELL</title>
      <link>https://dev.to/caminhodaspedras</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/caminhodaspedras"/>
    <language>en</language>
    <item>
      <title>QR CODE x CRIPIX</title>
      <dc:creator>KELL</dc:creator>
      <pubDate>Fri, 27 Feb 2026 01:55:19 +0000</pubDate>
      <link>https://dev.to/caminhodaspedras/qr-code-x-cripix-3p4d</link>
      <guid>https://dev.to/caminhodaspedras/qr-code-x-cripix-3p4d</guid>
      <description>&lt;p&gt;Under ISO/IEC 18004, a QR Code stores up to 7,089 numeric characters at maximum capacity.&lt;/p&gt;

&lt;p&gt;CRIPIX generated a single visual structure representing over 10,800 words.&lt;/p&gt;

&lt;p&gt;This is not compression.&lt;/p&gt;

&lt;p&gt;This is structural scale.&lt;/p&gt;

&lt;p&gt;Different scale. Different architecture.&lt;/p&gt;

&lt;p&gt;CRIPIX.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>When 64KB Was Enough: The Masters of Assembly</title>
      <dc:creator>KELL</dc:creator>
      <pubDate>Sat, 21 Feb 2026 04:57:50 +0000</pubDate>
      <link>https://dev.to/caminhodaspedras/when-64kb-was-enough-the-masters-of-assembly-h6o</link>
      <guid>https://dev.to/caminhodaspedras/when-64kb-was-enough-the-masters-of-assembly-h6o</guid>
      <description>&lt;p&gt;There was a time when computers had no color, almost no memory, and extremely limited processing power.&lt;/p&gt;

&lt;p&gt;And yet, some programmers built entire worlds inside those constraints.&lt;/p&gt;

&lt;p&gt;We are talking about the era of 64KB machines — Commodore 64, ZX Spectrum, Apple II — systems running at 1 MHz or 4.77 MHz, with no GPUs, no hardware acceleration, no high-level frameworks, and certainly no OpenGL or DirectX.&lt;/p&gt;

&lt;p&gt;Everything had to be written close to the metal.&lt;/p&gt;

&lt;p&gt;In Assembly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Writing on the Nerves of the Machine&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Assembly language is not abstraction. It is proximity.&lt;/p&gt;

&lt;p&gt;Each instruction speaks directly to registers, flags, memory addresses, clock cycles. There is no safety net. No garbage collector. No invisible optimization layer.&lt;/p&gt;

&lt;p&gt;You are not “developing software.”&lt;br&gt;
You are negotiating with the processor.&lt;/p&gt;

&lt;p&gt;Working within 64KB of total memory meant that every byte mattered. Every instruction had weight. Efficiency was not a feature — it was survival.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Demoscene: Competitive Low-Level Art&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Between the 1980s and early 2000s, a subculture emerged that pushed this minimalism to its extreme: the demoscene.&lt;/p&gt;

&lt;p&gt;Programmers competed to produce the most impressive audiovisual experiences under brutal constraints.&lt;/p&gt;

&lt;p&gt;In 64KB — and sometimes even 4KB — they created:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Real-time 3D rendering using pure vector math&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Particle systems and physics simulations&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Animated fractals&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Procedurally generated textures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Synthesized soundtracks generated in real time (not stored as audio files)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Lighting and shading effects coded from scratch&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Groups like Future Crew, Farbrausch, The Black Lotus, and Conspiracy became legendary for demonstrating what was possible when talent met constraint.&lt;/p&gt;

&lt;p&gt;Events such as Assembly, founded in 1992 in Finland, became annual showcases of extreme low-level mastery.&lt;/p&gt;

&lt;p&gt;These were not just demos.&lt;br&gt;
They were mathematical performances.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Constraint as Creative Force&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Modern systems hide hardware complexity behind layers of abstraction. Today we measure performance in gigabytes and teraflops.&lt;/p&gt;

&lt;p&gt;Back then, programmers measured power in bytes and clock cycles.&lt;/p&gt;

&lt;p&gt;And yet, something remarkable happened: constraint did not reduce creativity — it amplified it.&lt;/p&gt;

&lt;p&gt;With almost nothing, they simulated light, depth, motion, sound, and emotion.&lt;/p&gt;

&lt;p&gt;Zero and one were enough to create entire perceptual realities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why This Still Matters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Assembly masters proved something fundamental:&lt;/p&gt;

&lt;p&gt;When resources are limited, precision becomes philosophy.&lt;/p&gt;

&lt;p&gt;Under absolute constraints, code becomes architecture.&lt;br&gt;
Optimization becomes art.&lt;br&gt;
Efficiency becomes identity.&lt;/p&gt;

&lt;p&gt;In a world now dominated by massive frameworks and machine-generated code, revisiting that era reminds us that sovereignty over computation begins with understanding the machine at its most primitive level.&lt;/p&gt;

&lt;p&gt;Before abstraction.&lt;br&gt;
Before automation.&lt;br&gt;
Before intelligence scales beyond human control.&lt;/p&gt;

&lt;p&gt;Sometimes the deepest innovations emerge not from abundance — but from limits.&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>coding</category>
      <category>performance</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
