frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Shiitake Mushrooms Can Remember Electrical States

https://spectrum.ieee.org/memristor-materials
1•Brajeshwar•50s ago•0 comments

Platform-independent experiments on social media

https://www.science.org/doi/10.1126/science.aec7388
1•Brajeshwar•57s ago•0 comments

ADHD Diagnoses Are Growing

https://idp.nature.com/authorize?response_type=cookie&client_id=grover&redirect_uri=https%3A%2F%2...
1•Brajeshwar•1m ago•0 comments

Long-term pattern shifts in Atlantic high-pressure sys drives Caribbean rainfall

https://phys.org/news/2025-11-caribbean-rainfall-driven-shifting-term.html
1•bikenaga•4m ago•0 comments

Agents need good developer experience too

https://modal.com/blog/agents-devex
1•birdculture•6m ago•0 comments

The AWS Infrastructure as Code MCP Server: AI-Powered CDK

https://aws.amazon.com/blogs/devops/introducing-the-aws-infrastructure-as-code-mcp-server-ai-powe...
1•xfr•11m ago•0 comments

Guide to making a CHIP-8 emulator

https://tobiasvl.github.io/blog/write-a-chip-8-emulator/
1•AlexeyBrin•15m ago•0 comments

The UK Has It Wrong on Digital ID. Here's Why

https://www.eff.org/deeplinks/2025/11/uk-has-it-wrong-digital-id-heres-why
4•hn_acker•15m ago•0 comments

Be Slightly Monstrous

https://contraptions.venkateshrao.com/p/be-slightly-monstrous
1•jger15•16m ago•0 comments

AWS Amplify Is a Joke

1•2code•16m ago•0 comments

AI Tops Christian Artist Charts on iTunes

https://thehill.com/policy/technology/5620871-ai-christian-singer-tops-charts-stirs-debate/
2•geox•16m ago•1 comments

Reanimation of pseudoscience in machine learning and its ethical repercussions

https://www.cell.com/patterns/fulltext/S2666-3899(24)00160-0
4•INGELRII•18m ago•0 comments

Could Symbolic AI Unlock Human-Like Intelligence?

https://www.nature.com/articles/d41586-025-03856-1
4•beardyw•20m ago•0 comments

Why aren't there any "YouTube competitors?"

https://justinkuiper.substack.com/p/why-arent-there-any-youtube-competitors
1•surprisetalk•20m ago•2 comments

Oedipus is about the act of figuring out what Oedipus is about

https://interconnected.org/home/2025/11/07/oedipus
2•surprisetalk•20m ago•0 comments

Testing Shows Automotive Glassbreakers Can't Break Modern Automotive Glass

https://www.core77.com/posts/138925/Testing-Shows-Automotive-Glassbreakers-Cant-Break-Modern-Auto...
4•surprisetalk•20m ago•0 comments

My Ethical Conundrum Around Writing About Meditation

https://psychotechnology.substack.com/p/my-ethical-conundrum-around-writing
1•surprisetalk•20m ago•0 comments

Show HN:Send Full Folders Without Zip

https://openbeam.cloud/folder-upload
2•gray_wolf_99•21m ago•0 comments

Show HN: Write JavaScript code in Rust to achieve 200k req/s

https://github.com/hyper-forge/brahma-vue
2•StellaMary•22m ago•0 comments

Lazy linearity for a core functional language

https://alt-romes.github.io/posts/2025-11-26-lazy-linearity-popl26.html
3•fanf2•22m ago•0 comments

Voting and Pseudo-Randomness – SponsorBlock (2019)

https://blog.ajay.app/voting-and-pseudo-randomness-or-sponsorblock-or-youtube-sponsorship-segment...
1•bariumbitmap•23m ago•0 comments

About

http://thingrex.com/about/
1•Andrii98•23m ago•0 comments

Wasabi: Open-source, privacy preserving Bitcoin wallet

https://github.com/WalletWasabi/WalletWasabi
1•kekqqq•25m ago•0 comments

Compact (8KB) embedded x86 BIOS for FPGA/emulators/386EX

https://github.com/b-dmitry1/BIOS
1•peter_d_sherman•30m ago•0 comments

Show HN: CaptureAssist – Screen recording for technical support teams

1•squiggy22•35m ago•0 comments

Show HN: Create MCP Servers and Agents Easily with PolyMCP (Python and TS)

https://github.com/poly-mcp/Polymcp
2•justvugg•36m ago•3 comments

Copenhagenize Index 2025: The Global Ranking of Bicycle-Friendly Cities

https://copenhagenizeindex.eu/
20•axelfontaine•36m ago•10 comments

Major AI conference flooded with peer reviews written by AI

https://www.nature.com/articles/d41586-025-03506-6
15•_____k•37m ago•1 comments

How to Print a Human

https://nautil.us/how-to-print-a-human-1250487/
3•Brajeshwar•38m ago•1 comments

New universal law predicts how most objects shatter

https://phys.org/news/2025-11-universal-law-shatter-bottles.html
3•Brajeshwar•38m ago•0 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.