<?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: Andy</title>
    <description>The latest articles on DEV Community by Andy (@samar_bose_b84e24b5087998).</description>
    <link>https://dev.to/samar_bose_b84e24b5087998</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%2F3305855%2F91815ad5-01d7-4e10-9872-39fdc1586289.png</url>
      <title>DEV Community: Andy</title>
      <link>https://dev.to/samar_bose_b84e24b5087998</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/samar_bose_b84e24b5087998"/>
    <language>en</language>
    <item>
      <title>A UX designer who built a working product without writing code</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Tue, 03 Mar 2026 17:11:58 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/a-ux-designer-who-built-a-working-product-without-writing-code-517a</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/a-ux-designer-who-built-a-working-product-without-writing-code-517a</guid>
      <description>&lt;p&gt;I’ve always been on the design side and never really touched code. A few weeks ago, I got curious about what it would take to actually build and ship something on my own.&lt;/p&gt;

&lt;p&gt;Instead of learning to code the traditional way, I used Gemini AI as my guide. I asked it everything step by step, from how to build a homepage to how to handle backend data. I ended up learning more than I expected just by asking better questions.&lt;/p&gt;

&lt;p&gt;The result is Spot Startups, a simple web directory for &lt;a href="https://spotstartups.com" rel="noopener noreferrer"&gt;discovering new SaaS projects&lt;/a&gt;. It’s nothing huge, but seeing something I designed actually work online felt incredible.&lt;/p&gt;

&lt;p&gt;Since this is my first real build, I’d love some feedback from devs, anything around structure, usability, or what I could improve technically.&lt;br&gt;
Here’s the link: &lt;a href="https://spotstartups.com" rel="noopener noreferrer"&gt;https://spotstartups.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>ux</category>
    </item>
    <item>
      <title>if you’ve built an AI tool, feel free to add it.</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Tue, 25 Nov 2025 16:22:51 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/if-youve-built-an-ai-tool-feel-free-to-add-it-5gd0</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/if-youve-built-an-ai-tool-feel-free-to-add-it-5gd0</guid>
      <description>&lt;p&gt;I’ve built a lightweight, workflow-focused &lt;a href="https://aiinworkflow.com/" rel="noopener noreferrer"&gt;AI tools directory&lt;/a&gt;. Instead of sorting through massive categories, users can discover tools based on real tasks and job role. It’s live and open for submissions. if you’ve built an AI tool, feel free to add it.&lt;/p&gt;

&lt;p&gt;Would love your feedback, feature requests, or even critiques.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
    <item>
      <title>https://jsonformatter.online/json-in-ai-and-machine-learning-data-preparation-made-easy/</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Mon, 04 Aug 2025 06:00:28 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/httpsjsonformatteronlinejson-in-ai-and-machine-learning-data-preparation-made-easy-59bc</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/httpsjsonformatteronlinejson-in-ai-and-machine-learning-data-preparation-made-easy-59bc</guid>
      <description></description>
      <category>json</category>
      <category>machinelearning</category>
      <category>dataengineering</category>
      <category>ai</category>
    </item>
    <item>
      <title>🚀 Native JSON Imports in JavaScript Are Here (2025 Guide with Examples)</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Mon, 14 Jul 2025 19:43:06 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/native-json-imports-in-javascript-are-here-2025-guide-with-examples-5af8</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/native-json-imports-in-javascript-are-here-2025-guide-with-examples-5af8</guid>
      <description>&lt;p&gt;Did you know you can now import &lt;code&gt;.json&lt;/code&gt; files natively in modern JavaScript without &lt;code&gt;fetch()&lt;/code&gt;, bundlers, or dynamic hacks?&lt;/p&gt;

&lt;p&gt;Yes, it’s officially supported in all modern browsers &lt;strong&gt;and&lt;/strong&gt; Node.js (v20.6+), and it looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;js
import config from './config.json' assert { type: 'json' };
console.log(config.theme);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That’s it. No more boilerplate. 🙌&lt;/p&gt;

&lt;p&gt;✅ Works In:&lt;br&gt;
Chrome, Firefox, Safari, Edge (2024+)&lt;/p&gt;

