<?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: Rakesh</title>
    <description>The latest articles on DEV Community by Rakesh (@rvbug).</description>
    <link>https://dev.to/rvbug</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%2F1279718%2F057d1d13-c134-4420-a580-6efebc5a15e8.png</url>
      <title>DEV Community: Rakesh</title>
      <link>https://dev.to/rvbug</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rvbug"/>
    <language>en</language>
    <item>
      <title>Technical Writing Needs Attention</title>
      <dc:creator>Rakesh</dc:creator>
      <pubDate>Fri, 20 Feb 2026 06:39:04 +0000</pubDate>
      <link>https://dev.to/rvbug/technical-writing-needs-attention-4303</link>
      <guid>https://dev.to/rvbug/technical-writing-needs-attention-4303</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Usually, programming tutorials and research papers have been a bit difficult to understand.&lt;/p&gt;

&lt;p&gt;Not because the code is complicated, but because the attention shifts between the text and its explanation. &lt;/p&gt;

&lt;p&gt;When someone presents a technical article, the author knows which line matters at each moment but readers might not.&lt;/p&gt;

&lt;p&gt;We use static artefacts, diagrams, images or even screenshots to explain. This includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Blog Posts&lt;/li&gt;
&lt;li&gt;Research &amp;amp; Documentation&lt;/li&gt;
&lt;li&gt;Code Snippets&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But programming is not static.&lt;/p&gt;

&lt;p&gt;When a function is executed, the data flows and state keeps changing.&lt;/p&gt;

&lt;p&gt;So when we explain these ideas, we freeze everything into a screenshot.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Problem
&lt;/h2&gt;

&lt;p&gt;Consider a simple explanation in a blog. &lt;/p&gt;

&lt;p&gt;We paste a block of code, then the explanation refers to parts of it. &lt;/p&gt;

&lt;p&gt;Now the reader has to &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;scroll up/down&lt;/li&gt;
&lt;li&gt;remember previous lines&lt;/li&gt;
&lt;li&gt;mentally simulate execution&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To avoid this, authors often repeat code blocks, shrink snippets and/or split explanations. &lt;/p&gt;

&lt;p&gt;This is hard work for both writers and readers.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Code execution is a &lt;strong&gt;&lt;code&gt;SEQUENCE&lt;/code&gt;&lt;/strong&gt; &lt;br&gt;
Documentation is a  &lt;strong&gt;&lt;code&gt;SNAPSHOT&lt;/code&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This gap is where the friction lives.&lt;/p&gt;

&lt;h2&gt;
  
  
  Experiment
&lt;/h2&gt;

&lt;p&gt;So I tried a small experiment. What if documentation was a not a page but a timeline?&lt;/p&gt;

&lt;p&gt;Instead of describing what the program does, what if we &lt;em&gt;rendered&lt;/em&gt; the explanation?&lt;/p&gt;

&lt;p&gt;I built a CLI tool that generates a video directly from text script.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No Screen Recording&lt;/li&gt;
&lt;li&gt;No Video Editor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Just a script &lt;/p&gt;

&lt;p&gt;I called it &lt;strong&gt;Rustimate&lt;/strong&gt; - an animation engine written in Rust.&lt;/p&gt;

&lt;h2&gt;
  
  
  DSL
&lt;/h2&gt;

&lt;p&gt;Here's how the script looks like&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;scene "example" {
  mode: editor
  editor: neovim
  animation: typewriter
  code {
       file: "main.rs"
       lines: 8..12
       highlight: [10]
     }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Comparison
&lt;/h2&gt;

&lt;p&gt;This is how a traditional explanation looks like:&lt;br&gt;
There is absolutely nothing wrong with this format and this is how all of us learn programming or consume technical content.&lt;/p&gt;

&lt;p&gt;But in this format, the reader needs to manually connect explanation and execution.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftllo23diqtl378z02809.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftllo23diqtl378z02809.gif" alt="Blog Scrolling" width="720" height="468"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here's the same concept rendered as a short guided sequence:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuzeno8ahr4xe1dva4i2r.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuzeno8ahr4xe1dva4i2r.gif" alt="Rustimate Video" width="900" height="506"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is not a recording. Rustimate renders the editor itself and guides attention, showing exactly which line matters, and at the moment at which it matters.&lt;/p&gt;

&lt;p&gt;The information did not change, only the medium/format did.&lt;/p&gt;

&lt;p&gt;The video does not replace the article, it syncs the reader's attention. After watching a guided explanation, the code is no longer unfamiliar.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Rustimate is (and is not)
&lt;/h2&gt;

&lt;p&gt;Rustimate is &lt;strong&gt;not an AI tool&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It does not generate any code &lt;br&gt;
It does not summarize documentation. &lt;/p&gt;

&lt;p&gt;It helps guide attention. You describe how understanding should unfold and the engine will turn it into a video.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who is this for
&lt;/h2&gt;

&lt;p&gt;This could help -&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Educators explaining code and algorithm&lt;/li&gt;
&lt;li&gt;Developers writing tutorials and blogs&lt;/li&gt;
&lt;li&gt;Scientists and Researchers presenting ideas&lt;/li&gt;
&lt;li&gt;Technical YouTube creators&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Not to replace writing but to complement it with motion.&lt;/p&gt;

&lt;h2&gt;
  
  
  Philosophy
&lt;/h2&gt;

&lt;p&gt;Programming sits between logic and explanations. We have powerful languages for building software, but most of our teaching still relies on static pages and screenshots.&lt;/p&gt;

&lt;p&gt;Rustimate is my attempt to explore this missing gap - A medium between code and storytelling.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This is still in early stages. I am not presenting it as a finished product but as an idea I am testing.&lt;/p&gt;

&lt;p&gt;If it resonates with you then I would genuinely like to hear your thoughts. Thank you!&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;p&gt;Website: &lt;a href="https://qubitai.in/rustimate.html" rel="noopener noreferrer"&gt;Rustimate&lt;/a&gt;&lt;br&gt;
Original Article: &lt;a href="https://qubitai.in/qscribe-docs/posts/Quarto/doc2quarto.html" rel="noopener noreferrer"&gt;Doc2Quarto&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cli</category>
      <category>rust</category>
    </item>
  </channel>
</rss>
