frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MITS: Rockets, Calculators, and Personal Computers

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
1•BirAdam•39s ago•0 comments

Ask HN: Active Forums You're a Part Of

1•insanejules•2m ago•0 comments

Logical Query Processing (2009) [pdf]

https://accessexperts.com/wp-content/uploads/2015/07/Logical-Query-Processing-Poster.pdf
1•rzk•3m ago•0 comments

Pactiamo|Proposals, contracts, signatures and payment in one link

https://www.pactiamo.com
1•kkmigu•4m ago•0 comments

The State of AGENTS.md: scoring the 16 biggest AI agent repos' own instructions

https://fpaul.dev/writing/state-of-agents-md-2026/
1•Fpailo•5m ago•0 comments

L8ER SK8ER, a history of a book that never sold

https://biblicallyaccuratealiens.substack.com/p/l8er-sk8er-a-history
1•meandthemajor•5m ago•0 comments

The New York nurses replaced by AI: 'It should concern every patient who cares'

https://www.theguardian.com/technology/2026/jul/13/nurses-new-york-ai
1•beardyw•6m ago•0 comments

A Right Too Expensive to Exercise Isn't a Right

https://deepbluedynamics.com/blog/right-too-expensive-to-exercise
2•kordlessagain•12m ago•0 comments

69% support forcible transfer of 50% AI stock to public fund: Verasight

https://reports.verasight.io/reports/june-2026-ai-survey
1•akramachamarei•13m ago•0 comments

Show HN: ProtoLink – A Python runtime for distributed A2A agents

https://github.com/nMaroulis/protolink
1•nmaroulis21•14m ago•0 comments

Browser over SSH

https://duetbrowser.com/krnl-ss-redirect
1•keepamovin•14m ago•1 comments

How the most impactful AI startups will be built in emerging markets

https://blogs.worldbank.org/en/voices/small-ai--big-bets--how-the-world-s-most-impactful-ai-start...
1•alphabetatango•16m ago•0 comments

Archangel: Cia's Supersonic A-12 Reconnaissance Aircraft [pdf]

https://dn790002.ca.archive.org/0/items/CIABooksMonographs/Archangel-2ndEdition-2Feb12.pdf
1•smalltorch•17m ago•0 comments

SociaLLM Engineering: On Manipulating AI Agents and what we can do about it

https://cephalosec.com/blog/sociallm-engineering-old-tricks-ai-agents-are-the-new-victims/
1•Versipelle•18m ago•0 comments

Toast IDE Gets LSP Goto and Autocomplete

https://github.com/paradise-runner/toast
1•dividedcomet•18m ago•0 comments

Cairn, an AI agent with a $50 budget, an email address, and a constitution

https://github.com/opitaru-sys/seed-agent
1•GreatOldOne•18m ago•0 comments

TrulyFreeOCR – Permissive-license OCR to PDF, self-contained, MRC compression

https://github.com/msmarkgu/TrulyFreeOCR
1•markfront•18m ago•0 comments

Show HN: Runscribe – Turn a terminal session into a re-runnable runbook, offline

https://github.com/hamzamansoorch/runscribe
1•hamza_mansoor•19m ago•0 comments

I'm Making Strandfall, a Solarpunk Orienteering Larp

https://mssv.net/2026/04/29/im-making-strandfall-a-solarpunk-orienteering-larp/
1•surprisetalk•20m ago•0 comments

Show HN: Latent-free ternary LLM training

https://github.com/ValerioDolci/bitbop
1•Feyd•21m ago•1 comments

A Farewell to ARPs: IPv4 Service on IPv6-Only Networks

https://labs.ripe.net/author/remco-van-mook/a-farewell-to-arps-ipv4-service-on-ipv6-only-networks/
1•speckx•23m ago•0 comments

Is Vibecoding Viable for Business?

https://brids.bearblog.dev/is-vibecoding-viable-for-business/
1•mindwok•25m ago•0 comments

Deaths in the UK outnumber births for first time in 50 years

https://www.telegraph.co.uk/news/2026/07/01/death-day-births-50-years-ons-family-england-wales-csj/
1•rwmj•25m ago•0 comments

MCP Spec Check

https://github.com/Roee-Tsur/mcp-spec-check
1•igtztorrero•26m ago•0 comments

SMS Pumping Fraud

https://amrshawky.com/posts/sms-pumping-fraud/
1•amr_shawky•27m ago•0 comments

Apple accuses OpenAI of stealing its core tech secrets

https://www.theregister.com/legal/2026/07/13/apple-accuses-openai-of-stealing-its-core-tech-secre...
1•Bender•27m ago•0 comments

Make LLM-powered apps Smarter and Cheaper, Reliable, Auditable changing 1 LOC

https://github.com/AlhasanIQ/consortium
2•alhasaniq•30m ago•1 comments

Guide to Response Time Monitoring

https://testomato.com/blog/response-time-monitoring/
1•dewey-decibel•30m ago•0 comments

Minlz v1.2: Search compressed data with without decompression

https://github.com/minio/minlz/releases/tag/v1.2.0
1•klauspost•32m ago•1 comments

"Houston, we have 1 problem(s)."

https://unsung.aresluna.org/houston-we-have-1-problems/
1•Looky1173•34m ago•1 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.