Skip to content
View jesster2k10's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro
Block or Report

Block or report jesster2k10

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

    Long term learning on the go

    Ruby

  2. react-native-bubble-select react-native-bubble-select Public

    An easy-to-use customizable bubble animation picker, similar to the Apple Music genre selection

    Swift 134 36

  3. react-native-range-slider react-native-range-slider Public

    A high-quality, cross platform, native iOS range slider for react native. A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range; inspired by react-native-…

    Java 57 10

  4. react-native-giphy-ui react-native-giphy-ui Public

    Cross Platform React Native Wrapper around the Giphy UI SDK for both iOS and Android

    TypeScript 13 6

  5. react-native-ts-boilerplate react-native-ts-boilerplate Public template

    A easy to use, fully featured, React Native Boilerplate that helps you save time.

    TypeScript 21 3

  6. JWT Auth + Refresh Tokens in Rails JWT Auth + Refresh Tokens in Rails
    1
    # JWT Auth + Refresh Tokens in Rails
    2
    
                  
    3
    This is just some code I recently used in my development application in order to add token-based authentication for my api-only rails app.
    4
    The api-client was to be consumed by a mobile application, so I needed an authentication solution that would keep the user logged in indefinetly
    5
    and the only way to do this was either using refresh tokens or sliding sessions.