<?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: Dcronce</title>
    <description>The latest articles on DEV Community by Dcronce (@run_dmc).</description>
    <link>https://dev.to/run_dmc</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%2F4012445%2F67fd02b8-45fb-43dd-8462-9a435af6f2fa.png</url>
      <title>DEV Community: Dcronce</title>
      <link>https://dev.to/run_dmc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/run_dmc"/>
    <language>en</language>
    <item>
      <title>How to find out if your representative sold you out (in under a minute)</title>
      <dc:creator>Dcronce</dc:creator>
      <pubDate>Thu, 02 Jul 2026 15:24:57 +0000</pubDate>
      <link>https://dev.to/run_dmc/how-to-find-out-if-your-representative-sold-you-out-in-under-a-minute-3e55</link>
      <guid>https://dev.to/run_dmc/how-to-find-out-if-your-representative-sold-you-out-in-under-a-minute-3e55</guid>
      <description>&lt;p&gt;Quick question: do you know how your representative voted on the bill that funded the entire federal government this year?&lt;/p&gt;

&lt;p&gt;Most people don't. Not because they don't care — because finding out is genuinely, unreasonably hard.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;The Consolidated Appropriations Act of 2026 (HR 7148) passed the House &lt;strong&gt;by three votes&lt;/strong&gt; — 217 to 214. Three. That means your representative's single vote mattered enormously, whichever way it went.&lt;/p&gt;

&lt;p&gt;Now try to find out how they voted. Here's the official path:&lt;/p&gt;

&lt;p&gt;Go to Congress.gov and search for the bill (hope you know the bill number)&lt;br&gt;
Open the "Actions" tab and scroll through dozens of procedural entries&lt;br&gt;
Find the right roll call — careful, amended bills have two passage votes per chamber, and the first one you find is usually the wrong one&lt;br&gt;
Follow the link to clerk.house.gov, which is a table of 435 names in a format designed sometime around the Clinton administration&lt;br&gt;
Ctrl+F your rep's name&lt;/p&gt;

&lt;p&gt;That's if you already knew the bill existed, knew its number, and knew what a "motion to concur in the Senate amendment" is. The information is public. It just isn't accessible. Those are not the same thing.&lt;/p&gt;

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

&lt;p&gt;I'm a solo developer, and this bothered me enough that I built NewsClear — a free civic-transparency tool that makes this a couple of taps:&lt;/p&gt;

&lt;p&gt;Go to newsclear.org (the Government section is the landing page)&lt;br&gt;
Search the bill or tap through the status pipeline (Introduced › Committee › House › Senate › President › Law)&lt;br&gt;
Open the bill&lt;/p&gt;

&lt;p&gt;You get, on one card:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A plain-language summary&lt;/strong&gt; of what the bill actually does — not the legalese&lt;br&gt;
&lt;strong&gt;The recorded vote per chamber&lt;/strong&gt; — HR 7148 shows House 217–214, Senate 71–29&lt;br&gt;
&lt;strong&gt;A "see who voted" link&lt;/strong&gt; straight to the official clerk.house.gov / senate.gov record&lt;br&gt;
&lt;strong&gt;A neutral breakdown:&lt;/strong&gt; the bill's stated purpose, who it affects, and the strongest argument from each side — attributed to supporters and critics, never the app's own verdict&lt;/p&gt;

&lt;p&gt;And when there's no recorded vote, it says so honestly: a lot of bills pass by voice vote or unanimous consent, and no tally exists. Most sites either hide that or show something misleading. I label it "passed by voice vote — no recorded tally," because pretending data exists when it doesn't is its own kind of bias.&lt;/p&gt;

&lt;p&gt;Here's the live example if you want to see it — tap the card:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://newsclear.org/bill/hr-7148" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fv0qm6icqz6jyil380vy7.png" alt="HR 7148 on NewsClear — the 217–214 House vote" width="800" height="761"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or the direct link: &lt;a href="https://newsclear.org/bill/hr-7148" rel="noopener noreferrer"&gt;newsclear.org/bill/hr-7148&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  A few things I learned building this
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Amended bills will burn you.&lt;/strong&gt; A bill that gets amended in the second chamber comes back for a second passage vote in the origin chamber. My vote parser originally grabbed the first passage vote it found and showed 341–88 for HR 7148 — the vote on the original House version, not the 217–214 final. The fix: always take the latest-dated passage vote across all passage-vote types. If you're parsing congressional actions, this will get you eventually.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"No vote data" is often correct data&lt;/strong&gt;. Many enacted bills genuinely have no Yea/Nay numbers. Voice votes and unanimous consent are normal procedure, especially for uncontroversial bills. Design for the honest null.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Roll-call URLs are learnable but weird.&lt;/strong&gt; House: clerk.house.gov/Votes/{YEAR}{ROLLNUM}. Senate: a longer format with the congress number, session (odd year = 1, even = 2), and a 5-digit-padded roll number. Once you have those, you can deep-link every recorded vote to its official source.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;A representative democracy only works if you can check what your representatives actually did — not what they said, not what a pundit said they did. That check should take a minute, not a research session.&lt;/p&gt;

&lt;p&gt;NewsClear is free, there's no login required to look anything up, and it's a one-person project with no VC behind it. There's also a news side that clusters coverage of the same event from multiple sources into one neutral rewrite with a trust score, but the government side is the part I care about most.&lt;/p&gt;

&lt;p&gt;If you try it, I'd genuinely love feedback — especially on whether the neutrality holds up when you look at a bill you have strong feelings about. That's the hardest test.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;newsclear.org&lt;/strong&gt; — built with React, Supabase, and Netlify by one person who thinks this stuff should be easier.&lt;/p&gt;

</description>
      <category>civictech</category>
      <category>government</category>
      <category>opendata</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
