Menu

Top 10 Languages of the World | Most spoken languages in World | CIA 2022

Here is the list of world top 10 languages according to CIA report 2022.

  1. English - 18.8%
  2. Mandarin Chinese - 13.8%
  3. Hindi - 7.5%
  4. Spanish - 6.9%
  5. French - 3.4%
  6. Arabic - 3.4%
  7. Bengali - 3.4%
  8. Russian - 3.2%
  9. Portuguese - 3.2%
  10. Urdu - 2.9%


https://www.cia.gov/the-world-factbook/countries/world/#people-and-society

Everything you want to know about your computer system

A small command could help you to get the all hardware and operating system information of your computer system. Below is the command and run that on "command promote" (cmd) or "PowerShell".

systeminfo

 

Systeminfo command will show you below information that help you to understand your computer and verify the things that you might looking for.

Host Name:
OS Name:
OS Version:
OS Manufacturer:
OS Configuration:
OS Build Type:
Registered Owner:
Registered Organization:
Product ID:
Original Install Date:
System Boot Time:
System Manufacturer:
System Model:
System Type:
Processor(s):
BIOS Version:
Windows Directory:
System Directory:
Boot Device:
System Locale:
Input Locale:
Time Zone:
Total Physical Memory:
Available Physical Memory:
Virtual Memory: Max Size:
Virtual Memory: Available:
Virtual Memory: In Use:
Page File Location(s):
Domain:
Logon Server:
Hotfix(s):
Network Card(s):
Hyper-V Requirements:

Name of White Flowers

Flowers are the beautiful that gives relax moment when we see and smell. There are bountiful white flowers present around us. Few of them are following;

  1. White Rose
  2. Lily
  3. White Tulip
  4. Anemone
  5. Carnation

Could not resolve dependencies for project com.adobe in maven central repo.

Could not resolve dependencies for project com.adobe.learning:aem-learning-core:jar:1.0.1: Could not find artifact org.apache.commons:commons-imaging:jar:1.0-R1534292 in central (https://repo.maven.apache.org/maven2)

If you ever come with this error that means the maven central doesn't have the artifact, and we have to use the adobe profile to successfully build the code.

add parameter "-Padobe-public" with your maven build command.

e.g. mvn clean install -Padobe-public 

How to declare two classes for element with SCSS?

Below is an example of SCSS code using that we are generating two classes that are being use for the same html element.

SCSS code

.image-text {
@media(max-width:600px){
        &--celebrate-page .image-text {
            &__htext.image-text__htext {
                
                &--v {
                    &-center {
                        margin-top: -20%;
                    }
                }
            }
        }
    }
}


Result in CSS

@media (max-width: 600px) {
	 .image-text--celebrate-page .image-text__htext.image-text__htext--v-center {
		 margin-top: -20%;
	}
}