frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI and Google sell AI models to blacklisted China groups

https://www.ft.com/content/5d6aafa1-5d47-4585-aa95-6ec06a6cd20f
1•1vuio0pswjnm7•28s ago•0 comments

Show HN: Rilavek – Stream FTP/SFTP/TUS uploads straight to S3, no disk buffer

https://rilavek.com
1•rilavek•5m ago•0 comments

DeepSeek-AI/DeepSeek-v3.2

https://huggingbay.xyz/artifact/hf-model-deepseek-ai-deepseek-v3-2
1•ASHOKGOUDK•5m ago•0 comments

Yiddish resource for elements of chaldean neo-aramaic and Biblical aramaic (1911

https://archive.org/details/nybc211294
1•marysminefnuf•5m ago•0 comments

Gilbert Strang Joins Anthropic

https://twitter.com/GilStrangMIT/status/2075666580990464489
1•elzed•5m ago•0 comments

Parsoid

https://www.mediawiki.org/wiki/Parsoid
2•debo_•7m ago•0 comments

What Every Python Developer Should Know About the CPython ABI

https://labs.quansight.org/blog/python-abi-abi3t
1•signa11•9m ago•0 comments

Show HN: Schedule tasks for your AI agents from Google Calendar

https://agentcaly.com/
1•matt413•11m ago•0 comments

Discord Goes Ban-Happy, Suspends People for Benign Images

https://gizmodo.com/discord-goes-ban-happy-suspends-people-for-benign-images-2000782587
1•gnabgib•11m ago•0 comments

Disappearing Polymorph

https://en.wikipedia.org/wiki/Disappearing_polymorph
1•moralestapia•13m ago•0 comments

Tripplet

https://www.tripplet.lol/
1•notnurb•15m ago•0 comments

User provider content is dangerous. Our experience

https://blast-radius.boomurl.me/
1•dorongrinstein•17m ago•1 comments

Shih Tzu History: From Royal Dogs to Beloved Companions

https://www.akc.org/expert-advice/dog-breeds/shih-tzu-history/
1•thunderbong•19m ago•0 comments

Show HN: I built a cold email platform with built-in inbox placement testing

https://spamcipher.com/
1•mainmin8t•19m ago•0 comments

Lite and Text Only News and Other Websites

https://bmk.neocities.org/
1•Bender•22m ago•0 comments

Show HN: Quantum-audit – CLI to scan NPM deps for quantum-vulnerable crypto

https://quantum-audit-site.vercel.app
1•Heavensinfinite•29m ago•0 comments

Meta found to breach EU laws with 'addictive' Instagram, Facebook designs

https://www.cnbc.com/2026/07/10/meta-instagram-facebook-addictive-design-breach-eu-laws.html
1•1vuio0pswjnm7•31m ago•0 comments

The Company That Owns AOL Gets a Million Job Applications–and Rejects 99.9%

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•JumpCrisscross•31m ago•2 comments

MDN has a page that shows every web API update as it hits each browser

https://developer.mozilla.org/en-US/plus/updates
4•luispa•42m ago•0 comments

Overview of 2026 wrench (physical) attacks on crypto holders

https://www.certik.com/blog/2026-wrench-attacks-overview
2•decimalenough•44m ago•0 comments

NYT article on opening of dachau (1933)

https://www.nytimes.com/1933/07/27/archives/nazi-prison-camps-to-be-permanent-building-going-on-a...
3•marysminefnuf•46m ago•0 comments

Scutoid Papercraft

https://www.patreon.com/vihart/posts/scutoid-and-111945080
2•ry-gr•47m ago•0 comments

Using a Vision Pro to help install a POE doorbell

https://old.reddit.com/r/Ubiquiti/comments/1ut1atj/how_i_retrofit_poe_doorbells/
2•js2•49m ago•1 comments

I've been building this alone for months. Roast it before I lose any more time

https://peakd.io
2•GroguMaster•55m ago•0 comments

Plain Text Sports

https://plaintextsports.com/
3•bwoah•56m ago•0 comments

Hacked Paxel as tribute for my YC Startup School 26' application

https://obaid.wtf/jotbook/2026/07/11/yc-startup-school-26-application-i-hacked-paxel.html
4•wtfobaid•59m ago•1 comments

Paxel has been hacked

https://twitter.com/wtfobaid/status/2075742915226435755
2•wtfobaid•1h ago•0 comments

FreeCAD in the Browser

https://magik.net/freecad/
15•cui•1h ago•10 comments

Choosing the Right AI Agent Memory Strategy: A Decision-Tree Approach

https://machinelearningmastery.com/choosing-the-right-ai-agent-memory-strategy-a-decision-tree-ap...
6•eigenBasis•1h ago•0 comments

UNIGRID's sodium-ion home battery debuts in Europe, US is next

https://electrek.co/2026/07/10/unigrid-sodium-ion-home-battery-debuts-in-europe-us/
4•Bender•1h ago•0 comments
Open in hackernews

Show HN: Buckaroo – Data table UI for Notebooks

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