home.social

#hclnotes — Public Fediverse posts

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

fetched live
  1. Solche Kacheln habe ich doch irgendwo schon mal gesehen. Wenn ich mich nur erinnern könnte

    #lotusnotes #hcldomino #hclnotes

  2. Solche Kacheln habe ich doch irgendwo schon mal gesehen. Wenn ich mich nur erinnern könnte

    #lotusnotes #hcldomino #hclnotes

  3. HCL recommends FP8 for all customers on the 12.0.2 stream.
    ✅ ~40 fixes across Notes Client, Domino Server, iNotes, Designer & Admin
    ✅ Cumulative — all fixes from FP1 through FP7
    ✅ Windows JVM upgraded to Semeru jdk8u482-b08 (TZ 2025c)
    ✅ Updated Forms9.nsf template
    ✅ Language independent
    Plan your rollout with Prominic.NET:
    📧 [email protected]
    📞 +1-217-356-2888
    prominic.community/
    #HCLDomino #HCLNotes

  4. 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

  5. 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

  6. Ich hasse #HCLNotes so sehr, dass ich sogar froh bin zu #Microsoft365 zu wechseln.
  7. HCL Notes not launching after Windows 11 24H2 update KB5055523? Versions 11.x, 12.x, and 14.x affected. Fix it with compatibility mode or uninstall the update. Details here: #HCLNotes #Windows11

    pupuweb.com/why-is-hcl-notes-f

  8. 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.