Skip to content

Commit

Permalink
feat(skills): Add MCFunction language, update iconUrl for Kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre.roy committed Aug 21, 2024
1 parent 7ac21c0 commit 1c77778
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/jsMain/kotlin/io/github/ayfri/pages/Skills.kt
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ val skills = listOf(
Kotlin is a static type, object-oriented programing (OOP) language that is interoperable with the Java virtual machine, Java libraries and Android.
Kotlin saves time for developers as the less verbose language provides briefer and less redundant code. It can be compiled into JavaScript or an LLVM encoder.
""".trimIndent(),
iconUrl = localImage("Kotlin Logo.svg"),
iconUrl = devIcon("kotlin"),
schoolProjects = listOf(
"Ayfri/Artificial-Infiltration",
"Ayfri/MongoDB-ReplicaSet",
Expand All @@ -319,6 +319,17 @@ val skills = listOf(
"B-One-Ynov/Extranet-Ynov",
)
),
Language(
name = "MCFunction",
since = 2017,
learnedFor = "Runnin more efficiently Minecraft commands.",
nowUsing = "Create fully-fledged Minecraft datapacks.",
level = 5,
description = """
Functions are data pack files, allowing players to run lists of commands.
""".trimIndent(),
iconUrl = localImage("minecraft-new.png"),
),
Language(
name = "PHP",
since = 2022,
Expand Down

0 comments on commit 1c77778

Please sign in to comment.