frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Superlogical Server Memory Optimizations Overview [video]

https://www.youtube.com/watch?v=T5gV6anSt-4
1•bbg2401•1m ago•0 comments

Distributed PyTorch Profiling

https://zhenyu.github.io/2026/09/02/why-a-gpu-profiling-capture-turned-into-a-distributed-systems...
1•asaiacai•2m ago•0 comments

Performance Characterization of SPEC CPU 2026 on AMD EPYC 9755 "Zen 5" Processor

https://arxiv.org/abs/2609.01527
1•matt_d•3m ago•0 comments

Google DeepMind Just Rolled Out Its Most Accurate AI Global Weather Model

https://gizmodo.com/google-deepmind-just-rolled-out-its-most-accurate-ai-global-weather-model-200...
1•Aboutplants•4m ago•0 comments

Who is using FPGA for ML inference?

2•softwarewright•4m ago•0 comments

Ask HN: iPhone Camera on indicator.

1•zahirbmirza•8m ago•0 comments

These websites Have Been Seized

https://seized.fyi/
1•Cider9986•8m ago•0 comments

NVIDIA's Acquisition of HuggingFace was for $HuggingFace

1•MontagFTB•10m ago•0 comments

Ukrainian Sea Drones Strike Russian Black Sea Resort Town of Sochi

https://www.twz.com/news-features/ukrainian-sea-drones-strike-russian-black-sea-resort-town-of-so...
1•cisc•10m ago•0 comments

Dependent if expressions without dependent types

https://haskellforall.com/2026/09/dependent-if-expressions
1•birdculture•11m ago•0 comments

Rusty state of USS Abraham Lincoln after marathon deployment shocks observers

https://www.cnn.com/2026/09/03/asia/aircraft-carrier-abraham-lincoln-rust-intl-hnk-ml
1•cisc•12m ago•0 comments

Flock Is Cancelled–and Their Competitors Are Profiting

https://www.motherjones.com/politics/2026/09/flock-contracts-cancelled-cameras-alpr-rekor-axon-fl...
2•cdrnsf•12m ago•0 comments

Hosting Valkey: one MicroVM per store, durable by default

https://mojave.sh/blog/valkey-in-a-microvm
2•stwrt•12m ago•0 comments

GPT 6 is way behind Anthropic on Artificial Analysis

https://artificialanalysis.ai/models/gpt-6-astra
2•pranshuchittora•13m ago•0 comments

The Selfish AI Model

https://ateliti99.substack.com/p/the-selfish-ai-model
1•olirex99•14m ago•0 comments

Jsonquery_GUI – A native Rust/egui desktop tool for streaming jq queries

https://github.com/nujufas/jsonquery_gui
1•nujufas•15m ago•0 comments

AWS STS

1•fotta•17m ago•0 comments

Four major AI models suffer rare overlapping downtime

https://arstechnica.com/ai/2026/09/four-major-ai-models-suffer-rare-overlapping-downtime/
2•SockThief•19m ago•0 comments

New weight loss and diabetes treatment helps burn fat while keeping muscle

https://news.berkeley.edu/2026/08/21/a-promising-new-weight-loss-and-diabetes-treatment-helps-bur...
5•gmays•20m ago•0 comments

Parity Problem

https://en.wikipedia.org/wiki/Parity_problem
1•binyu•21m ago•0 comments

Show HN: We replaced the pelican benchmark with a hippo

https://hippo.ryansailab.com
2•codemax98•21m ago•2 comments

Have we finally found dark matter?

https://www.scientificamerican.com/article/have-we-finally-found-dark-matter/
3•bookofjoe•21m ago•1 comments

Show HN: DrawDB Pro – design database schemas for your team and agents

https://www.drawdb.app/
3•1ilit•22m ago•0 comments

Ask HN: Is there a test for measuring cognitive affects from LLM usage?

2•niwrad•22m ago•0 comments

CERN moves accelerator control computers to Debian

https://www.theregister.com/os-platforms/2026/09/03/cern-moves-thousands-of-accelerator-control-c...
1•joebuckwilliams•23m ago•0 comments

Mullvad migrating to Q9 for encrypted DNS

https://mullvad.net/en/blog/shutting-down-our-public-encrypted-dns-servers-and-sponsoring-quad9-i...
3•matrix8967•24m ago•1 comments

Court Rules Against Citizen Journalists in DMCA Takedown Case–EFF Will Appeal

https://www.eff.org/deeplinks/2026/09/court-rules-against-citizen-journalists-dmca-takedown-case-...
2•hn_acker•25m ago•0 comments

I built an AI development environment that runs and builds software on Android

https://github.com/sedds89/StitchLabtools
1•sedds89•27m ago•0 comments

I used AI to connect with 30 people at a conference

https://galvered.com/blog/ai4-conference/
1•Bootstrapper909•28m ago•0 comments

Both recent GCP outages caused by fiber optic maintenance

2•fastest963•32m ago•0 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.