Skip to content
View standyck's full-sized avatar

Organizations

@Seajure

Block or report standyck

Report abuse

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

Report abuse
standyck/README.md

Welcome to Stan's Github

You won't see much here. That's because I have my own playground where I store my personal projects. I have found that I prefer having my own gitlab server because:

  1. I control everything
  2. I learn more about lots of different things (server administration/configuration, docker, network administration, etc.)
  3. It supports a distributive model. Many services everywhere rather than one service in one place.

My favorite language is clojure. Here's a freebee for your next job interview.

(defn fizzbuzz
  "Returns a lazy sequence of FizzBuzz values."
  []
  (let [fizz (cycle [nil nil "Fizz"])
        buzz (cycle [nil nil nil nil "Buzz"])
        nums (map inc (range))]
    (map (fn [f b n] (if (or f b)
                       (str f b)
                       (str n)))
         fizz buzz nums)))

[I tried to make one without any conditionals but couldn't quite do it.]

Popular repositories Loading

  1. clojure.standyck clojure.standyck Public

    repository for my clojure code

    Clojure 1

  2. rundata rundata Public

    Clojure 1

  3. anagrams anagrams Public

    The anagrams kata in clojure

    Clojure 1

  4. wingdings-fpoobook wingdings-fpoobook Public

    Code for the wingdings interation covering Brian Marick's Functional Programming for the Object-Oriented Programmer

    Clojure

  5. try_git try_git Public

  6. removeme removeme Public

    move along, just testing