#!/usr/bin/env kotlin
@file:Suppress("EXPERIMENTAL_API_USAGE")
import kotlinx.coroutines.*
object SoftwareEngineer {
val name = "Hari Srinivasan"
val role = "Software Developer"
val languagesUsed = listOf("Kotlin", "Python", "BASH", "C")
suspend fun sayHi() = coroutineScope {
launch {
delay(500)
println("Thanks for dropping by, hope you find some of my work interesting.")
}
}
fun showStack() {
println("Currently building cool things with: ${languagesUsed.joinToString(", ")}")
}
}
suspend fun main() {
SoftwareEngineer.sayHi()
SoftwareEngineer.showStack()
}
- Chennai, India
-
04:45
(UTC +05:30) - https://orcid.org/0009-0003-7886-8782
- in/hari-srinivasan-b0633a2b8
Highlights
- Pro
Pinned Loading
-
Finger-tracking-gestures
Finger-tracking-gestures PublicA python program which uses OpenCV to track the fingers of a person, and then executes commands if it detects a relevant
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.