Here is a link for the app.
DEMO
Speech Table v1.2
Category: blog
-
“Speech Table” – a speech-recognition powered CSV editor is available.
-
“EchoLang” is available on Google Play.
“EchoLang” -a language learning app is available on the following link.
-
“The Box on the Hill” is available on Google Play
The Box on the Hill – a message card app is available on the following link.
-
Spring is the best time to start learning new language.
Have you tried audible on Alexa? You don't have to use graphical user interface anymore to play back audio tracks. All you have to is just talking to Alexa. "Alexa play German short stories", "Play previous, next, stop etc.."It's quite easy and comfortable.
Ahoi aus Hamburg -
The world did not exist before I created it. The sun I drawed from the orient sea.
Here’s a today’s famous quote.
Die Welt, sie war nicht, eh ich sie schuf. Die Sonne führt ich aus dem Meer herauf
-
L’espoir au contraire de ce qu’on croit…
Here’s a today’s famous quote.
L'espoir au contraire de ce qu'on croit, équivaut à la résignation. Et vivre, c'est ne pas se résigner. -Camus (naration: clairekartoshka)
-
How to store array objects to mysql database in PHP?
How to store simple arrays or json objects in mysql in PHP? This is one of solutions. Use json_encode.
$a = ["a","b","c"];
$jsonstr = json_encode($a);
-
The wine brewed with terrible cider.
Here’s a today’s famous quote.
Wenn sich der Most auch ganz absurd gebärdet, Es gibt zuletzt doch noch e' Wein. -Goethe
Even if the cider is terrible , it'll be fine wine after all.
-
Some basic expressions in Octave
Here’s the list of expressions used in Octave.
Octave official page
1.Checking the size of a matrix
A = [2 2; 3 3; 4 4;];
size(A)⇒(3,2)size(A,1)⇒(3)
2.Generating a random matrix
A = randi([1 4],3,5)⇒3 4 4 4 3
4 1 2 2 2
4 4 2 1 33.Transpose Matrix
I = ones(1,5)⇒1 1 1 1 1
IcolV = I'⇒
1
1
1
1
1A * IcolV⇒
18
11
144.Powering and Multiplication at each element
M = [1 3; 2 2; 2 3;];
M.^2⇒1 9
4 4
4 9N = [1 3; 2 2; 2 3;];
M .* N⇒1 9
4 4
4 9
-
Deep Learning and Machine Learning. Are these one and the same?
Short answer. Deep Learning is subfield of Machine Learning. If you’re totally new to these fields, you like to learn ML first then DL next to understand how these work.