Skip to main content
122
results
Andrew Fletcher
When troubleshooting network issues or configuring devices, knowing your IP address can be essential. Whether you're connected via Wi-Fi, Ethernet, or tethering through a mobile provider, macOS offers powerful built-in tools to quickly identify your IP address. Here's a practical guide tailored to Australian users with step-by-step instructions.   Finding your IP address on Wi-Fi If you're connected to the internet via Wi-Fi, you can retrieve your IP address with a simple command in...
Andrew Fletcher
DDEV has become a popular tool for local web development, offering a streamlined...
Andrew Fletcher
Transferring files between development and production environments is a critical...
Andrew Fletcher
When working with code in Visual Studio Code, you may need to search for...
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 to find specific occurrences of a term, but only when it's a standalone word possibly surrounded by spaces or parentheses, regular expressions (regex) are your best friend. This guide will walk you through the steps to efficiently search for these instances, I'll be searching for the term 'SBT' and ensuring you don't pick up unwanted matches like `'ADSBTCR'` or `'SBT123'`.   Why use regular expressions? Regular...
Andrew Fletcher
In today's security-conscious world, enforcing HTTPS on your web applications is...
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
If you’ve ever encountered strange errors while running a bash script, you’re...
Andrew Fletcher
If you've ever worked in a cross-platform development environment, you've likely encountered line ending issues. These can manifest as warnings in Git, such as: warning: in the working copy of 'file/path/filename', CRLF will be replaced by LF the next time Git touches itThese warnings arise from differences in line endings between Windows (CRLF) and Unix/Linux (LF) systems. This article will guide you through resolving these issues by configuring your repository to handle line endings...
Andrew Fletcher
Have you ever wanted to use Terminal with a more fluid style and increase your...
Andrew Fletcher
When it comes to text editing, Visual Studio Code (VS Code) is one of the most...
Andrew Fletcher
On a server directory with over 100,000 PDF files, I needed to verify the...
Andrew Fletcher
To review the content of files being generated in the /tmp directory on an...