Skip to content
View dragneelfps's full-sized avatar
💻
Developer @ Expedia
💻
Developer @ Expedia
Block or Report

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.

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
dragneelfps/README.md
val dragneelfps = developer {
    about {
        name = "Sourabh"
        company = "Uber"
        role = "Software Developer 2"
        description = "Building Places Platform"
    }
    tech("Kotlin", "Scala", "Spark", "Spring", "Aws")
    links {
        linkedin = "https://www.linkedin.com/in/sourabhsrawat/"
    }
}

Pinned

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

    RealWorld Kotlin Ktor Backend

    Kotlin 180 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 8 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 ->