Skip to main content
491
results
Andrew Fletcher
Addressing inconsistencies in function returns within development teams In our recent team meetings, a recurring theme has been the inconsistency in how data is returned from functions among our developers. Some prefer direct returns, while others opt for assigning results to variables first. Not only does this inconsistency present challenges across the team, but it also complicates the code review and maintenance process, particularly when the same developer uses different styles...
Andrew Fletcher
Setting up CKAN in a Docker environment can sometimes require some additional...
Andrew Fletcher
In this article, we will walk through a series of common Linux commands used for...
Andrew Fletcher
When working with code in Visual Studio Code, you may need to search for...
Andrew Fletcher
Installing software on a Windows machine can sometimes require elevated...
Andrew Fletcher
Versioning is an important aspect of any mobile app development process. In Android, this is handled through versionCode and versionName, which allow you to define the current state of your app for users and the Play Store. But where exactly should these be managed, and how can you ensure they propagate correctly across your project? This article covers the essentials of managing app versioning in Android Studio, using the build.gradle file.   Where is the versionCode and versionName...
Andrew Fletcher
Working on a project where the JSON dataset contains over 460,000 named records,...
Andrew Fletcher
If you're working with a large codebase in Visual Studio Code (VS Code) and need...
Andrew Fletcher
In today's security-conscious world, enforcing HTTPS on your web applications is...
Andrew Fletcher
Working with Docker can be a rewarding but occasionally frustrating experience,...
Andrew Fletcher
Introduction For a while now, one persistent issue has been bugging me: a warning on Drupal's 'status report' page that reads: GD library library bundled (2.1.0 compatible) Supported image file formats: GIF, PNG. Unsupported image file formats: JPEG, WEBP.Check the PHP GD installation documentation if you want to add support. It was time to dig into the problem and resolve this warning once and for all. When running Drupal in a Docker environment, you might encounter issues with image...
Andrew Fletcher
When working on Drupal projects, especially in a collaborative environment, it’s...
Andrew Fletcher
If you're working with Drupal on an Ubuntu 24.04 server, it's common to use the...
Andrew Fletcher
Maintaining a Drupal site is usually smooth sailing once the environment is...
Andrew Fletcher
If you’ve ever encountered strange errors while running a bash script, you’re...