├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── CNAME ├── CODE_OF_CONDUCT.md ├── Dangerfile ├── LICENSE ├── README.md ├── buy_me_a_coffee.png ├── header.png └── helloworld.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | Dangerfile linguist-documentation -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Correia-jpv -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.do 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/CNAME -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/Dangerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/README.md -------------------------------------------------------------------------------- /buy_me_a_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/buy_me_a_coffee.png -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-ios/HEAD/header.png -------------------------------------------------------------------------------- /helloworld.swift: -------------------------------------------------------------------------------- 1 | print("Welcome iOS Developers Code House!") 2 | --------------------------------------------------------------------------------