frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Social Vibe Coding App?

1•alexander2002•35s ago•0 comments

Islands Architecture

https://www.patterns.dev/vanilla/islands-architecture/
1•Erenay09•1m ago•0 comments

Building with Claude Managed Agents – Sharp Edges

https://dipkumar.dev/posts/agents/claude-managed-agents-gotchas/
1•askhn1234_12•1m ago•0 comments

SOPS: Secrets OPerationS

https://getsops.io/
1•ankitg12•1m ago•0 comments

Notable Researchers Join $4B Effort to Build Self-Improving A.I

https://www.nytimes.com/2026/05/13/technology/recursive-superintelligence-funding-ai.html
1•andsoitis•2m ago•0 comments

Microsoft investigates Israeli military's use of Azure cloud storage

https://www.theguardian.com/technology/2025/aug/09/microsoft-israeli-military-azure-cloud-investi...
1•Gedxx•3m ago•0 comments

Simplifying our homepage helped increase trial signups by 84%

https://plausible.io/blog/homepage-edits-conversion-lift
1•gbourne•4m ago•0 comments

Mechanism Design for Quality-Preserving LLM Advertising

https://arxiv.org/abs/2605.10964
1•Brajeshwar•4m ago•0 comments

Nginx Rift: RCE via heap buffer overflow in rewrite module (CVE-2026-42945)

https://depthfirst.com/nginx-rift
1•andreamichi•4m ago•0 comments

Show HN: Learn algebra together, no AI slop, no ads or freemium, no registration

https://algebra.tutlm.com/
2•nik_norman•4m ago•0 comments

Show HN: Number Gacha, a gacha game distilled to its essence

https://isabisabel.com/gacha/
1•babel16•5m ago•0 comments

Any app on recent Android versions can leak certain traffic

https://mullvad.net/en/blog/any-app-on-recent-android-versions-can-leak-certain-traffic
1•Refreeze5224•7m ago•0 comments

Burn – K8s cost waste by namespace and pod. Just kubectl, no deploy

https://github.com/tanrikuluozlem/burn
2•cad•7m ago•0 comments

New poll shows what San Francisco residents really think about Waymo cars

https://www.sfchronicle.com/sf/article/waymo-car-san-francisco-22253180.php
1•mikhael•8m ago•0 comments

Blink – AI Assistant

https://blink-oi.vercel.app
1•Pascal1997•8m ago•0 comments

Mercury

https://mercurylang.org/
1•tosh•8m ago•0 comments

We may be entering a second axial age

https://www.noemamag.com/we-may-be-entering-a-second-axial-age/
1•hirpslop•8m ago•0 comments

Mount SFTP/WebDAV in Finder Using File Provider API

https://www.forethought-studio.com/steadymount/
1•forethought-s•10m ago•0 comments

Perfect Timing, Big Payouts: Insider Trading Red Flags Emerge on Polymarket

https://www.nytimes.com/2026/05/13/technology/polymarket-insider-trading.html
1•sbulaev•11m ago•0 comments

Microsoft’s new multi-model agentic security system tops industry benchmark

https://www.microsoft.com/en-us/security/blog/2026/05/12/defense-at-ai-speed-microsofts-new-multi...
1•doomroot13•11m ago•0 comments

US lawmakers demand answers from Instructure after Canvas data breaches

https://techcrunch.com/2026/05/13/us-lawmakers-demand-answers-from-instructure-after-canvas-data-...
2•speckx•13m ago•0 comments

Show HN: Endpoint Context Protocol – Browsers get HTML, AI agents get Markdown

https://endpointcontext.io
2•devconcierge•14m ago•0 comments

Anthropic, OpenAI tokens plunge as firms say pre-IPO share transfers are invalid

https://www.coindesk.com/markets/2026/05/13/anthropic-openai-tokens-plunge-nearly-40-as-ai-firms-...
2•SilverElfin•17m ago•0 comments

Search our documentation by meaning, not keywords

https://www.raspberrypi.com/news/search-our-documentation-by-meaning-not-keywords/
1•Brajeshwar•17m ago•0 comments

Nostalgebraist's Hydrogen Jukeboxes

https://www.astralcodexten.com/p/nostalgebraists-hydrogen-jukeboxes
1•Ariarule•17m ago•0 comments

Ask HN: Anyone replaced enterprise email marketing with something self-built?

1•A_Duck•17m ago•0 comments

Kickstarter Is Forced to Ban Adult Content by Payment Processors

https://kotaku.com/kickstarter-is-the-latest-platform-seemingly-forced-to-ban-adult-content-by-pa...
27•stalfosknight•18m ago•5 comments

Hantavirus Update–25-Year-Old on Plane with Infected Passenger Has Symptoms

https://www.newsweek.com/hantavirus-dutch-doctors-isolate-rfk-jr-says-situation-under-control-119...
2•SilverElfin•18m ago•0 comments

Show HN: Polar Balance – a bipolar mood tracker I built for my wife

https://grayconsultingmanagement.com/PolarBalance/
2•natali_gray•19m ago•0 comments

Dietrich Bonhoeffer

https://en.wikipedia.org/wiki/Dietrich_Bonhoeffer
3•petethomas•19m 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.