I am using Fairmail on my mobile. There is an option there to send a hard bounce for a received email. I am tempted to use this for spam emails. From Mailchimp as I can’t seem to find a better authority on it. Hard bounces A hard bounce indicates a […]
Yearly Archives: 2022
I have a Devuan Chimaera laptop (GNU/Linux, based off Debian) that has ethernet and wifi connectivity. When I connect to the wifi and take out the ethernet cable, I expect packets to no longer be routed out the ethernet port, and to go via wifi (which works fine when used […]
I was trying to install current drivers for my NVIDIA so software can use the power of GPU. sudo apt install nvidia-driver nvidia-cuda-toolkit I’ve ended up with 520.* drivers and CUDA 11.8 so I was happy as I couldn’t finish the installation for them yesterday (can install only 470.* and […]
I’d like to be able to use a character to stand-in for typing a long URL in Slack. Instead of https://www.thisiswaytoolongtotypeeachtime.com/ID/123456 I’d like to be able to do ^123456 or an equivalent with a constant prefix and have Slack know to convert my input to the full URL. My root […]
Learn about what’s required to ensure a file uploading solution is fast, reliable and secure, and third-party apps that can help. Continue reading File Uploading Necessities: Speed, Reliability, and Security on SitePoint.
First product list A1, A2,A3 Product Family A Second product list B1,B2,B3 Product Family B It shows on PLP such as in this way; Family A Title Family A description A1 A2 A3 Family B Title Family B description B1 B2 B3 How can I change the order of Families? […]
I have tried the following: Observer ... $transport = $observer->getTransport(); $transport->setTemplateVars([ 'products' => [ ['name' => 'Product1'], ['name' => 'Product2'] ] ]); ... order_new_guest.html {{block class='Magento\Framework\View\Element\Template' area='frontend' template='Vendor_Module::email/template.phtml' products=$products}} email/template.phtml <p>HELLO!</p> <?php //print_r(count($this->getProducts())); ?> <?php foreach ($this->getProducts() as $_item): ?> <p><?php echo $_item['name'] ?></p> <?php endforeach; ?> The issue: In […]
I’m working on a Magento Cloud project after a other developers left it and I’m having a hard time figuring out the development cycle. I can change files on a branch and commit the changes, causing a build/deploy on the cloud environment, but every branch is on production mode with […]
I am using this mixin for the custom validation rules in the below template for the first and last name Template: /vendor/magento/module-customer/view/frontend/templates/widget/name.phtml require js : var config = { config: { mixins: { 'mage/validation': { 'Magento_Customer/js/name-validation': true } } } } Js file : require( [ ‘Magento_Ui/js/lib/validation/validator’, ‘jquery’, ‘mage/translate’ ], […]