<?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: milasocial</title>
    <description>The latest articles on DEV Community by milasocial (@milasocial).</description>
    <link>https://dev.to/milasocial</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%2F3815478%2F94a01a2c-125d-481c-bfb6-b388b4a81616.png</url>
      <title>DEV Community: milasocial</title>
      <link>https://dev.to/milasocial</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/milasocial"/>
    <language>en</language>
    <item>
      <title>I Built a Real-Time Turkish Inflation Tracker — Here's What the Data Actually Shows</title>
      <dc:creator>milasocial</dc:creator>
      <pubDate>Sat, 11 Apr 2026 06:14:55 +0000</pubDate>
      <link>https://dev.to/milasocial/i-built-a-real-time-turkish-inflation-tracker-heres-what-the-data-actually-shows-52dp</link>
      <guid>https://dev.to/milasocial/i-built-a-real-time-turkish-inflation-tracker-heres-what-the-data-actually-shows-52dp</guid>
      <description>&lt;p&gt;I Built a Real-Time Turkish Inflation Tracker — Here's What the Data Actually Shows&lt;/p&gt;

&lt;p&gt;Turkey has been one of the most closely watched inflation case studies of the past decade. Peak annual CPI hit &lt;strong&gt;85%&lt;/strong&gt; in late 2022 — levels not seen since the late 1990s. By March 2026, the official TUIK figure had cooled to &lt;strong&gt;30.87%&lt;/strong&gt;, but that number still masks a lot of structural complexity worth unpacking for developers and data enthusiasts.&lt;/p&gt;

&lt;p&gt;I've been maintaining &lt;a href="https://enflasyonhesaplama.com" rel="noopener noreferrer"&gt;enflasyonhesaplama.com&lt;/a&gt; — a Turkish inflation calculator and news platform — and wanted to share both the technical pipeline behind it and some of the more interesting data patterns we've surfaced.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Data Problem with Turkish Inflation
&lt;/h2&gt;

&lt;p&gt;The challenge with tracking Turkish CPI isn't access — TUIK publishes monthly data reliably. The challenge is &lt;strong&gt;context&lt;/strong&gt;. A single annual percentage is almost meaningless without:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Category breakdowns (education inflation running at ~52% YoY while clothing sits at ~7%)&lt;/li&gt;
&lt;li&gt;Historical comparison points (30% sounds bad; vs. the 1998 peak of 99%, it's a different story)&lt;/li&gt;
&lt;li&gt;Purchasing power framing (what did 1,000 TL buy in 2005 vs. today?)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the gap the calculator was built to fill. &lt;a href="https://enflasyonhesaplama.com" rel="noopener noreferrer"&gt;enflasyonhesaplama.com&lt;/a&gt; translates abstract CPI numbers into concrete TL equivalents — far more useful for salary negotiations, contract indexing, or just understanding your own financial history. You can see a concrete example of this in the &lt;a href="https://enflasyonhesaplama.com/2005-2026-alim-gucu-analizi" rel="noopener noreferrer"&gt;2005–2026 purchasing power analysis&lt;/a&gt;, where 1,000 TL from 2005 maps to roughly 32,914 TL in today's money.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Architecture: React + Express + RSS Pipeline
&lt;/h2&gt;

&lt;p&gt;The site runs on a &lt;strong&gt;React/Vite&lt;/strong&gt; frontend with an Express backend. For the news section, we pull from Turkish economic RSS feeds, process articles through the Claude API for Turkish-language summarization, and generate OG images via &lt;strong&gt;Satori&lt;/strong&gt; for social sharing.&lt;/p&gt;

&lt;p&gt;Here's the core of the news ingestion flow:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;/api/news&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;req&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;feed&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;parser&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;parseURL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://www.dunya.com/rss/ekonomi.xml&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;articles&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nb"&gt;Promise&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;all&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="nx"&gt;feed&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;items&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;slice&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;map&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;summary&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;generateSummary&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;content&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;ogImage&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;generateOGImage&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;summary&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;link&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;link&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;pubDate&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;item&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;pubDate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;ogImage&lt;/span&gt; &lt;span class="p"&gt;};&lt;/span&gt;
    &lt;span class="p"&gt;})&lt;/span&gt;
  &lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;articles&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The OG image generation with Satori has been particularly useful — Turkish financial news gets shared heavily on WhatsApp and X, and proper preview images increase click-through significantly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Schema Markup for News: What Actually Works
&lt;/h2&gt;

&lt;p&gt;For Google News indexing, the &lt;code&gt;NewsArticle&lt;/code&gt; JSON-LD schema is non-negotiable. Here's the minimal working implementation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"application/ld+json"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@context&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://schema.org&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;NewsArticle&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;headline&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Mart 2026 Enflasyon Verisi: %30.87&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;datePublished&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;2026-04-03T09:00:00+03:00&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;dateModified&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;2026-04-03T09:00:00+03:00&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;author&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Organization&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;EnflasyonHesaplama&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://enflasyonhesaplama.com&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;publisher&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Organization&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;EnflasyonHesaplama&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;logo&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;ImageObject&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://enflasyonhesaplama.com/logo.png&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;One thing that tripped us up early: Google's News Publisher Center requires &lt;strong&gt;publisher verification&lt;/strong&gt; separate from Search Console. If your articles aren't appearing in Google News despite correct schema, that's often the missing step.&lt;/p&gt;




