Using OpenAI to summarise PDF
To use OpenAI to summarise text from a PDF using Python 3.11.6, you'll first need to extract the text from the PDF and then send it to the OpenAI API for summarisation.
Preparation
Set-up
pip install python-dotenv langchain openai tiktoken pypdf pymupdf
Code
The current code is on my Summaries GitHub page.
Watchdog page load impact on Drupal websites
In Drupal, the Watchdog module (or the logging system) is responsible for logging messages, errors, and other information related to the operation of your Drupal site. This data is useful for monitoring and troubleshooting, but it can potentially impact page load times if not managed properly.
How to add an environment variable in Ubuntu
To set an environment variable on Ubuntu, can be achieved via a few options. This depends on whether you want the variable to be system-wide or specific to a user's session. Here are a couple of more common methods for setting environment variables:
zipimport.ZipImportError: can't decompress data; zlib not available
Run Python within a Lando environment
To begin, note that Lando is often used for web development and it may not be optimised for running long-running Python scripts or applications. It's primarily designed to host web services, so if you have specific Python development requirements, you might want to consider using a dedicated Python development environment or container. However, Lando can be useful for running Python scripts in the context of web development projects.
Managing VS Code extensions via terminal
Visual Studio Code (VS Code) allows you to manage extensions using the VS Code Command Line Interface (CLI) called code. With the code CLI, you can install, list, uninstall, and manage extensions from the command line.
To check you have the code prompt running, run
code --version
Response you're looking for is
Lando setup running Drupal 10
Create a Lando setup running Drupal 10.
The command you provided appears to be a Lando configuration command for initialising a new Lando environment for a Drupal 10 project. Following is a breakdown of the command and what it does:
Twig\Error\SyntaxError: Unexpected "spaceless" tag
Additional security updates can be applied with ESM Apps
Adding SSL wildcard certificate to Ubuntu running Nginx
Adding an SSL wildcard certificate to an Ubuntu server involves several steps. A wildcard certificate can secure subdomains of a domain with a single certificate. Here's a general outline of the process:
I'll be using an existing wildcard certificate.
sudo apt update && sudo apt upgrade -y