Skip to content
View kirked's full-sized avatar

Block or report kirked

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. dropbox-status-icons dropbox-status-icons Public

    Dropbox Status Icons for a HiDPI display

    12 1

  2. HTML element class manipulations in ... HTML element class manipulations in Clojurescript (no jQuery)
    1
    (defn classes-of
    2
      "Get the classes of an element as a Clojure keyword vector."
    3
      [e]
    4
      (let [words (-> e (.getAttribute "class") (string/split " "))]
    5
        (mapv keyword words)))
  3. Clojure atoms, in Scala Clojure atoms, in Scala
    1
    /*------------------------------------------------------------------------------
    2
     * MIT License
    3
     * 
    4
     * Copyright (c) 2017 Doug Kirk
    5
     * 
  4. Fast Luhn credit card check in Scala Fast Luhn credit card check in Scala
    1
    final object Luhn {
    2
      /** An O(1) Map[Int, Int] of precomputed double values. */
    3
      private[this] final val doubles = Array(0, 2, 4, 6, 8, 1, 3, 5, 7, 9)
    4
    
                  
    5
      /**