
Kotlin Programming Fundamentals Tutorial - Full Course
video description
Date: 2022-03-14
Related videos
Comments and reviews: 10
Ibrahim
Here you have some constructive criticism for educating purposes:
The event driven part was really poorly -explained- (and many other parts as well), the way you jumping around is so confusing and not a good way of teaching, this whole video feels more like show off rather then educating... redo the video in the sence that you are teaching explaining the small stuff too, ask other some maybe family member that does not know how to code for video review and then you would se the holes you might have not notice to explain...
reply
Here you have some constructive criticism for educating purposes:
The event driven part was really poorly -explained- (and many other parts as well), the way you jumping around is so confusing and not a good way of teaching, this whole video feels more like show off rather then educating... redo the video in the sence that you are teaching explaining the small stuff too, ask other some maybe family member that does not know how to code for video review and then you would se the holes you might have not notice to explain...
reply
Zsombor
Hey everyone!
I am absolutely beginner and having some problem with runing my code in Android Studio.
It works in the online enviroment but I don't know how to run it on my PC.
I wrote it in a new Kotlin Script, when I run it the additional command bar pops up, I enter the command let's say -+- and then it shows an error mesage.
I would really appreciate some help.
Thanks in advance
reply
Hey everyone!
I am absolutely beginner and having some problem with runing my code in Android Studio.
It works in the online enviroment but I don't know how to run it on my PC.
I wrote it in a new Kotlin Script, when I run it the additional command bar pops up, I enter the command let's say -+- and then it shows an error mesage.
I would really appreciate some help.
Thanks in advance
reply
Sohail
Loved this tutorial :D
My takeaways:
/--
- Maintain the architecture of your application so that it will become open for extension and close for modification.
- Always separate your code logic from the UI part.
- Dependency injection is something that every developer should use in their application.
--/
Thanks
reply
Loved this tutorial :D
My takeaways:
/--
- Maintain the architecture of your application so that it will become open for extension and close for modification.
- Always separate your code logic from the UI part.
- Dependency injection is something that every developer should use in their application.
--/
Thanks
reply
olajide
Evening sensei.I am a newbie in the coding world and I absolutely love your teaching method..I have a challange ,the first code did not execute (intellij).. error index [0] is is out of bounds for length 0..
Please do you have any socialmedia handle...Twitter especially.
Thank you
reply
Evening sensei.I am a newbie in the coding world and I absolutely love your teaching method..I have a challange ,the first code did not execute (intellij).. error index [0] is is out of bounds for length 0..
Please do you have any socialmedia handle...Twitter especially.
Thank you
reply
Jonathan
really Ryan? no degrees? no certificates? you are the best teacher ive ever had ahhaa.. man..do you have any ... Kotlin course for more advance/complex projects? you rock with your work! you are super clear!!! and really professional! this course s been a blast!
reply
really Ryan? no degrees? no certificates? you are the best teacher ive ever had ahhaa.. man..do you have any ... Kotlin course for more advance/complex projects? you rock with your work! you are super clear!!! and really professional! this course s been a blast!
reply
Julien
37:43 How do you pass the / symbol when running
java -jar chap_six.jar /
?
I get an error
Same problem with - symbol
edit : Seems that you need to escape / with /
java -jar chap_six.jar //
>1.25
Still doesn't work with the -
reply
37:43 How do you pass the / symbol when running
java -jar chap_six.jar /
?
I get an error
Same problem with - symbol
edit : Seems that you need to escape / with /
java -jar chap_six.jar //
>1.25
Still doesn't work with the -
reply
Paulo
Congrats and many thanks for this awesome course!!!
I have started this course yesterday and I am using IntelliJ.
When I finished and wanted to test KotlinDemo.kt but could not -run- the code.
How can I add -run- so I can test the code?
reply
Congrats and many thanks for this awesome course!!!
I have started this course yesterday and I am using IntelliJ.
When I finished and wanted to test KotlinDemo.kt but could not -run- the code.
How can I add -run- so I can test the code?
reply
Text
At 37:03 I was like Bro? Your not serious right now... You had me fooled but 39:15 is so true, I programmed a small application to take in user input to an Array in both languages and wrote a lot less code in Kotlin
reply
At 37:03 I was like Bro? Your not serious right now... You had me fooled but 39:15 is so true, I programmed a small application to take in user input to an Array in both languages and wrote a lot less code in Kotlin
reply
B.
I write my first elvis operator
fun main() -
var a = 5
var b: Int = 10
val max = if(a>b) a else b
println(max)
val max2 = if (a > b ?: a) -println(max)- else -print(b)-
-
reply
I write my first elvis operator
fun main() -
var a = 5
var b: Int = 10
val max = if(a>b) a else b
println(max)
val max2 = if (a > b ?: a) -println(max)- else -print(b)-
-
reply
B.
I know it s possible to modifie object stored in val ! how about variable ?
May be i think for variable we have mutable variable and immutable variable for collection variable.
reply
I know it s possible to modifie object stored in val ! how about variable ?
May be i think for variable we have mutable variable and immutable variable for collection variable.
reply
Add a review, comment















