Skip to content
View ronnycoding's full-sized avatar
πŸ‡»πŸ‡ͺ
The only way to do great work is to love what you do.
πŸ‡»πŸ‡ͺ
The only way to do great work is to love what you do.

Organizations

@costaricajs
Block or Report

Block or report ronnycoding

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. React Patterns React Patterns
    1
    // state reducer
    2
    // πŸ’― default state reducer
    3
    
                  
    4
    import * as React from 'react'
    5
    import {Switch} from '../switch'
  2. Flexible Compound Components with co... Flexible Compound Components with context
    1
    // Flexible Compound Components with context
    2
    // πŸ’― custom hook validation
    3
    
                  
    4
    import * as React from 'react'
    5
    import {Switch} from '../switch'
  3. React Patterns React Patterns
    1
    // Control Props
    2
    // πŸ’― add read only warning
    3
    
                  
    4
    import * as React from 'react'
    5
    import warning from 'warning'
  4. Helpful shortcuts for VSCode Helpful shortcuts for VSCode
    1
    # VSCode Shortcuts
    2
    
                  
    3
    > List of helpful shortcuts for faster coding
    4
    5
    If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
  5. .htaccess for WordPress Multisite .htaccess for WordPress Multisite
    1
    RewriteEngine On
    2
    RewriteBase /
    3
    RewriteRule ^index\.php$ - [L]
    4
    # add a trailing slash to /wp-admin
    5
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]