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

Block or report bj7

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 Loading

  1. Algorithm-Implementations Algorithm-Implementations Public

    Swift

  2. unserializeJs unserializeJs Public

    unserializes http string queries and puts them back into their native objects

    JavaScript

  3. C-exercises C-exercises Public

    C

  4. Small recursive routine to deeply pa... Small recursive routine to deeply parse any object and convert all arrays into string lists. Helps when dealing with servers that limit http data parameters.
    1
    /**
    2
     * Recurse object and stringify any arrays. This helps when passing paremeters
    3
     * to a server since some servers may limit the number of distinct items in http requests.
    4
     * @param {Object} obj Object to parse
    5
     * @return {Object} Return the parsed object
  5. This is an alphanumeric less than ev... This is an alphanumeric less than evaluator. It works on strings and numbers passed as arguments. When evaluating alphanumeric strings (string-1, string-2), it tests the string portion for equality, and if equal begins testing the numeric portion at the end.
    1
    /**
    2
     * Routine to compare numbers or strings and combinations thereof in terms
    3
     * of string1 < string2
    4
     *
    5
     * @param  {Number|String} string1 First item to compare