Monthly Archives: January 2026

Delete all the data in all the PostgreSQL database tables

This blog article shows you one of the possible ways to delete all the data in all the tables in PostgreSQL.  The script is as follows. DO $$ DECLARE     r RECORD; BEGIN     FOR r IN         SELECT tablename … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | Leave a comment

AI Use Cases for Business Leaders: Realise Value with AI

With the rapid rise of Al innovation, organisations of all types and sizes are using Al to empower their workforce, engage customers, optimise processes and drive innovation. Read the eBook to explore top scenarios where Al is helping businesses realise increasing value: This … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO | Leave a comment

WSL (701 – Relay) ERROR: UtilTranslatePathList:2878: Failed to translate E:\AOMEI\AOMEI Backupper\7.4.1

This blog article shows you how to resolve the error “WSL (701 – Relay) ERROR: UtilTranslatePathList:2878: Failed to translate E:\AOMEI\AOMEI Backupper\7.4.1” when you start WSL. I am not sure when was this AOMEI been installed. To remove it use PowerShell … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | 1 Comment

How to run Python torch in Windows for AMD Radeon

This blog article shows some possible ways to use AMD Radeon. PyTorch does not seem to like Windows Operating System very much, as you can see what GitHub Copilot was replying. Following you can see I have set up a … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | 1 Comment

Top 10 Excel VBA Patterns Explained

1) Boilerplate: Speed & Safe Cleanup What it does: Temporarily turns off slow UI features (screen updates, auto calculation, event firing) to speed up your macro, then restores them even if an error happens. Why it’s useful: Big performance gains … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, Microsoft Office, Office 365, programming | Tagged , , , , , | Leave a comment

A leader’s guide to building a resilient, AI-first organisation

Organisations leading with AI are transforming how they operate – empowering employees, automating processes and fuelling innovation. In the Becoming an AI-First Frontier Firm guide, you’ll discover a clear framework to help your organisation move from experimentation to execution. Read the guide … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, data science | Tagged | Leave a comment

The Strategy Pattern in Python

Explaining Bubble Sort, Quick Sort, and Merge Sort with the Strategy design pattern, complete with code, trade-offs, and a runnable demo. ─────────────────────────────────────────────────────────── TL;DR – What: Strategy pattern decouples what you do (sorting) from how you do it (bubble/quick/merge). – Why: … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, programming | Tagged , , , , , | Leave a comment

Google Antigravity Getting Started

This blog article shows you how to get started with Google Antigravity, for Linux. Firstly in the command prompt type sudo apt install antigravity.   Start Antigravity. Click Next. Select Start fresh and click Next. Select the theme and click … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, programming | Tagged | Leave a comment

Inserting Nodes After a Given Value in a Singly Linked List C++

If you’re working with singly linked lists, the ability to insert a new node after a node containing a specific value is both common and crucial. In this post, we’ll dive deep into the bool insertAfter(int afterValue, int newValue) method—its … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged , , , , | Leave a comment

Building a Clean, Testable Python Calculator

Introduction When you’re teaching (or refreshing) foundational Python, few examples are more approachable than a calculator. But beyond simple arithmetic, a great learning artifact demonstrates clean design, defensive programming, and unit testing. In this post, we’ll explore a minimal yet … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged , , , , , , | 1 Comment