frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The unprompted.au (Australian AI and Cyber) schedule is live

https://unprompted.au/schedule
2•caseyjohnellis•59s ago•0 comments

Zcomplete – Shell Typo Correction

https://github.com/omarfakih1/zcomplete
2•omarfakih•1m ago•1 comments

Removed all counters, replies, following/ers, timestamps, from textlog

https://textlog.cc/post/2059
3•stagas•2m ago•0 comments

Com Lag: Slow Media, & the Occupation of Online Time (2012)

https://thequietus.com/opinion-and-essays/black-sky-thinking/com-lag-slow-art-occupation-online-t...
2•Sir_Twist•2m ago•0 comments

Intermittent Modified Fasting (IMF) Diet Calculator

https://demin.ws/imf/
2•begoon•2m ago•0 comments

Coinbase-backed crypto advocacy group endorses 32 US midterm candidates

https://www.reuters.com/legal/government/coinbase-backed-crypto-advocacy-group-endorses-32-us-mid...
2•tartoran•4m ago•0 comments

Putting mice into hibernation causes a major loss of synapses

https://arstechnica.com/science/2026/08/memories-stick-around-even-after-half-the-synapses-are-gone/
3•apparent•7m ago•0 comments

New York AI data center fight comes to Geneva

https://www.democratandchronicle.com/story/news/2026/08/24/geneva-ai-data-center-greenidge-kriste...
2•ninjahawk1•8m ago•0 comments

Anger, Anxiety and Agency

https://lucumr.pocoo.org/2026/8/24/anger-anxiety-agency/
2•lumpa•10m ago•0 comments

Show HN: RepoRoulette: Randomly Sample Repositories from GitHub

https://github.com/gojiplus/reporoulette
1•neehao•10m ago•0 comments

Weather Consensus

https://weather.promptbox.club
1•glassrunm•11m ago•0 comments

You can just build any software now

https://mkagenius.substack.com/p/you-can-just-any-build-software-now
2•mkagenius•13m ago•0 comments

A 57-byte x86-64 Linux ELF

https://tmpout.sh/5/3.html
1•Retr0id•13m ago•0 comments

Rendering Shooter

https://drawcall.grok.me/
1•kvark•15m ago•0 comments

Show HN: OutMap – a live map of 235 countries where anyone can place a link

https://outmap.lol
1•ifrosted•15m ago•0 comments

Open source solution for supply chain attacks

https://github.com/ossillate-inc/packj
1•dave17•16m ago•1 comments

It's OK. Do Your Thing. Some (reluctant) thought on our AI moment

https://buttondown.com/carlton/archive/its-ok-do-your-thing/
1•speckx•17m ago•0 comments

Digitalocean Control Panel and API Down

https://status.digitalocean.com/
2•wilsonfiifi•17m ago•0 comments

A ghostly ribbon of stars reveals hidden dark matter

https://www.sciencedaily.com/releases/2026/08/260823015000.htm
1•samso26•18m ago•0 comments

Digitalocean Cloud Control Panel and API Incident Ongoing

https://status.digitalocean.com/incidents/4qwm6pzlx1z3
3•microsoftedging•18m ago•1 comments

The Eminem Show's 24th Year Review

https://medium.com/theentertainmentbreakdown/theeminemshows20thanniversaryreview-31bc4c623ea
1•raynchad•21m ago•0 comments

Show HN: Kern – container and resource runtime in a 1.5 MB binary, no daemon

https://github.com/getkern/kern
2•realexweb•22m ago•0 comments

RayNeo creates new type of smart glasses with Heads Up Display and no camera

https://www.rayneo.com/pages/rayneo-io-ai-glasses
2•ck2•24m ago•4 comments

A technology that counts reps and scores muscle failure from the Apple Watch

1•baraa_bilal•24m ago•0 comments

We Optimized the Qwen 3.6 Model for Our Junie Agent

https://blog.jetbrains.com/junie/2026/08/qwen-for-junie/
1•svieira•25m ago•0 comments

StateM: Stateful Control for Long-Horizon Agents

https://github.com/henryqin1997/statem
8•johntrob14•26m ago•1 comments

Your "File" Menu Isn't About Files

https://adam.farkas.pro/your-file-menu-isnt-about-files/
3•b__d•26m ago•0 comments

Visualizing Binary Files

https://movq.de/blog/postings/2026-08-05/0/POSTING-en.html
2•zdw•26m ago•1 comments

Redacted Script

https://fonts.google.com/specimen/Redacted+Script
1•gaws•27m ago•0 comments

Please keep HN clean so it doesn't get blocked at school

http://crystalpvp.ru/boze/
1•Preston67•28m ago•1 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.