Kotlin 1.0 Released: Pragmatic Language for JVM and Android
blog.jetbrains.com
Kotlin 1.0 Released: Pragmatic Language for JVM and Android
1–10 of 112 posts
Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#2Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#3[1] https://spring.io/blog/2016/02/15/developing-spring-boot-app...
Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#4Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#5Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#6actually I'm still unsure about kotlin. some things are really great some things are not. I mean i will still use kotlin, especially for libraries since it is great for that. however somehow I still missed something on top of Executors and CompletionStage. And I'm totally unhappy about "So, why doesn’t Kotlin have its own package manager, or its own build system? Because there’s already Maven and Gradle, and re-using…
> I still missed something on top of Executors and CompletionStage.
You could use RxKotlin. It has Schedulers and Observables/Single/Completable for interacting with async tasks. https://github.com/ReactiveX/RxKotlinRe: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#7actually I'm still unsure about kotlin. some things are really great some things are not. I mean i will still use kotlin, especially for libraries since it is great for that. however somehow I still missed something on top of Executors and CompletionStage. And I'm totally unhappy about "So, why doesn’t Kotlin have its own package manager, or its own build system? Because there’s already Maven and Gradle, and re-using…
Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#8actually I'm still unsure about kotlin. some things are really great some things are not. I mean i will still use kotlin, especially for libraries since it is great for that. however somehow I still missed something on top of Executors and CompletionStage. And I'm totally unhappy about "So, why doesn’t Kotlin have its own package manager, or its own build system? Because there’s already Maven and Gradle, and re-using…
Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#9kotlin looks like swift for java. I hope google will remove java and start adding kotlin as a first citizen :)
Re: Kotlin 1.0 Released: Pragmatic Language for JVM and Android
#10actually I'm still unsure about kotlin. some things are really great some things are not. I mean i will still use kotlin, especially for libraries since it is great for that. however somehow I still missed something on top of Executors and CompletionStage. And I'm totally unhappy about "So, why doesn’t Kotlin have its own package manager, or its own build system? Because there’s already Maven and Gradle, and re-using…
Can you name any criticism of Gradle? I've used it for years now (for Android development). It's steadily being improved, and is really good in my opinion.
- I dislike the DSL // not a really useful criticism I know.
- Some things needs Groovy which isn't a mainstream language
- Had Bad support for Scala, which I use heavily mostly resolved since 2.2 and thanks to linkedin newer version even have twirl + playframework support.
- sometimes the syntax file of the DSL couldn't be highlighted in eclipse / intellij
- Bigger build files could be really slow (mostly resolved in newer versions)
Btw. whats really really good on Gradle is the dependency resolution, which is really fast compared to something like sbt.