frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Chatbots Still Can't Render Code Properly (and How to Fix It)

https://barish.me/blog/ai-chatbots-still-cant-render-code-properly/
1•barishnamazov•1m ago•0 comments

Show HN: Bundling Linux inside an Android app to run OpenClaw

https://github.com/coderredlab/andClaw
1•coderredlab•6m ago•0 comments

Karl: Expression-first language with built-in concurrency (playground and REPL)

https://karl-lang.org/
1•broyeztony•10m ago•0 comments

Show HN: Raya – TypeScript-like language with Go-like concurrency model

https://github.com/rizqme/raya
1•rizqme•11m ago•0 comments

Attacker gets into France's database listing all bank accounts

https://www.theregister.com/2026/02/22/french_bank_hack/
1•jjgreen•12m ago•0 comments

Maintenance Release: Godot 4.6.1

https://godotengine.org/article/maintenance-release-godot-4-6-1/
1•__natty__•12m ago•0 comments

PocketAgents, a single-binary runtime for Vercel AI SDK apps

https://github.com/treyorr/pocket-agents
1•trey-orr•12m ago•1 comments

Show HN: Franklin Prompt Studio – Structured prompts for serious AI decisions

https://dfrankstudioz.gumroad.com/l/franklin-prompt-studio
1•dfstudioz•14m ago•0 comments

Show HN: Vocab Top – AI-powered vocabulary builder with visual mnemonics

https://www.vocab.top/
1•Jaber_Said•14m ago•0 comments

Show HN: AIO Checker – See what ChatGPT and Claude see on your website

https://aiochecker.vercel.app
1•solskede•17m ago•1 comments

Will Iran be here in the morning?

1•ShermFrederick•19m ago•1 comments

IT Staffing Firms (TCS, Cognizant, Infosis Underpay Developers by 80–100%

https://h1bdatahub.com/blog/cognizant-tcs-infosys-low-h1b-salaries-exposed
2•buildwithmanju•19m ago•3 comments

Show HN: Deeper – Open-Source Beeper Analytics App for macOS

https://github.com/f/deeper
1•fka•22m ago•0 comments

A minimal CLI for managing TCP ports

https://github.com/odysa/portit
1•agentforce•22m ago•0 comments

New York's Robotaxi Plan Pulled in Blow to Waymo Expansion

https://www.bloomberg.com/news/articles/2026-02-19/new-york-s-robotaxi-plan-pulled-in-setback-to-...
2•1vuio0pswjnm7•24m ago•0 comments

Man in Sicily trained his dog to illegally dump rubbish

https://news.sky.com/video/man-in-sicily-trained-his-dog-to-illegally-dump-rubbish-13509984
1•austinallegro•25m ago•0 comments

Show HN: Treni – single-binary GPU runtime for uncertainty-aware agents 5ms TTFT

https://treni-docs.pages.dev/docs/
1•andrewmonostate•28m ago•1 comments

The possibilities for micro-intelligent fungus

1•justellemno•28m ago•0 comments

Redefining the Software Engineering Profession for AI

https://dl.acm.org/doi/10.1145/3779312
2•dnw•28m ago•0 comments

Simulating fusion reactors in C++ [video]

https://www.youtube.com/watch?v=IaiYxnLrs_8
2•linkdd•35m ago•0 comments

Glue: Unified Toolchain for Your Schemas

https://guywaldman.com/posts/introducing-glue
2•guywald•36m ago•0 comments

Show HN: A Vaadin Algebra and Calculus Solver Built with AI Assistance

2•bellaOxmyx•36m ago•0 comments

Daron Acemoglu warns U.S. democracy won't survive unless these two things change

https://fortune.com/2026/02/22/who-is-daron-acemoglu-nobel-laureate-ai-job-layoffs-economic-inequ...
4•sendes•37m ago•0 comments

Nobulex – Open-source cryptographic accountability protocol for AI agents

https://github.com/agbusiness195/NOBULEX
8•NOBULEX•38m ago•5 comments

Show HN: Ahnotate – A zero-compression, no-login screenshot annotation tool

https://ahnotate.com/
1•advanttage•39m ago•0 comments

Fluxer – AGPL alternative to Discord, has hosted version

https://github.com/fluxerapp/fluxer
1•Sean-Der•43m ago•0 comments

Tesla loses bid to overturn $243M Autopilot verdict

https://techcrunch.com/2026/02/20/tesla-loses-bid-to-overturn-243m-autopilot-verdict/
2•doener•45m ago•0 comments

Show HN: I made a free restock alert system for Pokemon packs, Lego kits, & more

https://www.pricedropnotifications.com/collectibles-restock-alerts
1•HNCATCH•46m ago•1 comments

Why OpenAI's CEO says space-based data centres won't matter this decade

https://indianexpress.com/article/technology/artificial-intelligence/sam-altman-elon-musk-space-d...
1•doener•48m ago•1 comments

Show HN: Testing an Idea – Per-Decision Authorization Layer for AI Systems

1•rkka•48m 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•9mo 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.