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
| // **BlaBla 编程挑战** | |
| // Github提供2种公开的API,一种是REST和另一种是GraphQL。BlaBla编程挑战是利用Github GraphQL以查询GitHub的公共数据 | |
| // 并解析API的JSON响应以回答我们已下出的问题。我们系统中使用了GraphQL,因此拥有GraphQL的知识对我们团队中的移动开发人员是非常重要的。 | |
| // 首先,您可以在以下链接测试Github GraphQL并了解一些实际的例子: | |
| // https://developer.github.com/v4/explorer/ | |
| // 这个指南提供了有关GitHub GraphQL入门的信息: | |
| // https://developer.github.com/v4/guides/ |
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
| #!/bin/zsh | |
| # | |
| # Huntress post-install script for Swif.ai | |
| # | |
| # Requirements: | |
| # 1. Deploy HuntressSystemExtensionProfile.mobileconfig before this script. | |
| # 2. Replace ACCOUNT_KEY and ORGANIZATION_KEY below. | |
| # 3. Run as root through Swif/Munki. | |
| # |
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
| #!/bin/zsh | |
| # | |
| # Huntress post-install script for Swif.ai | |
| # | |
| # Before deploying: | |
| # 1. Replace ACCOUNT_KEY with the 32-character Huntress Account Key. | |
| # 2. Replace ORGANIZATION_KEY with the exact Huntress Organization Key. | |
| # 3. Deploy HuntressSystemExtensionProfile.mobileconfig before this app. | |
| # |
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
| #!/bin/zsh | |
| HUNTRESS_BINARY="/Applications/Huntress.app/Contents/MacOS/Huntress" | |
| # | |
| # Munki installcheck_script semantics: | |
| # | |
| # exit 0 = installation is needed | |
| # exit 1 = application is already correctly installed | |
| # |