- Mabel Chan, Co-founder, Albert's List
- Artur Meyster, Founder, Breaking into Startups
- Erin Wilson, Co-founder, Talent Engineer, Hirepool.io
- Abbie Isidro, Creative and Marketing Recruiter - Beauty, Aquent
- Noah Wisna, Head of Talent and Operations, 10 x 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Thunder { } | |
class Fire { } | |
protocol Pokemon { | |
typealias PokemonType | |
func attack(move:PokemonType) | |
} | |
struct Pikachu: Pokemon { | |
typealias PokemonType = Thunder |
Based on this blogpost.
To sign Git commits, you need a gpg key. GPG stands for GNU Privacy Guard and is the de facto implementation of the OpenPGP message format. PGP stands for ‘Pretty Good Privacy’ and is a standard to sign and encrypt messages.
Install with Homebrew:
$ brew install gpg
OlderNewer