I went and bought a steam deck, and decided to get an SD card for it – a Hunyeiz thing from a Kodak shop. After a messy time accidentally formatting it poorly, hastily typing console commands given to me from Reddit in an attempt to format it manually, and repeatedly […]
Monthly Archives: November 2023
If someone connect an ethernet cable from one port of a router to another of its ports, will it cause a loop? Will internet become unusable? If yes, then why?
I have an N100 Intel Alder Lake processor, that can be configured to adhere to TDP of 6, 10 or 15 W. Intel calls this “TDP Up” and “TDP down” How do I do that? N100 at Intel Ark N100 at TechPowerUp
I need some help from the almighty community here. I have a sample set of data here. I am trying to sumif some data and then average it. the goal being to get a running average of my budget but only take into account months that have happened already. For […]
I’m creating a dashboard that will return data based on a user selection of two criteria, in this case the agencies that made a referral will be returned based on the quarter and program they referred into. The tricky thing is, I wish the user to be able to select […]
I’m working with a Magento 2.3 store and looking to customize the search result logic – fulltext search. Specifically, I want the search results to consider the “Position” attribute of products, which is set in Admin -> Catalog -> Categories -> Product in Categories. Currently, our store uses the default […]
On Magento 2.4.6: When our ERP executes an API request on the PUT method /all/V1/product/:sku with the following JSON content: { "product": { "custom_attributes": [ { "attribute_code": "delais", "value": "30" } ] } } Another attribute, warranty_type, also gets updated (its value becomes null) on this product, leading to the […]
module.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd"> <module name="Magetrend_Custom" schema_version="2.0.0" setup_version="2.0.0"> <sequence> <module name="Magetrend_Email"/> </sequence> </module> </config> registration.php <?php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, 'Magetrend_Custom', __DIR__ ); event file C:xampphtdocsmyshopappcodeMagetrendCustometc events.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="magetrend_email_collect_additional_vars"> <observer name="mtemail_custom_var" instance="MagetrendCustomObserverCustomVar"/> </event> </config> observer file C:xampphtdocsmyshopappcodeMagetrendCustomObserver CustomVar.php <?php namespace MagetrendCustomObserver; class CustomVar implements MagentoFrameworkEventObserverInterface […]
I have created the registration.php, theme.xml,composer.json in app/design/frontend/myvendorname/themename_theme/ and _extends.less in app/design/frontend/myvendorname/themename_theme/web/css/source. Ran the following commands rm -r /home/magento/pub/static/* /home/magento/var/view_preprocessed/* /home/magento/var/cache/* cp /root/.htaccess /home/magento/pub/static/ #re-copying htaccess above to static folder just in case it got lost magento cache:flush magento setup:static-content:deploy -f chown -R www-data:www-data /home/magento chmod -R 777 /home/magento So […]