Android Quickstart - Firebase:
'via Blog this'
This Blog is first of all memos for me!! From time to time I get exposed to new and cool stuff for developers and architects ,most of the time its a solution for a problem or tips or tricks, so, I would like to track my memos and share it with you, it can save your time and nervous, I hope you will enjoy it - by Yaniv Tzanany.
Search This Blog
Tuesday, October 31, 2017
Sunday, October 29, 2017
Sunday, October 22, 2017
QnA Maker - the easy way to create a BOT
Build, train and publish a simple question and answer bot based on FAQ URLs, structured documents or editorial content in minutes.
QnA Maker:
great video tutorial
QnA Maker:
great video tutorial
Saturday, October 21, 2017
ngrok - secure tunnels to localhost
ngrok - secure introspectable tunnels to localhost:
to work with your local IIS EXPRESS under visual studio use this:
ngrok http -host-header="localhost:58821" 58821
where 58821 is your port number
more details - how to use ngrok with windows and visual studio to test webhooks
to work with your local IIS EXPRESS under visual studio use this:
ngrok http -host-header="localhost:58821" 58821
where 58821 is your port number
more details - how to use ngrok with windows and visual studio to test webhooks
Wednesday, October 18, 2017
Creating Bots Using Microsoft Bot Framework in C#
official bot framework site from MS - https://docs.microsoft.com/en-us/bot-framework/
Creating Bots Using Microsoft Bot Framework in C# - Microsoft Virtual Academy:
bot-framework-without-azure-possible
great starter video
https://www.youtube.com/playlist?list=PLgF-CyaX1p3FE55OTRNH-kOb16zqeBZCo
BOT samples
https://docs.microsoft.com/en-us/bot-framework/dotnet/bot-builder-dotnet-proactive-messages
BOT Proactive Message - samples
Creating Bots Using Microsoft Bot Framework in C# - Microsoft Virtual Academy:
bot-framework-without-azure-possible
great starter video
https://www.youtube.com/playlist?list=PLgF-CyaX1p3FE55OTRNH-kOb16zqeBZCo
BOT samples
https://docs.microsoft.com/en-us/bot-framework/dotnet/bot-builder-dotnet-proactive-messages
BOT Proactive Message - samples
Sunday, October 8, 2017
Android Speech Recognition - RecognitionListener
Android Speech Recognition Without Dialog In A Custom Activity - Truiton: "Speech Recognition"
a simple working sample could be found here
android-speech-recognizer-sample
good hint to make it like 'real time'
android-recognitionlistener-live-speech-to-text-preview
a simple working sample could be found here
android-speech-recognizer-sample
good hint to make it like 'real time'
android-recognitionlistener-live-speech-to-text-preview
Friday, October 6, 2017
Google Speech API
Great service from google to transcript sound into text.
an easy way to use curl command below.
open command shell (cmd on windows)
set your google API_KEY
set API_KEY=xxxxxxxxxxxx-xxxxxxxxxx
request.json file should contains such data
curl -s -X POST -H "Content-Type: application/json" --data-binary @request.json "https://speech.googleapis.com/v1/speech:recognize?key=%API_KEY%"
for long file (above 1 minute )use such command
curl -s -X POST -H "Content-Type: application/json" --data-binary @request.json "https://speech.googleapis.com/v1/speech:longrunningrecognize?key=%API_KEY%"
you will get response such as
{
"name": "9111777455024812345"
}
use the name value to get result of the long process
curl -s -X GET "https://speech.googleapis.com/v1/operations/9111777455024812345?key=%API_KEY%"
more info :
https://cloud.google.com/speech/docs/getting-started
https://codelabs.developers.google.com/codelabs/cloud-speech-intro/index.html#0
an easy way to use curl command below.
open command shell (cmd on windows)
set your google API_KEY
set API_KEY=xxxxxxxxxxxx-xxxxxxxxxx
request.json file should contains such data
{ "config": { "encoding":"FLAC", "sampleRateHertz": 16000, "languageCode": "en-US", "enableWordTimeOffsets": false }, "audio": { "uri":"gs://cloud-samples-tests/speech/brooklyn.flac" } }run the command to get response
curl -s -X POST -H "Content-Type: application/json" --data-binary @request.json "https://speech.googleapis.com/v1/speech:recognize?key=%API_KEY%"
for long file (above 1 minute )use such command
curl -s -X POST -H "Content-Type: application/json" --data-binary @request.json "https://speech.googleapis.com/v1/speech:longrunningrecognize?key=%API_KEY%"
you will get response such as
{
"name": "9111777455024812345"
}
use the name value to get result of the long process
curl -s -X GET "https://speech.googleapis.com/v1/operations/9111777455024812345?key=%API_KEY%"
more info :
https://cloud.google.com/speech/docs/getting-started
https://codelabs.developers.google.com/codelabs/cloud-speech-intro/index.html#0
Subscribe to:
Posts (Atom)