frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tournesol – Collaborative Content Recommendations

https://github.com/tournesol-app/tournesol
1•Qision•53s ago•0 comments

The Truth About AI: It's Not Intelligence, It's a Trick – Prof Jiang Xueqin

https://www.youtube.com/watch?v=5llffhy3SFs
1•oxqbldpxo•2m ago•1 comments

Bring Back the Gatekeeper, Please

https://thewalrus.ca/bring-back-the-gatekeeper-please/
1•gmays•2m ago•0 comments

Heat adds to strains on areas with data centers

https://apnews.com/article/data-center-heat-wave-lowell-5607b4ea8ef9776b28268561060752a8
1•geox•3m ago•0 comments

Journey to the Moon by Jules Verne

https://www.lrb.co.uk/the-paper/v48/n12/raymond-n.-mackenzie/platinum-noses
1•mitchbob•3m ago•1 comments

Red-Pill Robots Only, Please (2012) [pdf]

https://kryten.mm.rpi.edu/SBringsjordMClarkRed-PillRobotsOnly.pdf
1•projektfu•4m ago•0 comments

Ask HN: Why are so many "AI evangelists" posting such insufferable content?

1•seattle_spring•5m ago•0 comments

Launchpanda: Save your product info once, launch everywhere

https://www.launchpanda.dev
2•welsenesbros•5m ago•0 comments

Ask HN: Will AI force CS to focus on what to build instead of how to build it?

1•amichail•5m ago•0 comments

Show HN: RetainFlow – Subscription Retention for WooCommerce

https://wordpress.org/plugins/retainwoo/
1•techstuff123•6m ago•0 comments

Interpretable Coreference Resolution Evaluation Using Explicit Semantics

https://aclanthology.org/2026.acl-long.2126/
1•petethomas•7m ago•0 comments

The Next Evolution in Human Logic

https://twitter.com/ctindale/status/2072632158624113083
1•jger15•8m ago•0 comments

Platonic Hydrocarbons

https://en.wikipedia.org/wiki/Platonic_hydrocarbon
1•chriskw•9m ago•0 comments

Meta makes cloud push to sell excess AI compute power capacity

https://www.cnbc.com/2026/07/01/meta-stock-cloud-ai-compute.html
1•geoffbp•10m ago•0 comments

No Te Dejes: La Lauren Pena Play

https://thecredentialproject.substack.com/p/no-te-dejes-the-lauren-pena-play
1•Xipitexa•10m ago•0 comments

Jujutsu (JJ) Release v0.43.0

https://github.com/jj-vcs/jj/releases/tag/v0.43.0
1•y1n0•11m ago•0 comments

Amodei told lawmakers that open-source AI is moving down a "dangerous path"

https://twitter.com/coinbureau/status/2071330294452666695
2•msalsas•11m ago•0 comments

Devin Desktop, Replacing Windsurf

https://cognition.com/blog/introducing-devin-desktop
1•thinkingemote•12m ago•0 comments

Valve explains why it isn't subsidizing the Steam Machine

https://www.theverge.com/games/952004/valve-steam-machine-price-not-subsidizing
3•tosh•13m ago•1 comments

Should I go open-source or give free trial and then charge the users?

1•akarshhegde18•14m ago•2 comments

Qwen-Image-Agent: Bridging the Context Gap in Real-World Image Generation

https://arxiv.org/abs/2606.26907
1•gmays•14m ago•0 comments

Show HN: Context.md – A proposed standard for AI project context

https://github.com/kerbelp/context-md
2•kerbelp•16m ago•0 comments

My Most Profitable Experience: How I'm Trying to Hit $800/Day Fast

2•odilelof•17m ago•1 comments

Messi or Ronaldo? Your political ideology may play a part

https://www.ntu.edu.sg/news/detail/messi-or-ronaldo--your-political-ideology-may-play-a-part
1•haunter•17m ago•0 comments

Google testing controversial webcam-based reCAPTCHA that asks for a hand scan

https://www.tomshardware.com/tech-industry/googles-camera-based-recaptcha-asks-for-a-hand-scan-to...
2•akyuu•17m ago•0 comments

"Dimension 20s" Lore Keeper, Skye Smith, on Why AI Can't Replace Her

https://www.businessinsider.com/dimension-20-lore-keeper-skye-smith-ai-2026-6
1•pavel_lishin•17m ago•0 comments

No laptop? No problem. Code on the Go brings the debugger to your phone

https://hackernoon.com/no-laptop-no-problem-code-on-the-go-brings-the-debugger-to-your-phone
2•taubek•18m ago•0 comments

iPhone 18 Pro Could Use Qualcomm Modem in the US and C2 Elsewhere

https://www.macrumors.com/2026/07/02/iphone-18-pro-could-use-qualcomm-modem-in-the-us/
1•tosh•19m ago•0 comments

Coordination Repository Pattern and Pi-Env

https://github.com/u2up/coordination-repository-pattern
1•samopog•20m ago•1 comments

Recollections of Going Up Against Microsoft

https://www.youtube.com/watch?v=4yfBJrWb4pU
1•satisfice•23m 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.