frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

All the ways to mock your Rust code

https://blog.appliedcomputing.io/p/all-the-ways-to-mock-your-rust-code
1•MrBuddyCasino•35s ago•0 comments

Show HN: I asked AI to write Sci-Fi for eternity

https://f055.net/thattimei/that-time-i-asked-ai-to-write-sci-fi-for-eternity/
1•f055•2m ago•0 comments

Every service should have a killswitch

https://www.seangoedecke.com/killswitches/
1•gautamsomani•3m ago•0 comments

What 262,715 regex questions on stack overflow haven't answered

https://iev.ee/blog/what-262715-regex-questions-havent-answered/
1•aw1621107•4m ago•0 comments

Distribution kept expiring. So I built 10 channels instead. Here's every loop

https://www.indiehackers.com/post/rented-distribution-kept-expiring-so-i-built-10-channels-i-own-...
1•max_unbearable•6m ago•0 comments

Bone-crushing hyenas are cleaning up city streets in Ethiopia

https://www.cnn.com/world/africa/bone-crushing-hyenas-cleaning-ethiopian-streets-spc
1•breve•9m ago•0 comments

A simple way to compress model, KV cache, flops vias low-rank with zero overhead

https://jeffreywong20.github.io/a3.github.io/
1•thw20•9m ago•0 comments

Show HN: Hollow – A local multi-agent OS that builds its own tools

https://github.com/ninjahawk/hollow-agentOS
1•ninjahawk1•9m ago•0 comments

Local Transformer Language Model Running on GameBoy Color

https://github.com/maddiedreese/gbc-transformer
1•redbell•10m ago•0 comments

7 in 10 Americans oppose data centers being built in their communities

https://www.washingtonpost.com/nation/2026/05/13/7-10-americans-oppose-data-centers-being-built-t...
1•frb•12m ago•0 comments

Hyper-Frame – a custom iframe to embed a browser tab

https://www.hyper-frame.art/console
1•keepamovin•13m ago•0 comments

AMD DGF: An Open Geometry Compression Standard

https://gpuopen.com/learn/amd-dgf-an-open-geometry-compression-standard/
1•ibobev•14m ago•0 comments

Attribr

https://www.attribr.dev
1•SupaMRVL•16m ago•0 comments

The lasting influence of Netscape Time

https://thehistoryoftheweb.com/the-lasting-influence-of-netscape-time/
1•speckx•16m ago•0 comments

Tsjilp – AI as a silent communication assistant

https://www.tsjilp.me
1•hkuperus•21m ago•1 comments

I Got a Cisco 7942G

https://moonydev.xyz/blog/i_got_a_cisco_7942/
2•moonydev•21m ago•0 comments

Show HN: Before Upload – check files locally before sending them to AI tools

https://beforeupload.com/
3•ailef•22m ago•1 comments

Peter Norvig's 21 line spelling corrector using probability theory

https://impythonist.wordpress.com/2014/03/18/peter-norvigs-21-line-spelling-corrector-using-proba...
2•ibobev•22m ago•0 comments

Britain's hiring culture has become absurd

https://spectator.com/article/the-absurdity-of-britains-virtual-hiring-culture/
2•password54321•22m ago•0 comments

Seriously bright light vs. winter blahs

https://meaningness.com/sad-light-lumens
1•l1am0•23m ago•0 comments

Sam Altman Testifies That Elon Musk Wanted Control of OpenAI

https://www.nytimes.com/live/2026/05/12/technology/openai-trial-sam-altman-elon-musk
1•the-mitr•25m ago•1 comments

Show HN: Secret Jigsaw – send a photo hidden inside a puzzle

https://secretjigsaw.com
2•pompomsheep•26m ago•0 comments

The Disintegrating Moat – and Why That's a Good Thing

https://people-work.io/blog/the-disintegrating-moat/
1•mooreds•26m ago•0 comments

Berget AI announces Berget Code for European teams powered by Kimi K2.6

https://berget.ai/blog/berget-code-launch-en
2•marols•27m ago•1 comments

Lang5 – a stack oriented APL-like language

https://github.com/bernd-ulmann/lang5
2•tosh•32m ago•0 comments

Static Analysis for GitHub Actions

https://github.com/zizmorcore/zizmor
1•mooreds•36m ago•0 comments

Soon We Can Banish JavaScript to the ShadowRealm

https://css-tricks.com/soon-we-can-finally-banish-javascript-to-the-shadowrealm/
2•speckx•38m ago•0 comments

The price of power – why batteries are starting to look obvious

https://blog.stromflix.com/price-of-power
1•StromFLIX•39m ago•1 comments

In a trial pitting him against Elon Musk, nobody has more to lose than Altman

https://www.latimes.com/business/story/2026-05-12/in-trial-pitting-him-against-elon-musk-nobody-h...
1•1vuio0pswjnm7•39m ago•0 comments

Sovereign Tech Fund invests over €1M in KDE software development

https://kde.org/announcements/sovereign-tech-fund-invests-kde/
4•spiros•39m ago•1 comments
Open in hackernews

Show HN: ScrapeCopilot – Notebook Code Interface + Puppeteer + AI Copilot

3•erichi•11mo ago
Hi HN, I’m Eric, and I’m building ScrapeCopilot, an AI assistant designed to eliminate friction in browser automation development.

Here is the link to VS Code extension - https://marketplace.visualstudio.com/items?itemName=scrapeco...

I've built browser automations for more than 5 years, and the constant frustration was always the sheer friction involved in getting working code – especially when debugging in headless mode or connecting to remote browsers.

When I started using LLMs to generate automation code, I found myself stuck in a repetitive loop: navigate to the desired page state, copy-paste HTML into the AI chat, and ask it to generate code. The worst part is that there was no easy way to run that generated code without losing the page state, forcing me to restart the browser session constantly. This wasted large amounts of time and mental energy. I built ScrapeCopilot to make this workflow seamless.

How it works:

ScrapeCopilot combines the power of a Jupyter-style notebook with a live Puppeteer browser session and integrated AI.

- Live Interactive Development: When you create an automation notebook, it initiates a fresh Puppeteer browser session. The page object is exposed directly to your notebook cells, allowing you to run any Puppeteer code against the live browser state and see the results instantly.

- AI-Powered Assistance: It integrates with GitHub Copilot (via the @scrapecopilot chat participant). The AI automatically sees the current page HTML, allowing it to generate highly relevant Puppeteer code based on your instructions directly within the chat.

- LLM Code Export: Once you've developed your automation logic, you can easily export the final, complete Puppeteer script based on your instructions.

This tool saves me hours daily, but even more importantly, it improves the developer experience in browser automation which is frustrating area.

I believe ScrapeCopilot can complement existing browser automation tools and frameworks by providing an interactive AI-assisted development experience.

Current Status & Future Plans:

- The extension currently works within VS Code. It will work in Cursor, but without chat support initially. I'm actively working on integrating a backend server to enable full chat functionality with Cursor.

- Currently the key workflow assumes that you create a new browser automation step by step, using code cells. But in my work I spend half of the time fixing existing automations, so my focus now is trying to adapt extension for debugging and fixing existing code.

- Playwright support is also on the list.

Check out short videos: - Demo: Headless False - https://scrapecopilot.ai/assets/demo-headless-false-Dhc_jeNR... - Demo: Headless True - https://scrapecopilot.ai/assets/demo-headless-true-PRQndDxP....

I'd love to hear your thoughts, feedback, and any suggestions!