this post was submitted on 23 Aug 2023
26 points (100.0% liked)

Technology

19 readers
2 users here now

This magazine is dedicated to discussions on the latest developments, trends, and innovations in the world of technology. Whether you are a tech enthusiast, a developer, or simply curious about the latest gadgets and software, this is the place for you. Here you can share your knowledge, ask questions, and engage in discussions on topics such as artificial intelligence, robotics, cloud computing, cybersecurity, and more. From the impact of technology on society to the ethical considerations of new technologies, this category covers a wide range of topics related to technology. Join the conversation and let's explore the ever-evolving world of technology together!

founded 1 year ago
 

Since its inception, Microsoft Excel has changed how people organize, analyze, and visualize their data, providing a basis for decision-making for the flying billionaires heads up in the clouds who don't give a fuck for life off~~the~~line

top 26 comments
sorted by: hot top controversial new old

Are they not gonna give a bullshit reason for this? Just straight up give us your data and it's secure on our Azure instances?

[–] kamills@sh.itjust.works 3 points 1 year ago (1 children)

Seems a bit odd to not have the option to run python locally on my own machine

[–] style99@kbin.social 1 points 1 year ago

It would be very strange if you couldn't just export your data to csv and then run a python script in a shell on it.

[–] nottheengineer@feddit.de 3 points 1 year ago (1 children)

Python is slow enough as is, who the fuck thought adding a web request to that was a good idea‽

[–] sugar_in_your_tea@sh.itjust.works 0 points 1 year ago (1 children)

Python is fast enough, and generally quite a bit faster than complex spreadsheet formulas. I've seen formulas that can take minutes that Python could do in seconds. A web request isn't going to matter that much.

[–] Aatube@kbin.social 1 points 1 year ago (1 children)

Web requests are \very\ slow compared to CPU computations, not to mention that time has to be doubled since it's a two-way route.

[–] sugar_in_your_tea@sh.itjust.works 0 points 1 year ago (1 children)

Sure, but it happens once. So as long as Python saves you more than the half second or so round trip, it'll be preferable.

I'd prefer it to be embedded, but I can absolutely see it being useful even if it's cloud-only.

[–] Aatube@kbin.social 1 points 1 year ago (1 children)

Wouldn't it need to send to the cloud and back every time you change one of the cells the script is depending on?

[–] sugar_in_your_tea@sh.itjust.works 0 points 1 year ago (1 children)

Yup, most likely. I'm saying the total calculation w/ Excel formulas is often greater than that round trip + computation time w/ Python. Excel formulas are pretty slow.

[–] Aatube@kbin.social 1 points 1 year ago (1 children)

I haven't seen how they were slower than just python.

Think huge formulas. I've seen formulas take minutes in Excel, but seconds when implemented better in a script. If you haven't worked with massive formulas, you're not the target market here.

Another application is accessing external APIs that don't have internal support. If you're accessing an external API, you're already paying a network overhead cost, so adding another isn't going to matter much.

[–] flamingo_pinyata@sopuli.xyz 2 points 1 year ago (1 children)

Because it was so much easier to send data to the cloud than embed a Python interpreter. 🤦

I wouldn't be surprised if there already is one in the monstrosity that is Excel

[–] lemonflavoured@kbin.social 7 points 1 year ago (1 children)

My guess is that they are seeing this as less likely to become a security hole.

[–] earthling@kbin.social 4 points 1 year ago (1 children)

Yep. Everyone in the thread asking this question seems clueless to me. Macros are already a threat. I can’t imagine what a shitshow full on python would be.

[–] Aatube@kbin.social 1 points 1 year ago

The Python API they gave doesn't have disk access. Maybe somebody'll discover an exploit but that's for everything.

[–] bedrooms@kbin.social 2 points 1 year ago (1 children)

I can understand the cloud part. they wanted it work on the web and phones. They do know many businesses don't want cloud, so I see a good chance they'll ship it with embedded Python eventually.

[–] Aatube@kbin.social 3 points 1 year ago (2 children)

Phones can also run Python and web is already a pretty separate version, I don't see why they can't only make the web version cloud.

[–] HidingCat@kbin.social 1 points 1 year ago

Money, what else? Office 365 is a priority and this is an attempt to hasten adoption.

[–] bedrooms@kbin.social 1 points 1 year ago (1 children)

At least iPhone apps usually redirect Python tasks to their servers. That's one reason there are projects like Tensorflow Light.

[–] Aatube@kbin.social 1 points 1 year ago (2 children)

For instance? All the python apps I've downloaded so far seem to function offline.

[–] conciselyverbose@kbin.social 1 points 1 year ago

You can even get third party libraries, though it's limited compared to less restrictive environments.

[–] bedrooms@kbin.social 1 points 1 year ago (1 children)

You can look up Tensorflow Light.

[–] Aatube@kbin.social 1 points 1 year ago (1 children)

That's just machine learning which is very resource consuming. It has no relation to your purported case of phones redirecting all python tasks to servers.

[–] bedrooms@kbin.social 1 points 1 year ago (1 children)

Okay, I dug more to find out I'm wrong.

But isn't ML technology a thing Excel offers with its new Python interface?

[–] Aatube@kbin.social 1 points 1 year ago

Not really. I don't expect them to have a cloud instance running that long.

[–] Aatube@kbin.social 1 points 1 year ago

Someone on lemmy.world pointed out the FOSS xlwings also exists.