A clean approach discussing and learning Scala, rather than starting with IDE that hides the basics... It is a very necessary step to be a real software engineer. 2-thumbs up, Daniel, and you Rock!
This was very helpful! One tip for working in the SBT console is that you can just use the `reload` task rather than restarting the console each time you change your config. Makes for a quicker workflow.
Simple explanation about SBT for a beginner like me to grasp. Thanks @rockthejvm for this work. There are many plugins to extend the functionality of sbt. Are there any common set of plugins that is recommended at the industry ? It would be useful to know the set of plugins that are commonly used. I use a couple like scoverage and scala-fmt.
The glitch related to dependency of org.typesafe config was just that it is a Java library so use single % not %% (i.e. doesn't vary per scala version). I have confused myself many times on this problem and then each time re-discover the fix. 😅
For the typesafe config, a single % is required, according to the document. ```scala libraryDependencies += "com.typesafe" % "config" % "1.4.2" ``` However, I am not sure why this library doesn't depend on Scala versions. Can someone help?
A clean approach discussing and learning Scala, rather than starting with IDE that hides the basics... It is a very necessary step to be a real software engineer. 2-thumbs up, Daniel, and you Rock!
This was very helpful! One tip for working in the SBT console is that you can just use the `reload` task rather than restarting the console each time you change your config. Makes for a quicker workflow.
Thank you. Restarted a couple of times today
Thank you. It is very helpful.
Beautiful. As a beginnner in scala programmer. It really helped. Precise, short and very informative. Thank you once again!
My condolences for learning Scala
@@filipstojiljkovic4711 java is priamary skill. current project demands scala knowledge
Thank you for the tutorial, Daniel, it's so much helpful!
Really nice, finally SBT makes a little bit of sense to me 😄
Simple explanation about SBT for a beginner like me to grasp. Thanks @rockthejvm for this work. There are many plugins to extend the functionality of sbt. Are there any common set of plugins that is recommended at the industry ? It would be useful to know the set of plugins that are commonly used. I use a couple like scoverage and scala-fmt.
Thank you for the sbt tutorial.
This was so valuable to me! Thank you Daniel!
The glitch related to dependency of org.typesafe config was just that it is a Java library so use single % not %% (i.e. doesn't vary per scala version).
I have confused myself many times on this problem and then each time re-discover the fix. 😅
just spent 10-15min figuring this out.. I should have read the comments lol.
Thanks dude, it was helpful
Thanks for the video. BTW what terminal theme you are using?
One Dark
Your terminal prompt is pretty, what is that terminal? Would you mind share the config?
Powelevel10k: github.com/romkatv/powerlevel10k
Was wondering the same... Thanks for answering Daniel!
@@rockthejvm What about the file type icons? Love those...
NVM. Downloaded `exa` and a "Nerd Font".
For the typesafe config, a single % is required, according to the document.
```scala
libraryDependencies += "com.typesafe" % "config" % "1.4.2"
```
However, I am not sure why this library doesn't depend on Scala versions. Can someone help?