data class Developer(
val currentlyWorkingAt: String,
val learning: List<String>,
val passionateAbout: List<String>,
val askMeAbout: List<String>,
val challenge: String
)
val ashish = Developer(
currentlyWorkingAt = "Nelkinda Software Craft",
learning = listOf("Spring Boot", "MongoDB"),
passionateAbout = listOf("Clean Code", "TDD", "Software Craftsmanship"),
askMeAbout = listOf("Linux", "Java", "Kotlin", "JavaScript", "Python"),
challenge = "Mastering the art of writing maintainable code"
)|
|
|
|
- π Active contributor to MDN Web Docs
- π Open Source enthusiast with various personal projects
- π» Focused on writing clean, maintainable code
def ashish_facts():
return {
"tea_preference": "Chai > Coffee (Change my mind!)",
"coding_philosophy": "Test-Driven Development is not just a practice, it's a mindset",
"daily_routine": ["Code", "Test", "Refactor", "Repeat"],
"favorite_quote": "Simplicity is the ultimate sophistication"
}


