No description
Find a file
2026-01-01 18:07:08 +01:00
logo.png initial commit 2025-12-20 01:21:09 -08:00
README.md Update Bluesky Handle in README 2026-01-01 18:07:08 +01:00

fun main() {
    println(AboutMe(
        name = "asojidev",
        preference = mutableListOf(
            "they/them/xe/xem",
            "gay",
            "non-binary masc"
        ),
        occupation = mutableListOf(
            "Hobbyist software developer",
            "UI/UX Designer"
        ),
        groups = mutableListOf(
            "devOS: Sanity Edition [Lead Studio Head]",
            "Tricky Tanuki Studios [owned by devOS: Sanity Edition]",
            "Illumi Engineering"
        ),
        languages = mutableListOf(
            "Kotlin",
            "Java",
            "C#"
        ),
        socials = AboutMe.Socials(
            github = "@asoji",
            bluesky = "@asoji.furry.st",
            mastadon = "@asojidev@nyanya.gay"
        ),
        profilePictureArtist = "@GreenyPika on Twitter"
    ))

    println(Projects(
        projects = mutableListOf(
            Pair("Softer Pastels",  "https://github.com/devOS-Sanity-Edition/SofterPastels"),
            Pair("Yiski",           "https://github.com/devOS-Sanity-Edition/yiski/"),
            Pair("EasyLogPlus",     "https://github.com/asoji/EasyLogPlus"),
            Pair("PopcornCounter",  "https://github.com/asoji/PopcornCounter"),
        )
    ))

    println(PCSpecs(
        link = "https://pcpartpicker.com/list/xTbjb2" // Go here for a more up-to-date PC Part Picker List
    ))


    TODO("Add more to this readme, this is all I could come up with for now :p")
}