<?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: SickleFire</title>
    <description>The latest articles on DEV Community by SickleFire (@sicklefire).</description>
    <link>https://dev.to/sicklefire</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%2F3910334%2F16843084-465f-499e-b80c-9a48bee8bc93.jpeg</url>
      <title>DEV Community: SickleFire</title>
      <link>https://dev.to/sicklefire</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sicklefire"/>
    <language>en</language>
    <item>
      <title>Visualizing the Slope: Introducing the m-vis Real-Time Leak Delta Chart</title>
      <dc:creator>SickleFire</dc:creator>
      <pubDate>Tue, 09 Jun 2026 11:14:35 +0000</pubDate>
      <link>https://dev.to/sicklefire/visualizing-the-slope-introducing-the-m-vis-real-time-leak-delta-chart-1g3d</link>
      <guid>https://dev.to/sicklefire/visualizing-the-slope-introducing-the-m-vis-real-time-leak-delta-chart-1g3d</guid>
      <description>&lt;p&gt;Debugging memory leaks by watching a wall of flashing text numbers is a guessing game. You can see the numbers moving, but you entirely miss the trends, spikes, and rhythm of your application.&lt;/p&gt;

&lt;p&gt;To solve this, &lt;strong&gt;m-vis&lt;/strong&gt; has introduced: the &lt;strong&gt;Real-Time Leak Delta Chart&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;By translating raw allocation differentials into a live, scrolling historical timeline right inside your terminal, &lt;code&gt;m-vis&lt;/code&gt; shifts memory debugging from a game of parsing numbers to simple, immediate pattern recognition.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is the Leak Delta Chart?
&lt;/h2&gt;

&lt;p&gt;The Leak Delta Chart is a dedicated visual component in the TUI that maps the output of the core &lt;code&gt;LeakDelta&lt;/code&gt; engine over time. Instead of showing you the total size of your application's memory, it charts the &lt;strong&gt;net balance&lt;/strong&gt; of every single cycle (Allocated Bytes minus Freed Bytes).&lt;/p&gt;

&lt;p&gt;The chart centers around a &lt;strong&gt;Zero Baseline Axis&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Above the Axis (Positive):&lt;/strong&gt; Represents net memory accumulation (the app claimed bytes it didn’t return).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Below the Axis (Negative):&lt;/strong&gt; Represents net memory reclamation (the app actively cleaned up more than it took).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What it looks like in your terminal:
&lt;/h3&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%2Fy7jzeshvmvjy2gnh3hfy.png" 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%2Fy7jzeshvmvjy2gnh3hfy.png" alt="Leak Delta Chart" width="799" height="354"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This graph illustrates an application experiencing a persistent memory leak. The steady upward trend above the baseline indicates that memory is continuously being allocated but not properly released.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it Out
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;m-vis&lt;/code&gt; is built to be simple to use, lightweight, and completely cross-platform. &lt;/p&gt;

&lt;p&gt;If you want to move past parsing raw text numbers and actually &lt;em&gt;see&lt;/em&gt; your memory behavior, check out the project on GitHub:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/SickleFire/m-vis" rel="noopener noreferrer"&gt;Check out m-vis on GitHub&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let me know what you think in the comments, or what features you'd love to see added to the TUI next!&lt;/p&gt;

</description>
      <category>rust</category>
      <category>performance</category>
      <category>cli</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Mvis: Memory Debugging Made Simple and Accessible</title>
      <dc:creator>SickleFire</dc:creator>
      <pubDate>Sun, 03 May 2026 16:25:43 +0000</pubDate>
      <link>https://dev.to/sicklefire/mvis-memory-debugging-made-simple-and-accessible-18j7</link>
      <guid>https://dev.to/sicklefire/mvis-memory-debugging-made-simple-and-accessible-18j7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Debugging memory leaks has always been one of those tasks developers dread.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Tools like Valgrind or WinDbg are powerful, but they’re either platform‑specific or too complex for quick diagnostics. I wanted something different: a tool that gives developers answers fast. &lt;/p&gt;

&lt;p&gt;That’s the philosophy behind Mvis — a Rust‑based memory visualizer and leak detector.&lt;/p&gt;




&lt;h1&gt;
  
  
  Why Mvis
&lt;/h1&gt;

&lt;p&gt;Mvis is built around three guiding principles:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Simplicity:&lt;/strong&gt; One command should be enough to get useful insights.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Accessibility:&lt;/strong&gt; Debugging shouldn’t be locked behind steep learning curves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cross‑platform:&lt;/strong&gt; Whether you’re on Windows or Linux, the workflow should feel the same.&lt;/p&gt;

