Skip to content
View shotexa's full-sized avatar
🔨
Building
🔨
Building

Block or report shotexa

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. imgedit imgedit Public

    Fluent image editing library

    Scala 3

  2. hyperledger/identus-cloud-agent hyperledger/identus-cloud-agent Public

    Identus Cloud Agent

    Scala 81 22

  3. trie trie Public

    A simple POC implementation of a trie in scala

    Scala

  4. scala-seed.g8 scala-seed.g8 Public

    Boilerplate for my personal scala projects

    Scala

  5. tree.scala tree.scala
    1
      sealed trait Tree[+A]
    2
      object Tree {
    3
        def size[A](tree: Tree[A]): Int = tree match {
    4
          case Branch(left, right) => size(left) + size(right) + 1
    5
          case Leaf(_)             => 1
  6. typeclassInferance.scala typeclassInferance.scala
    1
       trait Equality[T] {
    2
          def equals(a: T, b: T): Boolean
    3
        }
    4
        object Equality {
    5
          implicit val IntEquality: Equality[Int] = new Equality[Int] {