MySphere Posts
On December 8, 2020, Red Hat announced a major change to the enterprise Linux ecosystem: Red Hat will begin shifting our work from CentOS Linux to CentOS Stream on December 31, 2021. We and the CentOS Project governing board believe that CentOS Stream represents the best way to further drive Linux innovation. It will give everyone in the broader ecosystem community, including open source developers, hardware and software creators, individual contributors, and systems administrators, a closer connection to the development of the world’s leading enterprise Linux platform.
Now you can have a 100% RHEL no-cost subscription.
No-cost RHEL for customer development teams
We recognized a challenge of the developer program was limiting it to an individual developer. We’re now expanding the Red Hat Developer program to make it easier for a customer’s development teams to join the program and take advantage of its benefits. These development teams can now be added to this program at no additional cost via the customer’s existing subscription, helping to make RHEL more accessible as a development platform for the entire organization. Through this program, RHEL can also be deployed via Red Hat Cloud Access and is accessible on major public clouds including AWS, Google Cloud Platform and Microsoft Azure at no additional costs except for the usual hosting fees charged by your cloud provider of choice.
See details here
This history began in 2011 when the category IBM Champions for Social Business was created. At that time there were only 50. During the following years I was also nominated in other categories such as IBM Middleware, IBM Cloud and recently IBM Watson IoT.
It is a journey of many years, a lot of learning and also knowledge sharing.
When you create mail journaling you can encrypt all documents using the Administrator ID. Last week a customer ask to add access for another user (developer). The Admin remove the database encryption but lots off documents remain encrypted . The solution was to remove the document encryption using the following steps:
To remove encryption from documents:
1. First, create a view named “Encrypted”. The view selection formula you use will vary depending on the type of database with which you are working.
- If working in a mail file, then use the following:
-
- SELECT (Encrypt = “1” | EncryptionFlags = “2”)
If you are working in a non-mail file and want to remove encryption from documents encrypted with a Private key, then use the following formula:
-
- SELECT @IsAvailable(SecretEncryptionKeys)
If you are working in a non-mail file and documents may be encrypted using either a Public or Private key, then use the following:
-
- SELECT @All
In the above scenario, if you want to remove encryption based on the Form or other field value, then remove the @All. For example: Select Form = “Report”.
In other scenarios, use an ampersand (&) to add additional criteria to the selection formula. For example: Select Form=”Report” & @IsAvailable(SecretEncryptionKeys)
-
- 2. Create an agent with the following code. Set it to run manually from Actions menu on all documents in the database.
Dim s As New notessession
Dim db As notesdatabase
Dim view As notesview
Dim doc As notesdocument
Dim nextdoc As notesdocument
Set db = s.currentdatabase
Set view = db.getview(“Encrypted”)
Set doc = view.getfirstdocument
While Not doc Is Nothing
Set nextdoc = view.getnextdocument(doc)
'The below loop is mandatory to ensure that all $File entries are unecrypted
Forall i In doc.items
If i.isencrypted Then
i.isencrypted=False
End If
End Forall
'Must have at least 1 field encrypted in order to call Encrypt method
Dim temp As New NotesItem(doc,"tempjunk","temp")
temp.IsEncrypted=True
Call doc.encrypt
Call doc.save(True, False)
'This portion can now remove the fields relative to encrypting the
'single token encrypted field.
Call doc.removeitem("$Seal")
Call doc.removeitem("$SealData")
Call doc.removeitem("SecretEncryptionKeys")
Call doc.removeitem("Encrypt")
Call doc.removeItem("tempjunk")
Call doc.save(True, False)
Set doc = nextdoc
Wend
Cause
Resolution
Approach 1: Create a Formula agent, designed to act on selected documents, to delete the field ActForm:
Steps to create the agent:
1. Start the Domino Designer client and open the Domino Directory database.
2. From the menu, select Create -> Agent.
3. The Agent Properties dialog will appear. Give the agent a name. The Runtime settings can be left at the defaults of “Action Menu Selection” and “All Selected Documents”.
4. Click on the X mark in the upper righthand corner to close and save the Agent Properties settings. 5. In the main pane, change the “Run” keyword selection from “Simple Action(s)” to “Formula”.
6. Enter the following code into the main window:
FIELD ActForm :=@Deletefield
7. From the menu select File -> Save.
8. Exit from the Domino Designer client.
Steps to run the agent:
1. Open the Domino Directory from the Notes client.
2. Open the view Configuration -> Servers -> Configurations.
3. Select the affected configuration documents.
4. From the menu select Actions -> <agent name>.
Now when the Configuration document is opened from the Notes client, the Rules tab will display as expected.
OR
Approach 2: Code can be added to the ServerConfig form so that it deletes the field when the Configuration document is opened.
1. Start the Domino Designer client and open the Domino Directory database.
2. In the left pane, select Forms.
3. In the right pane find and open the Form “Server\Configuration Settings”. Note: The form’s Alias is “ServerConfig”.
4. In the lower left pane the Objects tab will be selected by default, locate and select the Queryopen event listed.
5. Paste the following code into the Programmer’s Pane:
Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
Dim doc As NotesDocument
Set doc = Source.Document
If Not doc.Isnewnote Then
If doc.HasItem(“ActForm”) Then
Call doc.RemoveItem(“ActForm”)
Call doc.save(True, True)
End If
End If
End Sub
6. From the menu select File->Save.
7. Exit from Domino Designer client.
Now when the Configuration document is opened from the Notes client, the Rules tab will display as expected.
If you have a problem, and no-one else can help, and if you can find them, maybe you can ask an HCL Ambassador…
See the HCL Ambassadors Class of 2021
When Red Hat, CentOS’s Linux parent company, announced it was “shifting focus from CentOS Linux, the rebuild of Red Hat Enterprise Linux (RHEL), to CentOS Stream, which tracks just ahead of a current RHEL release.” Many CentOS screamed in protest on social media. CentOS co-founder, Gregory Kurtzer, heard them and announced he’d create his own RHEL clone and CentOS replacement: Rocky Linux
Read more information here
Red Hat, CentOS’s Linux parent company, announced it was “shifting focus from CentOS Linux, the rebuild of Red Hat Enterprise Linux (RHEL), to CentOS Stream, which tracks just ahead of a current RHEL release.” In other words, CentOS will no longer be a stable point distribution but a rolling release Linux distribution. CentOS users are ticked off.
Read the full article here
The programming languages used to build the web often find their way into apps, too. That’s largely due to software that allows developers to “reuse” the code they write for the web in products they build to run on operating systems like Linux, Android, Windows, and macOS.
See the full article here
You can now package and deploy AWS Lambda functions as a container image of up to 10 GB.
This makes it easy to build Lambda based applications using familiar container tooling, workflows, and dependencies. Just like functions packaged as ZIP archives, functions deployed as container images will benefit from AWS Lambda’s operational simplicity, automatic scaling with sub-second startup times, high availability, and native integrations with 140 AWS services.
More information here