Skip to content
View maxkorolev's full-sized avatar
Block or Report

Block or report maxkorolev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. vue-rxjs vue-rxjs Public

    Yet another rxjs binding library for Vue.js

    JavaScript 16 1

  2. Naive Reader Naive Reader
    1
          case class Fun[A, B](run: A => B) {
    2
            def map[C](f: B => C): Fun[A, C] = Fun(a => f(run(a)))
    3
            def flatMap[C](f: B => Fun[A, C]): Fun[A, C] =
    4
              Fun(a => f(run(a)).run(a))
    5
          }
  3. ZIO environment usage ZIO environment usage
    1
    // simple programm to show how to use ZIO and to show which opportunities it can bring
    2
    import zio._
    3
    
    
    4
    // trait to describe Config
    5
    trait HasConfig {
  4. imguroad imguroad Public

    Scala

  5. s4fun s4fun Public

    Scala for fun

    Scala