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
| #!/usr/bin/env bash | |
| set -e | |
| echo "🔐 Phase 0: Authorization & prerequisites" | |
| # 1. 打开 App Store,登录 Apple ID | |
| echo "👉 Opening App Store (please login Apple ID)..." | |
| open -a "App Store" | |
| # 2. 提示用户 |
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
| package org.ddth.game; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.nio.ByteBuffer; | |
| import java.nio.ByteOrder; |
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
| <j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"> | |
| <html> | |
| <head> | |
| <title>${project.name}</title> | |
| <style> | |
| body table, td, th, p, h1, h2 { | |
| margin:0; | |
| font:normal normal | |
| 100% Georgia, Serif; | |
| background-color: #ffffff; |