Uh oh. We could not find that post.
Well, that's a little embarrassing. We're sorry, but we could not find that post you're looking for. But please do enjoy all of our other wonderful articles available. Again, we're sorry.
Login
Register
Newsletter
RSS Feed
Contact us
Show
Latest
Popular
Categories
Discounts
Deals
Coupons
Privacy Policy
Terms of Service
DMCA
Jul 13th, 2025

Big Deal - Best Deals, Discounts, and Offers Online

Show HN: Leap – Full-stack AI developer agent that deploys to AWS

We just launched Leap, an AI developer agent that helps you build and deploy apps with real backends to your own AWS or GCP cloud.<p>We built it because every AI app builder we tried fell short. They were fine for prototypes, but not for real systems. No support for proper backend infra, no isolated test environments, and sometimes shockingly no way to own your code.<p>We build Leap to be more appropriate for developers:<p>- Connect GitHub to put your code in a repo you control - Work with code generation using pull request–style revisions with diffs - Get Architecture diagrams and API docs for your app as you build - Develop using an isolated preview environment - Deploy either via open source tooling or the integration with Encore Cloud for automated deploys to AWS&#x2F;GCP<p>Leap uses Claude 4 Sonnet and runs on our open-source framework Encore.ts[1], which provides declarative infrastructure (like a cloud-agnostic CDK-layer). We found the framework to be a good fit for LLM code generation as both application logic and infra is defined in the same context, and the declarative nature makes it less error prone.<p>Right now we think Leap is best for starting new projects or building new isolated services in existing larger systems.<p>The biggest challenge right now is dealing with larger codebases as models struggle to cope with large contexts. And while we&#x27;re doing a few things to optimize this, we intentionally made it so that you can switch to your IDE any time and keep working there. To run your app locally you only need the open Encore CLI installed, which also can be used to build the app as a docker container.<p>We&#x27;re just getting started and would love your feedback if you try it. And also it would be helpful to understand what would make this useful for you?<p>- You can try it here: <a href="https:&#x2F;&#x2F;leap.new" rel="nofollow">https:&#x2F;&#x2F;leap.new</a> - Here&#x27;s the launch blog post and video: <a href="https:&#x2F;&#x2F;leap.new&#x2F;launched" rel="nofollow">https:&#x2F;&#x2F;leap.new&#x2F;launched</a><p>[1]<a href="https:&#x2F;&#x2F;github.com&#x2F;encoredev&#x2F;encore">https:&#x2F;&#x2F;github.com&#x2F;encoredev&#x2F;encore</a>

Ask HN: How to Deal with a Bad Manager?

Need some real life advice and stories from experienced folks.<p>I’ve been working for few years in a large company (think faang as a good approximation) in one of the departments under 1 manager. Relatively good one.<p>Then by the will of higher ups some teams got drastically reorged and I ended up in a different team with a new manager. Terrible one.<p>Micromanagement, lack of vision, poor communication, poor planning, zero support, full package. About half the team share similar view. The other half seems like just playing along.<p>To add more context the overall management culture in the company is neither toxic nor great. There is definitely hierarchy and go over her head doesn’t sound like a good idea. Internal movements are basically non existent.<p>I still care about the mission and about what I do. Though not as much as before this all happened.<p>What would you do in my shoes to make the best of the situation?

Ask HN: Contact form spam despite trying everything

I&#x27;m at my wit&#x27;s end with contact form spam on my sites. I&#x27;ve tried:<p>CleanTalk - caught some spam but still getting through, plus the monthly cost adds up Turnstile - better UX than reCAPTCHA but bots seem to be solving it reCAPTCHA v2 - effective but users hate the image challenges reCAPTCHA v3 - invisible but I&#x27;m still getting 20-30 spam submissions daily even with strict thresholds<p>I&#x27;ve also implemented honeypots, rate limiting, basic keyword filtering, and email validation (both format checking and MX record verification). The spam is getting more sophisticated - proper English, realistic email addresses that actually exist, even passing behavioral checks. What I&#x27;m curious about: How does Hacker News handle spam so effectively? I rarely see spam comments here, and there&#x27;s no visible CAPTCHA. Are you using something custom, or is there a service&#x2F;approach I&#x27;m missing? For context, I get about 500 legitimate form submissions per month, so I need something that won&#x27;t block real users while stopping the bot flood. What&#x27;s worked best for your sites? Especially interested in hearing from anyone who&#x27;s dealt with determined, human-like spam at scale.

