2
2
3
3
This repository is intended as a helper for everyone who wants to improve their Scala knowledge, be it beginners or more advanced users. Links in the sections are provided in no specific order.
4
4
5
- The list is still incomplete, any additional resources for existing sections or whole sections are welcome, just rise a pull request.
5
+ The list is still incomplete, any additional resources for existing sections or whole sections are welcome, just raise a pull request.
6
6
7
7
---
8
8
9
9
## General trainings and books
10
10
11
11
- Scala exercises https://www.scala-exercises.org/scala_tutorial/terms_and_types
12
12
- Scala at Light Speed https://www.youtube.com/watch?v=-8V6bMjThNo&list=PLmtsMNDRU0BxryRX4wiwrTZ661xcp6VPM
13
- - Hands on Scala by Li Haoi https://www.handsonscala.com/chapter-1-hands-on-scala.html
13
+ - (paid) Rock The JVM https://rockthejvm.com
14
+ - (paid, free preview) Hands on Scala by Li Haoi https://www.handsonscala.com/chapter-1-hands-on-scala.html
14
15
- Scala with Cats by Underscore https://www.scalawithcats.com/dist/scala-with-cats.html
15
16
- Functional Programming in Scala by Martin Odersky https://www.coursera.org/learn/progfun1
16
17
- Strategic Scala Style: Principle of Least Power by Li Haoi https://www.lihaoyi.com/post/StrategicScalaStylePrincipleofLeastPower.html
17
18
- Lightbend Scala Language - Professional https://academy.lightbend.com/courses/course-v1:lightbend+LSL-P-Scala-Language-Professional+v1/about
19
+ - Foundations of Functional Programming in Scala https://www.youtube.com/watch?v=OdPaWmRnAc4&list=PLiYD0LWExCDkXGpYRY3WjNscDfhe4D0ND
20
+ - (paid) Inner-product training https://www.inner-product.com/services/training/
18
21
19
22
---
23
+
20
24
## Blogs, newsletters and channels
25
+
21
26
- Softwaremill
22
27
- Scala Times newsletter https://scalatimes.com/
23
28
- Blog https://softwaremill.com/blog/
@@ -40,41 +45,50 @@ The list is still incomplete, any additional resources for existing sections or
40
45
- https://blog.michalp.net/
41
46
42
47
---
48
+
43
49
## Language aspects
44
50
45
51
### Type system hierarchy
52
+
46
53
- https://docs.scala-lang.org/tour/unified-types.html
47
54
- https://www.artima.com/scalazine/articles/scalas_type_system.html
48
55
49
56
### Case classes
57
+
50
58
- https://docs.scala-lang.org/tour/case-classes.html
51
59
- https://docs.scala-lang.org/overviews/scala-book/case-classes.html
52
60
53
61
### Traits
62
+
54
63
- https://docs.scala-lang.org/tour/traits.html
55
64
- https://docs.scala-lang.org/overviews/scala-book/traits-interfaces.html
56
65
57
66
### Pattern matching
67
+
58
68
- https://docs.scala-lang.org/tour/pattern-matching.html
59
69
- https://alvinalexander.com/scala/how-to-use-pattern-matching-scala-match-case-expressions/
60
70
- https://data-flair.training/blogs/scala-pattern-matching/
61
71
62
72
### Option and Either
73
+
63
74
- https://xebia.com/blog/try-option-or-either/
64
75
- https://alvinalexander.com/scala/best-practice-eliminate-null-values-from-code-scala-idioms/
65
76
- https://danielwestheide.com/blog/the-neophytes-guide-to-scala-part-7-the-either-type/
66
77
67
78
### Collections, for comprehension
79
+
68
80
- https://docs.scala-lang.org/overviews/scala-book/collections-101.html
69
81
- https://docs.scala-lang.org/tour/for-comprehensions.html
70
82
71
83
### Implicits
84
+
72
85
- https://www.artima.com/pins1ed/implicit-conversions-and-parameters.html
73
86
- https://www.lihaoyi.com/post/ImplicitDesignPatternsinScala.html
74
87
- https://scala-fmi.github.io/scala-fmi-2019/lectures/08-implicits.html
75
88
- https://apiumhub.com/tech-blog-barcelona/scala-implicits/
76
89
77
90
### Future - asynchronous and parallel operations
91
+
78
92
- https://docs.scala-lang.org/overviews/scala-book/futures.html
79
93
- https://docs.scala-lang.org/overviews/core/futures.html
80
94
- https://danielwestheide.com/blog/the-neophytes-guide-to-scala-part-8-welcome-to-the-future/
@@ -86,76 +100,92 @@ The list is still incomplete, any additional resources for existing sections or
86
100
### Databases
87
101
88
102
#### Slick
103
+
89
104
- https://scala-slick.org/doc/3.3.1/introduction.html
90
105
- https://books.underscore.io/essential-slick/essential-slick-3.html
91
106
92
107
#### Doobie
108
+
93
109
- https://tpolecat.github.io/doobie/
94
110
95
111
#### Quill
112
+
96
113
- https://getquill.io/
97
114
- https://zio.dev/zio-quill/
98
115
- https://github.com/zio/zio-protoquill
99
116
100
117
### Working with Json
101
118
102
- #### Circe
119
+ #### Circe
120
+
103
121
- https://circe.github.io/circe/
104
122
105
123
#### Jsoniter Scala
124
+
106
125
- https://github.com/plokhotnyuk/jsoniter-scala
107
126
- https://blog.lambdaspot.dev/the-fastest-and-safest-json-parser-and-serializer-for-scala
108
127
109
128
### IO
129
+
110
130
- https://typelevel.org/cats-effect/datatypes/io.html
111
131
- https://typelevel.org/blog/2017/05/02/io-monad-for-cats.html
112
132
- https://medium.com/walmartlabs/understanding-io-monad-in-scala-b495ca572174
113
133
114
134
### ZIO
135
+
115
136
- https://zio.dev/
116
137
117
138
### Monix
139
+
118
140
- https://monix.io/
119
141
120
142
### Messaging
121
143
122
144
#### pass4s
145
+
123
146
- https://ocadotechnology.github.io/pass4s/
124
147
- https://blog.michalp.net/posts/scala/pass4s-basics/
125
148
126
149
### Type classes
150
+
127
151
- https://tpolecat.github.io/2013/10/12/typeclass.html
128
152
- https://scalac.io/typeclasses-in-scala/
129
153
- https://www.scala-exercises.org/scala_tutorial/type_classes
130
154
131
155
### Cats
156
+
132
157
- https://underscore.io/books/scala-with-cats/
133
158
- https://typelevel.org/cats/
134
159
- https://www.scala-exercises.org/cats/semigroup
135
160
136
161
### Higher-kinded types
162
+
137
163
- https://medium.com/bigpanda-engineering/understanding-f-in-scala-4bec5996761f
138
164
- https://dzone.com/articles/scalafp-the-mystery-of-scalas-higher-kinded-types
139
165
- https://www.stephanboyer.com/post/115/higher-rank-and-higher-kinded-types
140
166
141
167
### Tagless final
168
+
142
169
- https://blog.rockthejvm.com/tagless-final/
143
170
- https://blog.softwaremill.com/final-tagless-seen-alive-79a8d884691d
144
171
- https://blog.softwaremill.com/bake-your-bread-tagless-final-style-dea9448b3dc3
145
172
- https://www.basementcrowd.com/2019/01/17/an-introduction-to-tagless-final-in-scala/
146
173
- https://scalac.io/tagless-final-pattern-for-scala-code/
147
174
148
175
### FP in general
176
+
149
177
- https://github.com/mmenestret/fp-resources
150
178
- http://adit.io/posts/2013-04-17-functors,_applicatives,_and_monads_in_pictures.html
151
179
152
180
### Streaming
153
181
154
182
#### FS2
183
+
155
184
- https://fs2.io/
156
185
157
186
### OAuth2
158
187
159
188
#### sttp-oauth2
189
+
160
190
- https://ocadotechnology.github.io/sttp-oauth2/
161
191
- https://blog.michalp.net/posts/scala/oauth2-app-p1/
0 commit comments