frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Is anyone else leaving AUR?

1•lordkrandel•1m ago•0 comments

Apple A12 and A13 Chips: New Unpatchable Exploit

https://www.macrumors.com/2026/06/18/a12-and-a13-chips-facing-exploit/
1•tosh•3m ago•0 comments

DNI does press release on Covid-19 origins and coverup

https://www.odni.gov/index.php/newsroom/press-releases/press-releases-2026/4166-pr-11-26
1•anonymousiam•3m ago•1 comments

I reinvented website FAQ sections

https://answerpane.com/
2•MikeCatt•5m ago•0 comments

The comfortable slow boil of LLM assisted coding

https://01max.io/blog/a-comfortable-slow-boil/
1•maxime_•9m ago•0 comments

Renting vs. Buying – A case study for Bangalore

https://bangalore-property-buy-vs-rent.pagey.site/
1•freakynit•10m ago•0 comments

Show HN: `pbi`, an image aware pbcopy/paste for macOS command line users.

https://github.com/fragmede/pbi
1•fragmede•13m ago•0 comments

Maven Central introduces publishing limits

https://community.sonatype.com/t/maven-central-publishing-limits-what-high-volume-publishers-need...
1•justinblat•14m ago•0 comments

Looking to connect by helping founders find their first users

1•BonanKou•16m ago•0 comments

Someone at NPM needs see this – to stop the madness

https://www.youtube.com/watch?v=QIr58qqRyH8
1•ascended•16m ago•0 comments

Show HN: Protect your Go, Arch and AUR from Malware with a free firewall

https://www.vulnetix.com/features/package-firewall
1•ascended•19m ago•1 comments

I asked an online tracking company for my data and here's what I found (2018)

https://privacyinternational.org/long-read/2433/i-asked-online-tracking-company-all-my-data-and-h...
1•downbad_•20m ago•0 comments

Generative AI Is Having Its Herbalife Moment

https://www.whatwelo.st/p/generative-ai-is-having-its-herbalife
2•watermelon0•23m ago•0 comments

Show HN: Foldkit vs. React, the same pixel art editor implemented in both

https://foldkit.dev/react/foldkit-vs-react-side-by-side
2•devinjameson•27m ago•0 comments

The First Prompt: "Let There Be Light"

https://substack.com/@iancutzu/note/c-278921935
2•iancutzul•27m ago•0 comments

Markdown Comes to Liteparse

https://www.llamaindex.ai/blog/markdown-comes-to-liteparse
2•pierre•28m ago•1 comments

It Is Trivially Easy to Use Reddit to Manipulate AI Search

https://www.404media.co/it-is-trivially-easy-to-use-reddit-to-manipulate-ai-search-research-sugge...
5•cui•35m ago•0 comments

Don't Get Hacked!

https://www.cs.columbia.edu/~smb/homesec/
3•sohkamyung•39m ago•0 comments

Show HN: Validate your idea from Reddit and TikTok

https://draper.chat
3•tomchill•40m ago•0 comments

CVE Daily, RSS Feed Generation Back End

https://github.com/PredestinedPrivacy/cvedaily-rss
3•PredestinedPriv•41m ago•0 comments

"I scratched my own itch" isn't good enough (2025)

https://longform.asmartbear.com/scratched-my-own-itch/
4•ogundipeore•43m ago•0 comments

AI helped diagnose 18 children whose rare diseases had stumped doctors

https://www.nbcnews.com/tech/innovation/ai-boston-childrens-hospital-diagnose-rare-diseases-kids-...
4•mgh2•49m ago•0 comments

Phone Batteries Keep Getting Better. So Why Are We Always Charging?

https://www.cnet.com/tech/mobile/features/phone-battery-life-silicon-carbon-what-next/
4•giuliomagnifico•50m ago•0 comments

Vim Creator Bram Moolenaar's Forgotten Programming Language, Zimbu (2023)

https://thenewstack.io/vim-creator-bram-moolenaars-forgotten-programming-language-zimbu/
5•azhenley•54m ago•0 comments

The Chinese Room

https://plato.stanford.edu/entries/chinese-room/
4•goloco•58m ago•1 comments

DARPA Heavy Life Challenge

https://www.darpa.mil/research/challenges/lift
3•mhb•1h ago•0 comments

Amazon S3 annotations: attach rich, queryable context directly to objects

https://aws.amazon.com/blogs/aws/amazon-s3-annotations-attach-rich-queryable-context-directly-to-...
6•firasd•1h ago•0 comments

White House talks with Anthropic shift to setting AI security rules

https://www.politico.com/news/2026/06/18/white-house-talks-with-anthropic-shift-to-setting-ai-sec...
5•daniban•1h ago•1 comments

Why Global Chaos Can't Stop the World Cup [video]

https://www.youtube.com/watch?v=vn8w80Ms7-w
2•mgh2•1h ago•0 comments

Amazon employees say they're facing termination for backing data center limits

https://www.theverge.com/ai-artificial-intelligence/952180/amazon-seattle-data-center-moratorium-...
5•1vuio0pswjnm7•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.