Skip to content
View victory316's full-sized avatar
Block or Report

Block or report victory316

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

Hi there 👋

  • Currently working on Supergene co.
  • 6 years of Android native app development
  • Continuing study on clean architechure and 'comfortable' codes

My Skills

Anurag's GitHub stats

Pinned

  1. LatestEffort LatestEffort Public

    My full package of latest efforts on Android

    Kotlin

  2. AlgorithmStudy AlgorithmStudy Public

    Algorithm, DS, Pattern study using Kotlin & Java

    Kotlin

  3. OOP-Playground OOP-Playground Public

    Object Oriented Programming Playground based on Android.

    Kotlin

  4. Lifecycle aware extensions. Lifecycle aware extensions.
    1
    fun Activity.doOnceOnLifecycle(state: Lifecycle.State, action: () -> Unit) {
    2
        (this as? LifecycleOwner)?.lifecycleScope?.launch {
    3
            when (state) {
    4
                Lifecycle.State.CREATED -> withCreated {
    5
                    action.invoke()