Technical co-founder, built everything. Offered 4%. Oof

I had done all the work, paid for everything, built all of it, and now wasn’t considered a real co-founder even though I did co-founder work because I might leave at some point, but wouldn’t leave them hanging.There were no deliverables without me. There was no code, no UX, no logic. I hadn’t launched it yet, so I walked away and kept the code and IP (they have never seen a line of code and didn’t have access to my repo).A few days later, a barista at the cafe I used to work from told me they we

Ask HN: How did you handle the recent Google Cloud outage with your customers?

Curious to learn how others dealt with the recent Google Cloud outage? especially in terms of managing customer communication and expectations<p>what did you say to your clients? how did you &quot;put out the fire&quot; while things were still down?<p>any best practices or lessons learned you&#x27;d be willing to share?<p>thanks!

Show HN: I Processed Brazil's 85GB Open Company Registry So You Don't Have To

Last year, I needed to find all software companies in São Paulo for a project. The good news: Brazil publishes all company registrations as open data at dados.gov.br. The bad news: it&#x27;s 85GB of ISO-8859-1 encoded CSVs with semicolon delimiters, decimal commas, and dates like &quot;00000000&quot; meaning NULL. My laptop crashed after 4 hours trying to import just one file.<p>So I built a pipeline that handles this mess: <a href="https:&#x2F;&#x2F;github.com&#x2F;cnpj-chat&#x2F;cnpj-data-pipeline">https:&#x2F;&#x2F;github.com&#x2F;cnpj-chat&#x2F;cnpj-data-pipeline</a><p>THE PROBLEM NOBODY TALKS ABOUT<p>Every Brazilian startup eventually needs this data - for market research, lead generation, or compliance. But everyone wastes weeks: - Parsing &quot;12.345.678&#x2F;0001-90&quot; vs &quot;12345678000190&quot; CNPJ formats - Discovering that &quot;00000000&quot; isn&#x27;t January 0th, year 0 - Finding out some companies are &quot;founded&quot; in 2027 (yes, the future) - Dealing with double-encoded UTF-8 wrapped in Latin-1<p>WHAT YOU CAN NOW DO IN SQL<p>Find all fintechs founded after 2020 in São Paulo:<p>SELECT COUNT(*) FROM estabelecimentos e JOIN empresas emp ON e.cnpj_basico = emp.cnpj_basico WHERE e.uf = &#x27;SP&#x27; AND e.cnae_fiscal_principal LIKE &#x27;64%&#x27; AND e.data_inicio_atividade &gt; &#x27;2020-01-01&#x27; AND emp.porte IN (&#x27;01&#x27;, &#x27;03&#x27;);<p>Result: 8,426 companies (as of Jun 2025)<p>SURPRISING THINGS I FOUND<p>1. The 3am Company Club: 4,812 companies were &quot;founded&quot; at exactly 3:00:00 AM. Turns out this is a database migration artifact from the 1990s.<p>2. Ghost Companies: ~2% of &quot;active&quot; companies have no establishments (no address, no employees, nothing). They exist only on paper.<p>3. The CNAE 9999999 Mystery: 147 companies have an economic activity code that doesn&#x27;t exist in any reference table. When I tracked them down, they&#x27;re all government entities from before the classification system existed.<p>4. Future Founders: 89 companies have founding dates in 2025-2027. Not errors - they&#x27;re pre-registered for future government projects.<p>5. The MEI Boom: Micro-entrepreneurs (MEI) grew 400% during COVID. You can actually see the exact week in March 2020 when registrations spiked.<p>TECHNICAL BITS<p>The pipeline: - Auto-detects your RAM and adapts strategy (streaming for &lt;8GB, parallel for &gt;32GB) - Uses PostgreSQL COPY instead of INSERT (10x faster) - Handles incremental updates (monthly data refresh) - Includes missing reference data from SERPRO that official files omit<p>Processing 60M companies: - VPS (4GB RAM): ~8 hours - Desktop (16GB): ~2 hours - Server (64GB): ~1 hour<p>THE CODE<p>It&#x27;s MIT licensed: <a href="https:&#x2F;&#x2F;github.com&#x2F;cnpj-chat&#x2F;cnpj-data-pipeline">https:&#x2F;&#x2F;github.com&#x2F;cnpj-chat&#x2F;cnpj-data-pipeline</a><p>One command setup: docker-compose --profile postgres up --build<p>Or if you prefer Python: python setup.py # Interactive configuration python main.py # Start processing<p>WHY OPEN SOURCE THIS?<p>I&#x27;ve watched too many devs waste weeks on this same problem. One founder told me they hired a consultancy for R$30k to deliver... a broken CSV parser. Another spent 2 months building ETL that processes 10% of the data before crashing.<p>The Brazilian tech ecosystem loses tons of hours reinventing this wheel. That&#x27;s time that could be spent building actual products.<p>COMMUNITY RESPONSE<p>I&#x27;ve shared this with r&#x2F;dataengineering and r&#x2F;brdev, and the response has been incredible - over 50k developers have viewed it, and I&#x27;ve already incorporated dozens of improvements from their feedback. The most common reaction? &quot;I wish I had this last month when I spent 2 weeks fighting these files.&quot;<p>QUESTIONS FOR HN<p>1. What other government datasets are this painful? I&#x27;m thinking of tackling more.<p>2. For those who&#x27;ve worked with government data - what&#x27;s your worst encoding&#x2F;format horror story?<p>3. Is there interest in a hosted API version? The infrastructure would be ~$100&#x2F;month to serve queries.<p>The worst part? This data has been &quot;open&quot; since 2012. But open != accessible. Sometimes the best code is the code that deals with reality&#x27;s mess so others don&#x27;t have to.

