New Features in Magento 2.3
-
admin
-
November 29, 2018
-
Magento 2
-
0 Comments
1. Progressive Web Apps 2. Page Builder 3. GraphQL 4. Declarative Database Schema 5. Google ReCAPTCHA 6. Multi-Source Inventory 7. Asynchronous API 8. Import/Export Improvements 9. Two Factor Authentication
Continue Reading
How many design patterns in Magento 2?
-
admin
-
November 28, 2018
-
Magento 2
-
0 Comments
Magento has a total of 12 design patterns. These patterns are given below: Factory Pattern Singleton Pattern Model View Controller Pattern Front Controller Pattern Registry Pattern Prototype Pattern Iterator Pattern Object Pool Pattern Service Locator Pattern Lazy Loading Pattern Observer Pattern Module Pattern
Continue Reading
how to open Jupyter notebook in chrome on windows
-
admin
-
November 11, 2018
-
Python
-
0 Comments
Just make chrome as a default browser and launch the jupyter . It will work
Continue Reading
Expectation find out with pyhton
-
admin
-
November 6, 2018
-
Python
-
0 Comments
The expected value of a random variable X is given by: E ( X ) =∑xi pi E(X) = 1( 1/6 ) + 2( 1/6 ) + 3( 1/6 ) + 4( 1/6 ) + 5( 1/6 ) + 6( 1/6 ) = 3.5 In python >>> import numpy as np integer = 1, 2, 3, 4, 5, 6 integer_array …
Continue Reading
anaconda mysqldb install
-
admin
-
October 22, 2018
-
Python
-
0 Comments
Just run following command conda install -c anaconda mysql-python
Continue Reading
How do I create a superuser account in Django
-
admin
-
October 22, 2018
-
Python
-
0 Comments
Just run following command $ python manage.py migrate $ python manage.py createsuperuser
Continue Reading
django install with anaconda
-
admin
-
October 22, 2018
-
Python
-
0 Comments
Just open anaconda cmd & run following command conda install -c anaconda django
Continue Reading
Remove Advanced Search Link from header in Magento 2
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
Path – Vendor_Name/Custom_Theme_Name/Magento_Theme/layout/default.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../vendor/magento/framework/Module/etc/module.xsd”> <referenceBlock name=”advanced-search-link” remove=”true”/> </page>
Continue Reading
How to Edit/Change/remove Magento 2 Privacy Policy Page
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
Path – Vendor_Name/Custom_Theme_Name/Magento_Theme/layout/default.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../vendor/magento/framework/Module/etc/module.xsd”> <referenceBlock name=”footer_links” remove=”true”/> </page>
Continue Reading
Remove “help us keep magento healthy report all bugs” from footer in Magento 2
-
admin
-
August 12, 2018
-
Magento 2
-
0 Comments
just create the following folder & file app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml add following code in default.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”../../../../../vendor/magento/framework/Module/etc/module.xsd”> <referenceBlock name=”report.bugs” remove=”true” /> </page>
Continue Reading