Hello everyone,with the spirit of great learning...
Webinar on " How to build Number Guessing Game in Android "+ Free Certificate
This webinar will be held at 5.30-6.30 PM (evening) on 13th March, 2021 (Saturday).
Link is given below...
https://www.learnvern.com/course/a-webinar-how-to-build-a-number-counting-app-in-android
Webinar on " How to build Number Guessing Game in Android "+ Free Certificate
This webinar will be held at 5.30-6.30 PM (evening) on 13th March, 2021 (Saturday).
Link is given below...
https://www.learnvern.com/course/a-webinar-how-to-build-a-number-counting-app-in-android
Learnvern
These 10 Command Prompt Tricks Will Blow Your Mind!
1. You can change color using the following command in cmd-
color <color-code>
2. The following command will give you a list of all the colors you can use in cmd-
help color
3.The following command will change the color of the terminal-
color 04
4.If you want to change the title in cmd, you can simply use the title command followed by the title. Following title command will change the cmd title to "Hacking in progress..."-
title Hacking in progress...
5. Do you know that you can watch star wars movies in the cmd? Well if you don't, you need to fire the following command and you should be welcomed with the star wars movie-
telnet towel.blinkenlights.nl
6.Hide a Folder
If you want to hide a folder named "bhavesh" in a directory, you can use the following command-
Attrib +h +s +r bhavesh
7.Once your folder is hidden, you can show it again by firing the following command:
Attrib -h -s -r bhavesh
8.Copy Output to Clipboard-
ipconfig | clip
9.You can use f7 key to see your command history in the prompt.
10.View all the installed programs on your PC
You can view all the installed programs on your pc by firing the following command:
wmic product get name
1. You can change color using the following command in cmd-
color <color-code>
2. The following command will give you a list of all the colors you can use in cmd-
help color
3.The following command will change the color of the terminal-
color 04
4.If you want to change the title in cmd, you can simply use the title command followed by the title. Following title command will change the cmd title to "Hacking in progress..."-
title Hacking in progress...
5. Do you know that you can watch star wars movies in the cmd? Well if you don't, you need to fire the following command and you should be welcomed with the star wars movie-
telnet towel.blinkenlights.nl
6.Hide a Folder
If you want to hide a folder named "bhavesh" in a directory, you can use the following command-
Attrib +h +s +r bhavesh
7.Once your folder is hidden, you can show it again by firing the following command:
Attrib -h -s -r bhavesh
8.Copy Output to Clipboard-
ipconfig | clip
9.You can use f7 key to see your command history in the prompt.
10.View all the installed programs on your PC
You can view all the installed programs on your pc by firing the following command:
wmic product get name
Hello all, people's with the spirit of great learning...
๐ Courses with Certificates of completion..
๐ Want to Learn Git, Java, javascript, HTML & css, SQL, jQuery, python and Ruby
๐ปWith the greatest platform Progate where you will get hands on practice with programming and
๐น Certificate of Completion
Link is below
https://progate.com/languages/git
๐ Courses with Certificates of completion..
๐ Want to Learn Git, Java, javascript, HTML & css, SQL, jQuery, python and Ruby
๐ปWith the greatest platform Progate where you will get hands on practice with programming and
๐น Certificate of Completion
Link is below
https://progate.com/languages/git
Hello all with the spirit of great learning...
๐ Udemy primium Database and wordpress courses free for one day with Certificate
1. MySQL Database Development Mastery (with certificate) - https://www.udemy.com/course/mysql-database-development-mastery/
Coupon code - MYSQL_MARCH_FREE_2
2. Complete Wordpress Website Developer Course( with certificate) - https://www.udemy.com/course/the-complete-wordpress-developer-course-w/
Coupon code -4F67AEE70323E9BC5B43
๐ Udemy primium Database and wordpress courses free for one day with Certificate
1. MySQL Database Development Mastery (with certificate) - https://www.udemy.com/course/mysql-database-development-mastery/
Coupon code - MYSQL_MARCH_FREE_2
2. Complete Wordpress Website Developer Course( with certificate) - https://www.udemy.com/course/the-complete-wordpress-developer-course-w/
Coupon code -4F67AEE70323E9BC5B43
Hello people's with the spirit of great learning...
๐ Want to Learn Android app Development, then here are the 4 projects you can do to Increase your skills in App Development...
1. A photo Manager-
https://github.com/Anuj-Kumar-Sharma/Manage_iT
2. Music App(shuffler)-
https://github.com/Anuj-Kumar-Sharma/Shuffler
3. Video processing(Exoplayer2)-
https://github.com/Anuj-Kumar-Sharma/ExoPlayer2
4. Social Media App( Firebook) using Firebase -
https://github.com/Anuj-Kumar-Sharma/Firebook
๐ Want to Learn Android app Development, then here are the 4 projects you can do to Increase your skills in App Development...
1. A photo Manager-
https://github.com/Anuj-Kumar-Sharma/Manage_iT
2. Music App(shuffler)-
https://github.com/Anuj-Kumar-Sharma/Shuffler
3. Video processing(Exoplayer2)-
https://github.com/Anuj-Kumar-Sharma/ExoPlayer2
4. Social Media App( Firebook) using Firebase -
https://github.com/Anuj-Kumar-Sharma/Firebook
Hello all with the spirit of great learning...
๐ Google officially brought his own Professional Associate Android Developer Certification course of 6 months...
Here you will get
๐น100persent remote, self paced online learning
๐ป10 hrs of study per week over five to six months
๐น82 persent of certification graduates report a Good career impact,like finding a new job
๐Link - https://grow.google/androiddev/#?modal_active=none
๐ปNote- 1. Language used is in Kotlin
2. Learning course is free but the certification exam cost $149 USD for one attempt
๐ Google officially brought his own Professional Associate Android Developer Certification course of 6 months...
Here you will get
๐น100persent remote, self paced online learning
๐ป10 hrs of study per week over five to six months
๐น82 persent of certification graduates report a Good career impact,like finding a new job
๐Link - https://grow.google/androiddev/#?modal_active=none
๐ปNote- 1. Language used is in Kotlin
2. Learning course is free but the certification exam cost $149 USD for one attempt
DO YOU KNOW...
๐ 4 ways to Print Hello World in Java without using semi colon (;)
๐น if (System.out.println("Hello World") == null) {
}
๐ป if (System.out.append("Hello World") == null) {
}
๐น if (System.out.append("Hello World").equals(null)) {
}
๐ปfor(int i=0; i<1; System.out.println("Hello World")) {
i++;
}
๐ 4 ways to Print Hello World in Java without using semi colon (;)
๐น if (System.out.println("Hello World") == null) {
}
๐ป if (System.out.append("Hello World") == null) {
}
๐น if (System.out.append("Hello World").equals(null)) {
}
๐ปfor(int i=0; i<1; System.out.println("Hello World")) {
i++;
}