<?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: Yuval Atia</title>
    <description>The latest articles on Forem by Yuval Atia (@yuvalatia).</description>
    <link>https://forem.com/yuvalatia</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%2F3784312%2F7c3fff6b-ea56-4bb3-a26d-95e236c18e8a.png</url>
      <title>Forem: Yuval Atia</title>
      <link>https://forem.com/yuvalatia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/yuvalatia"/>
    <language>en</language>
    <item>
      <title>I Built Myself a Debugging Toolkit — Made With My Claude Friend, Sharing With You</title>
      <dc:creator>Yuval Atia</dc:creator>
      <pubDate>Sat, 21 Feb 2026 20:07:30 +0000</pubDate>
      <link>https://forem.com/yuvalatia/i-built-myself-a-debugging-toolkit-made-with-my-claude-friend-sharing-with-you-53j</link>
      <guid>https://forem.com/yuvalatia/i-built-myself-a-debugging-toolkit-made-with-my-claude-friend-sharing-with-you-53j</guid>
      <description>&lt;p&gt;I spend a lot of time debugging things in production. Weird JSON responses, tokens that don't look right, timestamps that make no sense, hashes that need verifying.&lt;/p&gt;

&lt;p&gt;Every time, it's the same thing — google "base64 decode online", paste sensitive production data into some random website, get the answer, move on. It always felt wrong.&lt;/p&gt;

&lt;p&gt;So I built Stingr — a toolkit for the stuff I actually need during debugging. Everything runs in your browser, nothing gets sent anywhere. I made it together with Claude (yes, the AI —&lt;br&gt;
  we're friends now 🤖❤️) and figured I'd share it in case it helps you too.&lt;/p&gt;

&lt;p&gt;👉 stingr.dev&lt;/p&gt;

&lt;p&gt;The tools I actually use at 2am&lt;/p&gt;

&lt;p&gt;JSON Tree Viewer — this is the one I built first and use most. When a production API returns a massive nested response and I need to find what's wrong, I need to expand/collapse by&lt;br&gt;
  depth, search for a specific field, pin the paths I keep checking. Recently added JSONPath queries too, so I can do $.data.users[*].errors and get just what I need.&lt;/p&gt;

&lt;p&gt;JSON Compare — "why does staging return different data than prod?" Paste both, get a diff. It's smart enough to detect moved array items instead of marking everything as removed +&lt;br&gt;
  added.&lt;/p&gt;

&lt;p&gt;JWT Decoder — "this token is supposed to have admin scope, does it?" One paste, header + payload + expiry right there.&lt;/p&gt;

&lt;p&gt;Base64 / URL Decoder — some API just returned something encoded and I need to know what's in it. Fast.&lt;/p&gt;

&lt;p&gt;Timestamp Converter — is this 1708531200 in seconds or milliseconds? What time is it actually?&lt;/p&gt;

&lt;p&gt;Hash Generator &amp;amp; Verifier — quick SHA-256 checksums, HMAC verification, file integrity checks.&lt;/p&gt;

&lt;p&gt;Key Case Converter — backend returns user_name but frontend expects userName? Convert all JSON keys with one click.&lt;/p&gt;

&lt;p&gt;There's about 40 tools total — formatters, regex tester, cron parser, text diff, generators — but the ones above are my daily drivers.&lt;/p&gt;

&lt;p&gt;Why it's all client-side&lt;/p&gt;

&lt;p&gt;When I'm debugging production, I'm dealing with real user data. I don't want that going through someone else's server. Stingr runs 100% in the browser — open the Network tab and check,&lt;br&gt;
  zero requests. Hashing uses the Web Crypto API, everything else is plain JS.&lt;/p&gt;

&lt;p&gt;How it's built&lt;/p&gt;

&lt;p&gt;React + Vite, four dependencies total. Nothing fancy. I built it to solve my own problem and Claude helped me ship it way faster than I could have alone. Honestly a great experience&lt;br&gt;
  building together.&lt;/p&gt;

&lt;p&gt;It's open source: github.com/yuval-atia/stinger&lt;/p&gt;

&lt;p&gt;If it saves you even one "let me google base64 decode" during your next incident, I'm happy. And if you have ideas for tools you'd want — open an issue, I'm actively adding stuff.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
