frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Radiologists' Diagnostic Accuracy in Detecting ChatGPT-Generated Radiographs

https://pubs.rsna.org/doi/10.1148/radiol.252094
1•doener•1m ago•0 comments

About Data Lifetime (2013)

https://web.archive.org/web/20130425015441/http://arnulf.us/sevendipity/archives/59-About-Data-Li...
1•severo_bo•4m ago•1 comments

Avoiding Malloc for Small Strings in C with Variable Length Arrays (VLAs)

https://medium.com/@yair.lenga/avoiding-malloc-for-small-strings-in-c-with-variable-length-arrays...
1•yairlenga•5m ago•1 comments

10th Anniversary of jQuery (2016)

https://johnresig.com/blog/10th-anniversary-of-jquery/
1•downbad_•6m ago•1 comments

Shares in shoe brand Allbirds rise 580% after it pivots from footwear to AI

https://www.bbc.com/news/articles/c98mrepzgj7o
2•tcp_handshaker•8m ago•0 comments

Eurosky: Portal to the Atmosphere

https://portal.eurosky.tech/
1•doener•8m ago•0 comments

Intel Intrinsics Guide

https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html
1•tosh•9m ago•0 comments

The becquerel as an SI unit for request rate

https://entropicthoughts.com/si-units-for-request-rate
2•fanf2•10m ago•0 comments

Breathing Exercises to Relieve Stress

https://www.bhf.org.uk/informationsupport/heart-matters-magazine/wellbeing/breathing-exercises
1•thunderbong•12m ago•0 comments

Forti FIDE – local instrument for rhetorical awareness (open source, GPL v3)

https://fortifide.org
1•fluxussomnii•18m ago•0 comments

S3mini: Tiny and fast S3 client, new version wrapping fast Bun.S3

https://github.com/good-lly/s3mini/releases/tag/v0.9.4
1•Peter_J•20m ago•0 comments

Show HN: I built Emailbottle – AI email assistant, no inbox access

https://emailbottle.com
3•devshaded•21m ago•0 comments

Nobody Got Fired for Uber's $8M Ledger Mistake?

https://news.alvaroduran.com/p/nobody-got-fired-for-ubers-8-million
1•ohduran•21m ago•0 comments

Thin Harness, Fat Skills

https://twitter.com/garrytan/status/2042925773300908103
1•Anon84•22m ago•0 comments

KeePassχ – A KeePassXC Fork

https://codeberg.org/keepasschi
1•birdculture•22m ago•0 comments

The sonic anatomy of a double-tap strike

https://earshotngo.substack.com/p/the-sonic-anatomy-of-a-double-tap
1•moxifly7•23m ago•0 comments

Any Color You Like: NIST Scientists Create 'Any Wavelength' Lasers

https://www.nist.gov/news-events/news/2026/04/any-color-you-nist-scientists-create-any-wavelength...
1•geox•24m ago•0 comments

Ask HN: Simple tooling for local LLM code critique without IDE integration?

1•gspr•27m ago•0 comments

JetBrains goes all-in on agents with Central

https://leaddev.com/ai/jetbrains-goes-all-in-on-agents-with-central
1•chhum•27m ago•0 comments

Solid-state EV batteries are coming sooner than expected after another breakthro

https://electrek.co/2026/04/15/solid-state-ev-batteries-coming-sooner-than-expected/
1•xbmcuser•28m ago•0 comments

Servy – Any App as a Windows Service

https://servy-win.github.io/
1•mjtk•33m ago•0 comments

Claude Mythos and the EU Cyber Resilience Act

https://til.andrew-quinn.me/posts/claude-mythos-and-the-eu-cyber-resiilience-act/
1•hiAndrewQuinn•36m ago•0 comments

Can a General LLM Diagnose a Dicom Slice?

https://avkcode.github.io/blog/codex-dicom-benchmark.html
1•KyleVlaros•37m ago•1 comments

Synth-dataset-kit: Generate and audit synthetic datasets from seed data

https://github.com/KazKozDev/synth-dataset-kit
1•kazkozdev•39m ago•0 comments

CPUID

https://en.wikipedia.org/wiki/CPUID
1•tosh•40m ago•0 comments

High fantasy map of tech writing (AI edition)

https://passo.uno/fantasy-map-tech-writing-ai/
1•eigenBasis•40m ago•0 comments

Ebanx is expanding its operations

https://www.reuters.com/world/americas/brazilian-payments-firm-ebanx-makes-southeast-asia-push-20...
1•wasimsk•42m ago•0 comments

Bluesky Is Down

https://status.bsky.app/
3•alex_suzuki•43m ago•3 comments

The goal should not be to ship earlier, it should be to deliver value faster

https://substack.com/profile/433807968-matt/note/c-244243491
3•wibboweaver•44m ago•0 comments

Claude had enough of this user

https://old.reddit.com/r/OpenAI/comments/1smu2rk/claude_had_enough_of_this_user/
2•mellosouls•47m 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.