Skip to content
View ziadali22's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report ziadali22

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ziadali22/README.md

Hi there 👋

linkedin

import Foundation

struct Profile: CustomStringConvertible {
    
    let name = "Ziad Ali"
    
    var description: String {
        """
        \(name)\n
        I am a software engineer focused on iOS development.
        Working on teams with project managers, developers, 
        and designers, I have built mobile applications and 
        SDKs focused on excellent user experience and design.
        I am looking to work in a collaborative environment 
        where I can develop products that improve people's lives.\n
        """
    }
    
    enum Skill: String, CaseIterable {
        case swift,  uIKit, swiftUI
        case networking, git, alamofire
    }
    
    func proficient(in skills: [Skill] = Skill.allCases) -> String {
        skills
            .map(\.rawValue)
            .map(\.capitalized)
            .map { "- " + $0 + "\n" }
            .reduce("Skills: \n", +)
    }
}

// Paste into a playground!
let profile = Profile()
print(profile.description)
print(profile.proficient())

Popular repositories Loading

  1. YoutubeClone YoutubeClone Public

    create iOS app like the YouTube app

    Swift 1

  2. Problem-Solving-In-Swift Problem-Solving-In-Swift Public

    Forked from osama10/Problem-Solving-In-Swift

    Programing questions solution in swift

    Swift 1

  3. WeatherTask WeatherTask Public

    Swift 1

  4. Dataset_Api Dataset_Api Public

    Machine learning for dataset

    Jupyter Notebook

  5. Mediapipe_handTracking Mediapipe_handTracking Public

    Jupyter Notebook

  6. Django-Real-Time-Chat Django-Real-Time-Chat Public

    Python