home.social

#lotusdomino — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #lotusdomino, aggregated by home.social.

  1. Es gibt endlich wieder ein HCL Domino Meetup in #Dresden , es geht um Software ohne Cloud, Office-Alternativen und Sovereign IT die man selbst günstig betreiben kann. Microsoft zu teuer? Cloudzwang ein Problem?

    Interesse? Anmeldung und Details hier:
    planetlotus.org/1056030

    #dominoforever #HCLNotes #HCLDomino #LotusDomino

  2. *** UPDATE ***
    The first set of fixes for the HCL Domino issue are being uploaded to my.hcltechsw.com/ this very moment and should be visible in a few minutes:
    - Domino 14.0.0FP3 IF1 - Windows + Linux
    - Domino 14.0.0FP2 IF2 - Windows
    - Domino 12.0.2FP5 IF1 - Windows + Linux
    - Domino 11.0.1FP9 IF1 - Windows + Linux

    further updates here:
    support.hcl-software.com/csm?i

    #hcldomino #lotusnotes #LotusDomino #lotusnotesanddomino #dominoforever @heiseonline @vowe

  3. 'For a moment there, Lotus Notes appeared to do everything a company needed'

    theregister.com/2024/01/19/rem

    #LotusDomino / #LotusNotes was one of the few tech products that I actually enjoyed working with

  4. Not just in spreadsheets either! We had fun when we were writing Lotus Notes document database applications and discovered that evaling big vectors in Lotus formula language instead of looping over them in LotusScript actually improved performance. And noticeably so.

    If you had for some reason a long list of numbers you wanted to multiply, pair by pair, with some equally long list of numbers, you could:

    Set doc = db.CreateDocument()
    doc.LeftList = leftArray
    doc.RightList = rightArray
    multipliedArray = Evaluate({LeftList * RightList}, doc)


    Much faster than looping over them in LotusScript!

    {} is LotusScript's neat string literal syntax that makes it easy for you to put the quotes you need inside your strings, so it's what you'd generally use for string literals when writing formulas. I don't know if normal Visual Basic had that syntax, otherwise LotusScript was pretty much Visual Basic.

    There were also several @functions that were faster than their LotusScript analogues, because the LS methods would just pull in too much data and populate a lot of objects:

    www.ibm.com/developerworks/lot…

    #LotusScript #LotusNotes #LotusDomino

    Now #HCLNotes and #HCLDomino I hear. Don't know if they still have LotusScript in v11, or if it's all Java these days. Java became available in v4.6 already, 22 years ago or so. It was faster than LotusScript for many things, and by Lotus Notes 5.0 there were even some things you could only do in Java, but the tooling was still awkward at the time compared to the actually very good LotusScript/Notes integration, so we mostly stayed in LotusScript.