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

Block or report aarona

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. devise_jwt_auth devise_jwt_auth Public

    A JWT-based port of Devise Token Auth

    Ruby 7 2

  2. slow_your_roles slow_your_roles Public

    Easy-to-use role management for users built for Rails.

    Ruby 1 1

  3. graphql_devise graphql_devise Public

    Forked from graphql-devise/graphql_devise

    GraphQL interface on top devise_token_auth

    Ruby

  4. dja_example dja_example Public

    A proof-of-concept site utilizing devise_jwt_auth

    Ruby 1

  5. Convert React app generated from cre... Convert React app generated from create-repack-app to a typescript app
    1
    ## Convert React App Generated by create-repack-app to a Typescript app
    2
    
    
    3
    ### STEP 1: Create Typescript App for template files
    4
    Run `create-react-app template_app --template typescript`
    5
    
    
  6. Object oriented example using Typscript Object oriented example using Typscript
    1
    export interface Shape {
    2
      area(): number
    3
      perimeter(): number
    4
    }
    5