frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Zed Editor Theme-Builder

https://zed.dev/theme-builder
1•cuechan•59s ago•0 comments

Counterfeit Power Cables – A Fire Waiting to Happen

https://goughlui.com/2026/05/09/notes-counterfeit-power-cables-a-fire-waiting-to-happen/
1•goodburb•2m ago•0 comments

Mandala: Open Source Logistics Orchestration

https://github.com/theoddden/Mandala
1•Facingsouth•2m ago•0 comments

The Two Abstractions of System Design: Hide or Reduce

http://muratbuffalo.blogspot.com/2026/05/the-two-abstractions-of-system-design.html
1•matt_d•3m ago•0 comments

Shelf Source: Tom MacWright

https://roadlessread.com/views/ss-macwright
1•tobr•3m ago•0 comments

Fixed the mobile display issue for income tax calculator

https://takehome.tax
1•ccnomas•4m ago•0 comments

Revibed accused of selling unlicensed vinyl rips without clearing rights (2025)

https://ra.co/news/82409
1•lelandfe•6m ago•0 comments

Hyundai Opens New Global Trade Route Through Mexico's Interoceanic Corridor

https://mexecution.com/en/blogs/hyundai-opens-new-global-trade-route-through-mexico-s-interoceani...
1•gscott•6m ago•0 comments

New Long-Necked Dinosaur Unearthed in Brazil Has European Roots

https://nautil.us/new-long-necked-dinosaur-unearthed-in-brazil-has-european-roots-1280619
1•Brajeshwar•6m ago•0 comments

New data shows how the most common first and last names in the U.S. have changed

https://www.nbcnews.com/data-graphics/data-shows-first-names-last-names-rcna342715
2•freejoe76•6m ago•0 comments

The Soul in the Machine

https://netwars.pelicancrossing.net/2026/05/08/the-soul-in-the-machine/
1•ColinWright•8m ago•0 comments

EVE Online dev establishes "research partnership" with Google DeepMind

https://www.eurogamer.net/eve-online-dev-breaks-from-pearl-abyss-and-establishes-research-partner...
2•czottmann•11m ago•0 comments

Tell HN: ChatGPT and Claude web front ends can run bash commands remotely

1•mabynogy•12m ago•0 comments

Show HN: AirScore – Daily air-quality emails synthesizing EPA, NOAA, and pollen

https://getairscore.com
1•JHARDIMAN•13m ago•0 comments

Peter Fortin Programming for Philosophers (2023)

https://github.com/KripkesBeard/programming-for-philosophers
1•3willows•14m ago•0 comments

On Superpower Suicide

https://snyder.substack.com/p/on-superpower-suicide
2•gpi•14m ago•0 comments

Microsoft is upgrading Windows 11 touchpad with four new gestures

https://www.windowslatest.com/2026/05/09/microsoft-is-upgrading-windows-11-trackpad-with-automati...
2•thunderbong•16m ago•0 comments

Apple Private Relay and network parental control

https://tech.chrishardie.com/2026/apple-private-relay-network-parental-control/
2•ChrisHardie•21m ago•0 comments

Who sets the Doomsday Clock – and what can they tell us about our future?

https://www.theguardian.com/science/2026/may/09/doomsday-clock-ai-iran-ukraine-war-climate-breakd...
2•mitchbob•21m ago•0 comments

Data-Oriented Demo: SOA, composition (2015) [video]

https://www.youtube.com/watch?v=ZHqFrNyLlpA
1•tosh•24m ago•0 comments

Reactions to "We Have Learned Nothing"

https://reactionwheel.net/2026/05/reactions-to-we-have-learned-nothing.html
2•jeffreyrogers•24m ago•0 comments

CPanel's Black Week: 3 New Vulnerabilities Patched After Attack on 44k Servers

https://www.copahost.com/blog/cpanels-black-week-three-new-vulnerabilities-patched-after-ransomwa...
2•ggallas•24m ago•0 comments

On Cloudflare

https://indiscretemusings.substack.com/p/on-cloudflare
1•gpi•26m ago•0 comments

Ask HN: How do you give estimates in the age of Agentic coding

2•nibbleyou•27m ago•1 comments

What you need to know about the cruise ship hantavirus outbreak

https://www.technologyreview.com/2026/05/08/1136988/heres-what-you-need-to-know-about-the-cruise-...
1•joozio•27m ago•0 comments

Gartner: AI layoffs don't create returns, they just create vacancies

https://www.theregister.com/ai-and-ml/2026/05/06/ai-layoffs-backfire-as-cutting-staff-doesnt-cut-...
3•feverzsj•27m ago•0 comments

Preparing for a 'Vulnerability Patch Wave'

https://www.ncsc.gov.uk/blogs/prepare-for-vulnerability-patch-wave
2•mooreds•28m ago•0 comments

From phones to humanoid robots: China's supply chain eyes next growth curve

https://www.scmp.com/tech/tech-trends/article/3352212/phones-robots-chinas-supply-chain-eyes-next...
1•mooreds•28m ago•0 comments

Taiwan's Plastic Habit Collides with Shortages Caused by a Faraway War

https://www.nytimes.com/2026/05/09/business/taiwan-plastic-bag-shortage.html
1•mooreds•28m ago•0 comments

Ask HN: What would you include if you could make your own phone?

1•vednig•28m ago•1 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

https://github.com/paddymul/buckaroo
105•paddy_m•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Congratulations on launching. Buckaroo looks great.
franky47•11mo ago
But does it work across data tables with 8 dimensions?
trsohmers•11mo ago
Only with the oscillation overthruster flag enabled.
hodder•11mo ago
Looks cool to me. I often just end out exporting and opening in excel to do this
epistasis•11mo 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•11mo ago
How does it compare to Data Wrangler ? I like Data Wrangler because it let us open up in a separate VS Code window.