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

Organizations

@rokokabis
Block or Report

Block or report gigiperih

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. ShimmerConstraintLayout: lifecycle a... ShimmerConstraintLayout: lifecycle aware shimmering constraint layout
    1
    class ShimmerConstraintLayout @JvmOverloads constructor(
    2
        context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
    3
    ) : ConstraintLayout(context, attrs, defStyleAttr) {
    4
        @LayoutRes
    5
        private var layoutRes: Int = 0
  2. (Android Instrumentation Test) Kotli... (Android Instrumentation Test) Kotlin extensions for launching hilt fragment
    1
    inline fun <reified T : Fragment> launchFragmentInHiltContainer(
    2
        fragmentArgs: Bundle? = null,
    3
        @StyleRes themeResId: Int = R.style.Theme_GithubRepo,
    4
        fragmentFactory: FragmentFactory? = null,
    5
        crossinline action: Fragment.() -> Unit = {}
  3. Dockerize: production ready next-js ... Dockerize: production ready next-js app (turborepo, watchtower, shoutrrr, nginx, ssl)
    1
    #
    2
    # EXAMPLE OF MULTISTAGE BUILD FOR MONOREPOS
    3
    #
    4
    # @link https://github.com/belgattitude/nextjs-monorepo-example
    5
    #
  4. CacheControl for OkHttpClient (to su... CacheControl for OkHttpClient (to support offline mode without persistence data library)
    1
    // assuming provider is inside Hilt-Android Module
    2
    @InstallIn(SingletonComponent::class)
    3
    @Module
    4
    class NetworkModule {
    5
      ...