An open API service indexing awesome lists of open source software.

https://github.com/brys0/brys0

Readme uwu
https://github.com/brys0/brys0

Last synced: over 1 year ago
JSON representation

Readme uwu

Awesome Lists containing this project

README

          

# Greetings programmers 🖥️

## Projects 🏗️
- [Shadfin](https://github.com/shadfin) An alternative frontend for Jellyfin Media Server.

## My Statistics
[![Stats](https://github-readme-stats.vercel.app/api?username=brys0&theme=tokyonight)](https://github.com/brys0/github-readme-stats)

## About Me

```kotlin
import java.lang.StringBuilder

fun main() {
val brys = User(name = "Brys", age = 19, occupation = "Developer", nerd = true)
val user = StringBuilder()
user.append("Name: ${brys.name}\n")
user.append("Age: ${brys.age}\n")
user.append("Occupation: ${brys.occupation}\n")
user.append("Nerd: ${brys.nerd}")
println(user)
}
data class User(val name: String, val age: Int, val occupation: String, val nerd: Boolean)
```

```log
Name: Brys
Age: 19
Occupation: Developer
Nerd: true
```