#
fs2
Here are 164 public repositories matching this topic...
gabrieljones
commented
Mar 25, 2021
full example from https://github.com/tpolecat/skunk/blob/v0.0.24/modules/docs/src/main/paradox/tutorial/Command.md
gives following compile errors
skunk-world/src/main/scala/CommandExample.scala:42:34
not found: type *
def fromSession[F[_] : Bracket[*[_], Throwable]](s: Session[F]): PetService[F] =
skunk-world/src/main/scala/CommandExample.scala:42:24
cats.effect.Bracket[<error>,Thro
cats
functional-programming
http4s
fs2
fp
typeclasses
refined
tagless-final
finally-tagless
tagless
skunk
cats-effect
typeclass-derivation
newtypes
-
Updated
Oct 18, 2021 - Scala
bplommer
opened
Jul 26, 2021
vlovgr
commented
Oct 11, 2019
Similarly to #234, it would be useful to provide functions for creating test KafkaProducers.
A good first function would be one which yields somewhat sensible default RecordMetadata.
object KafkaProducer {
def unit[F[_], K, V](implicit F: Sync[F]): F[KafkaProducer[F, K, V]] = ???
}Likely, this would require some internal state, hence F[KafkaProducer[F, K, V]].
Idiomatic, typesafe, and reactive Scala client for Apache Pulsar
-
Updated
Oct 21, 2021 - Scala
Read and write Parquet in Scala. Use Scala classes as schema. No need to start a cluster.
-
Updated
Oct 25, 2021 - Scala
Functional Telegram Bot API for Scala
-
Updated
Oct 21, 2021 - Scala
A sample project of a microservice using http4s, doobie, and circe.
-
Updated
May 25, 2021 - Scala
-
Updated
Jan 5, 2019 - Scala
-
Updated
Oct 23, 2021 - Scala
-
Updated
Oct 23, 2021 - Scala
FP Scala Back-end of the Smart Backpacker App
-
Updated
Jun 19, 2018 - Scala
FS2 streams based on cron expressions
-
Updated
Oct 23, 2021 - Scala
Open
Add microsite
4
sirocchj
commented
Aug 7, 2018
See
- https://47deg.github.io/sbt-microsites/
- in conjunction with http://tpolecat.github.io/tut/
Chromaprint/AcoustID audio fingerprinting for the JVM
music
scala
jvm
fs2
audio-analysis
musicbrainz
audio-processing
fourier-transform
chromaprint
acoustid
cats-effect
-
Updated
Jul 4, 2019 - Scala
Event sourcing utilities for FS2
-
Updated
Oct 21, 2021 - Scala
Collection of what I consider good practices in Http4s (WIP)
-
Updated
Mar 27, 2018
amohrland
opened
Apr 17, 2020
-
Updated
May 5, 2019 - Scala
XML Streaming for Scala including FS2/cats support
-
Updated
Jul 27, 2021 - Scala
TensorFlow TFRecord reader CLI tool
-
Updated
Oct 23, 2021 - Scala
A chat server implemented using WebSockets and Scala/http4s
-
Updated
Nov 6, 2019 - Scala
Standalone alternatives to Kafka Connect Connectors
-
Updated
Oct 23, 2021 - Scala
Example telegram bot implementation using fs2 and http4s client (no akka)
-
Updated
May 14, 2021 - Scala
Improve this page
Add a description, image, and links to the fs2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the fs2 topic, visit your repo's landing page and select "manage topics."
We sometimes have data types which subtype
Orderedand other times have types which implementOrdering. We only need to doOrdering. We should ensure that all types which areOrderedalso have anOrderinginstance.Context: http4s/http4s#5013 (comment)