frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A SLM Optimized for Tool Calling

https://blog.neurometric.ai/p/introducing-a-task-specific-tool
1•robmay•3m ago•0 comments

Exitus Advisor

https://exitusadvisor.org/
1•polysw•8m ago•1 comments

Show HN: Documentation.ai.md – a docs standard for AI agents, not humans

https://github.com/iwasoftcom/ai-docs-standard
1•iwasoft•10m ago•0 comments

Trust

https://ncase.me/trust/
1•simonebrunozzi•11m ago•0 comments

Show HN: AI images and videos from text, free, no signup

https://seiseiai.io/
1•wowinter15•12m ago•0 comments

Zod v4.5 adds schema compilation (3-9x faster validation)

https://twitter.com/colinhacks/status/2093725420462182512
1•birdculture•12m ago•0 comments

My Browser Fingerprint

https://amiunique.org/fingerprint
2•simonebrunozzi•16m ago•0 comments

What does data say about the Nepal flash flood?

https://eartharxiv.org/repository/view/14687/
1•aryaminus•24m ago•0 comments

Show HN: Deckle – A macOS app that overlays paper texture onto your screen

https://github.com/YellowFoxH4XOR/deckle
1•akshatkat•24m ago•0 comments

Wrapping GTK4 in 800 lines of Clojure with Jolt

https://yogthos.net/posts/2026-08-29-glimmer-ui.html
2•yogthos•36m ago•0 comments

Redesigning the Inference Chip: From Nvidia GPU's Flaws to OpenAI Jalapeño

https://zartbot.github.io/blog/arch/jalapeno/en.html
1•hasheddan•39m ago•0 comments

What I Learned from My Mom (1941-2026)

https://experimentalliving.substack.com/p/what-i-learned-from-my-mom-1941-2026
3•NaOH•39m ago•0 comments

Appetite for insect protein is early evidence of an El Niño shock wave

https://www.wsj.com/economy/global/the-strongest-el-nino-in-a-generation-is-wreaking-havoc-on-glo...
2•cwwc•46m ago•0 comments

Syzygies and Higher Groupoids

https://hidden-phenomena.com/articles/anima
1•measurablefunc•49m ago•0 comments

Show HN: SSH Ache – open-source desktop SSH client with SFTP, tunnels and MCP

https://github.com/SSH-Ache/ssh-ache
1•tanvirmahin24•50m ago•0 comments

Show HN: Stop That Shit – a guard against unrequested hashes from coding agents

https://github.com/lennney/stop-that-shit
2•lennney•51m ago•0 comments

You or Someone You Love Could Be Next

https://robertreich.substack.com/p/you-or-someone-you-love-could-be
3•dxs•52m ago•0 comments

DIY Gene Gun [video]

https://www.youtube.com/watch?v=gRIMH3cx0iw
1•E-Reverance•55m ago•0 comments

Slop.speak – translate human speak to AI slop

https://slop-speak.pages.dev/
1•daavidhauser•56m ago•0 comments

Tencent Releases and Open-Sources Tencent Hy4 Preview

https://www.tencent.com/tencent-releases-and-open-sources-tencent-hy4-preview/
29•shenli3514•59m ago•4 comments

AI and the Commons

https://creativecommons.org/ai-and-the-commons/
2•arto•1h ago•1 comments

How I made Rustdoc 33% faster in one week

https://noahlev.org/blog/2026/08/27/making-rustdoc-faster/
4•camelid•1h ago•1 comments

The new Go JSON API: twice as fast, or 1.5x slower?

https://lemire.me/blog/2026/08/29/the-new-go-json-api-twice-as-fast-or-1-5x-slower/
1•ingve•1h ago•0 comments

Domain-Driven Agents

https://coldtake.dev/blog/domain-driven-agents
4•AlarQ•1h ago•0 comments

Subs, the cloud native agent harness

https://substructure.ai/
1•handfuloflight•1h ago•0 comments

Signal Cartel a Home for Peaceful Explorers

https://signalcartel.org/
1•Bluestein•1h ago•0 comments

The elementary school pickup incident and the road ahead

https://shitposting.ai/pickup-incident/
6•mkeeter•1h ago•0 comments

Beyond Booleans

https://overreacted.io/beyond-booleans/
3•m-hodges•1h ago•0 comments

There oughta be a Lego marble run

https://there.oughta.be/a/lego-marble-run
1•_Microft•1h ago•0 comments

Should the press "run toward" AI?

https://www.cjr.org/analysis/should-the-press-run-toward-ai-tom-rosenstiel-new-book-next-journali...
1•thm•1h 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.