frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Relfair – relationship-aware counterfactual fairness testing

https://github.com/Archit1706/relfair
1•architrathod•1m ago•0 comments

LeanBox: Open-source inbox management agent

https://github.com/tunde-alao/leanbox
1•tonikami•3m ago•1 comments

How to Think About Investing in Korean Semiconductor Stocks

https://www.ooooo.law/board/5
1•haebom•4m ago•0 comments

The subjectively perfect shader pack [video]

https://www.youtube.com/watch?v=0QxKSjfyBRs
2•SimonLeclere•4m ago•0 comments

An agentic system from scratch to generate Google slide deck from templates

https://blog.owulveryck.info/2026/05/31/the-agentic-mesh-in-practice-anatomy-of-an-agent-product....
1•owulveryck•5m ago•0 comments

The Illusion of Perfect LLM Code

https://ariya.io/2026/05/the-illusion-of-perfect-llm-code/
2•pavel_lishin•5m ago•0 comments

AI in SRE: Where and how Google is deploying agentic AI to improve operations

https://cloud.google.com/blog/products/devops-sre/how-google-sre-is-using-agentic-ai-to-improve-o...
1•geoffbp•6m ago•0 comments

BrandOS – An AI Company Brain for Autonomous Marketing

https://www.getbrandos.site/
1•absmugz•7m ago•0 comments

Sandboxes that lie about their secrets

https://microsandbox.dev/blog/sandboxes-that-lie-about-their-secrets
2•makeboss•7m ago•0 comments

One Character in an HTTP Header Just Bypassed Authentication on 325M Servers

https://medium.com/@tbelbek/one-character-in-an-http-header-just-bypassed-authentication-on-325-m...
2•rdstrtwlkr•7m ago•0 comments

BNF Was Here

http://grammarware.net/writes/#BNF-WAS-HERE2012
1•t-3•8m ago•0 comments

Pa-RISC Processors from Pa-7000 to Pa-8900

https://www.openpa.net/pa-risc_processors.html
3•naves•8m ago•0 comments

Steven Heller's Font of the Month: Brutal Types

https://ilovetypography.com/2026/06/01/steven-hellers-font-of-the-month-brutal-types/
1•jjgreen•8m ago•0 comments

Storj announces new pricing changes

https://www.storj.io/pricing/change-faqs
2•Shank•9m ago•1 comments

Show HN: OpenMerch – Turning software into atomic jobs

1•nordic_lion•17m ago•0 comments

Meta whistleblower's lawyer says he too is prevented from promoting her book

https://www.theguardian.com/technology/2026/jun/01/meta-whistleblower-lawyer-prevented-promoting-...
1•lyoncy•19m ago•0 comments

Review: Anabasis, by Xenophon

https://www.thepsmiths.com/p/review-anabasis-by-xenophon
1•jger15•20m ago•0 comments

How People Are Using AI in 2026

https://hbr.org/2026/06/how-people-are-really-using-ai-in-2026
1•geox•21m ago•0 comments

Readest: Free, open-source, multi-platform ePub and PDF reader

https://readest.com/
3•cl3misch•21m ago•0 comments

Darvy: a voice-first assistant we built for my blind brother

https://darvy.ai/
2•AmeenDarwish•23m ago•0 comments

We reversed the service marketplace model so providers bid on customers

https://www.ulobo.com
1•ulobo•23m ago•1 comments

Bond Graph

https://en.wikipedia.org/wiki/Bond_graph
2•num42•27m ago•0 comments

We reduced core unit boot time from hours to minutes

https://blog.cloudflare.com/optimizing-core-unit-boot-time/
1•eldridgea•28m ago•0 comments

Welcome to Uruky, AlternativeTo's new official partner

https://alternativeto.net/news/2026/5/welcome-to-uruky-alternativeto-s-new-official-partner-/
2•BrunoBernardino•28m ago•1 comments

Florida AG sues OpenAI, seeks to hold CEO Altman personally liable for harms

https://www.cnbc.com/2026/06/01/florida-ag-open-ai-altman-lawsuit.html
3•onlyrealcuzzo•31m ago•0 comments

Install web apps with the new HTML install element

https://developer.chrome.com/blog/install-element-ot
4•pentagrama•33m ago•1 comments

Security Specialist Warns of Bizav Cyberattack Threats

https://www.ainonline.com/aviation-news/business-aviation/2026-06-01/security-specialist-warns-bi...
1•stoicanalyst•34m ago•0 comments

Animorphs: A Great Series Turns 30

https://compostedbooksreview.substack.com/p/animorphs-the-greatest-achievement
2•rmdmphilosopher•35m ago•0 comments

PithTrain – a compact, agent-native MoE training system

https://blog.mlc.ai/2026/06/01/pithtrain-compact-agent-native-moe-training-system
3•ruihangl•37m ago•0 comments

Making Debian or Fedora persistent live images

https://sigwait.org/~alex/blog/2026/05/28/smdBC8.html
2•henry_flower•37m ago•0 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

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