Skip to content
Avatar
πŸ‘¨β€πŸ’»
Focusing
πŸ‘¨β€πŸ’»
Focusing

Organizations

@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
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 and designer, currently
        working on trycandle.com. We are building finance
        tools with the goal of improving people's lives.\n
        """
    }
    
    enum Skill: String, CaseIterable {
        case figma, framer, finalCut
        case rN, TypeScript, JS
        case swift, objc, uIKit, swiftUI
    }
    
    func proficient(in skills: [Skill] = .allCases) -> String {
        skills
            .lazy
            .map(\.rawValue)
            .map(\.capitalized)
            .map { "- " + $0 + "\n" }
            .reduce("Skills: \n", +)
    }
}

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

Pinned

  1. Single source of truth

    TypeScript 12

  2. πŸ“ˆ Beautiful, high-performance Graphs and Charts for React Native

    TypeScript 1.1k 44

  3. Helpful extensions for iOS app development πŸš€

    Swift 110 8

  4. A little (horizontal) animated slider component for React Native.

    TypeScript 11

1,866 contributions in the last year

Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Mon Wed Fri
Activity overview
Contributed to candlefinance/verdad, candlefinance/slider, gtokman/pagey and 14 other repositories

Contribution activity

December 2022

Reviewed 2 pull requests in 1 repository
52 contributions in private repositories Dec 1 – Dec 5

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