Foro Wanako1
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Foro Wanako1

Programas Gratuitos, Desatendidos y Mucho más!!!
 
PortalPortal  ÍndiceÍndice  BuscarBuscar  Últimas imágenesÚltimas imágenes  ConectarseConectarse  RegistrarseRegistrarse  
Buscar
 
 

Resultados por:
 
Rechercher Búsqueda avanzada
Los posteadores más activos del mes
tano1221
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
ПΣӨƧӨFƬ
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
ℛeℙ@¢ᴋ€r
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
Engh3
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
大†Shinegumi†大
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
ronaldinho424
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
missyou123
Functional Programming with Scala  Cats Vote_lcapFunctional Programming with Scala  Cats Voting_barFunctional Programming with Scala  Cats Vote_rcap 
Julio 2024
LunMarMiérJueVieSábDom
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarioCalendario
Últimos temas
» CCleaner 6.25.11131 Pro/Tech/Buss Retail+ CCEnhancer 4.5.7
Functional Programming with Scala  Cats EmptyAyer a las 10:10 pm por tano1221

»  ScaleUP v1.4.3 [AE + PR] Win
Functional Programming with Scala  Cats EmptyAyer a las 9:52 pm por ℛeℙ@¢ᴋ€r

» Topaz Gigapixel AI 7.2.3 (x64)
Functional Programming with Scala  Cats EmptyAyer a las 9:39 pm por ℛeℙ@¢ᴋ€r

» Bandicam 2024 v7.1.2.2451 + Portable (x64)
Functional Programming with Scala  Cats EmptyAyer a las 9:31 pm por ronaldinho424

» DirPrintOK 6.99
Functional Programming with Scala  Cats EmptyAyer a las 7:58 pm por ПΣӨƧӨFƬ

»  Perfectly Clear WorkBench 4.6.1.2671 (x64) Multilingual
Functional Programming with Scala  Cats EmptyAyer a las 2:50 pm por ПΣӨƧӨFƬ

» Key Metric FolderSizes 9.6.490 Enterprise
Functional Programming with Scala  Cats EmptyAyer a las 2:47 pm por ПΣӨƧӨFƬ

» Nitro PDF Pro 14.26.1.0 (x64) Enterprise / Retail Multilingual
Functional Programming with Scala  Cats EmptyAyer a las 2:45 pm por ПΣӨƧӨFƬ

» Microsoft Edge 126.0.2592.87 Dual x86x64 [Silent]
Functional Programming with Scala  Cats EmptyAyer a las 2:36 pm por ℛeℙ@¢ᴋ€r

Sondeo
Visita de Paises
free counters
Free counters

Comparte | 
 

 Functional Programming with Scala Cats

Ver el tema anterior Ver el tema siguiente Ir abajo 
AutorMensaje
missyou123
Miembro Mayor
Miembro Mayor


Mensajes : 70279
Fecha de inscripción : 20/08/2016

Functional Programming with Scala  Cats Empty
MensajeTema: Functional Programming with Scala Cats   Functional Programming with Scala  Cats EmptyDom Jun 20, 2021 2:44 am

Functional Programming with Scala  Cats F24ee1da3f5e50b5e532e36de560d5a3
MP4 | Video: h264, 1280x720 | Audio: AAC, 48000 Hz
Language: English | Size: 3.12 GB | Duration: 10h 45m

What you'll learn
Create own typeclasses
Write and use lawful instances of well-known typeclasses such as Functors, Applicatives, Monads, etc.
Perform common programming tasks (validation, dependency injection, state management, etc.) in a functional way.

Requirements
Working knowledge of the Scala language (case classes, pattern matching, traits, implicits, etc.)
Basic understanding of the Scala library (List, Map, Set, etc.)
(Nice to have) Some experience using the basic higher order methods such as map, flatMap and fold
Description
When we start our journey as a Scala developer, our first impression of the language may be that of 'a better Java'. We learn about classes, traits, pattern matching and some other constructs that make our life easier. At some point we come across the amazing higher-order methods such as map, filter and fold. These serve as a great first taste of functional programming.

