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

Block or report mileshd

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. 80twenty-software 80twenty-software Public

    Website for 80twenty Software

    HTML

  2. 80twenty-trading 80twenty-trading Public

    Website for 80twenty Trading website

    HTML

  3. introducing-javascript introducing-javascript Public

    A 4-5 hour class covering the essentials of JavaScript.

    JavaScript

  4. yo-meals-website yo-meals-website Public

    Website for Yo Meals

    HTML

  5. yo-self-website yo-self-website Public

    Website for Yo Self.

    HTML

  6. Identity Monad Identity Monad
    1
    function Monad() {
    2
      return function unit(value) {
    3
        var monad = Object.create(null);
    4
        monad.bind = function (func) {
    5
          return func(value);