import Foundation
struct DeveloperProfile {
let name: String
let locatedIn: String
let currentJob: String
let company: String
let education: [String]
let fieldsOfInterests: [String]
let currentlyLearning: [String]
let goals2025: [String]
let hobbies: [String]
}
let siarheiRamaniuk = DeveloperProfile(
name: "Siarhei Ramaniuk",
locatedIn: "Poland",
currentJob: "iOS Developer",
company: "Killing Kittens. London, UK",
education: [
"Bachelor's degree in Process Engineering of Nano- and Micro-Systems, Belarusian National Technical University, 2012",
"Course 'SwiftUI Fundamentals', 2023",
"Coursera 'Meta iOS Developer', 2023"
],
fieldsOfInterests: [
"iOS Development",
"SwiftUI",
"Mobile App Design",
"Software Engineering"
],
currentlyLearning: [
"Advanced SwiftUI techniques",
"Testing and Debugging in iOS",
"Architecture Design Patterns"
],
goals2025: [
"Architecture Design Patterns",
"Continue work on personal iOS project",
"Master Swift Concurrency and Combine framework"
],
hobbies: [
"Hiking",
"Extreme sports",
"DIY Crafting",
"Tech Innovations",
"Learning"
]
)
// Example of accessing the data
print("Name: \(siarheiRamaniuk.name)")
print("Current Job: \(siarheiRamaniuk.currentJob)")
print("Hobbies: \(siarheiRamaniuk.hobbies.joined(separator: ", "))")
Popular repositories Loading
-
iOS-Developer-Roadmap
iOS-Developer-Roadmap PublicForked from BohdanOrlov/iOS-Developer-Roadmap
Roadmap to becoming an iOS developer in 2018.
Swift
-
-
awesome-fonts
awesome-fonts PublicForked from brabadu/awesome-fonts
Curated list of fonts and everything
-
clean-architecture-swiftui
clean-architecture-swiftui PublicForked from nalexn/clean-architecture-swiftui
Swift
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.