I have a Linux machine, with one interface on network A, and one interface on network B. On network A, another machine is a source for multicast traffic, let’s say 239.255.0.1. I want the multicast traffic to be forwarded to network B. My first idea would be to start a […]
Monthly Archives: February 2025
I’ve written a little tool to grep inside the adddress space of a proces with a start and end delimiter in ECMAScript regex syntax. I’m parsing /proc/pid/maps twice to determine the largest mapping first. So if I’ve opened this mapping description first and rewind it with a seek( 0 ) […]
I have a number of development websites running on IIS on my local windows 11 machine. I bind the hostname of the website (myTestSite) to port 80/443 and add an entry to my windows hosts file so I can use something like: http://myTestSite to access the IIS site in my […]
Configuring payment restrictions in Magento 2 is not just a technical configuration but a smart decision to enhance your store performance. Continue reading on Medium »
With this test code <?= /* noEscape */ $secureRenderer->renderTag('script', ['id' => 'testjs'], 'var thisisatest=0;', false ); ?> I’d expect Magento to output a script tag similar to <script id="textjs" nonce="random-nonce-characters">var thisisatest=0;</script> But it’s not, instead outputting <script id="testjs">var thisisatest=0;</script> I’m aware that Dev tools tend to hide the nonce but […]
i am new with magento I want to modify Magento’s registration flow Users fill in basic information such as email, password, … When you click submit, an email will be sent with a verification code for the registered email. The user will enter the verification code in the email and […]
How can I configure or code in Magento 2 to display requisition items separately in the requisition list, even if the products have the same SKU? Specifically, if a user adds the same product to their requisition list multiple times, I want each instance of the product to appear as […]