frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Code of Artificial Intelligence Offenses

https://syntheticjudiciary.com/
1•clipclopflop•33s ago•0 comments

Bringing Correctly Rounded Math to Production with LLVM-Libc

https://devblogs.microsoft.com/cppblog/bringing-correctly-rounded-math-to-production-with-llvm-libc/
1•kg•1m ago•0 comments

Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug

https://donjon.ledger.com/blog/rp2350-secure-debug-laser-fault-injection/
1•synack•4m ago•0 comments

Show HN: A Prometheus exporter for Sagemcom F3896 cable modems

https://github.com/colinedwardwood/sagemcom-docsis-exporter
1•b1shp•4m ago•0 comments

There's a startup sunsetting startups – business is booming

https://thehustle.co/newsletters/18-09-2026
1•DamnInteresting•4m ago•1 comments

Bespoke Nimble: open data, open model, open recipe for an open Jev

https://twitter.com/madiator/status/2100990591215783946
1•madiator•6m ago•0 comments

Show HN: ThumbGlance – Browser-local YouTube thumbnail preview and resize

https://thumbglance.com/
1•Austin49•6m ago•0 comments

Share an LLM endpoint over HTTPS while TLS still terminates on your machine

https://swobu.com/blog/https-routes/
1•metrofun•9m ago•0 comments

Wikivibes – Write the truth you wished existed

https://wikivibes.org/
2•tghfshdfgh•10m ago•0 comments

Let your coding agents exchange nofollow backlinks

https://getlinkbunny.com/
2•todsacerdoti•12m ago•0 comments

Dan Alistarh's Website (IST Austria Distributed Algorithms and Systems Lab)

https://daslab.ista.ac.at/
2•peter_d_sherman•12m ago•1 comments

Urban Bird Migration Hotspots: Study Reveals Role of Cities

https://www.audubon.org/magazine/nearly-half-of-us-bird-migration-hotspots-are-cities-heres-why-m...
2•speckx•13m ago•0 comments

Show HN: Jev helps you to not run malicous code

https://github.com/luantak/is-malicious
2•lu4p•14m ago•0 comments

Anti-Clockwise

https://notoneoffbritishisms.com/2026/09/18/anti-clockwise/
2•jjgreen•14m ago•0 comments

My Thoughts on AI and LLMs

2•leonardovb•15m ago•0 comments

Why Raccoons Have Been So Successful in Taking over Toronto

https://thewalrus.ca/raccoons-toronto/
2•bookofjoe•17m ago•0 comments

More than 900 killed in Gaza this year despite ceasefire

https://www.bbc.com/news/articles/c7708dy33pdo
4•Markoff•18m ago•1 comments

Chipotle is piloting a food safety platform with Palantir

https://www.nrn.com/food-safety/chipotle-is-piloting-a-food-safety-platform-with-palantir
2•Bluestein•19m ago•0 comments

ESP32 p4 pico and IMX477 camera

2•time-q•19m ago•0 comments

HyperFlow – one LoRA for all MiniMax-H3 tasks (ref2va/t2va/fl2va)

https://github.com/Video-Rebirth/hyperflow
1•jiant•20m ago•0 comments

MÒ: A zero-dependency UI layer built with HTML, CSS and minimal JavaScript

https://mo.sayago.dev/
1•sayagodev•21m ago•0 comments

Woman joins police chase by giving officer a lift in Nissan Micra

https://www.bbc.com/news/articles/crx2zjdg9p5go
1•mooreds•22m ago•0 comments

Compositor – The Photoshop Alternative for Mac

https://robbietilton.com/compositor
1•epaga•23m ago•0 comments

Open Letter: Minimum Conditions for Embedding Evaluators

https://aievaluatorforum.org/initiatives/embedded-evaluation-letter
3•eaq•24m ago•0 comments

Giant Wendy's franchisee Meritage Hospitality Group files for bankruptcy

https://www.nrn.com/restaurant-franchising/giant-wendy-s-franchisee-meritage-hospitality-group-fi...
1•mooreds•24m ago•0 comments

Congrats, Arizonans You rank last in cussing, study finds

https://www.phoenixnewtimes.com/news/arizona-ranks-last-in-cussing-40696758/
1•mooreds•25m ago•0 comments

Systemd is a suite of basic building blocks

https://brand.systemd.io/
2•Bluestein•26m ago•0 comments

The Origins of Peanut Allergy

https://stephenskolnick.substack.com/p/on-the-origins-of-peanut-allergy
1•Digit-Al•29m ago•0 comments

I had strings, but now I am free

https://blog.nathanlangley.dev/posts/no-strings.html
2•ninjahawk1•30m ago•0 comments

How Notion handles concurrent editing with CRDTs

https://www.notion.com/blog/how-notion-handles-concurrent-editing-with-crdts
1•austinl•30m ago•1 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

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