Skip to content
View dishitd's full-sized avatar

Block or report dishitd

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 Loading

  1. jwtAuthentication jwtAuthentication Public

    Simple hello world application to demo JWT use cases

    Java

  2. mongo-docker-compose mongo-docker-compose Public

    Sample docker-compose for MongoDB with restore using mongorestore to setup mongo locally

    Shell

  3. myob-ops myob-ops Public

    Created project for ops

    Java

  4. vault-docker vault-docker Public

    Quick Docker setup for Vault for development

    Shell

  5. Docker cheatsheet Docker cheatsheet
    1
    # Dockerfile
    2
    FROM reports/metabase:v1
    3
    LABEL maintainer="dishid@gmail.com"
    4
    EXPOSE 3000
    5
    
                  
  6. Postgres monitoring cheatsheet Postgres monitoring cheatsheet
    1
    psql -h localhost <dbname> <tablename>
    2
    
                  
    3
    SELECT pid, relname FROM pg_locks l JOIN pg_class t ON l.relation = t.oid AND t.relkind = 'r' WHERE t.relname = <tableName>;
    4
    
                  
    5
    SELECT grantee, privilege_type FROM information_schema.role_table_grants WHERE table_name=<tableName>