I have text like this: UgxJam3R6oHGHJMrbHx4AaABAg,,hqJGuSXaWcY,UCkhUJbKZIZsARJx7UsX7nw,NAME,https://URLYOUDONTNEEDTOSEE,2023-03-03T22:45:53,Sometextineed,1,false,0, and I want to use sed or something to remove and make it like this: https:/blablabl.com/UCkhUJbKZIZsARJx7UsX7nw,NAME,2023-03-03T22:46:53,Sometextineed *,,*, replaced with url I’m new to using Linux in general but I don’t get how sed works. I tried stuff. Pls give me solution that I can […]
Yearly Archives: 2023
I know PDFs have various “boxes” defined for their pages: Media box, bleed box, art box etc.. But – typical PDF viewers in Linux don’t seem to show these boxes, nor list their dimensions and positions in any “page properties” or “file properties” dialogs. Suppose I have a one-page PDF. […]
I have configured and compiled the Linux kernel using buildroot. I want to have access to spi buses on this board in user mode. Here are the steps I’ve take to compile the kernel. 1- clone the buildroot repo : version 2023.02-rc1 $ git clone https://github.com/buildroot/buildroot.git && cd buildroot 2- […]
I have a magento multi site. We disable the default site and move the site and domain to another installation. Now the problem is that i cannot access admin from a sub site. What can be possible done in order to access the admin from a subsite?
The default livereload host is 127.0.0.1, but I have the access problems to access the this host directly in WSL2. Need to change it to http://localhost:35729/livereload.js Found the solution to change it via appetcenv.php – to add system' => [ 'default' => [ 'design' => [ 'footer' => [ 'absolute_footer' […]
I am trying to push code from my local to staging and getting the below error. Shouldn’t on deploy magento update the composer.lock file based on what’s in my json composer file? I am not getting how to add magento/inventory-composer-metapackage to the lock file. Warning: The lock file is not […]
I would like to show a product with its details in my module view page. There is summery of my code, it maybe boring but I have exhibit my issue clearly. 1)File name, path and code: MyVendor/MyModule/Api/Data/ViewInterface.php namespace MyVendorMyModuleApiData; interface ViewInterface { const VALUE = 'value '; /** * Get […]
I have created custom layout as below created 3-columns-double-footer.xml file inside Magento_Theme/page_layout folder <?xml version="1.0"?> <layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_layout.xsd"> <update handle="3columns"/> <referenceContainer name="page.wrapper"> <container name="footer-bottom" as="footer-bottom" after="footer" label="Footer Bottom" htmlTag="footer" htmlClass="page-footer-bottom"> <container name="footer-bottom-content" as="footer-bottom-content" htmlTag="div" htmlClass="footer content" /> </container> </referenceContainer> </layout> and also created layouts.xml file inside Magento_Theme folder as below […]
My question is similar to this question posted previously. My data is organized in the following manner: Column A (Outcome) – contains user entered text describing an outcome. This can be of varying lengths. Example: On March 2, we found a green scarf with fringes. No one came forward to […]