Skip to content
View sankiran's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report sankiran

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. My-Git My-Git Public

    Repo of my personal and academic projects.

    Java

  2. Git commands I've found useful over ... Git commands I've found useful over time
    1
    * `git status` Shows which files are staged, unstaged, tracked
    2
    * `git status -s` Like git status, less detailed, shows the files categorized as added, modified, removed etc.
    3
    * `git add <path_to_file>` Tracks a file
    4
    * `git commit -m “Commit message”` Stages a tracked file 
    5
    * `git log -<number>` Shows the commits for number specified
  3. Useful Android bundletool commands Useful Android bundletool commands
    1
    This page lists out frequently used commands for `bundletool`, predominantly used while dealing with Android App Bundles.
    2
    
                  
    3
    All commands are courtesy of the [Android developer site](https://developer.android.com).
    4
    
                  
    5
    Please refer [here](https://developer.android.com/studio/command-line/bundletool) for an exhaustive list of all `bundletool` commands.
  4. Useful gradle commands Useful gradle commands
    1
    <h3>List of Commands</h3>
    2
    
                  
    3
    * `./gradlew :app:dependencyInsight --dependency <library-name> --configuration releaseRuntimeClasspath`
    4
        Gives the resolved version for the specified library, after analyzing the dependency graph
  5. coding-interview-university coding-interview-university Public

    Forked from jwasham/coding-interview-university

    A complete computer science study plan to become a software engineer.

  6. Giphy/giphy-android-sdk Giphy/giphy-android-sdk Public

    Home of the GIPHY SDK Android example app, along with Android SDK documentation, issue tracking, & release notes.

    Kotlin 105 41