Code Monkey home page Code Monkey logo

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())

ziad ali's Projects

awesome-ios icon awesome-ios

A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects

designablex icon designablex

This repository holds @IBDesignable files that can be used to extend the Interface Builder and make it easier to customize controls on the Storyboard.

dokan-store icon dokan-store

Free Educational E-Commerce Project for Motoon Mentorship Program Team.

dovve icon dovve

Dovve is an twitter clone which is build with Twitter API. The reason I've started building this application is to share some advance knowledge to junior iOS developer this is not the perfect way to create an app but this is my personal idea! And I hope this app helps you to build something great!

localize-swift icon localize-swift

Swift friendly localization and i18n with in-app language switching

netflixclone icon netflixclone

build the popluar netflix app with code only no using of storyBoard or nibs

quiz-app icon quiz-app

A repository reflecting the progress made on the "How to Build iOS Apps with Swift, TDD & Clean Architecture" YouTube series, by Caio & Mike.

skeletonview icon skeletonview

An elegant way to show users that something is happening and also prepare them to which contents he is waiting

swift-arcade icon swift-arcade

Collection of demos from the Swift Arcade YouTube channel

swift-composable-architecture icon swift-composable-architecture

A library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.

swifterswift icon swifterswift

A handy collection of more than 500 native Swift extensions to boost your productivity.

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.