- I’m currently learning about low-level system design.
- I’m looking for help with learning more about Objective-C and C++ development. Looking for communities to join for iOS, macOS, and kernel-level development.
- Looking for cool opportunities to build something awesome. I'm not about that HomeLab life, but I do want to prevent society from using excessively more power than we need to. (Limited resources, environmentalism, and all that.)
- Pronouns: he/him, open to they/them
enum PlatformPreference: String {
case Desktop = "Desktop"
case Mobile = "Mobile"
case ALL = "ALL"
}
enum PlatformChooser: String {
case Mac = "Darwin"
case Windows = "NT"
case Linux = "Linux" // 🐧
}
extension String {
func fromBase64() -> String? {
guard let data = Data(base64Encoded: self) else {
return nil
}
return String(data: data, encoding: .utf8)
}
}
enum DevOpsTools {
case AWS, Azure, DigitalOcean, GCP
case Docker, containerd, Colima, Apple/Container
case k8s, k3s
}
struct SoftwareEngineer {
let name = "Austin"
let progammingLanguages = [ "Python", "Java", "Kotlin", "Swift" ] //Learning Objective-C, C, and C++
let developmentPreference:PlatformPreference = .ALL
let platformDevPreference:[PlatformChooser] = [ .Mac, .Linux]
let tools:String = String("WyJWU0NvZGUiLCAiUHVsc2FyIiwgIlplZCIsICJYY29kZSIsICJEb2NrZXIiXQ==").fromBase64()!
// tools = "[\"VSCode\", \"Pulsar\", \"Zed\", \"Xcode\", \"Docker\"]"
let devOpsToolsUsed:DevOpsTools = [.AWS, .Azure, .DigitalOcean, .GCP, .Docker, .Colima]
}
let swe_self = SoftwareEngineer()
print("Hello! I'm \(swe_self.name)!")
print("I'm learning C and C++, focusing on working with Python and Swift currently.")
print("I currently use \(swe_self.tools), and would love to find new tools to use.")