最新发布第1605页
Secure APIs with Azure Functions, Java, Azure AD… and MS Graph!
Secure APIs with Azure Functions, Java, Azure AD… and MS Graph!,As a .NET developer, it’s always fun to step out of my comfort zone and play with other languages and frameworks. ...
Crie testes unitários mais amigáveis e mais rapidamente com Spock
Crie testes unitários mais amigáveis e mais rapidamente com Spock,Testes e especificações quase sempre são uma dor de cabeça para o desenvolvedor. Gastamos muito tempo escrev...
Easy modularity: Keeping your Gradle build scripts clean and eliminating duplication in your multi-module projects
Easy modularity: Keeping your Gradle build scripts clean and eliminating duplication in your multi-module projects,I recently started breaking up the monolith I inherited at my cur...
Get Started with Java Logging (and some tips to easily learn new libraries)
Get Started with Java Logging (and some tips to easily learn new libraries),When I started my journey in computer science 3 years ago as a CS undergraduate student, I began to lear...
Scala Type Bounds
Scala Type Bounds,Working with types in Scala can be challenging in many ways. The deeper you dig into the complexity of this subject, the more difficult is to find the right path....
Partial Functions in Scala
Partial Functions in Scala,Writing functions and methods that process the input data and produce some output is the very core of any type of programming. When diving deeper into di...
5 best resources to learn Scala
5 best resources to learn Scala,Scala is one of the most popular languages used in the JVM ecosystem. The recent post by Li Haoyi explains why Scala is entering the ‘slope of enli...
Higher Order Functions (HOF) in Scala
Higher Order Functions (HOF) in Scala,Higher Order Functions (HOF) in Scala are the very core of this functional programming language. Scala treats functions as a first class citiz...
Monads in Scala by example
Monads in Scala by example,Monad is a quite popular construct used in functional programming world. Scala is no different there, utilizing monads in various places of standard libr...
Variances in Scala
Variances in Scala,Scala supports using type parameters to implement a classes and functions that can support multiple types. Type parameters are very useful when creating a generi...
Scala tail recursion by example
Scala tail recursion by example,A tail recursive function in Scala is remedy if your recursive functions causes a stack overflow. Furthermore, tail recursion is a great way if to m...
5 Scala syntactic Tips&Tricks
5 Scala syntactic Tips&Tricks,Scala is quite a special language. Your initial lines of code, especially if you know Java, are quite simple. But, after digging deeper into all hidde...