Here is another perspective of what could also be the reason other than, what you have believed till now. If a country has flags with a particular symbol or color, it means the engineers/people of that nation work with the respective data as listed below:- - Red Color in flag: This means the engineers of … Continue reading What is the significance of assigning flags to every nation ?
What is meant by earning a Salary of 6 LPA ?
This article has been written based on the experience that was gained by working globally across several companies from all sectors including Finance, eCommerce, Education, Healthcare What is Salary ? Salary or cash or currency can be thought of something which is equivalent to electric current in machines. For example, let's assume there is an electric … Continue reading What is meant by earning a Salary of 6 LPA ?
Can we ever land on the Moon or Mars ?
This is a very interesting topic. Because it depends on how we are defining the planet. If the Moon or Mars were the size of an asteroid let's say a spherical object with a diameter of about 1 km. Then, Yes. But if they were large enough to be orbiting in "a clearly distinguishable orbit" around the … Continue reading Can we ever land on the Moon or Mars ?
Why is Artificial Intelligence also called Machine Intelligence?
It will be very difficult to understand this article completely. But I am sure parts of this may make sense to you. Also please do not use this as an argument in your schools or college. That knowledge has its own place. To get in details of Artificial Intelligence or AI. We need to discuss … Continue reading Why is Artificial Intelligence also called Machine Intelligence?
Print to Play Sudoku online
Hi Friends, During my free time I thought of writing a sudoku program that would generate a new set of numbers on page refresh. Here is the link While doing this I got some new insights into programming, for example a basic question: - Why is Object Oriented Programming (OOP) needed ? If machines can … Continue reading Print to Play Sudoku online
Enhancements to the Recurring Order for Magento 2
Hello, We have released few enhancements to our Recurring orders module. It is essentially a subscription feature for the products so that they can ordered again and again. These are products that a customer subscribes to instead of getting as a one-time purchase. Recurring orders are automatically placed on a regular basis.For example- In such … Continue reading Enhancements to the Recurring Order for Magento 2
Blog Extension For Magento 2
Hello, We have released our next extension which allows magento to add a blogging feature. This extension is available on the Magento Marketplace and can be downloaded from here https://marketplace.magento.com/pravams-blog.html The important features of this extension are:- Frontend: All blogs can be see on the Magento frontend through a footer link. We can search the … Continue reading Blog Extension For Magento 2
MODULE TO CREATE A NEW PRODUCT TYPE IN MAGENTO
Firstly you need to follow the basic steps that are used for starting a module: Step1: Create a vendor folder inside app/code (app is the core folder of Magento) Folder:- app/code/Pravams (Vendor's name could be any) Step2: Create a module folder inside app/code/Pravams Folder:-app/code/Pravams/Booking Step3: Now inside Booking create a registration.php file. File:-app/code/Pravams/Booking/registration.php <?php \Magento\Framework\ComponentRegistrar::register( … Continue reading MODULE TO CREATE A NEW PRODUCT TYPE IN MAGENTO
Steps to Create Model, Resource Model, and Collection in Magento 2
Hello Everyone! Here in this blog we will learn how to create Model, Resource Model and Collection in Magento. Before moving towards Models firstly we have to create a table in database. For that we need to create db_schema.xml file inside etc folder. Step 1: Create a vendor folder inside app/code and inside Vendor's folder … Continue reading Steps to Create Model, Resource Model, and Collection in Magento 2
STEPS TO CREATE SIMPLE HELLOWORLD MODULE IN MAGENTO2
This Helloworld module will create a Controller that will open a page with content from a phtml file Step1: Create a vendor folder inside app/code (app is the core folder in magento) Folder :-app/code/Pravams (Vendor's name could be any) Step 2: Create a module folder inside app/code/Pravams Folder:- app/code/Pravams/Helloworld Step 3: Now inside Helloworld create … Continue reading STEPS TO CREATE SIMPLE HELLOWORLD MODULE IN MAGENTO2