Skip to content
View DwayneSamuels's full-sized avatar
⛴️
shipping
⛴️
shipping

Block or report DwayneSamuels

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. emotion-emoji emotion-emoji Public

    Emotion Emoji is a package that allows you to add emotional values to emoji.

    3 2

  2. contextual_rnn contextual_rnn Public

    Forked from fomorians/contextual_rnn

    This repository contains the code for the paper "Contextual Recurrent Neural Networks"

    Python 1

  3. mediadevices-camera-selection mediadevices-camera-selection Public

    Forked from philnash/mediadevices-camera-selection

    Examples on how to switch devices with the mediaDevices API

    JavaScript

  4. Add Stripe Customer Id to Auth0 via ... Add Stripe Customer Id to Auth0 via custom rule
    1
    function (user, context, callback) {
    2
      user.app_metadata = user.app_metadata || {};
    3
    
                  
    4
      if ('stripe_customer_id' in user.app_metadata) {
    5
        context.idToken['https://example.com/stripe_customer_id'] = user.app_metadata.stripe_customer_id;