Kotlin for Java Programmers by Venkat Subramaniam

  Рет қаралды 56,337

Devoxx

Devoxx

Күн бұрын

Пікірлер: 50
@alex08585
@alex08585 3 жыл бұрын
Of all the experts talks on Kotlin where they confuse you instead of clarifying things, Venkat's explanation by far is the best, its so good i had to leave a comment
@chewie481
@chewie481 9 ай бұрын
Heh, the way you wrote this implies you think that this is still a talk where they confuse you instead of clarifying things and it's just the best of those.
@USONOFAV
@USONOFAV 4 жыл бұрын
It's like Java and Typescript have a baby together and named it Kotlin
@IvanRandomDude
@IvanRandomDude 2 жыл бұрын
Impossible,Kotlin is older than ts
@dmitriyobidin6049
@dmitriyobidin6049 6 ай бұрын
@@IvanRandomDude have you watched "Don't Be a Menace to South Central While Drinking Your Juice in the Hood"
@DevLanding
@DevLanding 7 жыл бұрын
Nice introduction to kotlin Venkat!
@hamzayoussef1129
@hamzayoussef1129 4 жыл бұрын
Not only an intro bruh ...
@marochow
@marochow 6 жыл бұрын
very happy hearing some clear english
@Tjuger
@Tjuger 5 жыл бұрын
Nice video, ty. I guess that would have worked: operate { it turns it.right it turns it.left }
@zjunothing4759
@zjunothing4759 7 жыл бұрын
Quite a clear lesson! Thanks Venkat
@slazter274
@slazter274 5 жыл бұрын
No need to get names by going through the indices anymore, if you want some sort of enumeration, You can simply loop through withIndex() like such: val names = arrayOf("Blake" ,"Jason", "Spike") for ((index, value) in names.withIndex()) println("$index $value") which vill give you the exakt same output, just a bit more readable.
@igorg.8624
@igorg.8624 6 жыл бұрын
I love the REPL via kotlinc. Never thought of using it before.
@arunm619
@arunm619 5 жыл бұрын
Thank you sir.
@bush8501
@bush8501 2 жыл бұрын
this dudes public speaking skills are on point
@alainkr
@alainkr 3 жыл бұрын
Love your work venkat
@mangeshpawar2255
@mangeshpawar2255 3 жыл бұрын
Absolutely awesome 👍
@ledwinson
@ledwinson 6 жыл бұрын
Thank you Venkat
@mytubekt
@mytubekt 4 жыл бұрын
wow, great talk!
@MrMikomi
@MrMikomi 3 жыл бұрын
I'm not far into the presentation but it looks like a lot of stuff here has since been added to Java.
@silver10188
@silver10188 6 жыл бұрын
"var is the keyword of shame" and because ... ??? no reason provided. It can be helpful in many cases when data changes, so why mention not looking to other developers in the eye and that condescending tone when you can't even explain why. This might be not related but I really don't like it when more experienced programmers look down at less experienced, like why? you were there one day, just say why a thing isn't good or keep your ego to yourself.
@MsJavaWolf
@MsJavaWolf 6 жыл бұрын
He seems to just be joking, don't take it personally. My guess would be that var is mutable state and therefore not good from a functional programming perspective. When you have mutable variables it can be harderto reason about and debug a program, because the variable might change at any place in the program. If you only have vals, you know they will never change. If you need to reassign a var, you could just as well create a new val instead. Now I don't think the pure functional style is always better, but that is absicaly ther easoning from that perspective.
@natepepin09
@natepepin09 5 жыл бұрын
That is just the programming community in general. They make snarky and passive agressive jokes. They are all kind of egotistical and self righteous. This was more light hearted joke, and it of course had that edge. To be clear, I don't think there is anything wrong with that as I'm part of that group. If he had time to explain why he would have, but he didn't. I can guarantee this because programmers love explaining anything and everything.
@slazter274
@slazter274 5 жыл бұрын
Anyone watching more of Venkats talk knows that hes a big proponent of immutability as we all should be, val is immutable, and var is mutable. Mutability is one of the biggest cause of bugs in code, therefore by overusing var your're more likley to induce bugs in code than if you we're to use val... Venkat is known to make jokes all the time, that what makes him such a captive talker. Don't take it to seriously, the point hes trying to make is that we should keep things as immutable as possible, and also hes known to joke about how he himself write bad code.. Don't get your panties in a twist lol.
@SafiullahZuri
@SafiullahZuri Жыл бұрын
wow!
@dnavas7719
@dnavas7719 5 жыл бұрын
The lazy syntax is so uggly. val temp by lazy { compute(4) } Why not make it like this: val temp = lazy compute(4)
@francoisloriot2674
@francoisloriot2674 2 жыл бұрын
your suggestion could not work, how would it know to delegate? "by" indicates delegation and "lazy" is a delegation function but you can delegate by something else like Observable or create your own. And the curly braces is to indicate the lambda expression to pass to the delegate.
@asingb
@asingb 6 жыл бұрын
Nicely explained.
@PetrSvobodnik
@PetrSvobodnik 6 жыл бұрын
Any idea what editor is he using?
@MadanNeelapu
@MadanNeelapu 6 жыл бұрын
TextMate
@PetrSvobodnik
@PetrSvobodnik 6 жыл бұрын
Thank you so much
@tanko.reactions176
@tanko.reactions176 10 ай бұрын
kotlin is the Way
@nodarek
@nodarek 7 жыл бұрын
Hi 5 Jerry :D
@mojajema6460
@mojajema6460 6 жыл бұрын
Pls can you give the documentation for operate { it turns "right" it turns "left" } last topic thanks
@natepepin09
@natepepin09 5 жыл бұрын
Probably a little late, but I'll see if I can't help. "operate" is calling the function operate. You could call it like within parenthesis operate ({ it turns "right"; it turns "left" }) but you don't need to because the compiler will put them in for you if you use a lambda as the last argument. It is just syntactic sugar. "it" refers to the robot being used in "operate" and you are essentially calling "robot.turn("left")". With the infix notation, it allows you to call it differently, as in "robot turn "left". The presenter got a little confused because it for some reason was giving him issues with using the property of left, so he instead just passed a string there. He could also have done it turns "I am making up this turn". For what he was trying to demonstrate, he should have been able to access anything within the Robot class since "it" refers to the robot. The code I downloaded for this part works.
@bhaskartaneja6293
@bhaskartaneja6293 3 жыл бұрын
Kotlin : till lambda 35:00
@MartinSarosi
@MartinSarosi 7 жыл бұрын
what's his ide?
@rodelias9378
@rodelias9378 7 жыл бұрын
He's using TextMate. It's an text editor rather than an IDE. Take a look at this post: blog.agiledeveloper.com/2014/10/running-in-textmate.html
@_dinesh
@_dinesh 3 жыл бұрын
Devoxx please give this man some extra time. So he can speak a little slower next time.
@Zebsy
@Zebsy 4 жыл бұрын
FIrst half OK - second half, lost it
@_thehunter_
@_thehunter_ 6 жыл бұрын
what is he using using for presentation?
@MadanNeelapu
@MadanNeelapu 6 жыл бұрын
TextMate
@briansupra7
@briansupra7 7 жыл бұрын
TOP
@mr.RAND5584
@mr.RAND5584 5 жыл бұрын
😄👍👍👍👍👍👍
@Zebsy
@Zebsy 4 жыл бұрын
34:45 is not a good explanation of ?. and ?: - suggest people Google that !
@JiYinPT
@JiYinPT 3 жыл бұрын
why his voice is so sexy ?
@TheInimicus
@TheInimicus 5 жыл бұрын
This is for programmers? 7 minutes and all I saw was string interpolation and `kotlinc` command
@TheInimicus
@TheInimicus 5 жыл бұрын
31 minute and only small portion of kotlin syntax?
@redpheonix999
@redpheonix999 7 жыл бұрын
ha ha stupid semicolon(;)
@andrewdizenzojhu
@andrewdizenzojhu 3 жыл бұрын
Wow this guy codes in 12 different languages! I wouldn't have known if he hadn't mentioned it 12 different times!!
Functional Programming in Kotlin - Venkat Subramaniam
53:41
Из какого города смотришь? 😃
00:34
МЯТНАЯ ФАНТА
Рет қаралды 1,6 МЛН
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 1,8 МЛН
Do not walk away from Complexity, Run - Venkat Subramaniam
57:03
Twelve Ways to Make Code Suck Less by Venkat Subramaniam
1:00:44
Functional Programming with Java 8 by Venkat Subramaniam
51:39
Kotlin DSLs in 42 minutes by Eugene Petrenko
39:58
Devoxx
Рет қаралды 7 М.
The Amazing Features of Modern Java  - Venkat Subramaniam
1:02:01
Developer Summit
Рет қаралды 31 М.
Functional Programming with Kotlin • Hadi Hariri • GOTO 2018
51:31
GOTO Conferences
Рет қаралды 39 М.
Reactive Programming in Java by Venkat Subramaniam
52:20
Devoxx
Рет қаралды 122 М.
Из какого города смотришь? 😃
00:34
МЯТНАЯ ФАНТА
Рет қаралды 1,6 МЛН