But what if I told you that there is much more than that? In this course I will show you how standard functional programming practices can help you write code that is more generic, robust and testable.

This course is divided into 3 main sections.

In the first section, we will learn about typeclasses. We will use as a driving example the problem of encoding and decoding objects into and from bytes. By the end of this section you will be able to create your own typeclasses and use the typeclass pattern to write polymorphic code.

In the second section, we will take a look at some of the most common typeclasses in functional programming, including Monads, Applicatives, Functors and many more. We will use the famous Cats library to provide us with their implementations, and we will use Discipline along with ScalaCheck and ScalaTest to test their laws. By the end of this section, you will be able to write lawful instances of these typeclasses for any of your types, and test their validity in an automated manner.

In the third and final section, we will learn to perform many common programming tasks with functional structures. These tasks include:
- Validations via the Validated datatype

- Dependency injection with the Reader monad

- Tracking data in our computations with the Writer monad

- Managing state with the State monad

- Writing stack safe computations with Trampolines

- Making computations lazy with the Eval monad

- Composing monad stacks via monad transformers such as ReaderT and OptionT

- Suspending effects with a simple but useful implementation of the IO monad

I'm a big believer of learning by doing so I've included a lot of in-video exercises, along with quizzes and assignments at the end of each section. I hope you enjoy doing them as much as I enjoyed putting them together!

Without further ado, I want to give you a big welcome to the course and the thrilling world of functional programming!

Who this course is for:
Scala developers with 1 or 2 years of experience who want to learn the functional side of the language
Students who have completed an introductory Scala course and are willing to learn more advanced features

Screenshots

Functional Programming with Scala  Cats 27af53ff04b4e96eeb13bb0c82dac0d9

DOWNLOAD:
Citación :

https://rapidgator.net/file/1eafa8ab310025f11334f39e2033beb8/3qzag.Functional.Programming.with.Scala.Cats.part1.rar.html
https://rapidgator.net/file/27c09ab304e74d4342902bd2d2fd8c4f/3qzag.Functional.Programming.with.Scala.Cats.part2.rar.html
https://rapidgator.net/file/98dd9fea12eab0212ad7e5b0ebd503e3/3qzag.Functional.Programming.with.Scala.Cats.part3.rar.html
https://rapidgator.net/file/26db52e89d90a4e32d0af863106dd4f9/3qzag.Functional.Programming.with.Scala.Cats.part4.rar.html


https://uploadgig.com/file/download/35b20Da13219d0fD/3qzag.Functional.Programming.with.Scala.Cats.part1.rar
https://uploadgig.com/file/download/591E8e9856255927/3qzag.Functional.Programming.with.Scala.Cats.part2.rar
https://uploadgig.com/file/download/912734a949cE8eE1/3qzag.Functional.Programming.with.Scala.Cats.part3.rar
https://uploadgig.com/file/download/d35e6B110b173fD5/3qzag.Functional.Programming.with.Scala.Cats.part4.rar


https://nitroflare.com/view/9435CB16D1D291D/3qzag.Functional.Programming.with.Scala.Cats.part1.rar
https://nitroflare.com/view/12EB8998CC574B8/3qzag.Functional.Programming.with.Scala.Cats.part2.rar
https://nitroflare.com/view/75AA34102CD6BCE/3qzag.Functional.Programming.with.Scala.Cats.part3.rar
https://nitroflare.com/view/E7325C979B91251/3qzag.Functional.Programming.with.Scala.Cats.part4.rar

Volver arriba Ir abajo
 

Functional Programming with Scala Cats

Ver el tema anterior Ver el tema siguiente Volver arriba 
Página 1 de 1.

 Temas similares

-
» Hands-On Scala Programming
» Functional Programming in Scala, Second Edition, Video Edition
» Spark from A to Z with Scala
» Scala Language: The Big Picture
» Scala Fundamentals The Type System

Permisos de este foro:No puedes responder a temas en este foro.
Foro Wanako1 :: Programas o Aplicaciónes :: Ayuda, Tutoriales-