I turned on Cortana once. Pass, will not do that again.
What I find funny, I was the same post on Facebook weeks ago, but Linux kernel, not M$ source was leaked. It was in the computer meme group. No kidding. Maybe someone modified it, not knowing Linux is open source? AND, I think we are safe on AnandGupta, he looks too old in profile. But, that could be faked too!
I think if I took any code, it would not be Bing and Cortana too, LOL.
If TTS.SetLanguage("en-US") Then
If lblText.Text.ToLowerCase.Contains("how are you") Then
strText = "I am fine. Thank you!"
Else If lblText.Text.StartsWith("Say ") Then
strText = lblText.Text.Replace("Say ", "")
Else
strText = "Sorry, I don't understand what you're saying!"
End If
lblText.TextColor = Colors.RGB(30, 144, 255)
lblText.Text = strText
TTS.Speak(strText, False)
Else
Log("TTS.SetLanguage failed")
lblText.TextColor = Colors.Red
lblText.Text = "Text To Speech not available."
End If