General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Christian Baune
ThePrimeTime
comments
Comments by "Christian Baune" (@programaths) on "Complete Rewrite In Go!" video.
For reference: Domotic application: Python: 3 years of development by a team of 10, delivery not implementing 100% of the features, slow and crashing. Totally unusable. Go: Almost a week of development by a team of 1, system trialed in production (yep), 120% of the features, speedy, actually used.
6
@jamesnewman9547 And most people don't even know all the bells and whistles of PHP. A nice one is the automatic initialization of arrays. $a['b']['c']['d']='e'; That statement just works and creates three arrays. Throw an exception in most other languages. So, no need to check if there is an array; just use the append operator: $a['b']['c']['d'][]=1; $a['b']['c']['d'][]=2; The first line would create an array of array of array of the array with 1. The second line would append 2 to the most profound array. I would not use PHP anymore though 😂
2
@Bluesourboy Convenience? I am a Kotlin/java/Apex developer and sometimes I wish some features of PHP were available. And I listed the languages from the most convenient to the least. Apex is like going back to Java 1.4 ^^ (yeah, you've foreach, but they are buggy 😂)
1