frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Are you letting agents run infra tools / scripts yet?

1•shashahchk•1m ago•0 comments

Making WebAssembly a first-class language on the Web

https://hacks.mozilla.org/2026/02/making-webassembly-a-first-class-language-on-the-web/
1•mikece•5m ago•0 comments

Separating AI agent reasoning from execution, crypto binding execution

1•ketanbj•6m ago•0 comments

Standardizing Source Maps

https://bloomberg.github.io/js-blog/post/standardizing-source-maps/
1•Timothee•7m ago•0 comments

Microsoft backs Anthropic to halt US DoD's 'supply-chain risk' designation

https://www.reuters.com/legal/litigation/microsoft-files-amicus-brief-support-anthropics-lawsuit-...
1•drewda•8m ago•0 comments

CVE-2026-3288: K8s ingress-nginx path injection via rewrite-target annotation

https://nvd.nist.gov/vuln/detail/CVE-2026-3288
1•zdkaster•11m ago•1 comments

Ask HN: Devs who are out of work – what are you doing for income now?

1•a1n•13m ago•0 comments

Trump says U.S. will build first refinery in 50 years

https://www.cnbc.com/2026/03/11/trump-us-oil-refinery-reliance-ambani-texas-india-shale-wti.html
3•kamaraju•21m ago•0 comments

A Mysterious Signal Transfixes Radio Sleuths and Intelligence Experts

https://www.rferl.org/a/mystery-numbers-station-persian-signal-iran-war/33700659.html
2•willvk•31m ago•0 comments

Sergey Brin Funds Misleading Ballot Measure to Negate Wealth Tax

https://prospect.org/2026/03/10/google-brin-california-wealth-tax-ballot-measure/
19•dlipovetsky•32m ago•6 comments

Switch: Benchmarking the Handling of TCIs in Long-Horizon Embodied Scenarios

https://huggingface.co/papers/2511.17649
1•tellarin•38m ago•0 comments

I built a free narrative game inspired by Daniel Kokotajlo's AI 2027 essay

https://ai2028.ai/
1•geniusxp•38m ago•1 comments

Improving instruction hierarchy in frontier LLMs

https://openai.com/index/instruction-hierarchy-challenge
1•surprisetalk•40m ago•0 comments

Microsoft uses plagiarized AI slop flowchart to explain how GitHub works

https://www.pcgamer.com/software/ai/microsoft-uses-plagiarized-ai-slop-flowchart-to-explain-how-g...
3•gpvos•41m ago•0 comments

Maybe we can keep on coding? pseudo code project

4•EmptyDrum•44m ago•3 comments

MCP Weekly: OpenAI Raises $110B, Anthropic Faces Defense Showdown

https://www.gentoro.com/blog/mcp-weekly-openai-raises-110b-anthropic-faces-defense-showdown-and-g...
1•ashutosh0707•44m ago•0 comments

The State of Rust Allocators in 2026

https://cetra3.github.io/blog/state-of-allocators-2026/
2•cetra3•49m ago•0 comments

Naplan resumes after earlier technical issues paused online testing

https://www.abc.net.au/news/2026-03-11/naplan-technical-issues-disrupt-school-testing/106440510
2•langfo•49m ago•0 comments

Ask HN: How are you managing "prompt fatigue" and lazy LLM outputs?

4•thlangu•50m ago•1 comments

Show HN: ClawSoc – Observe Your AI Agent in an AI Society

https://clawsoc.io
4•benjosaur•52m ago•0 comments

Promptbuilder Tool

https://promptengine.business
2•thlangu•52m ago•0 comments

Show HN: Magicly – an aesthetic new tab with a magic orb

https://chromewebstore.google.com/detail/magicly/lphplecibkpifdmohbockmaloepgpbbl
2•tamnv•54m ago•0 comments

.NET 11 Preview 2 is now available

https://devblogs.microsoft.com/dotnet/dotnet-11-preview-2/
1•vyrotek•54m ago•0 comments

MacBook Neo Review: No Other Budget Laptop Can Compete

