- 良いコードの判断が一気にできる場合も、そうでもない場合も存在する。
- 良いコードの第一基準とは:「可読性」
- 読者が読みやすくて、「完全な理解」にかかる時間が短いコードこそいいコード
- コード的に、オーバヘッドが発生しない方が良いコード
- 短いコード != 良いコード:コードを短縮しすぎて見づらくなることも絶対ある(括弧が重ねすぎなど)
- 良いコードの他の条件ともコンフリクトしない
- DI Helper for swift
- Xcode Source Editor Extension
- Mac App Store にある「コード自動生成ツール」 → ローカルの Xcode に設置するだけで依存性注入!
- Stimulate team to be self-organized team
- Become scrum coach and facilitator
- Make team get rid of its own obstacles for scrum sprints
- Have team responsible for their objectives(ScM is not responsible for)
- Support team to have common identity and actions for goals
- Defend dev team when needed
This file contains 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
$ xcode-select -p | |
/Applications/Xcode/Xcode_14.2.app/Contents/Developer | |
$ xcrun simctl list | |
== Device Types == | |
iPhone 4s (com.apple.CoreSimulator.SimDeviceType.iPhone-4s) | |
iPhone 5 (com.apple.CoreSimulator.SimDeviceType.iPhone-5) | |
iPhone 5s (com.apple.CoreSimulator.SimDeviceType.iPhone-5s) | |
iPhone 6 Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus) | |
iPhone 6 (com.apple.CoreSimulator.SimDeviceType.iPhone-6) |
This file contains 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
$ xcode-select -p | |
/Applications/Xcode/Xcode_14.2.app/Contents/Developer | |
$ xcrun simctl list | |
== Device Types == | |
iPhone 4s (com.apple.CoreSimulator.SimDeviceType.iPhone-4s) | |
iPhone 5 (com.apple.CoreSimulator.SimDeviceType.iPhone-5) | |
iPhone 5s (com.apple.CoreSimulator.SimDeviceType.iPhone-5s) | |
iPhone 6 Plus (com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus) | |
iPhone 6 (com.apple.CoreSimulator.SimDeviceType.iPhone-6) |
This file contains 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
https://github.com/bazelbuild/continuous-integration/issues/1431 | |
I found an interesting issue for Xcode 14.2 CI installation on Bazel Org. | |
I can't advise because I really have no idea what exactly they suffer from and I'm too noob... | |
But as a CI maintainer, hope this gist can help whoever is facing the same problem as I did. | |
※ Really useful article written by English speaker would be: https://macops.ca/xcode-14-new-platforms-packaging-format/ | |
Thanks a lot for the information, macops.ca! |