frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AIMP is going to be cross-platform (Linux Support Is Coming)

https://aimp.ru/blogs/?p=1523
2•SweetSoftPillow•56s ago•0 comments

Human-to-human transmission suspected on board hantavirus cruise ship, WHO says

https://www.cnn.com/2026/05/05/africa/cruise-ship-hantavirus-who-intl
2•koolhead17•1m ago•0 comments

Show HN: Pathetic – Java pathfinding: 10k concurrent paths in ~7ms

https://github.com/bsommerfeld/pathetic
1•bsommerfeld•2m ago•0 comments

Fix "Copy Fail" before your Linux system gets sick

https://opensourcewatch.beehiiv.com/p/fix-copy-fail-before-your-linux-system-gets-sick
1•CrankyBear•2m ago•0 comments

Trust Is the Bottleneck

https://blog.reqproof.com/p/engineerings-ai-bottleneck-is-trust
1•LeonidBugaev•3m ago•0 comments

I Miss Craft

https://eliothertenstein.com/notes/on-craft
2•eiiot•3m ago•0 comments

Epic Semi RISC-V server products

https://www.epicsemi.com/products/contrail/contrail-compute/
1•rwmj•3m ago•0 comments

Comparisons as Predictable as the Sunrise

https://pudding.cool/2026/05/similes/
1•usrme•3m ago•0 comments

Stop Apologizing for Big PRs

https://theendofcoding.com/blog/stop-apologizing-for-big-prs
1•nbouvrette•5m ago•0 comments

The Impossible Things We Have to Believe

https://berthub.eu/articles/posts/the-impossible-things-we-have-to-believe/
2•TechTechTech•7m ago•0 comments

Show HN: I built a simple way to create an online work profile

https://klypn.com
1•chresko•7m ago•0 comments

OurCar: Making an App Just for Us

https://mendelgreenberg.com/posts/ourcar/
1•chabad360•8m ago•0 comments

Detection of an atmosphere on a trans-Neptunian object beyond Pluto

https://www.nature.com/articles/s41550-026-02846-1
3•droidjj•10m ago•0 comments

Apple's First Phone Design Never Made It to Market (2014)

https://lowendmac.com/2014/apples-first-phone-from-1983-never-made-it-to-market/
2•downbad_•12m ago•1 comments

Why India's Space-Tech Startups Are Stuck in a Low-Revenue Orbit

https://www.outlookbusiness.com/magazine/why-indias-space-tech-start-ups-are-stuck-in-a-low-reven...
1•rustoo•12m ago•0 comments

A new way to snap your windows on macOS

https://www.patreon.com/posts/macsyzones-3-0-157387651
2•rohanrhu•13m ago•0 comments

New Star Wars Viewing Data Shows a Deep Generational Divide

https://www.denofgeek.com/tv/new-star-wars-viewing-data-shows-deep-generational-divide/
1•rustoo•14m ago•0 comments

Track movies, TV, and books with editorial reviews

https://cuev.io/
1•axivuslabs•15m ago•0 comments

TPM 2.0 Sealing Policies with WolfTPM

https://www.wolfssl.com/tpm-2-0-sealing-policies-with-wolftpm-pcr-policies-policy-authorize-and-n...
1•aidangarske•16m ago•0 comments

The Curve and the Cliff: What AI Builders Cannot Prove

https://btriani.medium.com/the-curve-and-the-cliff-913e94590808
1•btriani•17m ago•0 comments

Show HN: SecretEnv – Run any process with secrets from all your backends

https://github.com/TechAlchemistX/secretenv
3•techalchemist•18m ago•4 comments

Spirit Airlines Didn't Crash – It Was Taken Down

https://www.thebignewsletter.com/p/who-killed-spirit-airlines
1•fragmede•18m ago•0 comments

Accelerating Gemma 4: faster inference with multi-token prediction drafters

https://blog.google/innovation-and-ai/technology/developers-tools/multi-token-prediction-gemma-4/
2•amrrs•18m ago•0 comments

PulseTrain

https://excamera.substack.com/p/pulsetrain
1•jamesbowman•19m ago•0 comments

Nassi–Shneiderman Diagram

https://en.wikipedia.org/wiki/Nassi%E2%80%93Shneiderman_diagram
2•tosh•19m ago•0 comments

Thoth v3.20.0 – Full Linux Support, MiniMax Integration, Reliability Upgrades

https://github.com/siddsachar/Thoth
2•sydsachar•20m ago•0 comments

Show HN: Xclif, file-based routing for Python CLIs

https://github.com/ThatXliner/xclif
1•thatxliner•21m ago•0 comments

Was the Declaration of Independence Better Before the Edits?

https://www.newyorker.com/magazine/2026/05/11/why-the-declaration-of-independence-went-through-se...
1•bookofjoe•22m ago•1 comments

Five Publishers and Scott Turow Sue Meta and Mark Zuckerberg

https://www.nytimes.com/2026/05/05/books/publishers-turow-meta-zuckerberg-lawsuit-copyright.html
1•thm•23m ago•0 comments

GameStop Proposes to Acquire eBay at $125.00 per Share – GameStop Corp

https://investor.gamestop.com/news-releases/news-details/2026/GameStop-Proposes-to-Acquire-eBay-a...
1•duck•23m 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.