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

Block or report adammedford

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. svelte-carousel svelte-carousel Public

    Svelte carousel monorepo designed for cross framework and webcomponent use

    HTML 2

  2. astq-ts astq-ts Public

    Query TypeScript AST with astq Query engine + TypeScript adapter

    TypeScript

  3. Java-Challenges Java-Challenges Public

    A collection of completed Java challenges; Names are obscured to discourage cheaters

    Java

  4. PHP-Challenges PHP-Challenges Public

    PHP Challenges I've completed with names obscured to discourage cheating

    PHP

  5. Generator based function for infinit... Generator based function for infinitely retrieving sets of dates for use in building a calendar
    1
      // let generator = dateGenerator(new Date());
    2
      // let nextWeek = generator(7).next();
    3
      function dateGenerator(startDate) {
    4
        const DAY_IN_UNIX = 86400000;
    5
        let cursor = new Date(startDate.getTime());