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

Block or report pucinsk

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

    You love to use ruby-jwt and combine it with has_secure_password. Am I right? If yes, check this gem. It allows you to issue tokens for authenticated resources.

    Ruby 1

  2. samesystem/graphql_rails samesystem/graphql_rails Public

    GraphQL on Rails. Write GraphQL server side in rails way

    Ruby 153 12

  3. Pure Ruby sort - for sorting arrays ... Pure Ruby sort - for sorting arrays of hashes by keys in asc or desc order
    1
    class AwesomeSort
    2
      class Sortee
    3
        def initialize(sortee)
    4
          @sortee = sortee
    5
        end
  4. Fake ActiveRecord `has_many` associa... Fake ActiveRecord `has_many` association. Of course, if you have enough fantasy, you can convert it to `has_one` or whatever.
    1
    module DummyRelations
    2
      def has_many(relation_name)
    3
        class_eval do
    4
          define_method(relation_name) do
    5
            instance_variable_get("@#{relation_name}") || []
  5. samesystem/same-interactor samesystem/same-interactor Public

    Ruby 3

  6. React Material UI 'drawer-like' comp... React Material UI 'drawer-like' component which can be rendered from container.
    1
    import React, { useMemo, forwardRef, useState, useEffect } from 'react'
    2
    import PropTypes from 'prop-types'
    3
    import { makeStyles, Paper, Slide, ClickAwayListener } from '@material-ui/core'
    4
    
                  
    5
    const useStyles = makeStyles(function (theme) {