frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How we use dopamine to get you to spend less time on your phone

https://getisland.app/blog/fire-with-fire/
1•Intragalactic•1m ago•0 comments

New CA laws let community colleges offer up to 12 bachelor's degrees

https://calmatters.org/education/higher-education/2026/09/new-california-laws-community-college-d...
1•lxm•4m ago•0 comments

Francis Fukuyama: Why I Changed My Mind About AI Risk

https://www.persuasion.community/p/why-i-changed-my-mind-about-ai-risk
1•mellosouls•5m ago•0 comments

Smart Ring Maker Oura, Backers Seek $2.2B in US IPO

https://www.bloomberg.com/news/articles/2026-09-21/smart-ring-maker-oura-backers-seek-2-2-billion...
3•elo2000•6m ago•0 comments

OpenAI president and MAGA Inc. donor to attend Trump-Xi state dinner

https://www.politico.com/news/2026/09/21/openai-maga-donor-trump-xi-dinner-01086456
1•Alien1Being•7m ago•0 comments

Put Tabs Away

https://chromewebstore.google.com/detail/leotabs-—-tab-manager-swi/heolckkdeandgagkiefggcneodni...
2•ringlochid•10m ago•0 comments

Ottawa to build sovereign AI ecosystem for Canadian defence operations

https://www.theglobeandmail.com/business/economy/article-ottawa-building-sovereign-ai-ecosystem-f...
1•Teever•12m ago•0 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
3•pvdebbe•12m ago•0 comments

Turn ad-hoc subagents into durable, accountable AI teams

https://github.com/ringlochid/oh-my-subagents
3•ringlochid•14m ago•0 comments

Cohere and Aleph Alpha sign business combination agreement

https://cohere.com/blog/cohere-and-aleph-alpha-sign-agreement
1•diegocstn•16m ago•0 comments

The Inference Gap

https://twitter.com/Lon/status/2101034933284417614
1•Jimega36•21m ago•1 comments

Ju Ju Tsu

https://arialdo.codeberg.page/ju-ju-tsu/
1•hn92726819•22m ago•1 comments

Privacy Tools Experts Use

https://proton.me/blog/privacy-tools-experts-use
3•devonnull•23m ago•0 comments

Ticket-In Ticket-Out

https://en.wikipedia.org/wiki/Ticket-in,_ticket-out
2•suopspaces•25m ago•0 comments

Show HN: An honest comparison of the Agent Harness vs. six alternatives

https://time2magic.com/agent-harness
1•bishopz•29m ago•0 comments

Before and After Photos Show Data Centers Furiously Popping Up Across America

https://petapixel.com/2026/09/19/before-and-after-photos-show-data-centers-furiously-popping-up-a...
1•andsoitis•30m ago•0 comments

Breaking a four year hiatus to talk about the export keyword (PEPs 842 and 843)

https://aroberge.blogspot.com/2026/09/breaking-four-year-hiatus-to-talk-about.html
1•lumpa•30m ago•0 comments

Show HN: Primescript – Academic Markdown editor with vector search and LaTeX

https://primescript.com
1•mac-r•31m ago•0 comments

Show HN: A Mondrian-style puzzle block game

https://game.wdamao.com/mondrian-blocks/
1•wdamao•32m ago•1 comments

A Calendar of Smells

https://worldsensorium.com/a-calendar-of-smells/
1•dnetesn•33m ago•0 comments

A space war played in SQL

https://schemaverse.com/
1•thunderbong•33m ago•0 comments

Solitaire Alone Together

https://eieio.games/blog/solitaire-alone-together/
1•anitil•34m ago•2 comments

An Ocean Planet in Space

https://blue-continuum.com/an-ocean-planet-in-space
2•dnetesn•35m ago•0 comments

EZ4: A reflection-driven alternative to AWS CDK for serverless apps

https://github.com/sbalmt/ez4
2•sbalmt•39m ago•0 comments

Ask HN: How do you sell a small bootstrapped SaaS?

2•hpsilab•41m ago•0 comments

A 7B fact-checker beat 30B LLM reviewers and deleted no true claims

https://openteams.com/llm-review-reliability/
3•khuyentran1401•42m ago•0 comments

The World After Capital (2024)

https://worldaftercapital.org/
2•measurablefunc•43m ago•0 comments

How Your Internet Traffic Gets There: IXPs and Peering

https://community.ipinfo.io/t/how-your-internet-traffic-actually-gets-there-ixps-peering-and-why-...
2•shubhamjain•45m ago•0 comments

A Programming Mentality

https://www.natemeyvis.com/a-programming-mentality/
1•meetpateltech•47m ago•0 comments

Vibes vs. Evidence: What delivers AI code review quality

https://dsifry.github.io/harnesseval/
3•pjf•47m 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.