Live data from Hacker News

Deepnote, a Jupyter alternative, is going open source

deepnote.com

11–20 of 179 posts

Re: Deepnote, a Jupyter alternative, is going open source

#11

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.

I actually mostly use Jupyter for non-Python code (e.g. Julia or Ruby). How is Marimo's support for other languages?

Re: Deepnote, a Jupyter alternative, is going open source

#12
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?

Re: Deepnote, a Jupyter alternative, is going open source

#13
post #10

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.

*anywhere that has the python runtime installed

ironically that makes jupyter more portable via colab

Re: Deepnote, a Jupyter alternative, is going open source

#14
post #10

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.

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

Re: Deepnote, a Jupyter alternative, is going open source

#17
post #6

Framing of this seems a bit nasty tbh - jupyter deserves a little bit of respect on its name!

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.

Yes, agree. To the point that I'm not very interested in looking them up.

Re: Deepnote, a Jupyter alternative, is going open source

#18
post #5

Jupyter does not have (or need) a successor.

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.

Re: Deepnote, a Jupyter alternative, is going open source

#20
post #10

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.

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.
Post reply on HN