Skip to content
View dragneelfps's full-sized avatar
💻
Developer @ Uber
💻
Developer @ Uber

Block or report dragneelfps

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
dragneelfps/README.md
val dragneelfps = developer {
    about {
        name = "Sourabh"
        company = "Uber"
        role = "Tech Lead"
        description = "Improving Earner Engagmenet on Uber"
    }
    tech("Go", "Kafka", "Presto", "Kotlin", "Scala", "Spark", "Spring", "Aws", "Python", "Android")
    links {
        linkedin = "https://www.linkedin.com/in/sourabhsrawat/"
    }
}

Pinned Loading

  1. realworld-kotlin-ktor realworld-kotlin-ktor Public

    RealWorld Kotlin Ktor Backend

    Kotlin 198 16

  2. ThermalConfigChanger ThermalConfigChanger Public

    Changes thermal config for Pocophone

    Kotlin 2

  3. quickrecyclerviewadapter quickrecyclerviewadapter Public

    Dsl for RecylerView Adapter.

    Kotlin 3

  4. aria2-kt aria2-kt Public

    Kotlin 3

  5. telegram-bot.kt telegram-bot.kt Public

    Multiplatform Telegram Bot Library written in Kotlin

    Kotlin 6 2

  6. Replicating `spring.active.profiles` Replicating `spring.active.profiles`
    1
    fun profileAwareConfig(): Config {
    2
        val logger = LoggerFactory.getLogger("ProfileAwareConfig")
    3
        val profiles = (System.getProperty("ktor.active.profiles") ?: "").split(",")
    4
    
                  
    5
        val combinedConfig = profiles.fold(ConfigFactory.defaultApplication()) { config, profile ->