frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why etymologies matter: How tracing words can illuminate history (2024)

https://resobscura.substack.com/p/why-i-love-etymologies
1•benbreen•1m ago•0 comments

'Antizuck' iOS app that claims to detect nearby smart glasses tops App Store

https://9to5mac.com/2026/07/31/antizuck-ios-app-that-claims-to-detect-nearby-smart-glasses-tops-a...
1•danorama•8m ago•0 comments

Votewire – Pin a poll, get results

https://votewire.vercel.app/
1•zay_dea•13m ago•0 comments

Suno Held Liable for Infringing German Song Copyrights

https://www.billboard.com/pro/suno-liable-gema-german-copyright-lawsuit/
1•tchalla•17m ago•0 comments

FoxSchema: Compare and migrate SQL database schemas across 10 dialects

https://foxschema.com/
1•thunderbong•18m ago•0 comments

They invented an infinite context window [video]

https://www.youtube.com/watch?v=XheXopWnX-Q
1•Gecko4072•20m ago•0 comments

Show HN: GAI – A Go runtime for typed, tool-using LLM agents

https://github.com/lace-ai/gai
2•samuel_kx0•20m ago•0 comments

Ask HN: Which Linux distribution is capitalizing on AI momentum?

1•orsenthil•20m ago•0 comments

Iran to get Chinese shoulder-launched missile systems in weeks, sources say

https://www.reuters.com/world/china/iran-get-chinese-shoulder-launched-missile-systems-weeks-sour...
1•mapping365•21m ago•0 comments

Russia is sharing valuable Intel with Iran, officials say, as U.S. war drags on

https://www.nbcnews.com/politics/national-security/russia-sharing-valuable-electronic-intel-iran-...
1•mapping365•21m ago•0 comments

Stream Axanar: The Gathering Storm – The Star Trek CBS doesn't want you to see [video]

https://www.youtube.com/watch?v=tt-58xdu33I
1•mmh0000•21m ago•0 comments

Show HN: Integer-only AI complete XOR with 99.7% accuracy all from scratch

https://github.com/Mojo0869/ABSL
1•Mojo_0869•22m ago•0 comments

No Joke: Scientists Launch OnlyFans Account to Raise Money for Marmot Project

https://cowboystatedaily.com/2026/07/30/scientists-turn-to-onlymarms-videos-of-marmots-on-onlyfan...
1•Bender•24m ago•0 comments

Ukraine's Strike on Iranian Ship Shows How Two Wars Could Merge and Spiral

https://www.nytimes.com/2026/07/31/us/politics/iran-ukraine-war.html
3•mapping365•24m ago•0 comments

Not just Neanderthals: Ghost lineage in Africa left its mark on our DNA

https://arstechnica.com/science/2026/07/not-just-neanderthals-ghost-lineage-in-africa-left-its-ma...
1•Bender•25m ago•0 comments

Reddit keeps its DMCA fight over Google search results alive

https://arstechnica.com/tech-policy/2026/07/reddit-keeps-weird-dmca-lawsuit-against-web-scraper-a...
1•Bender•25m ago•0 comments

Gemini 2.5 Pro and Gemini 3 Flash Deprecated – GitHub Changelog

https://github.blog/changelog/2026-07-31-gemini-2-5-pro-and-gemini-3-flash-deprecated/
1•smokeeaasd•29m ago•0 comments

Hacker News, GitHub and AI

https://pelle.io/posts/hackernews-github-ai/
1•pellepelster•32m ago•1 comments

The CIA Found a Soviet Ghost Station Full of Cold War Secrets

https://www.popularmechanics.com/military/a73274458/batmans-skyhook-cia-mission/
2•RickJWagner•32m ago•0 comments

Mary Celeste

https://en.wikipedia.org/wiki/Mary_Celeste
2•thunderbong•33m ago•0 comments

Inspect Claude Code sessions with lnav

https://blog.disintegrator.dev/posts/lnav-claude-code/
1•disintegrator•34m ago•0 comments

Judge denies X.AI's attempt to stop Minnesota's AI nudification ban

https://www.ag.state.mn.us/Office/Communications/2026/07/31_xAI.asp
2•slowin•36m ago•0 comments

Same-Day Delivery, Same-Day Detonation: Wildberries' Hit by a Ukrainian Drone

https://jeffreylminch.substack.com/p/same-day-delivery-same-day-detonation
2•rmason•38m ago•0 comments

How A Yale AI-cheating dispute became a 13-count federal lawsuit

https://arstechnica.com/tech-policy/2026/07/how-a-yale-ai-cheating-dispute-became-a-13-count-fede...
1•nickff•42m ago•0 comments

If you don't know how compilers work, then you don't know how computers work

https://steve-yegge.blogspot.com/2007/06/rich-programmer-food.html
2•lemonberry•43m ago•2 comments

Evaluating Agents across Supabase

https://supabase.com/evals
2•bhkdotdev•44m ago•1 comments

Show HN: Nudge: A desktop productivity pet app

https://github.com/itsmy-bday/nudge
1•eddie-b•47m ago•0 comments

GrapheneOS vs DeniableOS

https://deniable.io/blog/grapheneos-vs-deniableos
1•Cider9986•48m ago•1 comments

The unintended consequences of LLMs as a labor-augmenting technology in science

https://arxiv.org/abs/2607.17397
1•aanet•48m ago•1 comments

Show HN: I Built a (Country) Geography Guessing Game

https://www.whatcountryisit.com/
1•eightturn•49m ago•0 comments
Open in hackernews

Show HN: I built a YC data scraper in under 5 minutes

https://www.autonoly.com/blog/682212a2b65a68f26d0c10a4/how-to-scrape-complete-y-combinator-startup-data-in-3-minutes-without-writing-a-single-line-of-code
2•dpacman•1y ago
Hi HN,

I'm an indie hacker who built Autonoly solo over the past 3.5 months. I essentially vibe coded the entire platform based on automation needs I encountered in my own work. I wanted to share a practical example of what it can do - creating a Y Combinator data scraper in just a few minutes without writing any traditional code.

The technical approach is straightforward but effective:

1. Browser automation navigates to YC's company directory 2. For YC's infinite scroll pagination, I implemented a progressive scroll function that iterates about 150 times with calibrated delays (ensuring all ~1000+ companies load) 3. Data extraction uses XPath selectors to identify and capture the structural pattern of each company listing 4. The system then extracts specific data points (company name, description, location, etc.) into a structured CSV

The trickiest parts were getting the XPath patterns right (the DOM structure varies slightly between different company entries) and fine-tuning the scroll timing to ensure complete loading without timeout issues.

What makes this approach effective is that it works with the site's intended user experience. The browser automation renders JavaScript properly, handles dynamic loading, and interacts with elements in a natural way.

While this YC scraper example is specific, I built Autonoly to automate virtually any digital task - data processing, content creation, file management, business workflows, and more. As an indie developer, I kept encountering processes that were tedious to do manually but didn't justify hiring someone or spending weeks on custom code.

I'd love to hear feedback from the HN community, especially from those who've built similar systems or have different approaches to workflow automation. Happy to answer any technical questions about the implementation or discuss the challenges of building automation tools as a solo founder.