frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NYC's Multibillion-Dollar Black Box Contracts

https://nysfocus.com/2026/05/06/new-york-city-contracting-master-agreements
1•h2si•10s ago•0 comments

Quantizing Tangent Frames

https://zeux.io/2026/04/30/quantizing-tangent-frames/
1•ibobev•35s ago•0 comments

Testing Vue Components in the Browser

https://jvns.ca/blog/2026/05/02/testing-vue-components-in-the-browser/
1•ibobev•1m ago•0 comments

Links to CSS Colour Palettes

https://jvns.ca/blog/2026/05/04/css-colour-palettes/
1•ibobev•2m ago•0 comments

Hiker finds 6th C. gold sword fitting

https://www.thehistoryblog.com/archives/76004
2•speckx•2m ago•0 comments

Kids can't use computers and this is why it should worry you (2013)

http://www.coding2learn.org/blog/2013/07/29/kids-cant-use-computers/
1•downbad_•2m ago•1 comments

Nobody understands the point of hybrid cars [video]

https://www.youtube.com/watch?v=KnUFH5GX_fI
1•CharlesW•3m ago•0 comments

Show HN: AI Generated Videos for your Code diffs

https://steerable.dev/
1•bmusuku•3m ago•0 comments

Is AI 2027 coming true?

https://secondthoughts.ai/p/is-ai-2027-coming-true
1•baxtr•4m ago•0 comments

Clozure CL

https://ccl.clozure.com/
1•tosh•4m ago•0 comments

The Fallacy of Premature Optimization (2009)

https://ubiquity.acm.org/article.cfm?id=1513451
1•downbad_•4m ago•1 comments

WebTransport is now available across all major browsers

https://caniuse.com/?search=webtransport
1•apitman•4m ago•0 comments

OpenAI launches GPT-Realtime-2

https://twitter.com/OpenAI/status/2052438194625593804
1•vthallam•5m ago•0 comments

Natural Language Autoencoders

https://www.neuronpedia.org
1•pretext•5m ago•0 comments

Build a Beeper Bridge

https://blog.beeper.com/2025/10/28/build-a-beeper-bridge/
1•luu•7m ago•0 comments

Lisp in Space (2022)

https://www.corecursive.com/lisp-in-space-with-ron-garret/
1•tosh•7m ago•0 comments

Memory Arena – AI coding agents that learn from past tournaments

https://memoryarena.xyz/arena
1•casanovaabraham•8m ago•0 comments

Lumon Terminal – A Severance-Inspired Apple Terminal Theme

https://github.com/onehorizonai/lumon-terminal
2•gusnewman•9m ago•1 comments

Show HN: Live SEO monitoring dashboard in 100 lines of Python

https://seoscoreapi.com/demo/dashboard
1•avansledright•9m ago•0 comments

Two OpenClaw Agents Negotiate a YC SAFE with Agentic Power of Attorney

https://www.juanfiguera.com/notes/system-prompt-and-vibes/
1•juanfiguera•10m ago•0 comments

Notes on the xAI/Anthropic data center deal

https://simonwillison.net/2026/May/7/xai-anthropic/
2•droidjj•11m ago•0 comments

Show HN: Bundlebase – Docker for Data

https://nvoxland.github.io/bundlebase/
2•nvoxland•12m ago•0 comments

The Self Is an Evolutionary Engineering Solution – What Does This Mean for LLMs?

https://darkomulej.substack.com/p/four-roads-to-a-vanishing-self
1•Darius-BC•12m ago•0 comments

How to Build an Agent Platform

https://www.ashpreetbedi.com/agent-platform
2•yashsolanky•12m ago•0 comments

Bell fires small number of employees who allegedly falsified attendance

https://mobilesyrup.com/2026/05/06/bell-employees-fired-in-office-mandate/
1•milkglass•13m ago•0 comments

Advancing voice intelligence with new models in the API

https://openai.com/index/advancing-voice-intelligence-with-new-models-in-the-api/
6•meetpateltech•14m ago•0 comments

JavaScript server-side interoperability with rcompat

https://bytecode.news/posts/2026/05/javascript-server-side-interoperability-with-rcompat
6•terrablue•17m ago•0 comments

The case against bearer secrets

https://credctl.com/blog/vercel-context-ai-breach/
1•matzhouse•18m ago•0 comments

OpenAI's WebRTC Problem

https://moq.dev/blog/webrtc-is-the-problem/
2•atgctg•18m ago•0 comments

Tesla's 4680 battery cells are underperforming and frustrating buyers

https://electrek.co/2026/05/07/tesla-4680-battery-cell-performance-data-shows-cant-build-own-cells/
2•Klaster_1•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.