frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

.NET 10.0.7 Out-of-Band Security Update

https://devblogs.microsoft.com/dotnet/dotnet-10-0-7-oob-security-update/
1•yread•1m ago•0 comments

Trump is super unpopular. So why don't Democrats have a bigger lead?

https://www.natesilver.net/p/sbsq-31-trump-is-super-unpopular
1•7777777phil•1m ago•0 comments

AI Unmasked: a series of courses on AI without the hype

https://www.aiunmasked.io/
1•quietproof•1m ago•0 comments

We heard you: the new Framework Laptop 13 Pro [video]

https://www.youtube.com/watch?v=GnOpIQJnYWU
1•znpy•6m ago•0 comments

Ask HN: Claude Code Alternative

1•Frannky•6m ago•1 comments

Air Force can't quit the A-10 Warthog, extends service into 2030

https://taskandpurpose.com/news/air-force-a10-warthog-2030/
4•ilamont•6m ago•0 comments

Tell HN: My open-source project hit 5k registered users

4•darkhorse13•9m ago•0 comments

The distribution of power and inclusiveness across deep time

https://www.science.org/doi/10.1126/sciadv.aec1426
1•PaulHoule•9m ago•0 comments

Taskd – a new task management system

https://lmd.sh/taskd-a-new-task-management-system/
1•levidurfee•9m ago•0 comments

Ask HN: Gemini Pro does not give montly credits, do I have any rights?

https://gemini.google/us/subscriptions/?hl=en
1•kingleopold•10m ago•2 comments

A short taxonomy of the collapse of streaming subscription bundles

https://narendranag.com/2026/04/20/a-short-taxonomy-of-bundle-collapse.html
1•narendranag•10m ago•0 comments

Your Smart TV is taking screenshots of your screen every 15 seconds

https://twitter.com/heynavtoor/status/2044433988312560051
3•nowflux•11m ago•0 comments

The Impatient Programmer's Guide to Bevy and Rust: Ch 12 Let There Be Networking

https://aibodh.com/posts/bevy-rust-game-development-chapter-12/
1•febin•13m ago•0 comments

Claude Code removed from Anthropic's Pro plan

https://claude.com/pricing
18•JamesMcMinn•16m ago•6 comments

Where's the Raccoon with the Ham Radio?

https://simonwillison.net/2026/Apr/21/gpt-image-2/
1•metadat•16m ago•1 comments

I Used ChatGPT to Get Past a Game Breaking Bug in the Long Dark

https://old.reddit.com/r/ChatGPT/comments/1srysia/i_used_chatgpt_to_get_past_a_game_breaking_bug_in/
1•fpgaminer•16m ago•0 comments

Zero-Install Browser SQL Trainer – Done in 2 Days

https://softwareengel.github.io/sql-trainer/
1•Softwareengel•17m ago•0 comments

Quick thoughts on GitHub CTO's post on availability

https://surfingcomplexity.blog/2026/03/12/quick-thoughts-on-github-ctos-post-on-availability/
2•sylvainkalache•21m ago•0 comments

Better TTS on Linux

https://shkspr.mobi/blog/2026/04/better-tts-on-linux/
2•speckx•23m ago•0 comments

Critical .NET 10.0.6 vulnerability in DataProtection

https://github.com/dotnet/announcements/issues/395
3•merb•23m ago•1 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
3•ndr42•27m ago•1 comments

Odyssey-2 Max: Scaled World Simulation

https://odyssey.ml/introducing-odyssey-2-max
1•olivercameron•27m ago•0 comments

Supervised Tesla FSD in Europe [video]

https://www.youtube.com/watch?v=-YJvbkNVHng&list=TLPQMjEwNDIwMjbsBglIXbXnVw&index=4
2•simonebrunozzi•28m ago•0 comments

Automatic Thatcher-Effect Generator

https://bigjobby.com/optical/Thatcher/
1•IsopropylMalbec•29m ago•0 comments

Meta will train AI agents by tracking employees' mouse, keyboard use

https://arstechnica.com/ai/2026/04/meta-will-use-employee-tracking-software-to-help-train-ai-agen...
2•choult•30m ago•0 comments

LAcon V Announces 2026 Hugo Awards Finalists

https://file770.com/lacon-v-announces-2026-hugo-awards-finalists/
2•MaysonL•30m ago•0 comments

Ask HN: What Is Anthropic Doing?

6•d3ckard•32m ago•3 comments

The importance of people who care

https://rachelandrew.co.uk/archives/2026/04/21/the-importance-of-people-who-care/
3•speckx•36m ago•0 comments

Fisherian Runaway in the Modern Economy

https://www.rosshartshorn.net/stuffrossthinksabout/fisherian_runaway/
2•rossdavidh•37m ago•0 comments

Why XOR a register with itself instead of subtracting

https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247
1•LorenDB•39m 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.