frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why One Key Shouldn't Rule Them All: Threshold Signatures for the Rest of Us

https://eric.mann.blog/why-one-key-shouldnt-rule-them-all-threshold-signatures-for-the-rest-of-us/
1•eamann•38s ago•0 comments

Heroku-Like Experience for Kubernetes

https://alfredtm.github.io/2026/03/17/kubernetesless/
1•theMMaI•55s ago•1 comments

Show HN: RepoRadar, job search by tech stack. upload resume get results

https://reporadar-app.netlify.app/
1•mnraynor90•2m ago•2 comments

Antikythera Mechanism

https://en.wikipedia.org/wiki/Antikythera_mechanism
1•tosh•2m ago•0 comments

Nvidia CEO Reaffirms Commitment to Israel: "We Support You – We Are Behind You"

https://www.jfeed.com/news/tc2wg8
1•mhb•4m ago•0 comments

Show HN: Will my flight have Starlink?

1•bblcla•4m ago•0 comments

I dug into the Flipper One's firmware, and it's a pocket Linux PC

https://www.xda-developers.com/dug-into-flipper-one-firmware-not-flipper-zero-sequel/
1•theblazehen•6m ago•0 comments

SecDB

https://en.wikipedia.org/wiki/Michael_Dubno
1•tosh•6m ago•0 comments

Iran's South Pars Gas Field Is Attacked by Israel, Sending Energy Prices Soaring

https://www.nytimes.com/2026/03/18/world/middleeast/israel-strikes-south-pars-gas-oil-prices.html
1•spaghetdefects•6m ago•0 comments

As AI keeps improving, mathematicians struggle to foretell their own future

https://www.scientificamerican.com/article/as-ai-keeps-improving-mathematicians-struggle-to-foret...
1•ivansavz•8m ago•0 comments

Management Craft: A Talking Management Library

https://www.managementcraft.co
1•rafaelc•8m ago•0 comments

FFC: Social Media Without Algorithms, Moderators, or Special People

https://alnewkirk.com/frameworks/ffc
1•iamalnewkirk•8m ago•0 comments

FifthForceFramework

https://github.com/kwesting4/wake-up-protocol
1•kwesting4•9m ago•0 comments

Scaling Btrfs to petabytes in production: a 74% cost reduction story

https://thenewstack.io/btrfs-petabyte-cost-reduction/
1•motiejus•9m ago•0 comments

Assign tasks to Claude from anywhere in Cowork

https://support.claude.com/en/articles/13947068-assign-tasks-to-claude-from-anywhere-in-cowork
2•iBelieve•10m ago•0 comments

How HN: Ironkernel – Python expressions, Rust parallel

https://github.com/YuminosukeSato/ironkernel
1•acc_10000•12m ago•1 comments

AI Coding Is Gambling

https://notes.visaint.space/ai-coding-is-gambling/
1•speckx•12m ago•0 comments

I Gave My AI Agent $25 and Told It to Buy Me a Gift

https://thoughts.jock.pl/p/ai-agent-shopping-experiment-real-money-2026
1•joozio•12m ago•0 comments

Cadillac's F1 journey: 'Our Silverstone shakedown was a miracle'

https://www.theguardian.com/sport/2026/mar/03/cadillac-f1-valtteri-bottas-sergio-perez-graeme-lowdon
1•PaulHoule•13m ago•0 comments

OpenCLI – control Electron and web apps from the CLI or AI agents

https://github.com/jackwener/opencli
1•jackwener•13m ago•0 comments

Nvidia's Always-On Chip Detects Faces in Less Than a Millisecond

https://spectrum.ieee.org/face-recognition-nvidia-chip-soc
1•01-_-•13m ago•0 comments

Ask HN: Does Window's "Set Time Automatically" feature require the correct time?

2•scosman•14m ago•0 comments

The trillion-dollar African payments network nobody in tech noticed

https://micropay.dev/blog
2•possiblelion•14m ago•0 comments

The Pentagon is planning for AI companies to train on classified data

https://www.technologyreview.com/2026/03/17/1134351/the-pentagon-is-planning-for-ai-companies-to-...
2•01-_-•16m ago•0 comments

Parent-Managed Accounts on WhatsApp

https://blog.whatsapp.com/introducing-parent-managed-accounts-on-whatsapp?_fb_noscript=1
2•Tomte•16m ago•0 comments

OpenAI Parameter Golf

https://openai.com/index/parameter-golf/
1•hmate9•16m ago•1 comments

PDP11 Simulator Written in APL

https://github.com/emlautarom1/PDP_11_Simulator
1•tosh•17m ago•0 comments

S4: The Bob Lazar Story – Release Trailer (2026) [video]

https://www.youtube.com/watch?v=c3qBNo3PAjU
2•idoxer•17m ago•0 comments

Show HN: Mozilla Firefox is getting a free built-in VPN, with a catch

https://www.xda-developers.com/mozilla-firefox-is-getting-a-free-built-in-vpn-with-a-catch/
1•guilamu•18m ago•0 comments

Representing financial data as still life paintings

https://mercury.com/blog/insights-financial-data-art
1•cobertos•18m 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.