frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Enhancing Server Availability and Security Through Failure-Oblivious Computing [pdf]

https://people.csail.mit.edu/rinard/paper/osdi04.pdf
1•pabs3•5m ago•0 comments

The "Connectivome Theory": A New Model to Understand Autism Spectrum Disorders

https://pmc.ncbi.nlm.nih.gov/articles/PMC8892379/
1•AndrewDucker•5m ago•0 comments

Recursive Acronym

https://en.wikipedia.org/wiki/Recursive_acronym
1•Quizzical4230•7m ago•0 comments

Soulful Sites

https://app.paradigmai.com/sheets/76210606-6ce4-4ccc-a005-fb1cf6984a45
1•sauravmaheshkar•9m ago•0 comments

LLMs are not a higher level of abstraction

https://www.lelanthran.com/chap15/content.html
2•lelanthran•10m ago•1 comments

Ask HN: RedHat for Personal Use

2•bozdemir•11m ago•1 comments

The Truth About China's Green Energy Industry [video]

https://www.youtube.com/watch?v=Ff0AYRWrnGY
1•mpweiher•11m ago•0 comments

"Grandma, get on": Ukrainian robot carried 77-year-old from grey zone near Lyman

https://euromaidanpress.com/2026/04/25/grandma-get-on-ukrainian-robot-carried-77-year-old-from-gr...
1•eternalreturn•13m ago•0 comments

Claude Code Opus-4-7 VS Codex GPT-5-5

1•rashidae•13m ago•0 comments

MobED: Mobile Eccentric Droid – A robotic platform from Hyundai (2022) [video]

https://www.youtube.com/watch?v=uQqXbXpmkc0
1•num42•13m ago•1 comments

Ask HN: Paid ambient/background noise for focus?

1•deaux•16m ago•1 comments

A Website, Hosted on an ESP32

https://helloesp.com/
1•agilek•17m ago•1 comments

Show HN: AI voice screens for hiring managers to save time

https://worksignal.com/demo
1•cdnsteve•19m ago•0 comments

Show HN: AI agents that learn from their own failures each week

https://www.deployinfra.ai/
1•dkarigi•19m ago•0 comments

French teen who licked vending machine straw faces years in jail in Singapore

https://www.bbc.com/news/articles/cjw8w849g6go
5•jb1991•23m ago•1 comments

Was sind und was sollen die unendlichdimensionalen Supermannigfaltigkeiten

https://mathoverflow.net/questions/510716/was-sind-und-was-sollen-die-unendlichdimensionalen-supe...
1•jjgreen•23m ago•0 comments

Mapping the dreamworld: inside Le Guin's unseen cartographies of myth and mind

https://www.designboom.com/art/mapping-the-dreamworld-inside-ursula-k-le-guins-unseen-cartographi...
1•bryanrasmussen•25m ago•0 comments

Ask HN: Are you concerned by TLS-terminating proxies like Cloudflare Tunnels?

2•thom-gtdp•27m ago•2 comments

Identifying the topographic signature of early Martian oceans

https://www.nature.com/articles/s41586-026-10381-2
1•bryanrasmussen•28m ago•0 comments

What even is a Programming Language?

https://medium.com/invisible-lab/what-even-is-a-programming-language-725eba75fc10
1•jotaalvim•28m ago•0 comments

It's OK to abandon your side-project

https://robbowen.digital/wrote-about/abandoned-side-projects/
13•hisamafahri•32m ago•0 comments

Store >> HTTPS://Www.facebook.com/TopCarPlayWirelessCarPlay.Get/

https://www.facebook.com/TopCarPlayWirelessCarPlay.Get
1•marianatroop•40m ago•0 comments

Dizzy Dithering

https://liamappelbe.medium.com/dizzy-dithering-2ae76dbceba1
2•brickers•41m ago•0 comments

Classic HN: Growing a Language [video]

https://www.youtube.com/watch?v=lw6TaiXzHAE
2•ColinWright•42m ago•0 comments

DSpico: The first open-source Nintendo DS flashcart

https://www.lnh-team.org/
2•stratts•42m ago•1 comments

Are Media Buyers Becoming Obsolete?

1•navosagent•42m ago•0 comments

I Rebuilt FORMLOVA's Form Comparison Content Cluster Around One SEO Bet

https://www.indiehackers.com/post/i-rebuilt-formlovas-form-comparison-content-cluster-around-one-...
1•Lovanut•42m ago•0 comments

Show HN: OgBlocks – Copy Paste Animations for React Developers

https://ogblocks.dev
3•karanzhacker•43m ago•0 comments

Can You Find the Comet?

https://apod.nasa.gov/apod/ap260427.html
3•ColinWright•44m ago•0 comments

Things Michelle Kim Is Into

https://www.technologyreview.com/2026/04/22/1135423/3-things-michelle-kim/
1•joozio•44m ago•0 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

https://github.com/paddymul/buckaroo
105•paddy_m•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Congratulations on launching. Buckaroo looks great.
franky47•11mo ago
But does it work across data tables with 8 dimensions?
trsohmers•11mo ago
Only with the oscillation overthruster flag enabled.
hodder•11mo ago
Looks cool to me. I often just end out exporting and opening in excel to do this
epistasis•11mo 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•11mo ago
How does it compare to Data Wrangler ? I like Data Wrangler because it let us open up in a separate VS Code window.