Skip to content
View ferrytan's full-sized avatar
  • Mekari
  • Jakarta, Indonesia
Block or Report

Block or report ferrytan

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. SkeletonPlaceholderView SkeletonPlaceholderView Public

    A library for creating dynamic skeleton view

    Kotlin 26 2

  2. k-mvp-template k-mvp-template Public

    MVP Template using Kotlin

    Kotlin

  3. CountCollectionAdjacentItems.kt CountCollectionAdjacentItems.kt
    1
    
                  
    2
    val data = List(100_000) { ('a'..'f').random().toString() to 1 }
    3
    val entries = data.map { Entry(it.first, it.second) }
    4
    
                  
    5
    fun main() {
  4. How to take a screenshot of you desi... How to take a screenshot of you desired View, save it to storage (complied with scoped storage) and share the bitmap
    1
    @Suppress("DEPRECATION")
    2
    private fun saveImageToStorage(
    3
        bitmap: Bitmap,
    4
        filename: String = "screenshot.jpg",
    5
        mimeType: String = "image/jpeg",