Skip to content
View hindol's full-sized avatar

Organizations

@microsoft

Block or report hindol

Report abuse

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

Report abuse

Pinned Loading

  1. commons commons Public

    Ad-hoc collection of re-usable Java classes.

    Java 19 4

  2. json-rpc json-rpc Public

    Unified JSON-RPC 2.0 interface over HTTP[S], WebSocket and UNIX socket for Clojure/Script.

    Clojure 13 3

  3. muvee muvee Public

    Hand-curated list of movies/TV shows.

    Clojure 1

  4. svg-clock svg-clock Public

    It is what it says on the tin - an SVG clock. https://hindol.github.io/svg-clock/

    Clojure

  5. Clojure in 15 Minutes: A Crash-course Clojure in 15 Minutes: A Crash-course
    1
    # Clojure in 15 Minutes
    2
    
                  
    3
    ## Hello, Clojure!
    4
    
                  
    5
    ```clojure
  6. Bag / MultiSet in Clojure (How to cr... Bag / MultiSet in Clojure (How to create a custom collection in Clojure)
    1
    (ns com.github.hindol.euler.collections
    2
      (:import
    3
       (clojure.lang IPersistentCollection
    4
                     IPersistentSet
    5
                     Seqable)))