Code Monkey home page Code Monkey logo
let contactInformation = ContactInformation(
    email: "[email protected]",
    phone: "+31 6 57 66 15 07",
    linkedIn: "http://www.linkedin.com/in/adurbalo",
    github: "https://github.com/adurbalo"
)

let skills = Skills(
    programmingLanguages: ["Swift", "Objective-C"],
    platforms: ["iOS"],
    architectures: ["MVC", "MVP+C", "MVVM"],
    scripting: ["Bash", "Ruby", "Python"], // mostly for automatization purposes
    other: ["CI / CD (GitLab, Jenkins, GitHub Actions, Fastlane)",
            "Dependency managers (CocoaPods, SwiftPM)",
            "Project modularization",
            "Shared components development",
            "Release and provisioning activities",
            "Internal and external interviewing",
            "Design patterns",
            "Troubleshooter"]
)

let me = SoftwareEngineer(
    firstName: "Andrii",
    lastName: "Durbalo",
    role: "iOS Software Engineer",
    contactInformation: contactInformation,
    skills: skills,
    location: "Amsterdam, Netherlands 🇳🇱",
    funFact: "Big fan of Dynamo Kyiv and Golden State Warriors, prefer electronic music like drum & bass or so."
)

print("Hi there, my name is \(me.firstName). I'm a \(me.role). Nice to see you here 😉")

//MARK: - TL;DR

struct SoftwareEngineer {
    let firstName: String
    let lastName: String
    let role: String
    let contactInformation: ContactInformation
    let skills: Skills
    let location: String
    let funFact: String
}

struct ContactInformation {
    let email: String
    let phone: String
    let linkedIn: URL
    let github: URL
}

struct Skills {
    let programmingLanguages: [String]
    let platforms: [String]
    let architectures: [String]
    let scripting: [String]
    let other: [String]
}

extension URL: ExpressibleByStringLiteral {
    public init(stringLiteral value: String) {
        self = URL(string: value)!
    }
}

Andrii Durbalo's Projects

buildinfooverlay icon buildinfooverlay

Console application, which can generate build information on application icon

examples icon examples

Examples of OpenRTB request and responses to support the OpenRTB Specification.

jiraconnector icon jiraconnector

Integrate JiraConnector in your project and give ability to testers create JIRA issues from you app just by shaking device.

repo-badges icon repo-badges

:star: Use repo badges (build passing, coverage, etc) in your readme/markdown file to signal code quality in a project.

sourcery icon sourcery

Meta-programming for Swift, stop writing boilerplate code.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.