Skip to main content
103
results
Andrew Fletcher
You can move a file from one directory to another in Python using the shutil module.  The shutil module provides functions to perform various file operations, including moving files.  How you can move a file from one directory to another: import shutil # Source file path (the file you want to move) source_file = "/path/to/source_directory/file.txt" # Destination directory (the directory where you want to move the file) destination_directory = "/path/to/destination_directory/" # Combine...
Andrew Fletcher
To set an environment variable on Ubuntu, can be achieved via a few options....
Andrew Fletcher
Whilst installing Python 3.11.6 and running the command 'sudo make altinstall',...
Andrew Fletcher
Visual Studio Code (VS Code) allows you to manage extensions using the VS Code...
Andrew Fletcher
A summary of Node package commands Short cut commands npm install...
Andrew Fletcher
Logging into the server, and there are packages to be updated.  You know the standard Ubuntu / Linux response 5 updates can be applied immediately. To see these additional updates run: apt list --upgradable 3 additional security updates can be applied with ESM Apps. Learn more about enabling ESM Apps service at https://ubuntu.com/esmFollowed by the action sudo apt update && sudo apt upgrade -y Response Reading package lists... Done E: Could not get lock...
Andrew Fletcher
git clone git@bitbucket.org:{username}/{repo}.git And I was unceremoniously...
Andrew Fletcher
Something I haven't had to do in a while is to change the name of a Git branch...
Andrew Fletcher
Post a NetSkope update, composer would fail when running any command that...
Andrew Fletcher
I need to generate a patch and then apply automatically to my Drupal...
Andrew Fletcher
In the terminal type, the following command: sudo apt updateAfter typing the above command, enter your password. Off the bat, this command doesn’t update your system. Instead, it updates your Ubuntu repositories.  So your system checks against the repositories. It checks if there are newer versions available of the program installed. It won’t update your existing packages right away; instead, it will update the information about the existing packages and their versions available. This is...
Andrew Fletcher
Attempting to run a composer update command, you know the one used...
Andrew Fletcher
Post creating a new branch in the repo, next step was to run the checkout...
Andrew Fletcher
Working in an AWS ec2 environment, my goal is to access the server via...
Andrew Fletcher
How to set the Private file path in Drupal using the following steps: Create a...