Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/x86-39/x86-39
README bio
https://github.com/x86-39/x86-39
Last synced: about 4 hours ago
JSON representation
README bio
- Host: GitHub
- URL: https://github.com/x86-39/x86-39
- Owner: x86-39
- Created: 2022-01-20T14:14:05.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T00:26:15.000Z (12 days ago)
- Last Synced: 2024-11-08T10:54:55.517Z (11 days ago)
- Language: Kotlin
- Size: 6.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```kotlin
object Me {
val names = arrayOf(
"Emilia", "Jasmine")val pronouns = arrayOf(
"They/Them", "She/Her")val tz = TimeZone.
getTimeZone("Europe/Amsterdam")fun pronounceGIF(): String {
val pronunciations = arrayOf(
"ΟΙͺf", "Gif", "Jif", "Yif")return pronunciations[Random()
.nextInt(pronunciations.size)]
}
}```