Posts by Marco Aurélio • 426 points
5 posts
-
7
votes3
answers2360
viewsA: Voice recognition in php
The "state of the art" of voice recognition is very advanced, so implementing such a system from scratch would be a huge job, would require a lot of research and several people working for months or…
phpanswered Marco Aurélio 426 -
10
votes3
answers2369
viewsA: Definition of the day of the week in the Gregoriancalendar
The first day of the week, returned by function getFirstDayOfWeek() is defined by the settings of the locale current. For example, in Brazil the convention is that the first day of the week is…
-
1
votes4
answers2572
viewsA: Expandable menu CSS transitions
You are encountering this delay problem in animation because of property max-height. Note that in your Fiddle, if you replace the max-height for height the problem does not happen. (Although the…
-
7
votes1
answer253
viewsQ: Difference between Yield and Yield* operators in Ecmascript 6.0 "Harmony"?
I’m studying the use of generators in Ecmascript 6.0 "Harmony". I have already managed to understand its basic functioning, like the statement through the syntax function* () { ... } and value…
-
-1
votes2
answers1245
viewsA: Why is Addrange so much faster than Add?
I don’t have specific knowledge about the Entity Framework, but from what I can tell, the use of an operation AddRange, instead of multiple operations Add implies a much better performance due to…