Giter Site home page Giter Site logo

Hey there

import Foundation

struct Profile: CustomStringConvertible {
    
    let name = "Areg Vardanian"
    
    var description: String {
        """
        \(name)\n
        I am an iOS developer.
        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 testing, git
        case creativity, tolerance, effectiveness
    }
    
    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())

Areg Vardanian 's Projects

gamecarousellist icon gamecarousellist

Game Store App With Carousel List And Custom Grid With Matched Geometry Effects Using SwiftUI

memorize icon memorize

A simple memory card game created with the help of a course from Stanford(CS193P Spring 2021)

partialsheet icon partialsheet

A SwiftUI Partial Sheet fully customizable with dynamic height

scaner icon scaner

Scan Images and Perform Text Recognition in SwiftUI Using VisionKit

todofire icon todofire

A to-do list application that uses the Firebase service to authenticate users.

vknewsfeed icon vknewsfeed

App for displaying VK news feed (VKSDK API). Clean Swift VIP architecture.

wallet icon wallet

SwiftUI Prototyping Wallet App Interactive UI

warfly icon warfly

This is a mini game about air battles based on SpriteKit.

weather icon weather

This app shows the current weather in different cities thanks to the API of openweathermap.org

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.