frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Film Cue – a Sushi Go-style card game about making movies

https://filmcuegame.com/
1•tinch•4m ago•0 comments

Show HN: Open-source GEO auditor (no signup)

https://www.freeaiseoaudit.com/
2•ICodeSometimes•9m ago•0 comments

Show HN: Personal Trainer – Lift, share plans, and rank with friends

https://mobile-squad.com/#personal-trainer
1•erwanalliaume•10m ago•0 comments

The Morse Code Hack That Made an AI Agent Spend $200k [video]

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

AI vs. Open Source, Part 1: The Empty Grant

https://srikanth.sastry.name/ai-vs-open-source-the-empty-grant/
1•srikanthsastry•11m ago•0 comments

A faithful LLM-wiki implementation with Wikipedia-style web browsing

https://github.com/hzw1199/CyberMe-LLM-Wiki
1•hzw1199•11m ago•1 comments

What were scanners like in the 80s? – 1988 IBM PageScanner 3119 [video]

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

A throbbing heart at the thought of AI

1•ish099•16m ago•1 comments

Claude Platform on AWS

https://aws.amazon.com/claude-platform/
1•matrixhelix•16m ago•0 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
3•matrixhelix•17m ago•0 comments

Show HN: Compare Similar Audio Tracks

https://w.merkoba.com/trackcheck/
1•madprops•18m ago•0 comments

How Rockstar fit an entire city into PlayStation 2 memory [video]

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

Scientists Gave 'Aggressive' Fish Psychedelic Drugs. A Breakthrough Came Next

https://www.404media.co/fish-psilocybin-magic-mushrooms-study-psychedelics/
1•gmays•25m ago•0 comments

Darkest Dungeon devs will "never, ever" use GenAI to replace narrator Wayne June

https://www.rockpapershotgun.com/his-voice-and-delivery-was-human-darkest-dungeon-developers-will...
1•latexr•26m ago•0 comments

The Silence That Meets the Rape of Palestinians

https://www.nytimes.com/2026/05/11/opinion/israel-palestinians-sexual-violence.html
9•lorecore•28m ago•2 comments

The new Shai-Hulud worm threatens to wipe your machine if you revoke its token

https://cybersecurityreach.org/investigations/ifyourevokethistokenitwillwipethecomputeroftheowner...
1•Leonardm•30m ago•0 comments

Extraordinary Ordinals

https://text.marvinborner.de/2026-04-09-17.html
3•marvinborner•39m ago•0 comments

Db-fortress – Scanner for the 4 vibe-coded auth bugs Wiz documents

1•omji-krypto•41m ago•0 comments

Can you help reconcile my first/second-hand LLM Experience with HN's Experience?

2•didigamma•45m ago•2 comments

Show HN: A browser-friendly mirror of the war.gov UFO/UAP Release 01 files

https://0.2.fastfilelink.com/x5CbXd5k
2•bear330•50m ago•2 comments

Open Questions – AGI

https://handsdiff.substack.com/p/open-questions-agi
1•rajeevn•52m ago•0 comments

Christophe Pettus: PHP Goes BSD

https://thebuild.com/blog/2026/04/30/php-goes-bsd/
3•PaulHoule•53m ago•0 comments

Months long delays for Firefox extension submission reviews

https://old.reddit.com/r/uBlockOrigin/comments/1taigxt/ublock_origin_ubo_171_announcement_thread_...
2•kholdstayr•54m ago•1 comments

Moving from lsp-mode in GNU Emacs to Eglot

https://utcc.utoronto.ca/~cks/space/blog/programming/EmacsLspModeToEglot
1•susam•55m ago•0 comments

Wayland.fyi minimalist Wayland special interest group

https://wayland.fyi/
2•birdculture•55m ago•0 comments

GitLab Act 2

https://simonwillison.net/2026/May/11/gitlab-act-2/
3•digitallogic•56m ago•0 comments

Ask HN: How do you deal with AI fatigue?

1•carlos-menezes•57m ago•0 comments

Reuters: Sutskever says spent year proving sama dishonest

https://www.reuters.com/business/former-openai-executive-sutskever-discloses-nearly-7-billion-sta...
2•jjtheblunt•1h ago•1 comments

They Live (1988) inspired Adblocker

https://github.com/davmlaw/they_live_adblocker
3•tokenburner•1h ago•0 comments

Could This Fish Be a Notebook?

https://reasonstobecheerful.world/great-lakes-fish-interview/
1•cainxinth•1h ago•2 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.