logoalt Hacker News

rr808yesterday at 9:20 PM1 replyview on HN

I work in big financials. Everything used to be built on Excel. A lot still is but Python/Jupyterhub or custom applications has taken over a lot of the complex stuff. Excel isn't really essential any more.


Replies

slaymaker1907yesterday at 10:05 PM

While less necessary with AI, Excel is still the king of data entry and basic data manipulation (sorting, filtering, updating, etc.). I’d say that SQLite with a GUI for visualization is a far stronger competitor than Jupyter at those sorts of things. You can do that stuff in Jupyter, but it’s easier in Excel.

Jupyter also has a janky execution model. It doesn’t track dependencies so you have to be very careful in how you separate cells from one another and just running the whole notebook every time seems kind of pointless vs just writing a pure Python script.