frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TimerVana a Local-first scheduler for real world routines

https://timervana.net/browse
1•granto•4m ago•0 comments

This Month in Ladybird – August 2026

https://ladybird.org/newsletter/2026-08-31/
2•exploraz•5m ago•0 comments

Ask HN: Why isn't there a cursor for video games development

1•JimsonYang•6m ago•1 comments

NextDNS: fully configurable DNS, accepts money from customers as business model

https://nextdns.io/
1•Arubis•10m ago•1 comments

Can guitar frets perform multiplication?

https://www.charlespetzold.com/blog/2026/09/Can-Guitar-Frets-Perform-Multiplication.html
2•wibbily•11m ago•0 comments

Christmas Village shoppers no longer will be allowed to enter booths

https://www.phillyvoice.com/christmas-village-booths-ada-compliance/
2•josephcsible•12m ago•1 comments

What Tech Titans Don't Understand About Sci-Fi

https://www.theatlantic.com/newsletters/2026/09/the-books-briefing-tech-titans-sci-fi-asimov-lepo...
4•cisc•17m ago•0 comments

Rust's Type Checker Implementation Is Unsound: An Empirical Study

https://arxiv.org/abs/2608.28713
2•pykello•18m ago•0 comments

Abliteration.ai is making a business out of removing AI guardrails

https://techcrunch.com/2026/09/03/abliteration-ai-is-making-a-business-out-of-removing-ai-guardra...
2•ndesaulniers•19m ago•0 comments

The Search Evaluation Ladder

https://www.searchplex.net/blog/search-evaluation-ladder
2•splxai•22m ago•0 comments

Los Angeles District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
3•bookofjoe•36m ago•4 comments

Basic News – a Telegram bot with customizable news digests

https://basicnews.world/
1•xenohunter•37m ago•0 comments

A pre-registered test: can a business's rules be recovered from its data?

https://justinsmith.build/writing/everything-a-business-knows/
1•s14jsmith•41m ago•0 comments

What runs when you open a repository

https://veltron.cc/research/what-runs-when-you-open-a-repository
1•nulvec•41m ago•0 comments

Show HN: Time Wizard

https://huggingface.co/jadidbourbaki/time-wizard
1•jadidbourbaki•41m ago•0 comments

Show HN: Mongotar – Files to Prompt, and Back

https://github.com/sebastiancarlos/mongotar
1•httbs•42m ago•0 comments

Ask HN: Wolfram Cloud Is Out

1•smithmayowa•45m ago•0 comments

Almost half of ICANN-accredited registrars under the control of a single busines

https://domainincite.com/31912-dropcatch-acquires-300-more-registrars
7•dendark•45m ago•0 comments

SwiftTUI

https://swifttui.sh/
1•frizlab•47m ago•0 comments

Cloud Engineer

1•endowed7•47m ago•0 comments

Exhibit of 2026 AI Agents

https://agent-museum-2026.halstonsellentin.chatgpt.site
1•hsellentin•47m ago•0 comments

Understanding RabbitMQ in Simple Terms

https://sushantdhiman.dev/blog/understanding-rabbitmq/
1•birdculture•49m ago•0 comments

Record-High 89% in U.S. Say Government Corruption Widespread

https://news.gallup.com/poll/713933/record-high-say-government-corruption-widespread.aspx
22•karakoram•49m ago•4 comments

DaemonCore Launches a Slew of Free Pentesting Tools

https://www.daemoncore.app/
1•DaemonCoreApp•50m ago•1 comments

Big Crocs vs. Little Crocs

https://marcrandolph.substack.com/p/big-crocs-vs-little-crocs
1•fagnerbrack•51m ago•0 comments

Send interactive life coaching worksheets [video]

https://www.youtube.com/watch?v=gNW7sSXSoW4
1•shammadahmed•52m ago•0 comments

Make money from your menu bar

https://sponsorbar.io/
1•partsch•52m ago•0 comments

Gemini vs. Claude: Which AI Model created a better perfume?

https://www.youtube.com/watch?v=YfFk050AjPw
1•yipinwong•54m ago•1 comments

A Hundred Steps Back

https://www.inventbuild.studio/blog/a-hundred-steps-back-3d12f33c95138084bb9efc107cc54d13
1•virgil_disgr4ce•54m ago•0 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
47•negura•1h ago•8 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.