<?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: Dipankar Das</title>
    <description>The latest articles on DEV Community by Dipankar Das (@dipankar_das).</description>
    <link>https://dev.to/dipankar_das</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%2F3917404%2Fd27bb18a-c969-4bdc-a95b-195150f5a82f.png</url>
      <title>DEV Community: Dipankar Das</title>
      <link>https://dev.to/dipankar_das</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dipankar_das"/>
    <language>en</language>
    <item>
      <title>I turned my gesture calculator hobby project into a pip package — so you can detect and use hand gestures in your project in just 3 lines of Python code</title>
      <dc:creator>Dipankar Das</dc:creator>
      <pubDate>Fri, 22 May 2026 18:23:18 +0000</pubDate>
      <link>https://dev.to/dipankar_das/i-turned-my-gesture-calculator-hobby-project-into-a-pip-package-so-you-can-detect-and-use-hand-4ajm</link>
      <guid>https://dev.to/dipankar_das/i-turned-my-gesture-calculator-hobby-project-into-a-pip-package-so-you-can-detect-and-use-hand-4ajm</guid>
      <description>&lt;p&gt;Built a gesture-controlled calculator a while back using MediaPipe. Extracted the detection logic into a standalone library so anyone can add gesture recognition to their project without touching CV code.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;from mp_gesture_lib import GestureDetector
detector = GestureDetector()          # bundled model, zero config
result = detector.detect(frame)       # pass any BGR webcam frame
print(result.gesture, result.confidence)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;What it detects out of the box:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Finger count 1–10 (geometry-based, no ML)&lt;/li&gt;
&lt;li&gt;Math ops: plus, minus, multiply, divide, equal, clear (ML model, bundled)&lt;/li&gt;
&lt;li&gt;Two-hand rules for plus/multiply (landmark geometry)&lt;/li&gt;
&lt;li&gt;Returns &lt;code&gt;"unknown"&lt;/code&gt; cleanly when nothing matches&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Custom model support&lt;/strong&gt; — drop your own &lt;code&gt;.task&lt;/code&gt; file, it's checked first. Bundled model is fallback. Any label passes through raw, no hard-coded mapping.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;pip install mp-gesture-lib&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;📖 Docs: &lt;a href="https://debabratasaha-dev.github.io/mp-gesture-lib-package" rel="noopener noreferrer"&gt;debabratasaha-dev.github.io/mp-gesture-lib-package&lt;/a&gt;&lt;br&gt;&lt;br&gt;
🐙 GitHub: &lt;a href="https://github.com/debabratasaha-dev/mp-gesture-lib-package" rel="noopener noreferrer"&gt;github.com/debabratasaha-dev/mp-gesture-lib-package&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback welcome — especially on the gesture pipeline priority logic. If you find it useful, I’d really appreciate a ⭐️ on GitHub!&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>opensource</category>
      <category>python</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Tired of messy JSON? I made a tool that visualizes your data as both a tree and a pannable graph. 🚀</title>
      <dc:creator>Dipankar Das</dc:creator>
      <pubDate>Thu, 07 May 2026 15:55:37 +0000</pubDate>
      <link>https://dev.to/dipankar_das/tired-of-messy-json-i-made-a-tool-that-visualizes-your-data-as-both-a-tree-and-a-pannable-graph-5c17</link>
      <guid>https://dev.to/dipankar_das/tired-of-messy-json-i-made-a-tool-that-visualizes-your-data-as-both-a-tree-and-a-pannable-graph-5c17</guid>
      <description>&lt;p&gt;Hey everyone! 👋&lt;/p&gt;

&lt;p&gt;I’ve always found it a bit painful to debug deeply nested JSON files, so I decided to build my own visualizer. Instead of just a boring list, I wanted something more interactive and visual.&lt;/p&gt;

&lt;p&gt;I call it JSON Tree Viewer.&lt;/p&gt;

&lt;p&gt;Live Demo: &lt;a href="https://debabratasaha-dev.github.io/JSON-tree-viewer/" rel="noopener noreferrer"&gt;https://debabratasaha-dev.github.io/JSON-tree-viewer/&lt;/a&gt;&lt;br&gt;
GitHub Repo: &lt;a href="https://github.com/debabratasaha-dev/JSON-tree-viewer" rel="noopener noreferrer"&gt;https://github.com/debabratasaha-dev/JSON-tree-viewer&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Key Features:&lt;br&gt;
🕸️ Dual View: Switch between a classic interactive Tree View and a zoomable Graph View.&lt;br&gt;
🔍 Interactive Graph: Drag, pan, and zoom to explore complex JSON structures visually.&lt;br&gt;
🎨 Modern UI: Built with a glassmorphism sidebar, smooth animations, and a sleek dark mode.&lt;br&gt;
🏷️ Smart Tagging: Automatically detects data types (Strings, Numbers, Objects, etc.) with clean icons.&lt;br&gt;
🚀 Lightweight: Zero heavy frameworks—just pure HTML, CSS, and JavaScript.&lt;br&gt;
I’d love to hear your feedback! What features should I add next? If you find it useful, I’d really appreciate a ⭐️ on GitHub!&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%2F0wcu735b5fx79j5eclq8.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%2F0wcu735b5fx79j5eclq8.png" alt=" " width="800" height="380"&gt;&lt;/a&gt;&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%2Fu7tigsj6wzlaaf9ikr8b.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%2Fu7tigsj6wzlaaf9ikr8b.png" alt=" " width="800" height="381"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>showdev</category>
      <category>tooling</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
