frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Developer's Open Source Tool Strips Anthropic's New Claude Watermark

https://startupfortune.com/a-paris-developers-open-source-tool-already-strips-anthropics-new-clau...
1•speckx•45s ago•0 comments

The quiet tycoons powering Africa's rise

https://www.economist.com/middle-east-and-africa/2026/08/23/the-quiet-tycoons-powering-africas-rise
1•andsoitis•54s ago•0 comments

Building the Ed-O-Meter: Notes on Writing My Own LLM Benchmark

https://reinvently.co.uk/blog/building-the-ed-o-meter-llm-eval-harness/
1•Bluestein•1m ago•0 comments

I made the first interactive TUI Portfolio

https://twitter.com/i/status/2091469688270393377
2•jdhruv143•3m ago•0 comments

Intermediary Liability in Brazil: The Intricate Path Ahead

https://www.eff.org/deeplinks/2026/08/intermediary-liability-brazil-intricate-path-ahead
1•hn_acker•3m ago•0 comments

Intentic.dev – shared chat, UI and billing for independent SaaS tools

https://intentic.dev/
1•radarsu•5m ago•1 comments

Show HN: Modern demo of Douglas Hofstadter et al.'s 2001 Letter Spirit project

https://github.com/Paul-G2/letter-spirit-2-js
2•Paul-G2•6m ago•0 comments

Predicting AI model release dates with stats

https://releaseoracle.xyz/
2•akeyes6•6m ago•0 comments

I turned Unix talk from 1983 into the interface for my AI

https://en.andros.dev/blog/09a21bdd/i-turned-unix-talk-from-1983-into-the-interface-for-my-ai/
1•ibobev•8m ago•0 comments

My agent.md to improve LLM-assisted code quality

https://fabiensanglard.net/agent.md/index.html
2•ibobev•8m ago•0 comments

From Front Panel to Program: Thinking Like a PDP-8

https://pikuma.com/blog/pdp-8-minicomputer
1•ibobev•9m ago•0 comments

Niu Lai and the provenance problem: why "human slop" isn't a moat

https://niu-lai.net/post/niu-lai-provenance-problem/
1•RealLeon•11m ago•0 comments

Show HN: ClaudeGate – Run Claude Code CLI with Any AI Model (DeepSeek, Gemini)

https://github.com/Santosh-Prasad-Verma/ClaudeGate
1•Tarun121•14m ago•0 comments

America Is Building a Surveillance State Like China's

https://reason.com/2026/08/21/america-is-building-a-surveillance-state-like-chinas/
3•pseudolus•16m ago•1 comments

Powerful extensions do not need powerful code

https://adayinthelifeof.nl/2026/08/23/powerful-extensions-do-not-need-powerful-code/
1•jaytaph•17m ago•0 comments

CliffordNet: All You Need Is Geometric Algebra

https://arxiv.org/abs/2601.06793
1•niklasbuschmann•18m ago•0 comments

Show HN: Gogress a simple SQL database in Go with WAL support

https://github.com/igomez10/gogress
1•igomeza•19m ago•0 comments

I wrote a BASIC interpreter that boots on UEFI machines and ported it to Windows

https://tarjan.itch.io/thoreaubasic
4•Gorsefound•20m ago•1 comments

I asked Codex to design its own CPU and then write a Space Invaders-style game

https://twitter.com/Angaisb_/status/2091511260265263604
1•qwertox•20m ago•0 comments

I Prompt [video]

https://www.youtube.com/watch?v=HegqGzD-kvc
1•tosh•21m ago•0 comments

Talk Like Claude Day

2•KenPainter•22m ago•0 comments

Astronautics and Aeronautics, 1991–1995: A Chronology

https://www.nasa.gov/wp-content/uploads/2023/04/1991-1995.pdf?emrc=413db2
2•joebig•22m ago•1 comments

Tabular World Model Leaderboard

https://huggingface.co/spaces/TabArena/leaderboard
1•zurfer•26m ago•0 comments

Trazor: An image vectorizer that runs in the browser

https://github.com/PhenX/Trazor
1•thunderbong•29m ago•0 comments

A Rock and China's Three-Sea Problem

https://warontherocks.com/a-rock-and-chinas-three-sea-problem/
1•crescit_eundo•31m ago•0 comments

Dutch regulator fines Uber $966M for automating driver suspensions

https://www.theguardian.com/technology/2026/aug/21/netherlands-fines-uber-automated-driver-suspen...
4•geoffbp•35m ago•0 comments

Ask HN: What Happened to dLLMs?

1•ray__•37m ago•0 comments

Show HN: I caught my local LLM silently spilling 28 layers to the CPU

https://github.com/logxio/picchio/releases/tag/v1.0.0
3•logickkk1•38m ago•0 comments

HQ Trivia but for Developers

https://app.rebase.tv/
1•ryanvogel•40m ago•1 comments

Run local agentic AI on the Mac using MLX [video]

https://developer.apple.com/videos/play/wwdc2026/232/
1•Austin_Conlon•41m 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.