I am building a Custom Order Number app using Adobe App Builder (I/O Events) connected to Adobe Commerce (Magento 2.4.8). The Goal: When a customer places an order, I want the App Builder serverless action to intercept the checkout, generate a custom increment_id (e.g. MC-101), and update the order so […]
Daily Archives: March 25, 2026
My corporate machine has my client certificate. For some websites I also have additional test accounts, so I don’t want to send the cert. But I can’t get Chrome to even ask for a certificate to send. Google search says to use Incognito window. While not the best option, but […]
I am trying to make a uBlock Origin filter that hides an element if it’s the last child element of a parent. For example, let’s say I have the following DOM. <ul class="ActionList"> <li class="ActionListItem" aria-label="Option 1"></li> <li class="ActionListDivider"></li> </ul> <ul class="ActionList"> <li class="ActionListItem" aria-label="Option 2"></li> <li class="ActionListDivider"></li> <li class="ActionListItem" […]
Somehow I’ve amassed a decent amount of different WindowsAppRuntime versions from the Windows Package Manager (Store) over time: > Get-AppxPackage -AllUsers | Where-Object {$_.PackageFullName -like "*Microsoft.WindowsAppRuntime*"} | Select-Object Version,Architecture,PackageFullName|Sort Version Version Architecture PackageFullName ------- ------------ --------------- 1005.616.1651.0 X86 Microsoft.WindowsAppRuntime.1.1_1005.616.1651.0_x86__8wekyb3d8bbwe 1005.616.1651.0 X64 Microsoft.WindowsAppRuntime.1.1_1005.616.1651.0_x64__8wekyb3d8bbwe 2000.802.31.0 X86 Microsoft.WindowsAppRuntime.1.2_2000.802.31.0_x86__8wekyb3d8bbwe 2000.802.31.0 X64 Microsoft.WindowsAppRuntime.1.2_2000.802.31.0_x64__8wekyb3d8bbwe 3000.934.1904.0 X64 […]
While browsing the EasyList adblock filter list, I saw a commit which edited several filters that use :has-text() to put #?# after the website domain instead of ##. instagram.com#?#div > article > div:has-text(Suggested post) The uBlock Origin documentation says that ## is always present in cosmetic filters, so what does […]