frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: We got 30 teens to build a hand made arcade in Tokyo

https://youtu.be/kkbf092Los0
1•devenj•1m ago•0 comments

LumeBiome

https://lumebiome.com/#aff=rayoggg
1•richieg•2m ago•0 comments

Show HN: Turn Any Website into Clean Markdown for LLMs/RAG with SiteOne Crawler

https://github.com/janreges/siteone-crawler
1•janreges•2m ago•0 comments

Stal/IX: declarative statically linked Linux distribution

https://stal-ix.github.io/
1•pshirshov•3m ago•1 comments

Build a Golang App in 10 Seconds Using BuildKit

https://runos.com/blog/build-golang-app-buildkit.html
1•tylerreed•4m ago•1 comments

Tech Resource

https://github.com/deyaa1251/Awesome-tech-resource
1•omenn•4m ago•0 comments

Sundials: SUite of Nonlinear and DIfferential/Algebraic Equation Solver

https://computing.llnl.gov/projects/sundials
1•swydydct•5m ago•0 comments

You Want Microservices, but Do You Need Them?

https://www.docker.com/blog/do-you-really-need-microservices/
1•tsenturk•6m ago•0 comments

Norway campaigns to cut energy links to Europe as power prices soar

https://www.ft.com/content/f0b621a1-54f2-49fc-acc1-a660e9131740
3•obscurette•7m ago•0 comments

Activation Functions: The 'Secret Sauce' of Deep Learning

https://techlife.blog/posts/activation-functions-deep-learning/
1•tsenturk•9m ago•0 comments

Migrating from Jekyll to Ghost for Blogs

https://hughevans.dev/migrating-from-jekyll-to-ghost-blog/
1•HughEvansDev•11m ago•0 comments

Rtila

https://rtila.com
2•bellamoon544•18m ago•1 comments

AI's safety features can be circumvented with poetry, research finds

https://www.theguardian.com/technology/2025/nov/30/ai-poetry-safety-features-jailbreak
2•c420•18m ago•0 comments

New AI Book for Kids

https://www.amazon.com/dp/B0G3KWSCC3
1•STEM-AI-FDE•20m ago•0 comments

Show HN: Generate storyboards from YAML with Gemini (image and TTS)

https://github.com/kierangilliam/storyboard/
1•kierangill•21m ago•0 comments

Designers Aren't Going Anywhere. Here's Why

https://spin.atomicobject.com/designers-arent-going-away/
1•philk10•22m ago•0 comments

Garry Tan says MCP "barely works" today

https://www.reddit.com/r/mcp/s/dQoNo0fSx3
5•AbstractH24•22m ago•0 comments

Setting a wallpaper in less than 250 Kb: A practical guide to reducing Rust's ru

https://www.lgfae.com/posts/2025-11-21-SettingAWallpaperWithLessThan250KB.html
2•fanf2•26m ago•0 comments

Linus and Linus

https://youtu.be/mfv0V1SxbNA?si=d9ocAg9EWneSDRiu
1•sonderotis•26m ago•0 comments

Building the Perfect Linux PC with Linus Torvalds [video]

https://www.youtube.com/watch?v=mfv0V1SxbNA
1•ingve•27m ago•0 comments

Patching Pulse Oximeter Firmware

https://stefan-gloor.ch/pulseoximeter-hack
1•stgl•28m ago•0 comments

Show HN: Solarm – a simple iOS sunrise alarm I made to improve waking up

1•nktskr•29m ago•0 comments

Show HN: Unmarker.it – Client-Side Tool to Disrupt Invisible AI Watermarks

https://www.unmarker.it/
2•ing-norante•31m ago•0 comments

Digital Art of Rafaël Rozendaal

https://www.newrafael.com/internet
2•8organicbits•31m ago•0 comments

David Lerner, Mr. Fix-it of Apple Computers and Tekserve co-founder, dies at 72

https://www.nytimes.com/2025/11/26/technology/personaltech/david-lerner-dead.html
2•bookofjoe•33m ago•0 comments

Program-of-Thought Prompting Outperforms Chain-of-Thought by 15%

https://arxiv.org/abs/2211.12588
1•mkagenius•33m ago•0 comments

Teens build pop-up arcade in Japan [video]

https://www.youtube.com/watch?v=kkbf092Los0
2•Charmunk•33m ago•1 comments

Confidential Compute Open Network

https://cocoon.org
1•jeudesprits•41m ago•0 comments

NixOS 25.11 Released

https://nixos.org/blog/announcements/2025/nixos-2511/
21•trulyrandom•46m ago•1 comments

DEP-18: A proposal for Git-based collaboration in Debian

https://optimizedbyotto.com/post/debian-collaboration-on-git/
1•ottoke•49m ago•1 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

https://github.com/paddymul/buckaroo
105•paddy_m•6mo 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•6mo 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•6mo 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•6mo 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•6mo ago
Congratulations on launching. Buckaroo looks great.
franky47•6mo ago
But does it work across data tables with 8 dimensions?
trsohmers•6mo ago
Only with the oscillation overthruster flag enabled.
hodder•6mo ago
Looks cool to me. I often just end out exporting and opening in excel to do this
epistasis•6mo 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•6mo ago
How does it compare to Data Wrangler ? I like Data Wrangler because it let us open up in a separate VS Code window.