Skip to content
View standyck's full-sized avatar

Organizations

@Seajure
Block or Report

Block or report standyck

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
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

  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