Windows Sandbox won’t start. When I launch it I get this: I have a suspicion it may be because I have uninstalled Microsoft Edge. (Please note that this was a legitimate uninstallation, the functionality is offered to all EU residents and does not involve third-party tools or any “hacking”.) The […]
Monthly Archives: March 2025
After a recent Google Chrome update (not sure which version exactly), I noticed that in DevTools, on the “Network” tab, the "Copy" -> "Copy as cURL" function no longer includes cookies in the copied command. Previously, the generated command contained the -H 'Cookie: ...' header, but now it is missing. […]
I am running Arch Linux (ARM) and have a Box.com account in which I have a file shared publicly. Let’s say it has a file ID of 12345 and the shared link is https://app.box.com/s/abcde for simplicity. I can open a browser and visit the shared link (without any authentication) and […]
i’m trying to receive csp reports for my magento2 (open-source) website using their official guide: https://developer.adobe.com/commerce/php/development/security/content-security-policies/ and using an endpoint generated from report-uri.com this is config.xml: <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd"> <default> <csp> <mode> <storefront> <report_only>1</report_only> <report_uri>https://*mysubdomain*.report-uri.com/r/d/csp/reportOnly</report_uri> </storefront> <admin> <report_uri>https://*mysubdomain*.report-uri.com/r/d/csp/reportOnly</report_uri> <report_only>1</report_only> </admin> </mode> </csp> </default> </config> and then i created […]
I am using Magento 2.4.7-p3 Product review form not opening when passing #review in URL. issue on the product detail page. exa. https://m2-demo.com/fusion-backpack.html#reviews If anyone has an idea please let me know. Thanks.
I’m trying to enable asynchronous orders in Magento 2.4.7 Community Edition using the command mentioned in the documentation: bin/magento setup:config:set --checkout-async 1 However, I get the following error: The "--checkout-async" option does not exist. I have checked the list of enabled modules using: bin/magento module:status | grep -i async And […]
I installed the latest version of Kali Linux for VirtualBox some days ago. It worked fine until now: I’m used to Windows, so when I wanted to open a terminal in Windows I’d just type “cmd” in the search bar and press enter. I got confused and did this in […]
Is it possible to place code blocks such as: if (x == 2) { Debug.WriteLine("x equals 2"); } In Microsoft OneNote? I haven’t discovered a way yet and don’t know why this wouldn’t exist if it doesn’t.
I’ve been trying to figure out how to “catch” the filename of a downloaded file via wget or curl commands in a shell script. What I’d like (and what seems impossible) is something like this: newfilename=$(wget --content-disposition --trust-server-names --timestamping "${myurl}") xattr -w user.download.url "${myurl}" "${newfilename}" or with curl: newfilename=$(curl --continue-at […]