Magento 2 uses table sales_sequence_meta and sales_sequence_profile for defining the entity prefix for stores. If 2 and 3 are the store_id of two store views of the same website, the table data may look like this mysql> SELECT * FROM sales_sequence_meta WHERE entity_type='order' AND store_id IN (2, 3); +---------+-------------+----------+-------------------+ | […]
Daily Archives: October 27, 2025
I am using Windows 11 with Debian on WSL. When I am in a Windows terminal session, I often do wsl vi (filename) to quickly edit a file. This opens vim.tiny (as I don’t have full vim installed and don’t want to spend 50 MB on an editor) in “vi […]
My ThinkPad has been heating up pretty badly lately, so I decided it was about time to repaste the CPU and GPU. Everything went as expected, except for one fan where I seem to have ripped off the latching mechanism. As you can see, the 6-pin connector from the fan […]
I’m trying to get port forwarding to work (for SSH) between a host and a guest using passt via the userspace connection. But the host’s ssh client can’t connect to the guest’s ssh server. The guest OS is Windows 11 running as a virtual machine using QEMU-Virtual Machine Manager. The […]
How how can I use Disk Cleanup on my Windows 10? I have some problems with memory om my computer and so I want to check all my files and find out what is taking up so much space in my computer’s memory. Can Disk Cleanup help with that? If […]
With the following macro I can add a Date Field with a date on a workday in the future (how far into the future is realised via a input box): Dim InputDays As Single: InputDays = InputBox("Due in x Days", "Due Date", 14) Dim DateDif As Integer: DateDif = Fix(InputDays) […]