Thursday, 21 February 2019
Modern web applications are full of rich features. What about stream voice recognition? Not there is no “HTMLvnext” feature for voice recognition, but there are different services like AWS Transcribe, IBM Watson, and Google Speech to text. All services seem to be very good, they at least can handle my English with East-Ukrainian accent very well. But one thing makes IBM Watson special, it supports WebSockets, so you can stream directly from the browser without sending a stream to your server. This may give a lot of benefits from security to hosting costs. You still need a server to perform authentication. But that is only one small call at the very begging, after that, you can send a stream of audio from your browser to IBM Watson and get a stream of text messages back. The latency is a or...
Thursday, 23 February 2017
It’s not news anymore that JavaScript is the most cross-platform and cross-tier technology today. Let’s take a look at it. JavaScript can be efficiently used on the server part of Web-server and can a...
Friday, 19 June 2015
In one of my previous posts, (WPF vs. GDI+) I wrote about the performance of WPF and how to solve this problem. After some experiments in Kvinivel we’ve found more improvements to the solution in the ...
Monday, 15 February 2016
Microsoft declares that a new version of .Net and a new alternative dev tool Visual Studio Code will be available for multiple platforms, including Linux. In this post, I will try to describe my Code ...