<?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: Harsh Raj</title>
    <description>The latest articles on DEV Community by Harsh Raj (@harsh_raj_899f12010e25de2).</description>
    <link>https://dev.to/harsh_raj_899f12010e25de2</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%2F4128238%2F8c108c8a-8a26-4f25-aa0c-9f16607381da.jpg</url>
      <title>DEV Community: Harsh Raj</title>
      <link>https://dev.to/harsh_raj_899f12010e25de2</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/harsh_raj_899f12010e25de2"/>
    <language>en</language>
    <item>
      <title>A Simple Trick to Compare Two Lists Online (No Excel, No Code)</title>
      <dc:creator>Harsh Raj</dc:creator>
      <pubDate>Wed, 16 Sep 2026 14:39:05 +0000</pubDate>
      <link>https://dev.to/harsh_raj_899f12010e25de2/a-simple-trick-to-compare-two-lists-online-no-excel-no-code-1dfc</link>
      <guid>https://dev.to/harsh_raj_899f12010e25de2/a-simple-trick-to-compare-two-lists-online-no-excel-no-code-1dfc</guid>
      <description>&lt;p&gt;If you've ever had two lists — emails, URLs, SKUs, SQL query outputs, XML nodes, whatever — and needed to know what's different between them, you know the drill. You either:&lt;/p&gt;

&lt;p&gt;Paste both into Excel and wrestle with VLOOKUP or MATCH formulas,&lt;br&gt;
Write a quick Python/JS script just to diff two arrays,&lt;br&gt;
Or manually eyeball two columns like it's 2005.&lt;br&gt;
All of these work, but they're overkill for a task that should take 10 seconds.&lt;/p&gt;

&lt;p&gt;The problem in real life&lt;br&gt;
I run into this constantly:&lt;/p&gt;

&lt;p&gt;Comparing two exports of user emails to find who's new or missing&lt;br&gt;
Diffing two lists of URLs after a site migration to catch broken links&lt;br&gt;
Checking two SQL query results for mismatched rows&lt;br&gt;
Comparing XML/config files to spot what changed between versions&lt;br&gt;
Excel formulas work but are fiddly and easy to get wrong (off-by-one references, case sensitivity, extra whitespace breaking the match). A script works but means opening an editor, writing boilerplate, and running it — for what is fundamentally a copy-paste-compare task.&lt;/p&gt;

&lt;p&gt;The fast way: paste and compare&lt;br&gt;
I've been using &lt;a href="https://compare2lists.online/" rel="noopener noreferrer"&gt;Compare2Lists&lt;/a&gt; — a free, no-signup web tool that does exactly one thing well: you paste List A on one side, List B on the other, hit compare, and it instantly shows you:&lt;/p&gt;

&lt;p&gt;What's common to both lists&lt;br&gt;
What's only in List A&lt;br&gt;
What's only in List B&lt;br&gt;
No installs, no scripts, no account. It handles large lists, ignores extra whitespace/case issues that usually trip up manual comparisons, and works for any plain-text list — emails, URLs, IDs, SQL output, you name it.&lt;/p&gt;

&lt;p&gt;Why this beats the "just write a script" instinct&lt;br&gt;
For a one-off comparison, spinning up a script costs more time than it saves. A browser-based tool like this is the right tool for the job when:&lt;/p&gt;

&lt;p&gt;You need an answer right now, not after writing/debugging a script&lt;br&gt;
You're not at your dev machine (works on any device with a browser)&lt;br&gt;
You want to hand the task to someone non-technical on your team&lt;br&gt;
Try it yourself&lt;br&gt;
Next time you catch yourself opening Excel or a code editor just to diff two lists, try &lt;a href="https://compare2lists.online/" rel="noopener noreferrer"&gt;compare2lists.online&lt;/a&gt; instead — paste, compare, done.&lt;/p&gt;

&lt;p&gt;Curious what tools/tricks other folks here use for quick list diffing — Excel formulas, diff, jq, something else? Drop it in the comments!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>nocode</category>
    </item>
  </channel>
</rss>
