frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Are .shop domains down?

1•esher•51s ago•0 comments

Gemini 3.8 with Live Avatar

https://cloud.google.com/blog/products/ai-machine-learning/gemini-3-8-live-with-live-avatar-is-no...
1•geox•1m ago•0 comments

macOS Can't Clone "Dumb" Git Repositories over HTTP/2

https://www.agwa.name/blog/post/macos_cant_clone_dumb_git_repos_over_http2
1•speckx•1m ago•0 comments

Node.js built-ins that replaced NPM packages

https://flaviocopes.com/node-builtins/
1•Kuyawa•3m ago•0 comments

CISA active Linux kernel CVEs (CVE-2025-39964, CVE-2026-53266, CVE-2025-39682)

https://github.com/mc493/linux-kernel-zero-day-mitigation-zero-downtime-kernel-defense-
1•mc493•3m ago•0 comments

LA Metro has some of the slowest escalators on Earth

https://basin.la/articles/ninety-feet-a-minute.html
1•big_toast•7m ago•1 comments

Cheaper LLM Labelling

https://entropicthoughts.com/cheaper-llm-labeling
2•ibobev•9m ago•0 comments

Armbian for Android TV Boxes – Turn Old Hardware into Linux Servers

https://digitalescapetools.com/tools/armbian.html
1•xabd•9m ago•0 comments

Shrinking a Fedora Virtual Disk

https://entropicthoughts.com/shrinking-fedora-virtual-disk
2•ibobev•9m ago•0 comments

Transformers Won't End the Human Race Lol

https://www.stephendiehl.com/posts/transformers_wont_end_human_race/
2•ibobev•9m ago•0 comments

Xcode project configuration that's more human-readable and editable by agents

https://developer.apple.com/documentation/xcode/updating-your-xcode-project-configuration-file-fo...
1•Austin_Conlon•10m ago•0 comments

Show HN: I built an AI assistant that turns website visitors into leads

https://www.brevn.com
1•brevn•12m ago•0 comments

Aspyre Intelligence is hiring developers

https://aspyre.nl/careers
1•Arn280•12m ago•1 comments

Agora-2: Advancing Multi-Agent World Simulation

https://odyssey.systems/introducing-agora-2
1•olivercameron•13m ago•0 comments

Flat – Flexible-Length Aligned Transmodal Tokens

https://guangyusun.com/flat-website/
2•gmays•13m ago•0 comments

Rabbit OS3

https://www.rabbit.tech
3•valdrinNereth•13m ago•0 comments

My Humble Opinion on 'Omarchy' OS

https://blip.bearblog.dev/my-humble-opinion-on-omarchy-os/
4•speckx•13m ago•1 comments

US Government foots bill for television ad featuring Trump's midterm messaging

https://apnews.com/article/paid-by-us-government-ad-midterms-04b3fe552fc3de2ada0b14394706e0e0#
7•cfowles•13m ago•0 comments

Are organoids useful for Alzheimer's research?

https://www.owlposting.com/p/are-organoids-useful-for-alzheimers
1•abhishaike•14m ago•0 comments

New York sues Polymarket, calling it an unlicensed gambling operation

https://apnews.com/article/polymarket-new-york-lawsuit-gambling-b75b753e3c3cd069cdf8d6af175c9fbb
3•ortusdux•14m ago•0 comments

ArchitectureKit: A CQRS/ES Application Framework for Golang

https://github.com/thenativeweb/architecturekit-golang/
1•goloroden•15m ago•0 comments

Show HN: Why is my PDF so big? – See every byte of a PDF as a treemap

https://www.whyismypdfsobig.com/
2•whizzx•16m ago•0 comments

Show HN: Personal Jarvis an open-source alternative to GrokBot

https://github.com/PersonalJarvis/PersonalJarvis
1•PersonalJarvis•16m ago•0 comments

NAZA, a documentary on Israeli war crimes will be free to stream in November

https://twitter.com/yuval_abraham/status/2103061893913162054
5•slowin•18m ago•0 comments

The AI Build-Out Is Becoming the Biggest Economic Bet in U.S. History

https://www.wsj.com/economy/the-ai-build-out-is-becoming-the-biggest-economic-bet-in-u-s-history-...
3•tolugenius•18m ago•1 comments

Show HN: Blackbear.app – Thoughtful, Private Collaboration

https://blackbear.app/
1•rheisen_•19m ago•0 comments

So yeah it was written using AI

https://berthub.eu/articles/posts/so-yeah-it-is-written-using-ai/
3•speckx•19m ago•0 comments

Local sandboxing in the GitHub Copilot app

https://github.blog/changelog/2026-09-23-local-sandboxing-in-the-github-copilot-app/
1•saikatsg•20m ago•0 comments

Mass Energy Equivalence

https://en.wikipedia.org/wiki/Mass%E2%80%93energy_equivalence
1•sans_souse•20m ago•0 comments

Dolphin Progress Report: Release 2609

https://dolphin-emu.org/blog/2026/09/24/dolphin-progress-report-release-2609/
1•tech234a•20m 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.