&lt;p&gt;Node.js v20.6+&lt;br&gt;
You just need to set "type": "module" in your package.json&lt;/p&gt;

&lt;p&gt;🧠 Why This Is a Game-Changer&lt;br&gt;
Instead of doing:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;fetch('/config.json')
  .then(res =&amp;gt; res.json())
  .then(data =&amp;gt; console.log(data));
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You now just:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import config from './config.json' assert { type: 'json' };
Cleaner syntax. Synchronous. Built-in support.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It’s perfect for:&lt;/p&gt;

&lt;p&gt;App configs&lt;/p&gt;

&lt;p&gt;Locale files&lt;/p&gt;

&lt;p&gt;Static content for blogs and docs&lt;/p&gt;

&lt;p&gt;DevOps dashboards&lt;/p&gt;

&lt;p&gt;Theme/data presets&lt;/p&gt;

&lt;p&gt;`&lt;/p&gt;
&lt;h3&gt;🧪 Common Pitfalls &amp;amp; Fixes&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;❌ Error&lt;/th&gt;
      &lt;th&gt;✅ Fix&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;Cannot find module&lt;/code&gt;&lt;/td&gt;
      &lt;td&gt;Check your file path and extension&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;Unexpected token&lt;/code&gt;&lt;/td&gt;
      &lt;td&gt;Make sure the JSON is valid (&lt;a href="https://jsonformatter.online" rel="noopener noreferrer"&gt;Use Formatter&lt;/a&gt;)&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;Module parse failed&lt;/code&gt;&lt;/td&gt;
      &lt;td&gt;Add &lt;code&gt;assert { type: 'json' }&lt;/code&gt; to your import&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;CORS error&lt;/code&gt;&lt;/td&gt;
      &lt;td&gt;Enable CORS or load JSON from the same origin&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;`&lt;/p&gt;

&lt;p&gt;🛠️ Bonus Tool – Format &amp;amp; Validate Your JSON First&lt;br&gt;
If your JSON file has even one trailing comma, this import will fail.&lt;/p&gt;

&lt;p&gt;Before importing, I use this free tool I built to format, validate, and preview JSON quickly:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://jsonformatter.online" rel="noopener noreferrer"&gt;https://jsonformatter.online&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It also supports:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;JSON to CSV, YAML, XML, Markdown&lt;/li&gt;
&lt;li&gt;Download as Excel (XLSX)&lt;/li&gt;
&lt;li&gt;A full JSON Log Viewer for NDJSON &amp;amp; streaming&lt;/li&gt;
&lt;li&gt;Upload or fetch JSON from a URL&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Give it a try and let me know what features you’d love to see!&lt;/p&gt;

&lt;p&gt;🔗 Read the Full Guide Here&lt;br&gt;
I wrote a full breakdown of how to use native JSON imports, what’s supported, how to structure projects, and common gotchas here:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://jsonformatter.online/how-to-use-native-json-imports-in-javascript-2025-update/" rel="noopener noreferrer"&gt;How to Use Native JSON Imports in JavaScript (2025 Update)&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What Did You Build This Weekend?</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Sun, 06 Jul 2025 16:39:28 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/what-did-you-build-this-weekend-c82</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/what-did-you-build-this-weekend-c82</guid>
      <description>&lt;p&gt;Hey Devs! 👋&lt;/p&gt;

&lt;p&gt;Weekends are for side projects, experimenting, building stuff you’ve been putting off... and maybe fixing bugs you swore you'd fix last month 😅&lt;/p&gt;

&lt;p&gt;This weekend, I finally shipped something I’ve wanted to build for a long time:&lt;br&gt;
👉 &lt;a href="https://jsonformatter.online" rel="noopener noreferrer"&gt;JSON toolkit for developers&lt;/a&gt; – free, fast, no-login &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What It Does&lt;/strong&gt;&lt;br&gt;
I was tired of bouncing between different tools for formatting, validating, converting, and viewing JSON. So I built a platform that does all of it in one place.&lt;/p&gt;

&lt;p&gt;I’d Love Your Feedback!&lt;br&gt;
If you work with JSON regularly, please give it a spin and let me know:&lt;/p&gt;

