Skip to content
View sreekanthsnair's full-sized avatar
:octocat:
:octocat:

Block or report sreekanthsnair

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. egovernments/egov-smartcity-suite egovernments/egov-smartcity-suite Public

    eGov SmartCity eGovernance suite of products aim to improve the internal efficiency, transparency, accountability and the service delivery of Municipal Governments. The solution is freely available…

    Java 77 66

  2. egovernments/egov-rnd egovernments/egov-rnd Public

    eGovernments Research and Development

    Dart 6 15

  3. Activiti/Activiti Activiti/Activiti Public

    Activiti is a light-weight workflow and Business Process Management (BPM) Platform targeted at business people, developers and system admins. Its core is a super-fast and rock-solid BPMN 2 process …

    Java 10.1k 6.9k

  4. hibernate-goodies hibernate-goodies Public

    Collection of API's to support in hibernate development

    Java

  5. Most useful PostgreSQL queries for a... Most useful PostgreSQL queries for analytics
    1
    # Tested in Postgres version 9.4
    2
    
                  
    3
    ### Check postgres connection usage
    4
    ```
    5
    select max_conn,used,res_for_super,max_conn-used-res_for_super res_for_normal 
  6. Most useful git commands Most useful git commands
    1
    #### Revert and push changes to a specific commit 
    2
    ```
    3
    git push -f origin <checksum>:<branch_name>
    4
    ```
    5
    #### Resetting a branch to exactly match the remote branch