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:
https://planetlotus.org/1056030

#dominoforever #HCLNotes #HCLDomino #LotusDomino

Thomas Hampel

HCL Domino Community Meeting Dresden - 27. Feb. 2026

Join „Let’s Connect“ on Oct 21 + 23
in #copenhagen and #stockholm
For a full Conference day of #sovereign #collaboration

https://letsconnect.world

#dominoforever #LotusDomino #lotusnotes #sweden #denmark

Let'sConnect – Let'sConnect User Group Conference

Moohar - Why Domino?

*** UPDATE ***
The first set of fixes for the HCL Domino issue are being uploaded to https://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:
https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0118192

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

My HCLSoftware

Discover and download the latest software product releases from HCLSoftware. HCL Domino customers and partners can sign in using HCLSoftware ID.

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

https://www.theregister.com/2024/01/19/remembering_lotus_notes/

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

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

Now its functions are shattered between innumerable vendors

The Register
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.
Simplifying your LotusScript with the Evaluate statement

This article will show you how the Evaluate statement works and give you examples of some of the more powerful formula language constructs you can exploit from your LotusScript routines.