frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Rubiks Cube Solver

https://punnerud.github.io/MPErubiks/
1•punnerud•1m ago•0 comments

The Quest to Track Down Every Official Liberty Bell Replica Created by Congress

https://tomlovesthelibertybell.com/the-57-u-s-treasury-liberty-bell-replica-locations/
1•gscott•2m ago•0 comments

I built a prompt injection detector using only Go's standard library

https://towardsdev.com/i-built-a-prompt-injection-detector-using-gos-standard-library-f4528c13d03...
1•cheikhdev•2m ago•0 comments

Understanding Raft Leader Election by building from scratch

https://sushantdhiman.dev/blog/raft/
1•birdculture•6m ago•0 comments

Show HN: I implemented Kimi K3 from Scratch in PyTorch

https://github.com/TimRots/kimi3
1•ENOMEM•7m ago•0 comments

WireguardTCP: WireGuard over TCP

https://wireguardtcp.net/
1•kaliszad•7m ago•0 comments

What Is Decispher?

2•cool_coder12•9m ago•1 comments

Tell HN: On the Boardwalk

1•kmstout•9m ago•0 comments

Design by Contract and effects are essential for LLM-generated code

https://gavinray97.github.io/blog/design-by-contract-and-effects-for-llms
1•gavinray•10m ago•0 comments

Hyper-Reality (2016)[video]

https://www.youtube.com/watch?v=YJg02ivYzSs
1•EndXA•11m ago•0 comments

Eating less protein could slow aging, major review finds

https://www.sciencedaily.com/releases/2026/08/260801042811.htm
2•OutOfHere•14m ago•2 comments

Maximum Overkill

http://www.os2museum.com/wp/maximum-overkill/
1•userbinator•15m ago•0 comments

Bubble Memory

https://en.wikipedia.org/wiki/Bubble_memory
5•jacquesm•26m ago•0 comments

Show HN: Draco – A single-binary, self-hostable Firecrawl alternative in Rust

https://github.com/0xchasercat/draco/
4•ccheshirecat•27m ago•0 comments

AI Mania: From Tulips to Tokens

https://seanhelvey.com/tools-and-their-tools/
10•Lambda11•27m ago•3 comments

Estimating Fable and Sol model sizes

https://twitter.com/anpaure/status/2083993647268405602
5•grahamsfde•31m ago•0 comments

EU Age Verification Project Mandates Hardware-Bound Attestation

https://linuxiac.com/eu-age-verification-project-mandates-hardware-bound-attestation/
11•RobotToaster•31m ago•1 comments

Special Relativity Boot Camp: A Geometry-First Introduction to Special Relativit

https://www.acsu.buffalo.edu/~whkinney/SpecialRelativityBootCamp/
2•fanf2•34m ago•0 comments

Anthropic's Fever Dream: Claude's package that stole real keys

https://www.aikido.dev/blog/anthropic-rogue-agents-package-stole-keys
10•lschueller•39m ago•0 comments

The next 50 years: humanity, AI, power – Yuval Noah Harari [video]

https://www.youtube.com/watch?v=_V_ed5fuexA[Video]
2•jamesblonde•40m ago•0 comments

Show HN: Authoryze- payment controls for AI agents

https://authoryze.ai
3•kevinfee•41m ago•2 comments

Show HN: Make your Framework 12 sound like a creaky door

https://github.com/ArcaEge/creakwork12
2•arcaege•43m ago•0 comments

GestãO de Carteiras E Ativos (Brazilian Project)

https://zeca.app.br/
2•selic•46m ago•0 comments

Healthy Criticism

https://karim.cloud/blog/posts/healthy-criticism
3•k_shehadeh•48m ago•0 comments

Sharing an X11 Server Across Hosts with FamilyWild

https://dobrowolski.dev/article/sharing-an-x-server-across-hosts-with-familywild/
6•shirozuki•49m ago•1 comments

A Top Law Firm Went from Standing Up to Trump to Bending the Knee

https://www.nytimes.com/2026/08/02/us/politics/paul-weiss-trump.html
6•JumpCrisscross•50m ago•4 comments

SynthID watermark is hard to break, but it doesn't solve AI disinformation

https://arstechnica.com/ai/2026/07/tested-google-synthid-works-great-but-labeling-ai-content-may-...
3•saikatsg•53m ago•1 comments

Python-based backtesting for Polymarket, with h5i-db

https://medium.com/@Koukyosyumei/python-based-backtesting-for-polymarket-with-h5i-db-a9fefee27ac9
2•syumei•55m ago•0 comments

Games at the press of a button: The Rip-O-Bot (1989)

https://blog.gingerbeardman.com/2026/08/02/games-at-the-press-of-a-button-the-rip-o-bot/
2•msephton•56m ago•0 comments

Plotlines: Every place and journey in every literature classic, on one map

https://peter-guillam123.github.io/plotlines/index.html
2•theanonymousone•57m 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.