frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

We're open-sourcing the successor of Jupyter notebook

https://deepnote.com/blog/were-open-sourcing-the-successor-of-jupyter-notebook
128•zX41ZdbW•2h ago

Comments

neves•2h ago
Instead of contributing to Jupyter, we will create another tools
dbunskoek•2h ago
I’m not familiar with Deepnote, but I have quite a lot of experience with Jupyter, and if someone were to ask me if there are more modern alternatives I would immediately point them to marimo (https://marimo.io/). For me marimo is already a successor to Jupyter, it has replaced it entirely for me.
renjieliu•1h ago
One thing I like about marimo is the autocompletion's much faster than Jupyter.
aitchnyu•1h ago
Yup, Marimo seems perfectly gittable and Deepnote looks more of the status quo.

> Human-readable format: The .deepnote YAML format replaces .ipynb's messy JSON with clean, version-control and human-friendly structure for projects and notebooks. You can organize multiple notebooks, integrations, and settings into a single .deepnote project for better structure and collaboration.

https://marimo.io/blog/python-not-json

qudade•1h ago
Marimo is much better for git than Jupyter. I only wish it had a gittable/reviewable version with output, too.
taeric•1h ago
I confess that picking yaml doesn't feel safe to me. As much as it annoys people, fenced formats are the way, here. And if you aren't careful, you are going to recreate XML. Probably poorly.
culi•1h ago
I actually mostly use Jupyter for non-Python code (e.g. Julia or Ruby). How is Marimo's support for other languages?
bonesss•36m ago
Non-existent AFAICT, files saved as ‘.py’. I use Jupyter primarily with F#, the multi-language support is huge.
ilaksh•1h ago
How hard would it be to add creatine collaboration to Marimo?
Evidlo•33m ago
Pretty easy. Just a scoop of whey.
nimish•1h ago
Have to say marimo is excellent and is a breath of fresh air compared to Jupyter!
Panoramix•4m ago
What does it do better? I'm happy with Jupyter for most of my cases but never hurts to look around.
moralestapia•1h ago
x2 to marimo, please try it if you haven't.

I never really liked Jupyter. I've built a couple of "notebooks", as they have come to be known the days, much better than Jupyter and still switched to marimo, eventually. Quite similar to what I wanted to have.

kccqzy•1h ago
But doesn't marimo force certain workflows that jupyter does not? For example its website states that "Notebooks are executed in a deterministic order, with no hidden state — delete a cell and marimo deletes its variables while updating affected cells." This appeals to people doing development work in notebooks, but it breaks workflows where people use notebooks as notebooks, where state is entirely separate from the in-notebook presentation of cells. Do people using notebooks these days hate this fundamental feature of notebooks?
swiftcoder•57m ago
Anyone trying to reproduce the results in a shared notebook certainly hates that "feature"
anakaine•11m ago
Not at all. Its just a development choice. Personally Id stick with Jupyter because state is maintained.
mbreese•4m ago
> Do people using notebooks these days hate this fundamental feature of notebooks?

It's one of the things that is the most confusing to people I've worked with. The idea that there is hidden state and you have to re-run cells to get variables to update (or variables still exist when you've deleted those cells) is quite confusing.

If you're trying to have a reproducible workflow, it can be difficult. Jupyter is no different from other notebooks in this regard (RStudio, for example will happily run code and keep variables around that you don't remember.)

But I see your point -- if you're using it as a long-term storage notebook, then this is the expected behavior.

verdverm•1h ago
Marimo has been acquired (last week), does the SaaS enshitification pattern give you any pause?

https://marimo.io/blog/joining-coreweave

verdverm•58m ago
Will github render a Marimo notebook as if it has already been executed, like they do for Jupyter notebooks?
joshgree8859•2h ago
Framing of this seems a bit nasty tbh - jupyter deserves a little bit of respect on its name!
kianN•1h ago
I agree with this. I have no problem with a technical discussion comparing the features and discussing Jupyter’s shortcomings. But the Jupyter job postings and contribution graph screenshots felt both ill-spirited and not particularly relevant.

There was interesting stuff here: the human readable format, auto publication. But the tone and framing bashing a reliable open source project really turned me off.

ar_lan•1h ago
Yes, agree. To the point that I'm not very interested in looking them up.
benatkin•1h ago
It isn't even a successor. A successor would be open source from the start!
bityard•2h ago
Jupyter does not have (or need) a successor.
sireat•1h ago
Indeed regular Jupyter works so well on VS Code for solo work these days that there is no real need for a new entrant.

So what pain point are these new entrants trying to solve?

Sure there is an issue of .ipynb basically being a gnarly json ill suited for git but it is rare that I need to track down a particular git commit. Even then that json is not that hard to read.

Also I'd like an easier way to copy cells across different Jupyter notebooks, but at the end of day it is just Python and markdown not very hard to grok.

7moritz7•1h ago
Title and first paragraph make it sound like this is a project by the same people as (or endorsed by them) Jupyter. Apparently that's not the case and also it looks very similar to google colab so jupyter + better UI + some LLM integrations

But kudos for going oss

drnick1•1h ago
Are there any other people who hate notebooks? Give a plain old script anytime. Run and edit anywhere without extra packages or even a Web browser.
7moritz7•1h ago
*anywhere that has the python runtime installed

ironically that makes jupyter more portable via colab

culi•1h ago
notebooks are great for sharing code with people who might have only a cursory knowledge of coding. It also helps highlight specific sections of code. Graphs and other outputs immediately proceeding the block of code that generates them can be really helpful as well

If a "script" gets too long and complicated, and it's a project I intend to present to others, I often reach for a notebook to organize the code in a more digestible format

nixpulvis•1h ago
I have no real qualms with the idea of a notebook, as long as it's not adding a lot of custom magic. I should be able to share what I'm working on, iterate in a notebook with someone, then extract it into a standalone program without much thought.
drnick1•1h ago
One issue is that very often the "magic" happens in imported modules, so you can't really see what is happening unless you drop down to a text editor anyway. Then there is the infamous issue of modules not automatically reloading even when rerunning the Notebook.
nixpulvis•40m ago
That in theory shouldn't be too bad. Though, there have been some things like %sql I remember using in one notebook, which was essentially a macro for making a datatable from a SQL expression, but it wasn't something you could just copy directly.
bragr•1h ago
I've found that notebooks are great for ad hoc reporting and analysis scripts. Once you have your quick and dirty script, it is trivial to convert to a notebook and you get a lot for little. Being able to change one cell and rerun just that is a godsend for getting reports "just right", and the "show your work" and visual aspect make them much more consumable and trusted by other people.
victorbjorklund•1h ago
notebook are great when you wanna see the intermediate results and not just the final result (in case last step takes time and you wanna double check the data) or when you just wanna better understand what the code does (yes, you can set up a debugger and debug a script etc but that is just more pain)
OkayPhysicist•56m ago
Notebooks aren't competing with scripts, they're competing with REPLs.

ML and scientific applications in particular tend to have segments that run for a long time, but then you'd like the resulting script to be in a state where you can mess with it, maybe display some multimedia output, etc, without re-running the long-running segment. Notebooks fit this need to a tee.

verdverm•54m ago
Notebooks are closer to using a repl than a script.

One key feature is that you can run a long data-prep/processing step and then iterate on whatever comes after without having to re-run the compute intensive steps to get the data (i.e.) you want to graph

Another key feature is learning and sharing knowledge. Images, markdown, graphs, links, code... all interwoven. Scripts do not have affordances for these things. In this sense, Notebooks can be closer to reproducible blog posts.

AnotherGoodName•43m ago
I do think notebooks are very flawed right now even if the concept is sound. Right now they are essentially an IDE without the ability to produce publishable output (you are literally expected to ship the project in the form the IDE works with) and they are not a very good IDE at that.

They need reliable dedicated published output fit for general public consumption. This means a static (no backend host required) sharable .html file where end users can view all the data and run the code samples that doesn't try to present as an IDE. I actually wrote https://rubberduckmaths.com/eulers_theorem in Jupyter but had to manually copy and paste to a new well formatted static html file and re-paste the code blocks into Pyodide enabled text areas within that html since the export functionality is a mess. The result of the manual work means i now have an easily sharable and easily hosted static html file with working Python code samples as it should be but... Why don't Notebooks have a published form like this already? It seems pretty obvious that Notebooks are your IDE, they shouldn't be the output you present. We're literally asking users today 'to view this notebook install Jupyter/Marimo/whatever and open from there' when the Notebook is designed to create the publication rather than a place to view it. In general the output i demonstrate above should be the minimum bar that Notebook 'export' features should hit. Export as a static .html file with working code. As someone who manually 'compiles' notebooks it's not hard to do yet Notebooks simply don't have an actual working html export right now (i know there's technically a 'html' export option in Jupyter but it will strip out your code and create a terribly poorly formatted document as output).

The IDE aspects themselves, at least for Jupyter (the one I've tried out the most), are a bit too simple too. Yes it's nice to have alternating 'text' blocks followed by 'code' blocks but that's really all they are right not. I want something more complex. I want the code blocks shown to actually be windows to a full python project. Users should be able to change the code shown and view the larger, well structured Python code. Right now it's text, followed by simple code. Not much more honestly. As it is right now i feel Notebooks only work for really simple projects.

If you have a complex Python project i agree the way to only share it is to share the Python project as is. Notebooks could be a wonderful explanatory wrapper to a larger project but right now they just aren't good at doing much more than the simple 'here's some data' followed by 'here's the code i used to process that data' and they don't even present that particularly well.

cxr•1h ago
I'm not involved in any capacity with the development or use of Jupyter—I think ipynb is fundamentally flawed at a deep level, starting with its (I)Python roots—but this company's framing of their product as "the successor to Jupyter notebook" comes across as passive aggressive at best and misleading at worst. What is their relationship to Jupyter besides building a Jupyter alternative?
CamperBob2•1h ago
What are some of the flaws surrounding IPython and ipynb in particular?
ar_lan•1h ago
The framing of this title makes it seem like Jupyter is dead. It, in fact, is not.
bee_rider•1h ago
What’s these folks relationship to Jupyter? I guess they must be some of the really prominent Jupyter developers? Otherwise declaring their system the successor to such a widely used tool seems pretty presumptuous.
benatkin•1h ago
Just people working at a moderately successful startup, frustrated that they've created a niche product.
WD-42•1h ago
The hubris of this self declared successor. It’s not even the same team.
serjester•1h ago
A lot of the comments on here are too pessimistic. Deepnote has had the single best jupyter interface for years now - unfortunately locked behind a cloud subscription though. Jupyter itself has been stagnant for far too long, and it's much appreciated there's more options coming online that have a modern level of polish.

Marimo is great, but it's good to have competition in the space (especially when both projects are still owned and maintained by VC backed companies).

esafak•1h ago
Which one is better, marimo or deepnote?
kstrauser•1h ago
Oh, and it's Apache 2 licensed, so actually open source and not just pretending for the cred.

Sincerely, nice.

zwaps•1h ago
Do people find this sort of writing appealing?

For me, it's cringe to borderline painful to read.

jonrouach•8m ago
yes!

this announcement had such strong gpt-output vibe..

to the "writers": pleeease don't present unedited slop to me. i'm a human, if you want my attention consider using your own voice. i don't want to read what gpt thought would "market" you best.

but this thread did remind me of marimo so that's sweet

slashdave•1h ago
Wouldn't the successor for Jupyter be decided by adoption? For a single team to self declare this seems a bit crass, no?
bunderbunder•1h ago
I would recommend not making any career pivots to sales or marketing.
catlifeonmars•1h ago
Not sure if this is sarcasm, but GP has good taste and when marketing this stuff to developers, you need good taste. Otherwise it just rings hollow, and doesn’t inspire enthusiasm.
angiolillo•28m ago
Marketing is audience-dependent.

If you are marketing to VCs then disparaging competitors and making grandiose claims can be effective.

But when marketing to developers then constructive criticism and humility may be more effective.

__mharrison__•1h ago
Lot's of notebooks floating around.

I love notebooks, I use them all the time for teaching, writing (all of my books are written in notebooks), EDA, model development, and more. I've spoken at Jupytercon.

Having said that, I've never played around with other notebook implementations (ok, I've used IPython Notebook, Jupyter Notebook and Lab, Google Colab, ein (emacs), Jupyter in Vscode, and Notebook (.py) files in Vscode).

I've seen Joel's rant about notebooks, and they do have drawbacks.

But I would rather push better programming practices (chaining pandas, using functions, rearranging cells) than have dependent cells written in the horrible piecemeal style that I see all around the industry.

My biggest issue with notebooks is JSON. I've used Jupyter to get around it for years, and now many LLMs are decent at writing Jupyter JSON.

dwa3592•1h ago
as me and my co-worker used to joke, "marimo is the mclaren of notebooks".
ayhanfuat•1h ago
Claiming that the number of job postings mentioning Jupyter has decreased, so Jupyter is no longer popular is not something a company in the data space should do. It is just embarrassing.
cobertos•48m ago
And that graph they show has an offset y axis (hides the scale from 0 to exaggerate the "downward trend") _and_ has a non-uniform x axis. Each tick mark represents a different scale of time (1yr, 3 mos, 1 mo)

Wtf

huevosabio•12m ago
Oh wow did not catch that!
mritchie712•1h ago
> Teams need notebooks that are reactive, collaborative, and AI‑ready

reactive: this matters, but all the alternatives have it

collaborative: this matters very little in the Figma / Google Docs sense of collaborative in practice. It's very rare you want two people working on the same notebook at the same time. What you really want is git style version control.

AI‑ready: you want something as close to plain python (which is already as AI-ready as it gets) as possible.

if you're measuring across these dimensions, I'd go with marimo.

marimo is saved as plain .py files, easy to version control and has a reactive model.

fxwin•44m ago
This is the first time I'm hearing about marimo and i have to say their landing page is excellent! Immediately makes me want to try it
Equiet•38m ago
I'd argue the opposite.

There is plenty of AI extensions, but the experience matters. The depth of integration matters. When you execute queries against production warehouses and you make decisions based on the results of AI-generated code, accuracy matters. We had our first demo of an AI agent running in 2 days, it took us another 2 years to build the infrastructure to test it, monitor it, and integrate it into the existing data source.

You'd be surprised how many people collaborate together. Software engineering is solitary, collaboration happens in GitHub. But data analysis is collaborative. We frequently have 300+ people looking at the same notebook at the same time.

.py never worked for data exploration. You need to mix code, text, charts, interactive elements. And then you need to add metadata: comments, references to integrations, auth secrets. There are notebooks that are several pages long with 0 code. We are building a computational medium of the future and that goes beyond a plaintext file, no matter how much we love the simplicity of a plaintext file.

mritchie712•29m ago
seems you completely missed the point. marimo does everything you're looking for in plain .py files that render as notebooks.

https://marimo.io/blog/python-not-json

Equiet•14m ago
We seriously considered this, but decided against this. While elegant for demo projects, it doesn't scale for serious deployments. You still need to deal with secrets, metadata (lots of it), backwards-compatibility, and extensibility (we have 23 block types today, many more to come).
GuestFAUniverse•1h ago
standing up Bingo!

(Anybody still familiar with "bullshit bingo"?)

orly01•1h ago
I don't know much about this, but I understand Project Jupyter is Nonprofit. If I go to "jupyter.org" I see a tab "Community" and another "Governance". If I go to "deepnote.com" I see "Customers" and "Pricing".

Why would people want a standard to be controlled by a private company? I don't think the "Open-Sourcing" of it says enough. How does licensing work with formats or standards?

j2kun•51m ago
People don't want that. This article is largely empty marketing. Claiming they have "the successor" is all you need to read before you can infer it's hot air.
Equiet•34m ago
All standards are ultimately controlled by private companies. Even non-profits require funding.

Open source always depended on a viable business model (of one or many companies) that can sustain not just the release, but also an ongoing maintenance of the standard.

Kwpolska•26m ago
Which private companies control Jupyter?
mikayelh•8m ago
On the licensing front - it is listed on GitHub (https://github.com/deepnote/deepnote for the main toolkit that powers all the blocks).

This is listed under Apache 2.0, which is pretty standard as far as it goes license wise.

simonw•1h ago
Way to undermine an interesting product launch through poorly chosen language:

> Let’s be frank the single‑player notebook has felt outdated for a while now. We’re open‑sourcing its successor. Jupyter belongs in the hall of great ideas — alongside “Hello, world.” and “View Source.”

If you're trying to reach out to the Python community this is not the way to do it. Completely unnecessary hostile language there! Have some respect.

My advice to Deepnote is to scrap this launch announcement (ideally with an apology) and try again. They've built something genuinely useful and interesting but it's going go get a lot less attention than it deserves if they introduce the open source version to the world like this.

aj_hackman•1h ago
TIL "Hello world!" has been put out to pasture.
Kwpolska•28m ago
Who needs Hello World when you can have an LLM implement an entire number guessing game for you?
Panoramix•7m ago
For when the LLM completely screws up the code as it does
whacko_quacko•1h ago
Yes. This wording just misses the mark and sounds super tone deaf

Not sure that an apology is necessary though. Some overconfident marketing person tried something, and it failed. That's what happens if you try stuff. They should just try harder next time

Equiet•58m ago
Thanks for the feedback Simon!
gowld•51m ago
Did you... read it?
coldtea•35m ago
Apparently they're continuing the tone-deaf announcement with tone-deaf responses to feedback.
misnome•16m ago
“Just post through it” is a tried and true tactic!
flexagoon•56m ago
Why is "View source" listed here as if it's some outdated feature of the past?
j2kun•52m ago
Probably an AI wrote large parts of this press release.
catlifeonmars•36m ago
That’s no excuse. Someone shipped it (and ostensibly read it).
dennisy•30m ago
100%, you can feel this is GPT5 style.
andy99•52m ago
I saw this on LinkedIn earlier and literally closed it after “ Let’s be frank the single‑player notebook has felt outdated for a while now”

I think it must be messaging for “leadership” as opposed to practitioners, there are lots of real pain points but they don’t seem to be mentioning them

3rodents•50m ago
it’s what happens when people use LLMs to write their posts. Rubbishing Jupyter is an obvious choice if you’re a machine writing a compelling post. Rubbishing Jupyter if you’re a human being with a stake in the space is a terrible choice.

My constructive advice for deepnote: if you don’t have something to say from the heart, don’t ask an LLM to generate something for you. Write less, not more. For a post this important, an LLM is a terrible choice.

anonzzzies•49m ago
I do not often make a point after upvoting but instead of writing more or less the same: this ^. If not for the open source, I would have closed the the page after that blurb thinking something is off and I do not need it.
al_borland•45m ago
When we stand on the shoulders of giants, we don’t do so to dump on them.
coldtea•37m ago
>If you're trying to reach out to the Python community this is not the way to do it. Completely unnecessary hostile language there! Have some respect.

The note sounds as written by some manager/marketing guy that has 20 years to touch a line of code...

For sure it put my off even checking what their shit is (from initially interested upon seeing the HN post).

a2128•27m ago
The whole article felt very dishonest and frankly quite rude towards Jupyter. Self-declaring themselves to be the successor to a project that's still alive and that they seemingly have absolutely no legitimate claim to, and then going on to bash it by saying it's dying because job postings are decreasing and commits are decreasing, the latter point is especially dishonest considering Jupyter is already quite complete and fully featured so maybe it doesn't need constant daily commits?

Maybe they should focus less on bashing Jupyter and more of showing what's good about them, for example they stated multiple times that Jupyter is messy JSON but they never showed off their own format... Just some vague hand-wavy "perfect for AI!"

WhitneyLand•27m ago
Simple explanation, they used AI as a voice for their writing instead of using it as a tool for writing in their own voice.

LLMs are good to proofread, check your tone, generate ideas, etc.

Letting them take over your connection with an audience or be a substitute for gut checks or taste is not helping anyone.

knlb•10m ago
The whole post feels like it was edited/modified by ChatGPT; `What we opened — in English, not a changelog`, `Why it matters (no fluff):`, `We are big believers in notebooks — full stop` are patterns that always make me feel like an LLM wrote it (sentence followed by a marketing qualifier).

I really liked Deepnote the product when I last used it, but the post definitely feels off.

sixhobbits•59m ago
Haha I've asked LLMs to avoid fluff in a prompt and gotten exactly a heading like that one wkth "(no fluff)" before.

Otherwise I've followed DeepNote since they started. I agree with other comments that it's icky to announce yourself as a successor to someone else's project, but always nice to have more options for open source

hsaliak•57m ago
Can someone clarify how deepnote has the authority to declare the "successor" of Jupyter?
fxwin•57m ago
>Meanwhile, the market is voting with its feet. Across the Fortune 1000, job postings that mention and require Jupyter knowledge are down sharply; the most recent month was deep in the red YTD.

This is a joke, right?

jasonjmcghee•53m ago
I'm pretty confused why a company would waste such an important announcement / milestone with a clearly llm-generated blog post.
bsimpson•49m ago
Might wanna spell-check the post if you want any credibility on your claim:

> worfklows

Observable is already open-sourced and well-respected. Bold and ridiculous to claim your random product is "the successor" of a well-known project, without any obvious relationship to the founders/maintainers of the thing you claim to be aping.

yandie•12m ago
What's wrong with `workflows` - out of curiosity?

Also, AFAIK, Observable is only JS - this is a Python notebook solution that we are talking here.

I'm just an observer - their claim of being successor to Jupyter is definitely hyperbole.

Equiet•46m ago
I'm Jakub, CEO of Deepnote.

Didn't expect to see this trending here! We worked hard to execute on our vision of a data notebook and I'm glad we finally got a chance to open source it. We stand on the shoulders of giants. AMA!

chrisra•45m ago
Which LLM was used to generate that post?
misnome•9m ago
And do you have a marketing team to fire, or is it just the LLM?
dizlexic•45m ago
This is an ad.
martinky24•45m ago
It's telling that Wolfram / Mathemetica doesn't even come up in a blog post like this, as the inventors of "the notebook". Jupyter took the concept to a whole new level, but the concept did originate in Mathematica 30 years ago!
wosined•44m ago
The article reads as if generated by AI. Lol
sampton•28m ago
Jupyter use is declining because coding agents got really good. Multiplayer mode is not going to save it.
daft_pink•23m ago
You claim it’s a successor, but is everyone really on board with that? I love jupyter, but generally feel like having to run a server is the downside.

The nice thing about jupyter notebooks is that you can run them inside vscode without an explicit server, but I like to just use %% so that I can run it in zed and vs code and it’s just a python file that doesn’t need conversion.

seg_lol•21m ago
The successor to Jupyter notebook is Marimo, https://marimo.io/ because they are pure code, not code in json. First class everywhere.
yandie•11m ago
I'm confused. I checked out the repo and I don't think the notebook itself - the equivalent of Jupyter is open source yet:

https://github.com/deepnote/deepnote/

What's the equivalent of `jupyerlab run`?

> You'll soon be able to:

> Take the UI you're used to from Deepnote Cloud and run it locally > Edit notebooks with a local AI agent > Bring your own keys for AI services > Run your own compute

I built sbsh: Persistent terminal sessions with discovery, profiles, and an API

1•eminwux•2m ago•0 comments

Ask HN: Do you know of a AI company that's using user's clients to request stuff

1•d--b•3m ago•0 comments

Show HN: A simple app to collect people's info at events

1•fcpguru•3m ago•0 comments

Calm: Continuous Autoregressive Language Models

https://github.com/shaochenze/calm
1•anigbrowl•4m ago•0 comments

How AGI became the most consequential conspiracy theory of our time

https://www.technologyreview.com/2025/10/30/1127057/agi-conspiracy-theory-artifcial-general-intel...
6•samuel2•9m ago•0 comments

Support for UUID Version 7 (UUIDv7) added to Java 26

https://github.com/openjdk/jdk/pull/25303
2•mfiguiere•9m ago•0 comments

A Beloved Clothing Store Closed. A Customer Bought All 4,500 Items

https://www.nytimes.com/2025/11/04/business/vicky-szuflita-vintage-store.html
2•js2•9m ago•1 comments

A16Z TxO fund pause puts Talent x Opportunity on hold

https://afrotech.com/a16z-txo-fund-pause-underserved-founders
2•MindBreaker2605•9m ago•0 comments

Building Data Tools That Work

https://blog.matterbeam.com/building-data-tools-that-actually-work/
2•mikepk•10m ago•1 comments

Apple releases iOS 26.1, macOS 26.1, other updates with Liquid Glass controls

https://arstechnica.com/gadgets/2025/11/apple-releases-ios-26-1-macos-26-1-other-updates-with-liq...
4•kristianp•11m ago•2 comments

Debugging processes across container boundaries on Kubernetes

https://www.enterprisedb.com/blog/debugging-processes-across-container-boundaries-kubernetes
1•eatonphil•11m ago•0 comments

Show HN: Go check pillionaut.com and be first in 100 users

https://www.pillionaut.com/
1•pillionaut•13m ago•0 comments

The New Google Search Ad Layout Is Causing Accidental Clicks

https://www.seroundtable.com/googles-ad-layout-accidentally-clicks-40360.html
1•rustc•13m ago•0 comments

The glaciers are melting. Are ski resorts digging their own graves?

https://www.datawrapper.de/blog/ski-resorts-climate-impact
1•speckx•14m ago•0 comments

Unexpectedly high concentrations of forever chemicals found in dead sea otters

https://phys.org/news/2025-11-unexpectedly-high-chemicals-dead-sea.html
1•measurablefunc•15m ago•0 comments

First AI-designed viruses a step towards AI-generated life

https://www.nature.com/articles/d41586-025-03055-y
1•mooreds•16m ago•2 comments

$50 Oil Could Crush American Shale Growth

https://oilprice.com/Energy/Energy-General/50-Oil-Could-Crush-American-Shale-Growth.html
2•toomuchtodo•18m ago•1 comments

I was right about dishwasher pods, and now I can prove it [video]

https://www.youtube.com/watch?v=DAX2_mPr9W8
3•hnaccount_rng•19m ago•0 comments

Chicken Coop Tech Stack

https://excamera.substack.com/p/chicken-coop-tech-stack
1•jamesbowman•20m ago•0 comments

Principles for Global Online Meetings

https://www.mnot.net/blog/2025/10/26/equitable-meetings
1•mooreds•21m ago•0 comments

Supercharging the ML and AI Development Experience at Netflix

https://netflixtechblog.medium.com/supercharging-the-ml-and-ai-development-experience-at-netflix-...
4•savin-goyal•22m ago•0 comments

Changing Times in UGC: Tripadvisor and Viator to Merge Operations

https://skift.com/2025/11/04/tripadvisor-and-viator-to-merge-operations-layoffs-imminent-scoop/
1•jclampet•22m ago•0 comments

Dick Cheney Dead

https://www.thenation.com/article/politics/dick-cheney-war-on-terror-executive-power/
1•CHB0403085482•23m ago•1 comments

Reranker Leaderboard

https://agentset.ai/leaderboard/rerankers
1•tifa2up•23m ago•0 comments

Wall Street's AI Obsession Makes Perfect Sense

https://www.thefp.com/p/wall-streets-ai-obsession-makes-perfect-sense-markets-stocks-concentration
1•mefengl•24m ago•0 comments

Stone tool discovery suggests first humans were inventors

https://www.bbc.com/news/articles/ce8zn4ln85ro
1•rolph•28m ago•0 comments

Show HN: A simple programming centric WordPress: TopCoders.Cloud

https://topcoders.cloud
1•gitprolinux•29m ago•0 comments

The CEO Has Three Responsibilities (2019)

https://obviousstartupadvice.com/2019/10/24/the-ceo-has-three-responsibilities/
1•raw_anon_1111•30m ago•0 comments

New TikTok Algorithm Restricts Drop Site News Israel Reporting

https://twitter.com/ryangrim/status/1985790050659950672
1•cramsession•33m ago•0 comments

Singapore to cane scammers as billions lost in financial crimes

https://www.freemalaysiatoday.com/category/highlight/2025/11/04/singapore-to-cane-scammers-as-bil...
2•raybb•33m ago•0 comments