Felipe Frizeiro

//
// FelipeFrizeiro.swift
// frizeiro.com.br
//
// Desenvolvedor iOS & Android desde 2009.
// Atualmente na ProDoctor Software.
//
import Foundation
// MARK: - Informações
struct FelipeFrizeiro: Developer {
let nome: String = "Felipe Frizeiro"
let cargo: String = "Desenvolvedor iOS & Android"
let experiencia: String = "desde 2009"
// MARK: - Habilidades
let habilidades: [String] = [
"Swift", "Kotlin", "SwiftUI", "Jetpack Compose",
"SQLite", "JSON", "JavaScript", "PHP", "MySQL"
]
// MARK: - Contato
let email: String = "[email protected]"
let linkedIn: URL = URL(string: "https://www.linkedin.com/in/felipefrizeiro/")!
let gitHub: URL = URL(string: "https://github.com/frizeiro")!
// MARK: - Apps Pessoais
let appStorePessoal: URL = URL(string: "https://apps.apple.com/br/developer/felipe-frizeiro/id1175456617")!
let googlePlayPessoal: URL = URL(string: "https://play.google.com/store/apps/dev?id=5522765026710677011")!
let paoDaVida: URL = URL(string: "https://bibliapaodavida.com.br/")!
// MARK: - ProDoctor Software
let currentJob: Bool = true
let siteProDoctor: URL = URL(string: "https://prodoctor.net/")!
let appStoreProDoctor: URL = URL(string: "https://apps.apple.com/br/developer/prodoctor/id638417422")!
let googlePlayProDoctor: URL = URL(string: "https://play.google.com/store/apps/dev?id=8650748698493341921")!
// MARK: - Filosofia
func filosofia() -> String {
"As melhores soluções são as mais simples e eficientes."
}
}
/*
* FelipeFrizeiro.kt
* frizeiro.com.br
*
* Same person, different platform.
* Kotlin for Android, Swift for iOS.
*/
package br.com.frizeiro
import java.net.URL
data class FelipeFrizeiro(
val name: String = "Felipe Frizeiro",
val role: String = "iOS & Android Developer",
val experience: String = "since 2009"
) : Developer {
val skills: List<String> = listOf(
"Swift", "Kotlin", "SwiftUI", "Jetpack Compose",
"SQLite", "JSON", "JavaScript", "PHP", "MySQL"
)
// region Contact
val email: String = "[email protected]"
val gitHub: URL = URL("https://github.com/frizeiro")
// endregion
// region Personal Apps
val breadOfLife: URL = URL("https://bibliapaodavida.com.br/")
// endregion
// region ProDoctor Software
val currentJob: Boolean = true
val proDoctorSite: URL = URL("https://prodoctor.net/")
// endregion
fun philosophy(): String =
"Best solutions are the simplest and most efficient."
}