&lt;p&gt;What works well?&lt;br&gt;
What sucks?&lt;br&gt;
What features would make this your go-to JSON tool?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Now Over to You...&lt;/strong&gt;&lt;br&gt;
What did YOU build this weekend?&lt;br&gt;
Whether it’s a CLI tool, a VSCode extension, a micro-SaaS, a blog post, or just a GitHub README refresh — drop a link or a screenshot below!&lt;/p&gt;

&lt;p&gt;Let’s inspire (and debug) each other! ❤️&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>tools</category>
      <category>buildinpublic</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Simplify Your JSON Workflow with JSONFormatter.online</title>
      <dc:creator>Andy</dc:creator>
      <pubDate>Mon, 30 Jun 2025 06:52:44 +0000</pubDate>
      <link>https://dev.to/samar_bose_b84e24b5087998/simplify-your-json-workflow-with-jsonformatteronline-l9j</link>
      <guid>https://dev.to/samar_bose_b84e24b5087998/simplify-your-json-workflow-with-jsonformatteronline-l9j</guid>
      <description>&lt;p&gt;Working with JSON is inevitable for any modern developer — whether you’re building APIs, debugging responses, formatting payloads, or writing config files. And let’s face it: raw JSON isn’t exactly fun to read or edit.&lt;/p&gt;

&lt;p&gt;Enter JSONFormatter.online — a free, zero-setup, browser-based tool that makes working with JSON actually enjoyable. Whether you’re a backend developer, front-end ninja, API engineer, or data analyst, this tool is a must-have in your bookmarks bar.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is JSONFormatter.online?
&lt;/h2&gt;

&lt;p&gt;JSONFormatter.online is a free online &lt;a href="http://jsonformatter.online/" rel="noopener noreferrer"&gt;JSON formatter and validator&lt;/a&gt; that lets you view, edit, beautify, and validate your JSON instantly — all from your browser. No ads, no login, no nonsense.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;p&gt;✅ Pretty Print JSON: Automatically format minified or raw JSON into a readable tree view or indented text format.&lt;/p&gt;

&lt;p&gt;🚫 Error Highlighting: Get instant feedback if your JSON is invalid — with helpful error messages.&lt;/p&gt;

&lt;p&gt;🧬 Tree View Explorer: Navigate large JSON objects with collapsible nodes and visual clarity.&lt;/p&gt;

&lt;p&gt;📂 JSON Upload: Paste it, type it, or upload a .json or .json5 file — it supports them all.&lt;/p&gt;

&lt;p&gt;🆚 Compare JSON: Quickly spot differences between two JSON files — ideal for testing or debugging API responses.&lt;/p&gt;

&lt;p&gt;🌐 Works Offline: Thanks to client-side rendering, your data never leaves your browser.&lt;/p&gt;

&lt;p&gt;🖥️ Side-by-Side View: View raw and formatted JSON side-by-side for quick debugging.&lt;/p&gt;

&lt;p&gt;🎯 No Tracking / Privacy-Friendly: No ads, no tracking scripts, no shady third parties.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who Should Use It?
&lt;/h2&gt;

&lt;p&gt;This tool is perfect for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend &amp;amp; Backend Developers dealing with REST/GraphQL APIs&lt;/li&gt;
&lt;li&gt;DevOps Engineers editing large config files&lt;/li&gt;
&lt;li&gt;QA Engineers comparing JSON responses&lt;/li&gt;
&lt;li&gt;Data Scientists cleaning up JSON datasets&lt;/li&gt;
&lt;li&gt;Students learning data structures&lt;/li&gt;
&lt;li&gt;Tech Writers writing API documentation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why Use This Over Others?
&lt;/h2&gt;

&lt;p&gt;There are a ton of &lt;a href="http://jsonformatter.online/" rel="noopener noreferrer"&gt;JSON formatters online&lt;/a&gt; — but many are bloated, slow, ad-ridden, or just ugly. JSONFormatter.online is clean, fast, and focused on developer productivity. Plus, it keeps your data private and local.&lt;/p&gt;

&lt;p&gt;Other tools might charge for side-by-side views or JSON comparison — this one gives it to you free.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>json</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