https://gizmodo.com/macbook-neo-review-no-other-budget-laptop-can-compete-2000731635
6•thunderbong•54m ago•0 comments

Signal Design for Good Correlation

https://www.cambridge.org/core/books/signal-design-for-good-correlation/4A48F8F2070E0EB093283A792...
2•programmexxx•55m ago•0 comments

How the "godfathers of AI" have shaped our mission

https://ctsmyth.substack.com/p/standing-with-giants
1•K0balt•56m ago•1 comments

Show HN: CryptoFlora – Visualize SHA256 to a flower using Rose curves

https://crypto-flora.tonytonyjan.net/
1•tonytonyjan•57m ago•0 comments

Preview a website before DNS changes – etchosts.link

https://etchosts.link/
1•prismatized•59m ago•0 comments

Why Cape Town May End Up Safer Than Dubai

https://www.thefp.com/p/why-cape-town-may-end-up-safer-than
1•paulpauper•1h ago•0 comments

Advantageous Selection

https://marginalrevolution.com/marginalrevolution/2026/03/advantageous-selection.html
1•paulpauper•1h ago•0 comments
Open in hackernews

Show HN: Built a browser-based AI data analyst using DuckDB WASM and OPFS

https://rowpilot.co
1•zurnz•1h ago

Comments

zurnz•1h ago
I am a programmer and designer by day. I have been pretty reluctant to use LLMs to do coding.

I Decided to try fully building a project with Claude. I told myself I could not touch the code at all, but in the end I had to make the airplane 3D model in Blender, but I was able to light it in 3js with Claude.

The idea was that you can "upload" your files to your browser and ask AI about your data and have it create queries and graphs for you without ever seeing your actual data.

After some discussion with Claude, we ended up going with DuckDB and OPFS in order to store json and csv as tables directly in the browser. The column names and data type is the only thing that gets sent over to the AI.

DuckDB is a database that can run in your browser with WASM and seems quite performant. It is able to reference files directly in OPFS. OPFS (Origin Private File System) is a browser API that lets us write files directly on disc and reference them.

When you send a question to the AI, it is instructed that it can write duck db queries, Javascript transformations and render a series of different charts with the output.

The chart types are some of the basic chart types from recharts.js as well as a 3js scatter plot and open street maps plotting. Also a tree map, radar map, histogram and heatmap.

The Javascript runs in a web worker with eval, which is a bit scary, so I ended up asking Claude code to implement strict CSPs and removed any remotely fetched assets.

It seems to handle large csv files pretty well. The one I tried was 150mb.

Looking for any data science or accounting people to give it a try with some data and see if it has any use cases at all. You can login with a magic email link and try it with 20 questions.

I asked my girlfriend to try it and she immediately ran into issues, the excel importer didn't work when there were tabs, so I worked those in. Still trying to get her to give the thing a spin, but that may be the hardest part of the whole project.

I initially tried it and found it to be pretty bad, so I switched out the model from Gemini Flash to Claude Sonnet and it seemed much better. I plan to use it when I need to analyze data from a spreadsheet or json files.

If people find it useful I can provide some kind of codes for more credits. Of course the questions are using real $ so I didn't want to open it up too much.

celadevra_•1h ago
I like your interface aesthetics.

Instead of asking users to download data and reupload, maybe animations using actual CSVs and query artifacts (graphs) are more illustrative for people in a hurry or people who cannot come up with a query question atm?

And the privacy bit would be more convincing if people can see that part of code.

zurnz•1h ago
Oh are you referring to the demo projects? Like let the user open a premade project? That's a good idea.

When you say let people see the code, do you mean open sourcing it or showing the key parts of the code on the site?

zurnz•1h ago
I could show a what was sent link when the user sends a message, so they can see exactly what was sent to the server.
celadevra_•49m ago
I don't know whether you would like to disclose the whole source and what you would do if the product takes off, so didn't explicitly ask you to open source. But yeah, show users what was sent would be helpful, better if there's some way users can verify.
zurnz•47m ago
I'll think of a good way to do that. Love the idea of a ready made demo project, which will force me to see if there is a good use case for the thing. Appreciate the useful feedback.