frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Microsoft starts removing Copilot buttons from Windows 11 apps

https://www.theverge.com/news/909640/microsoft-removing-copilot-windows-11-buttons
1•Brajeshwar•32s ago•0 comments

We May No Longer Need Kafka Compatibility

https://medium.com/@yingjunwu/we-may-no-longer-need-kafka-compatibility-f197ef91abaa
1•yingjunwu•2m ago•0 comments

Spnndr – Subscription tracking and spend management for solo founders

https://www.spnndr.com
1•dmnlaali•3m ago•1 comments

Cognitive Debt: How AI-Generated Code Introduces a More Dangerous Kind of Debt

https://substack.com/home/post/p-193808795
1•ixeption•4m ago•0 comments

Molotov Cocktail Is Hurled at Home of OpenAI CEO Sam Altman

https://www.nytimes.com/2026/04/10/us/open-ai-sam-altman-molotov-cocktail.html
5•enraged_camel•5m ago•0 comments

Ask HN: Hiring in the age of AI-assisted coding: what works?

3•nitramm•5m ago•0 comments

IU Bio Researcher Guilty of Smuggling Ecoli DNA from China Concealed in Clothing

https://www.justice.gov/usao-sdin/pr/iu-biology-researcher-pleads-guilty-smuggling-e-coli-dna-chi...
2•737min•6m ago•1 comments

Aadam Jacobs Collection at the Live Music Archive

https://archive.org/details/aadamjacobs
1•cdrnsf•6m ago•0 comments

Amazon Luna Shuts Down without refunds?

1•abtinf•7m ago•0 comments

Ray-tracing–guided myopic LASIK

https://lww.com/_layouts/1033/OAKS.Journals/Error/JavaScript.html
1•MrBuddyCasino•9m ago•0 comments

Carol's Causal Conundrum: a zine intro to causally ordered message delivery

https://decomposition.al/zines/
1•evakhoury•10m ago•0 comments

Show HN: Gravity Garden, an Interactive Simulator

https://tortured-metaphor.github.io/Gravity-Garden/
1•DavidCanHelp•11m ago•0 comments

Chinese Calligraphy Is a Frontier Task

https://twitter.com/leonardtang_/status/2042671198471901494
1•leonardtang•12m ago•0 comments

Show HN: A WYSIWYG word processor in Python

https://codeberg.org/chrisecker/miniword
1•chrisecker•13m ago•0 comments

Claude Code: Plan in the cloud with ultraplan

https://code.claude.com/docs/en/ultraplan
3•iBelieve•13m ago•0 comments

IP/Patent Broker

https://carsafe.org/soundmode/
2•ASFsound•13m ago•1 comments

Show HN: FluidCAD – Parametric CAD with JavaScript

https://fluidcad.io/
3•maouida•14m ago•0 comments

The Anatomy of an Agent Harness

https://twitter.com/akshay_pachaar/status/2041146899319971922
2•gmays•16m ago•0 comments

ViralEpic: Create scroll-stopping social media visuals with AI in seconds

https://www.viralepic.net
1•avipilcer•16m ago•0 comments

PyTorch Foundation Expands AI Stack with Safetensors, ExecuTorch, and Helion

https://thenewstack.io/pytorch-ai-stack-expand/
2•Brajeshwar•16m ago•0 comments

I've Seen a Thousand OpenClaw Deploys. Here's the Truth

https://blog.nishantsoni.com/p/ive-seen-a-thousand-openclaw-deploys
4•sonink•18m ago•0 comments

AI assistance when contributing to the Linux kernel

https://github.com/torvalds/linux/blob/master/Documentation/process/coding-assistants.rst
2•hmokiguess•18m ago•0 comments

JSON Formatter Chrome Plugin Now Closed and Injecting Adware

https://github.com/callumlocke/json-formatter
2•jkl5xx•18m ago•1 comments

HTML to PDF

https://github.com/Timh1970/wkgtk-html2pdf
2•timh1970•21m ago•1 comments

Tbps of capacity: Cloudflare scaling its global network for 16 years

