<?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: robot1996</title>
    <description>The latest articles on DEV Community by robot1996 (@robot1996).</description>
    <link>https://dev.to/robot1996</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%2F3922578%2Fa0c856bb-e419-47f4-8580-cba7f95e6b2d.png</url>
      <title>DEV Community: robot1996</title>
      <link>https://dev.to/robot1996</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/robot1996"/>
    <language>en</language>
    <item>
      <title>Building a small fan-made Diablo IV loot filter finder</title>
      <dc:creator>robot1996</dc:creator>
      <pubDate>Sun, 10 May 2026 02:58:45 +0000</pubDate>
      <link>https://dev.to/robot1996/building-a-small-fan-made-diablo-iv-loot-filter-finder-9ja</link>
      <guid>https://dev.to/robot1996/building-a-small-fan-made-diablo-iv-loot-filter-finder-9ja</guid>
      <description>&lt;p&gt;When I looked for Diablo IV loot filter presets, I kept running into the same problem: useful filter codes were scattered across videos, Discord posts, forum comments, and build planner notes. It was hard to quickly answer basic questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is there a filter preset for my class?&lt;/li&gt;
&lt;li&gt;Is it meant for leveling, endgame, bossing, or farming?&lt;/li&gt;
&lt;li&gt;Where did the code originally come from?&lt;/li&gt;
&lt;li&gt;Can I copy the import code without digging through a long page?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I built a small web tool: &lt;a href="https://diablo4lootfilter.com/?utm_source=devto&amp;amp;utm_medium=backlink&amp;amp;utm_campaign=launch_cold_start&amp;amp;utm_content=showdev_post" rel="noopener noreferrer"&gt;Diablo4LootFilter&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;It is a fan-made finder for Diablo IV loot filter presets and import codes. The goal is not to replace the original creators. The goal is to make presets easier to discover, with source attribution and a clear path back to the original source.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the tool does
&lt;/h2&gt;

&lt;p&gt;The first version focuses on a simple browse-and-copy flow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;filter presets by class, stage, and farming goal&lt;/li&gt;
&lt;li&gt;view source-attributed preset details&lt;/li&gt;
&lt;li&gt;copy import codes faster&lt;/li&gt;
&lt;li&gt;open the original source when attribution is available&lt;/li&gt;
&lt;li&gt;allow correction or removal requests through the support contact&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I intentionally kept the scope narrow. For a game utility like this, trust matters more than adding too many features early.&lt;/p&gt;

&lt;h2&gt;
  
  
  Product decisions I made
&lt;/h2&gt;

&lt;p&gt;A few choices were important for keeping this acceptable as a community resource rather than a spammy scraper:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Source attribution first&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
If a preset comes from a creator, guide, or public resource, the page should point back to that source.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;No official wording&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
The site is fan-made and is not affiliated with Blizzard. I avoid words like “official”, “approved”, or “verified”.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;No overclaiming import codes&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Some codes may need in-game verification as the season changes. The site should not imply that every code is guaranteed to work forever.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Simple feedback loop&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
If a creator wants attribution changed or a code removed, the site provides a contact path.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Implementation notes
&lt;/h2&gt;

&lt;p&gt;The site is built as a lightweight content/tool page rather than a full community platform. That keeps the first version easy to crawl, easy to index, and easy to update.&lt;/p&gt;

&lt;p&gt;The main technical focus was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fast page load for search traffic&lt;/li&gt;
&lt;li&gt;structured pages for filter detail pages&lt;/li&gt;
&lt;li&gt;event tracking for important actions like filter selection and copy actions&lt;/li&gt;
&lt;li&gt;sitemap and indexability checks before doing any promotion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted to avoid the common launch mistake where you send traffic before you can measure whether people actually use the tool.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I am looking for feedback on
&lt;/h2&gt;

&lt;p&gt;If you play Diablo IV or build small niche tools, I would love feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;whether this finder format is useful&lt;/li&gt;
&lt;li&gt;what metadata matters most for loot filter presets&lt;/li&gt;
&lt;li&gt;whether source attribution is clear enough&lt;/li&gt;
&lt;li&gt;what would make import-code pages more trustworthy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Link: &lt;a href="https://diablo4lootfilter.com/?utm_source=devto&amp;amp;utm_medium=backlink&amp;amp;utm_campaign=launch_cold_start&amp;amp;utm_content=showdev_post" rel="noopener noreferrer"&gt;https://diablo4lootfilter.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Disclaimer: Diablo4LootFilter is a fan-made project and is not affiliated with Blizzard Entertainment.&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>gamedev</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
