<?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: Israr Saleem</title>
    <description>The latest articles on DEV Community by Israr Saleem (@israr_saleem).</description>
    <link>https://dev.to/israr_saleem</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%2F3937396%2F0f825202-995a-46ce-a2b2-526e01ef7432.jpeg</url>
      <title>DEV Community: Israr Saleem</title>
      <link>https://dev.to/israr_saleem</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/israr_saleem"/>
    <language>en</language>
    <item>
      <title>I Built a Numerology Calculator as a Side Project - Here Is the Tech and SEO Side of It</title>
      <dc:creator>Israr Saleem</dc:creator>
      <pubDate>Mon, 18 May 2026 06:58:07 +0000</pubDate>
      <link>https://dev.to/israr_saleem/i-built-a-numerology-calculator-as-a-side-project-here-is-the-tech-and-seo-side-of-it-1ajf</link>
      <guid>https://dev.to/israr_saleem/i-built-a-numerology-calculator-as-a-side-project-here-is-the-tech-and-seo-side-of-it-1ajf</guid>
      <description>&lt;p&gt;This is a bit of a different post for dev.to. Not a coding tutorial &lt;br&gt;
exactly, more of a behind the scenes look at a small tool I shipped &lt;br&gt;
recently.&lt;/p&gt;

&lt;p&gt;I built checkmynumerology.com, a free name numerology calculator &lt;br&gt;
that supports both Pythagorean and Chaldean systems. The whole &lt;br&gt;
thing runs client side, no backend, no database, no user accounts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Client Side Only
&lt;/h2&gt;

&lt;p&gt;Numerology is personal. People are entering their full legal name &lt;br&gt;
into this thing. The least I could do was make sure nothing leaves &lt;br&gt;
their browser. All calculations happen in JavaScript on the client, &lt;br&gt;
nothing is sent to any server, nothing is logged.&lt;/p&gt;

&lt;p&gt;This also made the architecture dead simple. Static site, fast &lt;br&gt;
load, no auth layer to maintain.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Calculation Logic
&lt;/h2&gt;

&lt;p&gt;Pythagorean is straightforward. Map each letter to a number &lt;br&gt;
1 through 9 in alphabetical order, sum them, reduce to a single &lt;br&gt;
digit unless you hit 11, 22, or 33 which are Master Numbers and &lt;br&gt;
stay as is.&lt;/p&gt;

&lt;p&gt;Chaldean is slightly more interesting because the mapping is &lt;br&gt;
not alphabetical. Each letter has a value based on its sound &lt;br&gt;
frequency, and 9 is never assigned to any letter. The reduction &lt;br&gt;
logic is the same but you are working from a different lookup table.&lt;/p&gt;

&lt;p&gt;I built both lookup tables and ran the same name through both &lt;br&gt;
to make sure results matched established references before shipping.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three Outputs Per Calculation
&lt;/h2&gt;

&lt;p&gt;Expression Number: sum of all letters&lt;/p&gt;

&lt;p&gt;Soul Urge Number: sum of vowels only&lt;/p&gt;

&lt;p&gt;Personality Number: sum of consonants only&lt;/p&gt;

&lt;p&gt;Each has its own interpretation copy which I wrote manually, &lt;br&gt;
no AI slop, because the interpretations needed to be clear and &lt;br&gt;
practical rather than vague and mystical.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Would Do Differently
&lt;/h2&gt;

&lt;p&gt;Honestly the biggest lesson was on the content side. I underestimated &lt;br&gt;
how much explaining the tool needs. People do not just want a number, &lt;br&gt;
they want to understand what it means and why. The FAQ and explanation &lt;br&gt;
sections took longer than the calculator itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Site
&lt;/h2&gt;

&lt;p&gt;If you want to poke around: &lt;a href="https://checkmynumerology.com/&amp;lt;br&amp;gt;%0A![%20](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qvj7tpy317xkqt5oc58l.png)" rel="noopener noreferrer"&gt;checkmynumerology&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is free, no sign-up, open to anyone. Feedback welcome.&lt;/p&gt;

</description>
      <category>saas</category>
      <category>numerology</category>
      <category>wordpress</category>
      <category>html</category>
    </item>
  </channel>
</rss>
