frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

KyberCrypt – Post-quantum encrypted file transfer (ML-KEM-768 and X25519)

https://kybercrypt.com/
1•MrCoffin•9s ago•1 comments

Bundlephobia – Find the cost of adding an NPM package to your bundle

https://bundlephobia.com
2•pastelsky•57s ago•0 comments

When expressive humanoid robots are awkward, people become wary – brain study

https://theconversation.com/when-expressive-humanoid-robots-are-awkward-people-become-wary-new-br...
2•hn_acker•1m ago•1 comments

Mamdani's tax database doxed wealthy New Yorkers

https://reason.com/2026/08/03/mamdanis-tax-database-doxed-wealthy-new-yorkers/
2•leephillips•1m ago•0 comments

Show HN: ApeiroCraft – Proposals that track views, e-sign and invoice

2•lolllll•2m ago•0 comments

Show HN: Find the perfect name for your startup, app or domain

https://www.howdowesay.com
2•wowinter15•3m ago•0 comments

US Military asks troops for 'creative and unconventional' ideas to punish Iran

https://www.cnn.com/2026/08/03/politics/us-military-iran-war-troops-punish
2•Teever•4m ago•0 comments

SearXNG in Rust

https://github.com/MikeLuu99/searxng-rust
2•dluuuu•4m ago•0 comments

Show HN: Popkorn – A CSS based alternative for Lottie animations

https://github.com/ayarse/popkorn
2•ayarseus•4m ago•0 comments

A Mole of Moles

https://what-if.xkcd.com/4/
1•EndXA•4m ago•0 comments

Replaceable but Employed: Automation and Meaning of Work (NBER Working Paper)

https://www.nber.org/papers/w35559
1•imakwana•6m ago•0 comments

With a Series of Big Donations, State Department Restores Some Global Health Aid

https://www.nytimes.com/2026/08/02/health/trump-health-aid-state-department.html
1•whack•7m ago•0 comments

Show HN: Python Projects in the Browser – Event ticket preview

https://www.codembark.com/projects/q7r4n2v8mk/event-ticket-preview
1•camdenreslink•7m ago•0 comments

Prompts for Long Term Thinking

https://kk.org/thetechnium/88-prompts-for-long-term-thinking/
1•herbertl•7m ago•0 comments

OpenRouter Ori Eval: Prove the Best Model for What You're Building

https://openrouter.ai/blog/announcements/ori-eval/
1•notsahil•8m ago•0 comments

Samsung Says It's Banning Smart TV Apps That Expose Users' Internet Connections

https://www.engadget.com/2229078/samsung-says-its-banning-smart-tv-apps-that-expose-users-interne...
1•speckx•9m ago•0 comments

Quantum Fidelity-per-Cost: A Metric for Evaluation of Quantum Computing Systems

https://arxiv.org/abs/2607.28572
1•refezs•9m ago•0 comments

Light's hidden properties save quantum information from the chaos of bad weather

https://www.wits.ac.za/news/latest-news/research-news/2026/-2026-07/lights-hidden-properties-save...
2•bryanrasmussen•11m ago•0 comments

Canon – An Art History Game

https://canon.perell.com/#game
2•herbertl•11m ago•1 comments

Romania blasts rock to divert water from drought-hit Danube to nuclear reactor

https://www.theguardian.com/world/2026/aug/03/romania-blasts-divert-danube-water-nuclear-reactor-...
1•howard941•11m ago•0 comments

Judge a Book by Its Cover

https://www.mediumrare.site/judgeabook/
2•herbertl•11m ago•0 comments

Ask HN: Early Feedback on Dez?

1•alexander2002•12m ago•1 comments

Invelinux – An independent, RAM-based Linux distribution using Toybox and musl

https://sumtas.codeberg.page
3•sumtas•12m ago•3 comments

RPC across Python and TypeScript with zero dependencies

https://blog.cloudflare.com/python-workers-rpc/
2•brendanib•13m ago•0 comments

Launch HN: Hoplite (YC S26) – Effortlessly deploy cloud coding agents

https://hoplite.sh
6•BenceRed•13m ago•0 comments

Show HN: CCo – Go-style coroutines in C

https://github.com/gtutino/CCo
2•gtutino•14m ago•0 comments

Show HN: TokenMaxxer – track every AI token you spend across your coding tools

https://tokenmaxxer.xyz
3•SYeomans•14m ago•0 comments

Three weeks into an autonomous Codex build: 9B tokens, ~month still left

https://github.com/nelsonwerd/proof-ate-the-project
2•nelsonwerd•14m ago•0 comments

Texas Police Used 83,000 Flock Cameras to Hunt Down a Woman Who Had an Abortion

https://letsaddresstexas.substack.com/p/texas-police-used-83000-flock-cameras
26•latexr•16m ago•3 comments

Show HN: Choreo A free visual design tool for UI behavior and micro-interactions

https://www.choreomotion.app/
2•anasbelmadani•16m 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.