Skip to content
View anishpateluk's full-sized avatar
  • Super Awesome
  • United Kingdom
Block or Report

Block or report anishpateluk

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. nestjs-serverless-starter nestjs-serverless-starter Public archive

    starter kit using nestjs with serverless

    TypeScript 1

  2. docker-101 docker-101 Public archive

    a hands on guide to using docker

    JavaScript

  3. Useful PostgreSQL Queries and Commands Useful PostgreSQL Queries and Commands
    1
    -- show running queries (pre 9.2)
    2
    SELECT procpid, age(clock_timestamp(), query_start), usename, current_query 
    3
    FROM pg_stat_activity 
    4
    WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' 
    5
    ORDER BY query_start desc;