Skip to content
Avatar
👨‍💻
Focusing
👨‍💻
Focusing

Achievements

Achievements

Highlights

Organizations

@guyo714 @learn-co-students @clublabs @AutoGovOrg
Block or Report

Block or report gtokman

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.

Report abuse

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

Report abuse
gtokman/README.md

Hey there

Gary's Medium Gary's | Twitter Gary's LinkedIN Gary's Apple Music Gary's Medium Gary's Counter

import Foundation

struct Profile: CustomStringConvertible {
    
    let name = "Gary Tokman"
    
    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, objc, uIKit, swiftUI
        case testing, git, fastlane
        case vim, rN, combine
    }
    
    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())

Pinned Loading

  1. Helpful extensions for iOS app development 🚀

    Swift 85 4

  2. SwiftUI Image + ScrollView + Zoom + Drag

    Swift 4 3

  3. An emoji picker view made with SwiftUI.

    Swift 6 1

  4. Project template to start a Node JS app

    Shell 1 1

1,364 contributions in the last year

Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Mon Wed Fri
Activity overview
Contributed to gtokman/ExtensionKit, gtokman/ScrollableImage, gtokman/gtokman and 5 other repositories
Loading

Contribution activity

December 2021

2 contributions in private repositories Dec 1
Loading

Seeing something unexpected? Take a look at the GitHub profile guide.