&lt;p&gt;Or as I like to put it:&lt;br&gt;
&lt;strong&gt;&lt;em&gt;“One command. All platforms. No configuration hell.”&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;


&lt;h1&gt;
  
  
  What it can do
&lt;/h1&gt;

&lt;p&gt;Even in its early stage, Mvis already supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Process scanning: Inspect allocations of active processes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Heap‑level analysis: See heap structures in detail. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;DLL tracking: Monitor loaded libraries.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Leak detection: Identify processes with growing, unreleased allocations.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Stack tracing: Capture call stacks to pinpoint allocation sources.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supported OS: Windows and Linux.&lt;/p&gt;


&lt;h1&gt;
  
  
  Quick Usage Examples
&lt;/h1&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="c"&gt;# visualize memory map&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="n"&gt;mvis&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;scan&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;myapp.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-a&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="c"&gt;# detect leaks&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="n"&gt;mvis&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;leak&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;leaking_app.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;10&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="c"&gt;# multi-sample leak detection&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="n"&gt;mvis&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;leak-m&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;myapp.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;10&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;3&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Outputs are clear and exportable to JSON(Scan), making analysis and visualization easy.&lt;/p&gt;
&lt;h3&gt;
  
  
  Example: Leak Detection
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;mvis&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;leak&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;leaking_app.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;10&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Flozjotyf9s8x54yoxx4l.png" 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%2Flozjotyf9s8x54yoxx4l.png" alt="Output" width="570" height="77"&gt;&lt;/a&gt; &lt;/p&gt;


&lt;h1&gt;
  
  
  Insights
&lt;/h1&gt;

&lt;p&gt;One of the first problems I encountered was:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do I make Mvis work on both Windows and Linux?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer turned out to be simple: &lt;strong&gt;platform abstraction.&lt;/strong&gt;&lt;br&gt;
Mvis defines abstractions for memory regions and heap blocks, which means the core logic doesn’t depend on OS‑specific quirks.&lt;/p&gt;

&lt;p&gt;Because of this design, it’s possible to extend support to other platforms in the future — as long as they implement the same abstraction layer Mvis uses.. &lt;/p&gt;


&lt;h1&gt;
  
  
  Roadmap
&lt;/h1&gt;

&lt;p&gt;Mvis is still early but functional. Here’s what’s coming next:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;TUI frontend for heap analysis (lightweight by design).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Heap fragmentation visualization.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Realtime heap scanning.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;macOS support.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Performance improvements.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;
  
  
  Try it out
&lt;/h1&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/SickleFire" rel="noopener noreferrer"&gt;
        SickleFire
      &lt;/a&gt; / &lt;a href="https://github.com/SickleFire/m-vis" rel="noopener noreferrer"&gt;
        m-vis
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      lightweight cross-platform memory visualizer tool
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;mvis&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;mvis: Memory debugging for developers who just want answers
Simple. Fast. Works everywhere.&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Why mvis?&lt;/h2&gt;
&lt;/div&gt;
&lt;p&gt;Existing tools are either platform-specific (Valgrind, WinDbg) or
too complex for quick diagnostics. mvis gives you memory insights
with a single command on any platform.&lt;/p&gt;
&lt;p&gt;Our design philosophy is built around simplicity and accessibility because &lt;strong&gt;We believe memory debugging should be accessible, not a PhD requirement.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;"One command. All platforms. No configuration hell."&lt;/strong&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Status&lt;/h2&gt;

&lt;/div&gt;
&lt;p&gt;Early but functional. Core scanning and leak detection work on both platforms. See the roadmap below for what's coming.&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Features&lt;/h2&gt;

&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Process Scanning&lt;/strong&gt;: Inspect memory allocations of active processes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Heap-Level Analysis&lt;/strong&gt;: Dive into heap structures for detailed debugging.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DLL Tracking&lt;/strong&gt;: Monitor and list all DLLs loaded by a target.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Memory Leak Detection&lt;/strong&gt;: Identify and monitor processes with growing, unreleased allocations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stack Tracing&lt;/strong&gt;: Capture call stacks to pinpoint allocation sources and trace execution paths.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Supported OS&lt;/strong&gt;…&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/SickleFire/m-vis" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;Feedback, contributions, and ideas are welcome. Let’s make memory debugging easier for everyone.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