https://blog.cloudflare.com/500-tbps-of-capacity/
2•emot•22m ago•0 comments

Shibboleth 67

https://aimeru.com/blog/shibboleth67.html
2•dirk94018•25m ago•0 comments

Claude AI Assistant for Microsoft Office

https://pivot.claude.ai
4•skogstokig•25m ago•2 comments

Anthropic Will Use CoreWeave's AI Capacity to Power Claude

https://www.bloomberg.com/news/articles/2026-04-10/anthropic-agrees-to-rent-coreweave-ai-capacity...
3•Anon84•27m ago•0 comments

Microsoft lets Windows 11 testers unlock experimental features

https://www.theverge.com/news/909659/microsoft-windows-insider-changes-unlock-experimental-featur...
2•cebert•28m ago•0 comments

Show HN: The API directory for AI agents and developers

https://saxi.ai/
3•Adanos•28m ago•0 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

https://github.com/paddymul/buckaroo
105•paddy_m•10mo ago
Buckaroo is my open source project. It is a dataframe viewer that has the basic features we expect in a modern table - scroll, search, sort. In addition there are summary stats, and histograms available. Buckaroo support Pandas and Polars dataframes and works on Jupter, Marimo, VSCode and Google Colab notebooks. All of this is extensible. I think of Buckaroo as a framework for building table UIs, and an initial data exploration app built on top of that framework. AG-Grid is used for the core table display and it has been customized with a declarative layer so you don't have to pass JS functions around for customizations. On the python side there is a framework for adding summary stats (with a small DAG for dependencies). There is also an entire Low Code UI for point and click selection of common commands (drop column). The lowcode UI also generates a python function that accomplishes the same tasks. This is built on top of JLisp - a small lisp interpreter that reads JSON flavored lisp.

Auto Cleaning looks at columns and heuristically suggests common cleaning operations. The operations are added to the lowcode UI where they can be edited. Multiple cleaning strategies can be applied and the best fit retained. Autocleaning without a UI and multiple strategies is very opaque. Since this runs heuristically (not with an LLM), it’s fast and data stays local.

I'm eager to hear feedback from data scientists and other users of dataframes/notebooks.

Comments

ZeroCool2u•10mo ago
This looks really cool. I will say my default solution for this, and the default across my org, is Data Wrangler in VS Code[1]. My only wish list item is if the low code solution wrote polars instead of pandas. Any thoughts on how hard that might be to accomplish?

1: https://marketplace.visualstudio.com/items?itemName=ms-tools...

paddy_m•10mo ago
Thank you.

The Buckaroo lowcode UI is capable of working with Polars, but I don't currently have any commands plumbed in. I will work on that.

I'm aware of Data Wrangler and they did nice work, but it's closed source and from what I can tell non-extensible. What features do you like in Data Wrangler, what do you wish it did differently?

paddy_m•10mo ago
I made a Marimo WASM example that you can play with in your browser [1]

I need to make some updates to the polars functionality, I just completed some extensive refactorings of the Lowcode UI focussed on pandas, time to clean that up for polars too.

Also the python codegen for polars is non-idiomatic with multiple re-assignments to a dataframe, vs one big select block. I have some ideas for how to fix that, but they'll take time.

https://marimo.io/p/@paddy-mullen/notebook-sctuj8

RyanHamilton•10mo ago
Congratulations on launching. Buckaroo looks great.
franky47•10mo ago
But does it work across data tables with 8 dimensions?
trsohmers•10mo ago
Only with the oscillation overthruster flag enabled.
hodder•10mo ago
Looks cool to me. I often just end out exporting and opening in excel to do this
epistasis•10mo ago
This is really great, I'm looking forward to playing with it.

Currently I use a mix of quak (preferred) and itable (if starting fom a colab notebook). It will be interesting to compare for my use cases, which most consist of checking for the distribution of data in a new file, or verifying that a transform I did resulted in the right sort of stuff.

mathisd•10mo ago
How does it compare to Data Wrangler ? I like Data Wrangler because it let us open up in a separate VS Code window.