&lt;h2&gt;
  
  
  The March 2026 Data — Key Takeaways
&lt;/h2&gt;

&lt;p&gt;The latest TUIK release came in at &lt;strong&gt;30.87% annual, +1.94% monthly&lt;/strong&gt; — the softest monthly reading in three months. A few things stand out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Education: +51.97% YoY&lt;/strong&gt; — consistently the highest-pressure segment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Housing/utilities: +42.06% YoY&lt;/strong&gt; — gradually decelerating from a 2025 peak&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transport: +34.35% YoY&lt;/strong&gt; — jumped sharply from 28.86% in February&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clothing: +6.79% YoY&lt;/strong&gt; — the clearest sign of consumer demand compression&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Also worth noting: January 2026 marked a significant methodology shift — TUIK rebased from 2003 to 2025 and revised basket weights from household surveys to national accounts data. This makes pre/post January comparisons tricky for anyone building long-run charts.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Rent Calculator — A Specific Use Case
&lt;/h2&gt;

&lt;p&gt;One of the most-used features on the site is the &lt;a href="https://enflasyonhesaplama.com/kira-artis-orani" rel="noopener noreferrer"&gt;rent increase rate calculator&lt;/a&gt;. Turkish rental law (Borçlar Kanunu, Article 344) caps annual rent increases at the trailing 12-month TUFE average — so for millions of tenants and landlords, this isn't an abstract economic metric, it's a legal constraint with direct financial impact.&lt;/p&gt;

&lt;p&gt;As of April 2026, that cap sits at &lt;strong&gt;32.82%&lt;/strong&gt;. When inflation was running at 60–80%, the government imposed an emergency 25% ceiling (June 2022 – July 2024) that protected tenants significantly. Since that cap was lifted, the dynamic has shifted — landlords who locked in below-market rates during the spike are now negotiating harder.&lt;/p&gt;

&lt;p&gt;The calculator sees a consistent traffic spike every month on TUIK announcement day.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;We're working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Category-level CPI tracking&lt;/strong&gt; — breaking out the 12 main COICOP categories into individual trend charts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Wage deflation analysis&lt;/strong&gt; — comparing minimum wage increases against realized CPI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API endpoint&lt;/strong&gt; — a simple JSON API for developers who want programmatic access to Turkish CPI history&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're building anything in the Turkish fintech or economic data space, or just curious about the inflation tracking pipeline, drop a comment. Happy to go deeper on any part of the architecture.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;&lt;a href="https://enflasyonhesaplama.com" rel="noopener noreferrer"&gt;enflasyonhesaplama.com&lt;/a&gt; — Turkish inflation calculator and economic news, updated monthly with TUIK data.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>python</category>
      <category>dataviz</category>
      <category>economics</category>
    </item>
    <item>
      <title>I Built 100+ Free Online Calculators in Portuguese – Here's What I Learned</title>
      <dc:creator>milasocial</dc:creator>
      <pubDate>Mon, 09 Mar 2026 20:52:10 +0000</pubDate>
      <link>https://dev.to/milasocial/i-built-100-free-online-calculators-in-portuguese-heres-what-i-learned-45cn</link>
      <guid>https://dev.to/milasocial/i-built-100-free-online-calculators-in-portuguese-heres-what-i-learned-45cn</guid>
      <description>&lt;p&gt;When I started building &lt;a href="https://calculacentro.com" rel="noopener noreferrer"&gt;CalculaCentro&lt;/a&gt;, I had one goal: create a clean, fast, free calculator site in Portuguese that actually works on mobile.&lt;/p&gt;

&lt;p&gt;Most calculator sites I found were either in English, full of ads, or broken on phones. Brazilian and Portuguese users deserved better.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;Over the past months, we've shipped &lt;strong&gt;100+ calculators&lt;/strong&gt; across categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Finance&lt;/strong&gt;: compound interest, loan payments, ROI, inflation adjustment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Taxes&lt;/strong&gt;: Brazilian IR, INSS, FGTS, MEI, Simples Nacional&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Health&lt;/strong&gt;: BMI, BMR, calorie needs, ideal weight&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Math&lt;/strong&gt;: fractions, percentages, rule of three, equations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Converters&lt;/strong&gt;: currency, units, temperature&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Technical Decisions
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No frameworks for calculators&lt;/strong&gt; – Each calculator is a standalone HTML/JS module. This keeps load times under 1s even on 3G.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Progressive enhancement&lt;/strong&gt; – Works without JavaScript for basic inputs, enhanced with JS for real-time results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mobile-first&lt;/strong&gt; – 70%+ of our users are on phones. Every layout was designed at 375px width first.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Portuguese SEO is underserved&lt;/strong&gt; – There's far less competition for Portuguese calculator keywords than English equivalents.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Users want explanations&lt;/strong&gt; – The most-visited pages explain &lt;em&gt;how&lt;/em&gt; the calculation works, not just the result.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Speed matters more than features&lt;/strong&gt; – A fast, simple calculator beats a slow, feature-rich one every time.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Check out &lt;a href="https://calculacentro.com" rel="noopener noreferrer"&gt;CalculaCentro&lt;/a&gt; – fully free, no signup required.&lt;/p&gt;

&lt;p&gt;Would love feedback from the dev community on UX, performance, or anything else!&lt;/p&gt;

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