frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tessera: Unlocking Heterogeneous GPUs Through Kernel-Granularity Disaggregation

https://arxiv.org/abs/2604.10180
1•matt_d•1m ago•0 comments

Natural Selection Shaped Humanity

https://www.economist.com/science-and-technology/2026/04/15/how-natural-selection-really-shaped-h...
2•andsoitis•1m ago•0 comments

Big Tech's $300M election war chest rattles Democrats

https://www.ft.com/content/7529e4cd-e336-4b75-917b-84f91bc48437
1•petethomas•3m ago•0 comments

I Invented Lattice and Isomorphic Computing

https://github.com/aevov/afolabi-unified-framework
1•wakanda-island•5m ago•1 comments

Show HN: NoFS – What if files are just projections, graph is the truth?

https://nofs.ai/
1•mmethodz•9m ago•0 comments

Casus Belli Engineering

https://marcosmagueta.com/blog/casus-belli-engineering/
1•schonfinkel•17m ago•0 comments

Closure of Radio 4 on Long Wave (LW)

https://www.bbc.co.uk/reception/work-warning/news/radio4lw
2•austinallegro•18m ago•1 comments

Grpo explained: group relative policy optimization for LLM finetuning

https://cgft.io/learn/grpo-intro/
1•kumama•18m ago•0 comments

U.S. to Create High-Tech Manufacturing Zone in Philippines

https://www.wsj.com/world/asia/u-s-to-create-high-tech-manufacturing-zone-in-philippines-017c1668
5•dcgudeman•20m ago•1 comments

15% of Reddit Posts are Likely AI-generated in 2025

https://originality.ai/blog/ai-reddit-posts-study
2•akyuu•21m ago•2 comments

Street Fighter 2026 Trailer

https://www.youtube.com/watch?v=gX0Btbbddxk
2•havblue•24m ago•1 comments

Reed Hastings is leaving Netflix after 29 years

https://www.engadget.com/entertainment/streaming/reed-hastings-is-leaving-netflix-after-29-years-...
2•andsoitis•24m ago•0 comments

Helpful translations from British English (2015)

https://www.independent.co.uk/news/uk/home-news/chart-shows-what-british-people-say-what-they-rea...
1•worik•24m ago•1 comments

Unicorn Market Cap 2026: SF Is the GenAI Super Cluster

https://blog.eladgil.com/p/unicorn-market-cap-2026-sf-is-the
1•gmays•27m ago•0 comments

Ollama v0.21.0-Rc0

https://github.com/ollama/ollama/releases/tag/v0.21.0-rc0
1•maxloh•27m ago•0 comments

Release PiClaw v1.8.0 – This Is Spinal Tap

https://github.com/rcarmo/piclaw/releases/tag/v1.8.0
2•rcarmo•27m ago•0 comments

Could AI's leading men become as powerful as Ford or Rockefeller?

https://www.economist.com/business/2026/04/16/could-ais-leading-men-become-as-powerful-as-ford-or...
1•andsoitis•29m ago•1 comments

New unsealed records reveal Amazon's price-fixing tactics, California AG claims

https://www.theguardian.com/us-news/ng-interactive/2026/apr/16/amazon-price-fixing-california-law...
4•kmfrk•29m ago•1 comments

Data Science Weekly – Issue 647

https://datascienceweekly.substack.com/p/data-science-weekly-issue-647
2•sebg•29m ago•0 comments

First trailer released for western starring AI version of Val Kilmer

https://www.theguardian.com/film/2026/apr/16/first-trailer-released-for-ai-val-kilmer-western
2•bookofjoe•30m ago•0 comments

Visualizing 100k prime numbers in 3D

https://joshumax.github.io/beautiful-prime-numbers/
1•joshumax•32m ago•0 comments

Free instant WCAG 2.2 accessibility audit

https://webpossum.com
1•raphaelheide•32m ago•0 comments

How to Deconstruct Almost Anything (1993)

http://www.fudco.com/chip/deconstr.html
1•pocksuppet•34m ago•0 comments

Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years

https://www.perplexity.ai/computer/a/us-olympiad-tracker-__5Gzx3tQaKOInGlalN8sQ
2•bkls•35m ago•0 comments

A jury declared Live Nation a monopoly. But ticket prices won't drop just yet

https://text.npr.org/nx-s1-5787491
1•mooreds•37m ago•0 comments

The MacBook Neo Guide

https://randsinrepose.com/archives/the-macbook-neo-guide/
3•mooreds•38m ago•0 comments

Red hair&fair skin favored by natural selection last 10k years: vit D production

https://www.theguardian.com/science/2026/apr/16/red-hair-gene-favoured-natural-selection-study
3•bookofjoe•38m ago•0 comments

Guy builds AI driven hardware hacker arm from duct tape, old cam and CNC machine

https://github.com/gainsec/autoprober
28•scaredpelican•41m ago•2 comments

Worm's-Eye View

https://en.wikipedia.org/wiki/Worm%27s-eye_view
2•signorovitch•43m ago•0 comments

Machine Learning Operations on ZYNQ FPGA Board for Real-Time Face Recognition

https://www.mdpi.com/2571-5577/9/4/71
1•PaulHoule•43m ago•0 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.