I built an app to backup Live Photos from iPhone to external hard drives

The manual approach of creating folders and selecting photos one by one is tedious, and keeping up with new photos becomes overwhelmingSo I built an app called BackiGo that addresses this exact pain point - it allows direct backup of Live Photos from iPhone to external hard drives, no Mac needed.What makes it useful:Backs up your Live Photos with all the motion intactCan restore Live Photos back to your iPhone camera rollSuper easy to backup new photosYou can browse and view all your saved Live

MVP in 15 days and why strangers became angels

How we leveraged Events, LinkedIn, Open-source, free accounts. With 0 Strategy. Just plain curiosity to learn &amp; solve a problem.<p>Curiosity &gt; Strategy<p>We didn&#x27;t know words MVP, pitchdeck nor about fundraise, co-founder. Startups, VC, angels world was alien to me....<p>So here&#x27;s how we started. We would ping strangers on LinkedIn &amp; events that I joined. I even spent Indian Rupees 1L ($4900 in PPP terms) on paid events&#x2F;niche trainings.<p>I’ve never hesitated to spend on my Curiosity. It pays back in long run.<p>We helped strangers without expectations. Still ppl won&#x27;t respond... I wondered why? These people posted they needed help.<p>But this pain paid back in long run. You learn this is how the world works. You reach 20 — if 2-5 respond, you&#x27;re lucky.<p>Deal that crashed<p>I helped 1 wanna-be US VC raising $100M fund, 2 wanna-be startups &amp; 2 folks with overlap to our idea. Since we weren&#x27;t sure about any idea — VC thing looked exciting.<p>We helped with what we know best — tech, connects — without even knowing what we wanted in return. Introduced 7–10 connects, drafted tech, designed tech teams — for free.<p>It was genuine collab evolving on both sides. Wanna-be-VC wanted us in plum VC role — but that felt like employment. So the deal crashed.<p>Got first Angel without pitch deck<p>One person we helped on LinkedIn gave us offer to be our first angel — when we weren’t even raising. We didn’t know the word “Pitch Deck”. He’s investing in our new round too.<p>He did it because his idea overlapped with ours &amp; he liked how we navigated the problem while helping him.<p>MVP In 15 days<p>At an event, I pinged folks who might want help or become co-founders. Shared idea with a L&#x27;Oréal exec. He said — let’s build &amp; take it to L&#x27;Oréal.<p>Achal &amp; I knew backend&#x2F;building like water. But we hadn’t worked in frontends. Still, we built it in 15 days.<p>Another hope crashed<p>L&#x27;Oréal guy said — colors&#x2F;aesthetics aren’t up to mark. Can’t take this to L&#x27;Oréal. We said — that’s why this is MVP. By then, we had our first angel on board.<p>Finding way out — there’s no straight road<p>We decided to take MVP to market, aesthetics or not. Put some money to validate market (&lt;$12k). Discounted 7 invoices semi-automated. GST number borrowed from 1st investor.<p>But we had no way forward. Angel tells us — put pitch deck. Achal &amp; I had detailed tech &amp; biz plan already (shabby, but whatever).<p>We were validating, attending events, helping, talking, learning, wrapping from Germany &amp; US to India — all at once.<p>Luck meets those who dare to go out<p>An ex-colleague who had seen my paper vision introduced us to his Razorpay classmate. He linked us to Razorpay’s investment team — they helped refine our deck.<p>They said — what you’re building is called “Buy Now, Pay Later” with AI. We didn’t know that. We reached this word by seeking, reaching...<p>It came from someone who had access to latest ideas. Now our pitch deck aligned to a hot market. We didn’t know — others told us.<p>Same product, new story. The world framed it for us.<p>2 months later<p>We had:<p>Pitch deck<p>Validated MVP<p>Team<p>Hottest product<p>Raised ₹80L ($105k) in first round. Raised $68k more later. Raising another round now with more commitments — all without strategy.<p>Without events, active reachout — it might’ve taken 2 years &amp; 3x more capital to reach here. We had a working MVP, deck, team &amp; early investors.<p>What we did:<p>Shared ideas openly<p>Put it on a webpage<p>Didn’t try to be perfect<p>Validated, moved forward<p>Reached out, helped freely, expected nothing<p>Build. Fund. Collaborate. Go to market.

