Nextcloud, Ionos and other partners are developing an open-source office suite under the project name „Euro-Office“ as an alternative to the market-dominant Microsoft Office.

The two partners are not starting from scratch, but have forked the components of OnlyOffice available as open-source code and want to build on them. In the summer, the software is then intended to replace the previous office component Collabora in Nextcloud and the Ionos Nextcloud Workspace. A ‘technical preview’ is already available on GitHub.

While this is a good news, I think they should move from github, you know microslop copilot…

  • kshade@lemmy.world
    link
    fedilink
    English
    arrow-up
    10
    ·
    8 hours ago

    It’s one of the friendliest programming languages around. If you have written something in VBA then you’ll do fine with Python, except for all the bad/outdated nonsense you’ll have picked up from that language. And there’s interactive interpreters you can just mess around in.

    If this doesn’t scare you then give it a look:

    things = [4, 8, 15, 16, 23, 42]
    for number in things:
        print(number * 16)
    
    64
    128
    240
    256
    368
    672