frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Volkswagen announces V2G for private customers for late 2026

https://www.heise.de/en/news/Volkswagen-announces-V2G-for-private-customers-for-late-2026-1126096...
1•doener•36s ago•0 comments

Denmark chooses Europe's Patriot rival for air defence system

https://www.reuters.com/business/aerospace-defense/denmark-chooses-europes-patriot-rival-air-defe...
2•doener•1m ago•0 comments

I, AI – a memoir written in first person by an AI about its own existence

https://www.amazon.com/dp/B0GX2Z9D9X
1•natal-ia•1m ago•0 comments

Ask HN: Which is better movie(check the text)?

1•wasimsk•2m ago•0 comments

Show HN: Macpad – turn your game controller into a Mac mouse and keyboard

1•henitchobisa•2m ago•0 comments

Google is Hollowing out Waze, and that's a Problem for Apple

https://builtformars.com/case-studies/waze
1•jeffwass•2m ago•0 comments

Email could have been X.400 times better

https://buttondown.com/blog/x400-vs-smtp-email
1•maguay•4m ago•0 comments

Ask HN: Is Microsoft copilot good or garbage?

1•wasimsk•4m ago•0 comments

An update on rust-coreutils for Ubuntu 26.04

https://discourse.ubuntu.com/t/an-update-on-rust-coreutils/80773
1•self•4m ago•0 comments

Predicting the AI Ecosystem for 2026

https://xn--vk5b17r.online/posts/ai-predictions-2026/
1•theoneone•6m ago•1 comments

Is systems thinking the only skill left?

https://www.youtube.com/watch?v=7zCsfe57tpU
1•rickdg•7m ago•0 comments

Desktop buddy that controls your screen

https://clippyai.app
1•AmDab•10m ago•0 comments

Show HN: Generate Static Sites from Videos

1•keepamovin•11m ago•0 comments

An Open Letter to Hetzner

https://old.reddit.com/r/hetzner/comments/1sskwfp/10_outages_in_30_days_an_open_letter_to_hetzner/
1•0x000042•12m ago•0 comments

Why The Split? [Meshcore]

https://blog.meshcore.io/2026/04/23/the-split
2•simonjgreen•13m ago•0 comments

Show HN: JibarOS, a shared inference runtime for Android

https://github.com/Jibar-OS/JibarOS
1•rafaelvalle03•15m ago•0 comments

Train-Before-Test: One Simple Fix That Makes LLM Benchmark Rankings Agree

https://ghzhang233.github.io/blog/2026/03/05/train-before-test/
1•taegee•16m ago•1 comments

Boston marathon's good Samaritan loses race time but wins plaudits

https://www.thetimes.com/us/news-today/article/boston-marathon-runners-video-viral-mv2glcvff
1•petethomas•23m ago•0 comments

Rediscovering the Handcart

https://solar.lowtechmagazine.com/2026/04/rediscovering-the-handcart/
1•jgrodziski•23m ago•0 comments

The Second Wave of the API-First Economy

https://brandur.org/second-wave-api-first
1•birdculture•25m ago•0 comments

Left Behind: A BeOS and Be Incorporated Post-Mortem (2024)

https://macfolkloreradio.com/be/
1•henry_flower•27m ago•0 comments

Ask HN: Where are all the AI disasters?

1•fiftyacorn•27m ago•0 comments

Healthy mother to end life in Swiss clinic after grief at losing son

https://www.thetimes.com/uk/healthcare/article/healthy-mother-to-end-life-in-swiss-clinic-after-g...
1•petethomas•29m ago•0 comments

I made a tool to teach you how to sketch portraits

https://www.sketch-tutor.com
1•blekaj•32m ago•1 comments

The [UK] Green Party is STILL bad at being green

https://takes.jamesomalley.co.uk/p/the-green-party-is-still-bad-at-being-green
1•DamonHD•36m ago•0 comments

OpenAI deprecation notice: upcoming model shutdowns in 2026

https://developers.openai.com/api/docs/deprecations
2•ananthakumaran•36m ago•0 comments

The Ultimate Personal AI Supercomputer – Nvidia DGX Station

https://www.nvidia.com/en-eu/products/workstations/dgx-station/
1•rbanffy•36m ago•0 comments

Release PiClaw v1.8.5 – Colossus: The Forbin Project

https://github.com/rcarmo/piclaw/releases/tag/v1.8.5
1•rcarmo•38m ago•0 comments

Designing Data-intensive Applications with Martin Kleppmann (2026) [video]

https://www.youtube.com/watch?v=SVOrURyOu_U
1•zeristor•38m ago•1 comments

The Markdown Link no. 24

https://md-handbook.com/blog/markdown-link-no-24/
1•wordius•41m ago•0 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.