frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The OpenAI "Hack" of Australia's Medicare That Wasn't

https://twitter.com/eastmelbgroupie/status/2102960384777040285
1•flgb•5m ago•0 comments

Chat Control 2.0: Next Tuesday, a permanent decision could be made

https://reddit.com/r/tutanota/comments/1wpyild/next_tuesday_a_permanent_decision_on_chat_control/
1•latexr•7m ago•0 comments

Can a language model run in Linux eBPF?

https://eunomia.dev/blog/2026/09/24/qwen3-ebpf-in-kernel-inference/
4•RohanAdwankar•12m ago•2 comments

Flip Fluid on Flip Dots

https://mitxela.com/projects/flipflip
2•blutack•13m ago•0 comments

The far side of the Moon provides clues to a previous magnetic field

https://ethz.ch/en/news-and-events/eth-news/news/2026/09/the-far-side-of-the-moon-provides-clues-...
2•croes•14m ago•0 comments

Show HN: Print Graph Paper

https://printgraphpaper.app/
1•artiomartiom•18m ago•0 comments

Internal memos: Microsoft shakes up communications as Nadella makes a push to

https://www.geekwire.com/2026/internal-memos-microsoft-shakes-up-communications-as-nadella-makes-...
1•GloVin•20m ago•0 comments

Voyager is slowly going dark

https://twitter.com/rainmaker1973/status/2103688510758965417
1•taubek•21m ago•0 comments

Microservices are organizational debt disguised as architecture

https://martinfowler.com/bliki/MonolithFirst.html
3•birdculture•30m ago•0 comments

Is your Postgres migration safe or not safe?

https://safenotsafe.dev/
1•vira28•30m ago•0 comments

Biggest design mistake I made when we moved OpenClaw to SQLite: using sync db

https://twitter.com/steipete/status/2103648679169257737
1•tosh•31m ago•0 comments

Reverse Engineering Fortinet with Ablation

https://github.com/Ablation-Tool/ablation
1•zellkernel•34m ago•1 comments

Jev4j

https://github.com/maxsumrall/jev4j
1•jsumrall•35m ago•1 comments

Wiki Deep dive into Standard diving dress

https://en.wikipedia.org/wiki/Standard_diving_dress
1•sans_souse•35m ago•0 comments

We asked Seedance, Veo and Kling to spill a glass of water. None of them could

https://humansignal.com/blog/how-to-teach-a-robot-to-water-the-table/
1•ReDeiPirati•51m ago•0 comments

The Library After Dark – a walkable 3D library of 600 public-domain books

https://libraryafterdark.space
2•theaijournalope•52m ago•0 comments

Show HN: Fast image/video viewer for Linux in Rust and gtk4. Carosello

https://github.com/grigio/carosello
1•grigio•53m ago•0 comments

Why I'm Building Muse

https://twitter.com/alexandr_wang/status/2103551714536439951
1•tosh•59m ago•1 comments

Young organs may not be a fountain of youth for recipients

https://www.technologyreview.com/2026/09/25/1145083/young-organs-may-not-be-a-fountain-of-youth-f...
1•joozio•1h ago•0 comments

If we do not stop to help each other, what do we become?

https://blog.codinghorror.com/if-we-do-not-stop-to-help-each-other-what-do-we-become/
3•AndrewDucker•1h ago•1 comments

Anybody has experience with maintaining self hosted Git?

1•tusharmaroo•1h ago•1 comments

Alberta's image as world's only rat-free region shattered by discovery of rat

https://www.theguardian.com/world/2026/sep/25/alberta-canada-rat-patrol
7•pseudolus•1h ago•1 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
3•signa11•1h ago•0 comments

Thought on how to deal with AI crawlers

https://copepod.dev/human-required
2•meredithbloom•1h ago•0 comments

Isn't it enough just to disconnect bloatware from internet instead of disabling?

https://f-droid.org/packages/io.github.dorumrr.de1984/
2•tukunjil•1h ago•0 comments

It's a Jev's World

https://www.bolna.ai/blog/testing-jev-on-real-phone-calls
3•xan_ps007•1h ago•0 comments

The Sleazy World of Reddit Marketing, Everything Is Fake

https://larslofgren.com/reddit-marketing/
4•landdate•1h ago•0 comments

AI was supposed to hit new grads hard. So far, unemployment data says otherwise

https://arstechnica.com/ai/2026/09/ai-was-supposed-to-hit-new-grads-hard-so-far-unemployment-data...
5•MrDresden•1h ago•2 comments

About Jammertest

https://www.jammertest.no/about/
3•Tomte•1h ago•0 comments

Novelist accused of using AI to write book removed from French prize list

https://www.theguardian.com/books/2026/sep/25/thelyson-orelien-goncourt-prize-france
3•pieterr•1h 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.