Ask HN: AWS API Billing, Credits, and Users

I have a question for people who have dealt with APIs on AWS,for my startup I have someone helping with our AWS migration, but he’s raised the concerns shown in the text below. In short what’s the best software for managing billing, credits, and users for an API?<p>1. User Management System:<p><pre><code> User registration API with email verification, Login&#x2F;logout with JWT token management, Password reset functionality, User profile management, API key generation and rotation, Account deletion and data cleanup. </code></pre> 2. Payment &amp; Billing Infrastructure:<p><pre><code> Stripe customer creation and management, Payment intent creation and processing, Multiple credit package options, Payment method storage and updating, Invoice generation and history, Failed payment retry logic, Refund processing system, Tax calculation integration, Payment analytics dashboard. </code></pre> 3. Credit Management System:<p><pre><code> Credit balance tracking in real-time, Credit purchase and allocation, Credit deduction with job submission, Credit refund for failed jobs, Credit expiration policies, Usage analytics and reporting, Credit transfer between accounts (if needed), Promotional credit allocation.</code></pre>

Anyone drowning in emails? I'd love to learn how you deal with it

Hey everyone, I’m a college student building a small side project around managing email, but I realized I’m not the best person to understand what the real pain feels like… because I don’t get that many emails myself hahaIf you’re someone who constantly feels overwhelmed by your inbox, or if replying to emails takes up way too much of your time, I’d really love to hear from you. I’m not trying to pitch or sell anything, just trying to learn from real people who deal with this daily as I really h

Show HN: Compears – Compare Grocery prices across Supermarkets

Build a project that tracks supermarket prices across the EU region (for now); the aim is to aid shoppers find the best deals across supermarkets

Black Friday Cat GIF by Looney Tunes

Black Friday Cat GIF by Looney Tunes

Season 3 Starz GIF by Outlander

Season 3 Starz GIF by Outlander

bird love GIF by Tuesday Morning

bird love GIF by Tuesday Morning

My 7 Favorite Tips and Tricks I Use to Save Money — Traveling on a Tight Budget

7 Tips and Tricks for Affordable Travel on Any Budget

US online spending surges $24.1 billion as steep discounts boost sales, Adobe says

Online spending soared $24.1 billion across U.S. retailers during the stretch from July 8 to 11 – dubbed "Black Friday in Summer", outpacing Adobe Analytics' prior forecast, as eager shoppers rushed ...

Wealthy Families Are Buying Out-of-State Homes To Snag Tuition Discounts at Top Universities

Buying a home in the state where your child will attend college can mean major discounts on tuition—and more families are ...

Amazon extends Prime Day discounts to 4 days as retailers weigh tariffs and price increases

Prime Day sales are here again. The e-commerce giant is making the now-misnamed Prime Day a four-day event for the first time ...

Nordstrom’s Biggest Sale Of The Year Includes Discounts From Coach, Kendra Scott, Sperry, And More Brands We Love

Some of our favorite designer brands, back-to-school styles, and more are discounted right now for Nordstrom’s anniversary ...

Minecraft offers free maps and huge Marketplace discounts

You better be quick if you want to pick up that content pack you’ve had an eye on, with up to 75% off across the Minecraft Marketplace.