Skip to content
View AdamJDuggan's full-sized avatar
  • Version One
  • Brighton

Block or report AdamJDuggan

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. simple-context-state simple-context-state Public

    Global state utility for react. Provides quick and easy set-up and management of application state. All asynchronous actions automatically get wrapped with a pending and errors state. No redux, no …

    JavaScript 1

  2. abacus-express abacus-express Public

    Web app to set budgeting goals and track personal finances. Built with Node.js, MongoDB, JS and flexbox. Authentication with Passport.js and JSON web tokens. Hosted with heroku.

    JavaScript

  3. useSuperContextState useSuperContextState
    1
    import { useState } from "react";
    2
    
                  
    3
    function useSuperContextState(initialState) {
    4
      const [errors, setErrors] = useState([]);
    5
      const [pending, setPending] = useState([]);
  4. Spacing mixin Spacing mixin
    1
    @mixin spacing($property) {
    2
      @for $i from 1 through $length {
    3
        $value: $i * $spacing;
    4
        $prefix: str-slice($property, 0, 1);
    5
    
                  
  5. vert-hub vert-hub Public

    Angular and Firebase demo app. Authentication, CRUD operations, routing, NgRx, services, and web sockets.

    TypeScript