How to install Let’s Encrypt on Tomcat port :8080 on Ubuntu 20.04

Installing Let’s Encrypt on Tomcat using port 8080 on Ubuntu 20.04 involves several steps: First, you will need to install certbot, the Let’s Encrypt client, by running the following command: sudo apt-get install certbot Next, you will need to configure certbot to work with Tomcat. This can be done by…
LMS – Sakai – install and configure

Sakai Learning Management System (LMS) is an open-source platform designed for higher education institutions to manage and deliver online learning content. It is a robust and feature-rich system that offers a wide range of tools for creating, delivering, and managing online learning content. One of the unique features of Sakai…
Install ERPNext on Ubuntu 22.04

ERPNext is an open-source enterprise resource planning (ERP) software that helps businesses manage their operations, including accounting, inventory, and customer relationship management. It is built using the web framework Python and the JavaScript library Frappe. It is designed to be easy to use and customize, and can be accessed from…
Install Office 365 on Windows 7

Install Office 365 ProPlus on a Windows 7 Machine (Post-July/14/2020) 1. Download the OLDer version of ODT: https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_12624-20320.exe 2. Run the downloaded installer file and when prompted where to install, save it to a New Folder at the root named “ODT” – path should be C:\ODT 3. Open Notepad and create…
Change permissions of folder and subfolders in Linux
To change existing files and folders permissions, use these in the command line: find ./ -type d -exec chmod 755 {} \; find ./ -type f -exec chmod 644 {} \;
Bye bye America, say hello to Russia!

We moved from Google to Yandex! Yandex is a Russian multinational technology company that specializes in internet-related services and products. It is the largest technology company in Russia and the fourth largest search engine in the world. Yandex offers a wide range of services, including search, maps, navigation, and e-commerce.…
Best solution for Composer memory issue:
Best solution for Composer memory issue: by running the Composer command like this: No more memory allocation issues!
Facebook Files – archived

The Facebook Whistleblower, Frances Haugen, Says She Wants to Fix the Company, Not Harm It www.archive.ph/jhzrH/ Facebook Says Its Rules Apply to All. Company Documents Reveal a Secret Elite That’s Exempt https://www.wsj.com/articles/facebook-files-xcheck-zuckerberg-elite-rules-11631541353https://archive.ph/arGe5 Facebook Knows Instagram Is Toxic for Teen Girls, Company Documents Show https://archive.ph/hW76L Facebook Tried to Make Its Platform…
How can you have Composer install the site in the project root not in web/?

If you want to modify some of the properties of the downloaded composer.json before composer install is executed, use the –no-install flag when running composer create-project. For example, it is possible that you want to rename the subdirectory ‘web’ to something else. To do that: Run composer create-project drupal/recommended-project my_site_name_dir –no-interaction –no-install Change directories…