Skip to content
View davidcv-dev's full-sized avatar
🤚
🤚

Block or report davidcv-dev

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

Hi 👋

class AboutMe {
    val name: String = "David"
    val location: String = "Bolivia"
    val introduction: String = "Hello! I am passionate about mobile app development, specializing in creating efficient and engaging solutions for Android and iOS. I love exploring new technologies, optimizing app performance, and delivering smooth user experiences."
    
    val skillsAndTechnologies: List<String> = listOf(
        "✅ Native development (Swift, Kotlin)",
        "✅ Cross-platform frameworks (Flutter, KMP)",
        "✅ CI/CD for automation and efficient deployment",
        "✅ UI/UX focused on user experience",
        "✅ API integration and cloud services"
    )

    fun aboutMe() {
        println("👤 Name: $name")
        println("📍 Location: $location")
        println("\n$introduction")
        println("\n💡 Skills & Technologies:")
        skillsAndTechnologies.forEach { println(it) }
        println("\nI am always eager to learn and take on new technological challenges. Let’s connect and talk about mobile innovation! 🚀")
    }
}

fun main() {
    val me = AboutMe()
    me.aboutMe()
}

Popular repositories Loading

  1. DesarrolloWeb DesarrolloWeb Public

    HTML 5 38

  2. davidcv-dev davidcv-dev Public

    3 6

  3. reproductor_exoplayer reproductor_exoplayer Public

    simple reproductor

    Kotlin 2

  4. EstructurasDeDatos EstructurasDeDatos Public

    algoritmos de ordenamiento, busqueda y otros

    Java 2

  5. roadmap-retos-programacion roadmap-retos-programacion Public

    Forked from mouredev/roadmap-retos-programacion

    Ruta de estudio basada en ejercicios de código semanales en 2024 de la comunidad MoureDev para aprender y practicar lógica usando cualquier lenguaje de programación.

    Python 1

  6. Implementing_MVVM Implementing_MVVM Public

    implementando MVVM

    Kotlin