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…

  • Squizzy@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    2 days ago

    Is python realistic for non tech people? I have a lot of databases across sharepoint but no real tech knowledge beyond basics.

    • kshade@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 day 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
      
    • WhyJiffie@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 days ago

      it was partly made for mathematicians who did not know how to develop software, but also for education. so I guess it’s a good starter language. but it allows doing way too much things that will be very confusing when overused

    • Rooster326@programming.dev
      link
      fedilink
      English
      arrow-up
      3
      ·
      edit-2
      1 day ago

      If you are running multiple databases you are already a “tech people”

      Sharepoint is not a “database”. Many people have made that mistake and it eventually comes back to bite you.

      I would recommend learning SQL. It is made to be human readable, and we’ve been perfecting it since the 1960’s.

      Python let you run SQL on any file, and standard DB technology with a very small number of lines of code. Recommend reading about Pandas

      • Squizzy@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 day ago

        I would just have a lot of interdependent excels on sharepoint, think customer data and their respective equipment, serials, progression. I detest microsoft sooving away woupd be ideal and if I can do it while getting my head around python then great.

        I have no idea what pandas is.