frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Unveiling the Cognitive and Social Toll of ChatGPT Over-Reliance

https://onlinelibrary.wiley.com/doi/10.1002/acp.70205
1•geox•25s ago•0 comments

I turned the periodic table into a live market

https://elementswar.lol
1•tunarob•1m ago•0 comments

HotDog and Sausage Software: the HTML editor that barked at the world

https://karamatli.com/posts/hotdog-html-editor-sausage-software/
1•sparsesignal•1m ago•1 comments

Show HN: jeden.day – a compact habit tracker with flexible schedules

https://jeden.day/
1•mdbug•1m ago•0 comments

A Story About Joe

https://alisnic.github.io/posts/story-about-joe/
1•alisnic•4m ago•0 comments

Jern Cloud – a coding agent bound by a policy file in your repository

https://jern.ai
1•ademar•4m ago•0 comments

A brief guide to French polling data

https://maxhalford.github.io/blog/french-polling-data/
1•sebg•4m ago•0 comments

Free OpenHelper AI Chatbot v2 Preview is coming with many features

https://techambient.github.io/HybridAI/v2.html
1•techambient•5m ago•0 comments

Bill Gates' roots in the trashcans of history (2000)

https://www.theregister.com/software/2000/06/29/bill-gates-roots-in-the-trashcans-of-history/1502096
1•Bluestein•6m ago•0 comments

Show HN: I built my first MCP to manage Google Ads

https://adchestra.com/
2•MichalKrk•6m ago•0 comments

Anthropic's distillation battle turns to the dark web as China concerns swell

https://www.cnbc.com/2026/09/03/anthropic-distillation-battle-turns-to-dark-web-china-concerns-sw...
2•prng2021•6m ago•0 comments

'Insane data': Duke professor Dan Ariely accused of additional research fraud

https://dukechronicle.com/article/duke-university-professor-dan-ariely-accused-of-additional-rese...
1•_tk_•7m ago•0 comments

Nvidia to Acquire Hugging Face

https://blogs.nvidia.com/blog/nvidia-to-acquire-hugging-face/
3•tosh•7m ago•0 comments

Freelancers are getting buried with 'soulless' AI slop cleanup

https://www.theguardian.com/technology/2026/sep/02/ai-jobs-freelance-cleanup
1•_____k•7m ago•0 comments

Absurd Adventure and Amygdalectomy Advocacy

https://www.astralcodexten.com/p/absurd-adventure-and-amygdalectomy
1•eatitraw•11m ago•0 comments

Show HN: Vantage – One prioritized health action per day from Apple Health

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

Show HN: Oconee Runtime – Policy enforcement for browser AI and coding agents

https://www.oconeeruntime.com/news/policy-enforcement-for-browser-ai-and-coding-agents
2•hthomas4•13m ago•0 comments

Release 13.0.8 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.0.8
2•kyisaiah47•15m ago•0 comments

We ported 65 OSS projects with AI

https://akka.io/blog/we-ported-65-oss-projects
2•TylerJewell•16m ago•2 comments

GoPro: A normal, unremarkable piece of merger activity

https://www.ft.com/content/e7cc6fc2-74ae-497b-92bf-d8254dd161fa
1•root-parent•16m ago•0 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
1•valyala•18m ago•0 comments

Show HN: StillMade – Programmable AI video pipeline; Chat to video (now)

https://www.stillmade.shop
2•nomanWasTaken•19m ago•1 comments

Elmway – Tasks and Notes

2•victor_dd•20m ago•0 comments

OWASP MCP Governance and Risk Framework

https://github.com/OWASP/OWASP-MCP-Governance-and-Risk-Project
1•882542F3884314B•20m ago•0 comments

Paid Actors, AI Writing

https://www.semafor.com/article/09/02/2026/paid-actors-ai-writing-how-a-new-kind-of-video-busines...
1•root-parent•21m ago•0 comments

Show HN: Outfund.me – an open-source platform for alternative startup funding

https://outfund.me/
2•Fotis-Karmpas•22m ago•0 comments

Show HN: Moon – track your mood and see what fills and drains it

https://moonapp.lv
8•nikkey80•22m ago•2 comments

There are many agent harnesses, but this one is mine

https://earendil.com/posts/there-are-many-agent-harnesses-but-this-one-is-mine/
3•tosh•23m ago•1 comments

Show HN: What Engineers must own in the AI Era? [video]

https://www.youtube.com/watch?v=wpxVCZ8fqZA
2•Harish_0089•24m ago•0 comments

You're also a neural network – train on the good stuff

https://magnusludviksson.substack.com/p/youre-also-a-neural-network-train
1•reckoner99•25m 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.