Skip to content
View rjyala-godaddy's full-sized avatar
๐ŸŽฏ
๐ŸŽฏ

Block or report rjyala-godaddy

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

Pinned Loading

  1. gcp-local-emulator gcp-local-emulator Public

    GCS local version with Node API

    JavaScript

  2. learngo learngo Public

    Forked from inancgumus/learngo

    โค๏ธ 1000+ Hand-Crafted Go Examples, Exercises, and Quizzes. ๐Ÿš€ Learn Go by fixing 1000+ tiny programs.

    Go

  3. rjyala-godaddy rjyala-godaddy Public

    Config files for my GitHub profile.

  4. PostgreSQL index naming convention t... PostgreSQL index naming convention to remember
    1
    The standard names for indexes in PostgreSQL are::
    2
    
                  
    3
        {tablename}_{columnname(s)}_{suffix}
    4
    
                  
    5
    where the suffix is one of the following:
  5. bulletproof-react bulletproof-react Public

    Forked from alan2207/bulletproof-react

    ๐Ÿ›ก๏ธ โš›๏ธ A simple, scalable, and powerful architecture for building production ready React applications.

    TypeScript

  6. Trees are Everywhere Trees are Everywhere
    1
    Trees are not just limited and useful to solving your LeetCode questions, but they form the crux of most databases.
    2
    
                  
    3
    Depending on the indexes you have created or the queries you fire, the database engine loads (or keeps data pre-loaded) in the right variant of the tree and executes the query. Some of the variants that are commonly found across databases are
    4
    
                  
    5
    1. B-tree - range queries and equality searches on sorted data