Skip to content
View rakeshpatra's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home
Block or Report

Block or report rakeshpatra

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
rakeshpatra/README.md

Hi ๐Ÿ‘‹, I'm Rakesh Patra

A fullstack software developer from India.

rakeshpatra

  • ๐Ÿ”ญ Iโ€™m currently working at Fountain.

  • ๐ŸŒฑ Iโ€™m currently learning Node.js.

  • ๐Ÿ‘ฏ Iโ€™m looking to collaborate on Rails.

  • ๐Ÿค Iโ€™m looking for help with Instagram Graph API gem .

  • ๐Ÿ“ I have written few articles here.

  • ๐Ÿ’ฌ Talk to me about Ruby on Rails and ReactJS.

  • ๐Ÿ“ซ Reach me at rakesh.patra93@gmail.com .

rubyrails reactbootstrap css3 gastby git html5 linux mongodb mysql postgresql redis


rakeshpatra

rakeshpatra93 rakesh-patra-03061435 rakeshpatra rakesh.patra1993 rakeshkpatra

Pinned

  1. instagram_graph_api instagram_graph_api Public

    This is a version of koala gem which provides commonly used Instagram Graph APIs

    Ruby 31 13

  2. custom_db_driver custom_db_driver Public

    A gem for cross db associations.

    Ruby 3 1

  3. Transform nested object to formData Transform nested object to formData
    1
    // Using lodash for _.forEach
    2
    function transformToFormData(data, formData=(new FormData), parentKey=null) {
    3
      _.forEach(data, (value, key) => {
    4
        if (value === null) return; // else "null" will be added
    5
    
                  
  4. i18n-tasks normalize in pre-commit i18n-tasks normalize in pre-commit
    1
    # using ruby gem "i18n-tasks"
    2
    
                  
    3
    locale_changed=$(git diff --name-only --staged | grep "locales/en.yml")
    4
    
                  
    5
    if [ -n "$locale_changed" ]; then
  5. Configure react-select to hide selec... Configure react-select to hide selected option when clicking on search box or opening menu
    1
    import React from "react";
    2
    import Select from "react-select";
    3
    
                  
    4
    class CustomSelect extends React.Component {
    5
      constructor(props) {