Skip to main content

Featured

The STEM Revolution: From Classrooms to Code Camps

  In Nepal, the "STEM Revolution" represents a significant departure from memorization and a move toward experiential, hands-on science, technology, engineering, and math education. This approach recognizes that although traditional classrooms are fundamental, they frequently fail to provide students with the critical thinking and problem-solving abilities that the modern world requires.  It is motivated by a shared understanding that in order for Nepal's youth to prosper in the digital era, they must not only comprehend ideas but also learn how to use them creatively to address pressing issues. Making education relevant and enabling students to be creators of technology rather than merely consumers are the goals of this revolution. Dynamic, unofficial learning settings like maker spaces, robotics clubs, and programming camps are at the core of this movement. These programs, which are frequently run by neighborhood tech companies and non-profits, act as dynamic centers...

Changing text into voice using Javascript just in browser's console

 This blog is about how you can change the text into voice. First of just open the chrome

do ctrl+shift+i

Or you can just right click in any where inside the browser and  click on inspect then

one box will appear when in top 'console' is also one of the option click there.

From here the main thing starts

write this code

first -- > wordToSpeak = new SpeechSynthesisUtterance;

Second --> wordToSpeak.text = "Hello world";

You can know more voices by typing 'speechSynthesis.getVoices()' in console

Third --> wordToSpeak.lang = speechSynthesis.getVoices()[2]

Fourth --> speechSynthesis.speak(wordToSpeak)

Comments

Popular Posts