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

Block or report ksmr

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

  1. sched sched Public

    A small Java library to set the CPU affinity mask of the current thread

    Java 3

  2. bloom bloom Public

    Bloom filter in C

    C

  3. awful-lang awful-lang Public

    Awful programming language

    OCaml

  4. A polymorphic bloom filter in Ocaml ... A polymorphic bloom filter in Ocaml implemented using Int32
    1
    type 'a bloom32 = {
    2
      size : int;
    3
      bits : int32 array;
    4
      hash_funs : ('a -> int) list
    5
    };;