← Back to notebook index

Notebook Topic

Career Learning

English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.

What this topic covers

Execution checklist

iOS implementation notes

Android implementation notes

Code examples

Swift

// Example: monthly learning goals tracked in-code
struct LearningGoal { let topic: String; let shippedFeature: String }
let goals = [LearningGoal(topic:"Concurrency", shippedFeature:"Offline sync")]

Kotlin

data class LearningGoal(val topic: String, val shippedFeature: String)
val goals = listOf(LearningGoal("Testing", "Checkout flow tests"))

Reference links

Related topics