frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How HN: DocoAPI – API docs that auto-sync from your OpenAPI spec

https://docoapi.com/
1•onmyway133•1m ago•0 comments

Clarke and Dawe – The Front Fell Off [video] (1991)

https://www.youtube.com/watch?v=3m5qxZm_JqM
1•walterbell•2m ago•0 comments

Autonomous Rocket Landing with Reinforcement Learning (YouTube)

https://www.youtube.com/watch?v=1oI-Gh8R_HE
1•rafacm•4m ago•1 comments

Iran-linked hackers disrupt operations at US critical infrastructure sites

https://arstechnica.com/security/2026/04/iran-linked-hackers-disrupt-operations-at-us-critical-in...
1•joozio•4m ago•0 comments

Show HN: PostgreSQL running in the browser, persisting to S3

https://www.zerofs.net/postgresql-in-the-browser
1•Eikon•5m ago•0 comments

DSPy: Programming – Not Prompting – Language Models

https://www.akashtandon.in/interactive-explainers/dspy/
1•akashtndn•8m ago•0 comments

Show HN: Omen – A lightweight Kubernetes chaos operator with manual approval

https://github.com/k-krew/omen
1•kreicer•11m ago•0 comments

Show HN: Artificial Intelligence Squared – LLMs Debate Each Other

https://ai-squared.vercel.app
1•emregucerr•12m ago•0 comments

TradingGoose-Market: canonical ticker identity across market data providers

https://www.tradinggoose.ai/blog/building-tradinggoose-market
1•BruzWJ•12m ago•1 comments

Antirez vs Opus vs Codex

https://twitter.com/antirez/status/2041273781256159646
1•napolux•13m ago•0 comments

Show HN: An API that catches what your LLM confidently got wrong

https://enterprise.factagora.com/en/api
5•hanwoo•18m ago•1 comments

How to Add Memory to Your Hermes Agent

https://cortexdb.ai/blog/hermes-memory-tutorial
2•prmalik•19m ago•0 comments

Show HN: Guardians – Verify tool-using agent workflows before execution

https://github.com/metareflection/guardians
2•namin•20m ago•0 comments

The silent coup: How AI captured Westminster

https://www.newstatesman.com/technology/2026/04/the-silent-coup
1•timthorn•22m ago•0 comments

Show HN: Agent Skill Based on "Open Source Security at Astral"

https://github.com/backnotprop/oss-security-audit
2•ramoz•23m ago•0 comments

Show HN: Stricline: A meta-framework to easily build robust CLI apps w/stricli

https://codeberg.org/reesericci/stricline/
2•reesericci•23m ago•0 comments

Summer is getting longer, and it's happening faster than we thought

https://news.ubc.ca/2026/04/summer-is-getting-longer-and-its-happening-faster-than-we-thought/
1•xbmcuser•24m ago•0 comments

New version of Claude-ground with newly added skills for indie devs

https://github.com/akinalpfdn/claude-ground
1•akinalpfdn•24m ago•0 comments

Code Is Cheap Now, and That Changes Everything

https://perevillega.com/posts/2026-03-16-code-is-cheap-now/
3•v-mdev•27m ago•0 comments

Increasing and inequitable US pregnancy-related mortality ratios

https://academic.oup.com/aje/advance-article/doi/10.1093/aje/kwaf287/8414625?login=false
1•PaulHoule•29m ago•0 comments

Hungary is not just an illiberal state. It is a state with a moral mission

https://www.noemamag.com/the-return-of-the-moral-state/
2•Pamar•30m ago•0 comments

Pages of Claude Mythos That Got Zero Headlines

https://twitter.com/samagra_sharma/status/2041882243807707230
3•samagra14•31m ago•1 comments

Show HN: AccessGuard – Scan your site for accessibility lawsuit risks

https://getaccessguard.com/
2•chille87•33m ago•0 comments

Amazon is ending support for older Kindles and Kindle Fires

https://www.theverge.com/tech/908302/amazon-ending-support-kindle-fire-tablet-e-reader-pre-2012-o...
3•ingve•33m ago•0 comments

Uni-1 AI – Advanced AI Platform for Content Generation

https://uni-1.co
1•danielmateo773•38m ago•0 comments

SecureDrop is an open source whistleblower submission system

https://securedrop.org/
1•janandonly•39m ago•0 comments

Mitigating Unexpected Arithmetic Overflow

https://lkml.org/lkml/2024/5/7/1767
1•prakashqwerty•39m ago•0 comments

Building a Rust Runtime for TypeScript

https://encore.dev/blog/rust-runtime
5•dohguy•41m ago•1 comments

Is there a path to Gamification of Verification?

https://olshansky.info/thoughts/2026-04-08-gamification-of-verification
1•Olshansky•42m ago•0 comments

AI Cybersecurity After Mythos: The Jagged Frontier

https://aisle.com/blog/ai-cybersecurity-after-mythos-the-jagged-frontier
2•evelinag•43m ago•1 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

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