frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Did poop enable the evolution of complex animals?

https://arstechnica.com/science/2026/08/feces-fueled-a-flurry-of-evolution-during-the-cambrian-st...
1•jnord•2m ago•0 comments

DeepMind Models

https://deepmind.google/models/
1•nimsarajay•3m ago•0 comments

How do I self-host a good-looking AI generated website

1•pcblues•3m ago•0 comments

How much memory is needed to render a TrueType font to bitmap

https://nothings.org/gamedev/font_rendering_malloc.txt
1•anitil•5m ago•1 comments

The Strongest El Niño Ever Forecast and the Hunger It Will Leave Behind

https://www.4hunger.org/p/scorched-harvest-the-strongest-el
1•fredski42•7m ago•0 comments

Show HN: LinkShip – Turn any file into a trackable, shareable link

https://linkship.net
1•sunpy•9m ago•0 comments

Show HN: Find the jobs that fit your resume in 60 seconds

https://www.seekerscore.com
3•not_wowinter14•14m ago•0 comments

ChatGPT Desktop (Codex Desktop) for Linux

https://openai.com/codex/
5•allanrbo•18m ago•0 comments

Size and Lifespan

https://xkcd.com/3283/
4•dgudkov•19m ago•0 comments

Vibe Coding Interview

http://funcall.blogspot.com/2026/08/vibe-coding-interview.html
5•zombot•20m ago•2 comments

Ratings Firm Accused of Grade Inflation Vouched for $40B of Insurer Debt

https://www.wsj.com/finance/ratings-firm-accused-of-grade-inflation-vouched-for-40-billion-of-ins...
5•petethomas•29m ago•0 comments

Patterns and problems in emerging multiagent systems

https://www.anthropic.com/research/multiagent-systems
4•ledoge•31m ago•0 comments

BrowserMesh – isolated Playwright sessions for MCP clients

https://github.com/scrollDynasty/multi-agent-browser-mcp
4•scroll11•34m ago•0 comments

Celld: Self-hosted, distributed Durable Objects

https://celld.dev/
5•godisdad•35m ago•0 comments

CFTC Advisory on Self-Certification of Incentive Programs for Prediction Markets

https://www.cftc.gov/PressRoom/PressReleases/9282-26
5•petethomas•36m ago•0 comments

Living with Depression: The Part I Never Say Out Loud

https://medium.com/freedomofthought/living-with-depression-the-part-i-never-say-out-loud-3e9c218b...
5•raynchad•36m ago•0 comments

What Kind of Particularism?

https://medium.com/freedomofthought/what-kind-of-particularism-489c113a8a9c
5•raynchad•37m ago•0 comments

Lossless codec for AI agent messages – 36% fewer tokens, overhead counted

https://github.com/reh8n/a2acompress
4•reh8n•39m ago•0 comments

Who invented the great numerical algorithms? [pdf]

https://math.pku.edu.cn/teachers/litj/notes/numer_anal/inventorstalk.pdf
4•nill0•39m ago•0 comments

My First Post

4•VimalRB•40m ago•0 comments

Show HN: CoreTrace, a visual 16-bit CPU simulator

https://coretrace.srianjaneyam.me/
5•mr-anjaneyam•53m ago•2 comments

AI to Kids by Letting Them Tweak Local Chatbots [video]

https://www.youtube.com/watch?v=fNkt41q7eqs
5•dbreunig•58m ago•0 comments

Rsync 3.5 Released as "Extraordinary" Update to Fix 33 Security Issues

https://www.phoronix.com/news/Rsync-3.5
4•Bender•58m ago•0 comments

Long Story Short: Daily word game

https://gizmodo.com/long-story-short-wants-to-be-the-wordle-of-editing-bad-sentences-2000797842
3•akashwadhwani35•1h ago•0 comments

General Dynamics Failed to Build Artillery Shells for the Army

https://www.propublica.org/article/general-dynamics-artillery-factory-failed
5•colinprince•1h ago•0 comments

Is Bending Spoons Good for Startups?

https://s-1.vercel.app/posts/bending-spoons-a-capital-cycle-play/
4•Altaba•1h ago•0 comments

Show HN: UTC Time - live clock, ISO 8601, Unix timestamp

https://utctime.app/
6•nadermx•1h ago•0 comments

DeepSeek V4 Pro 0813: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/deepseek-v4-pro
4•theanonymousone•1h ago•0 comments

Install Manticore Search with one command

https://medium.com/@s_nikolaev/install-manticore-search-with-one-command-8ab5ba07a06b
3•snikolaev•1h ago•0 comments

Specula: Scaling formal specs for autonomous model checking of system code

http://muratbuffalo.blogspot.com/2026/08/specula-scaling-formal-specifications.html
3•matt_d•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.