frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BBS Popcorn – Native YouTube Client for Linux

https://github.com/blacksamdev/BBS-Popcorn
1•blacksamdev•49s ago•1 comments

In-Browser Container Builds

https://ochagavia.nl/blog/fully-in-browser-container-builds/
1•wofo•1m ago•0 comments

AI load breaks GitHub – why not other vendors?

https://blog.pragmaticengineer.com/the-pulse-ai-load-breaks-github/
1•gtirloni•2m ago•0 comments

The EO community probably does not need your weekend package

https://www.spectralreflectance.space/p/the-eo-community-probably-does-not
1•marklit•2m ago•0 comments

OpenSMTPD Is the Mail Server for the Future

https://nxdomain.no/~peter/time_for_opensmtpd.html
1•rodrigo975•4m ago•0 comments

Do you review AI generated code differently based on where it is in your code?

1•thillel•5m ago•0 comments

Migrating a decade-old Ubuntu 16.04 blog to FreeBSD on Hetzner

https://discoverbsd.com/p/346669143d
2•rodrigo975•6m ago•0 comments

Simulating a 3D Quadcopter from Scratch

https://mrandri19.github.io/2026/04/11/3d-quadcopter-simulation.html
1•daww•6m ago•1 comments

LulaEdge – An open-source sharding orchestrator for Cloudflare D1

https://github.com/RodrigoManzanares/LulaEdge
2•rodmanLula•7m ago•0 comments

The AI Boom Is Reshuffling the Global Stock Market Hierarchy [video]

https://www.youtube.com/watch?v=48ffHKbQpbE
1•mgh2•8m ago•0 comments

Show HN: My biggest solo-project: Game engine with its own programming language

https://github.com/ArcadeMakerSources/ArcadeMaker
2•am-gm•8m ago•0 comments

UK records its highest ever May temperature

https://www.theguardian.com/uk-news/2026/may/25/uk-heat-may-temperature-record-weather
1•helsinkiandrew•10m ago•0 comments

Amazon launches new AI Wearable "Bee"

https://bee.computer/
2•mdrzn•12m ago•0 comments

Show HN: MarketChacha – Reddit for traders with verified track records

https://marketchacha.com
1•rsingh867•15m ago•0 comments

US's big bet on quantum computing may not be legal

https://arstechnica.com/tech-policy/2026/05/uss-big-bet-on-quantum-computing-may-not-be-entirely-...
1•furcyd•16m ago•0 comments

Control Bilibili with CLI Commands for AI Agents (0 Token Cost)

https://mediause.dev/skills/bilibili
2•yooibox•16m ago•0 comments

Show HN: BDR – A Type-Safe, Cucumber-Free BDD Template for Playwright

https://github.com/dmitryAQA/playwright-bdr-template
1•dmitryaqa•17m ago•0 comments

Google has seriously leaned into AI enshittification lately

https://www.theregister.com/ai-ml/2026/05/25/google-has-seriously-leaned-into-ai-enshittification...
2•sbulaev•17m ago•0 comments

MinimAIlist OS (MOS) – A Manifesto for a Post-Legacy Operating System

https://github.com/pulstar/mos
2•PulStar•17m ago•0 comments

Show HN: Interactive animated walkthroughs of Kubernetes internals

https://explained.kubesimplify.com/
1•saiyampathak•17m ago•0 comments

Ask HN: Do you embrace AI in your life and business?

1•drunx•18m ago•1 comments

How the Iran War Could Threaten Global Internet Access

https://time.com/article/2026/05/19/iran-war-subsea-cables-internet-strait-hormuz-gulf-states-ai/
1•giuliomagnifico•18m ago•0 comments

Memelang: Token-Terse Query Language

https://memelang.net/11/
1•bri-holt•19m ago•0 comments

Mnemosyne – Memory for AI Hermes Agents, Sub-Millisecond Recalls, Local First

https://mnemosyne.site/
2•AbdiiSan•22m ago•0 comments

Show HN: Proj – organize your coding projects with categories and one-key CD

2•whizhuii•23m ago•0 comments

Agentic AI Design Patterns for Developers (2026)

https://learnagenticpatterns.com
3•ankitg12•24m ago•0 comments

Local-First Twitter Workspace

https://birdclaw.sh/
2•cat-whisperer•25m ago•0 comments

Beyond Senior: Consider the staff path

https://hawksley.org/2026/01/14/beyond-senior.html
3•RyeCombinator•25m ago•0 comments

Your Function's Doppelgänger (Fenchel Conjugate)

https://fedemagnani.github.io/math/2025/07/04/fenchel.html
2•drunello•26m ago•0 comments

Spec-Drive Development (SDD) compressed with math-glyphs

https://lab5.ca/blog/spec-driven-development/
2•kborovik•27m 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.