web拍手ボタン
✞✞ あなたは 人目のアリス... ✞✞
- 取得 Oracle Japan - Oracle Certified Java Programmer, Silver & Gold 1.8
- 所持 (国) - IT パスポート
その他の取るに足らない資格&試験たち
- 合格 (国) - 情報セキュリティマネジメント試験
- 合格 (国) - 基本情報技術者試験
- 合格 (国) - 応用情報技術者試験
- 合格 (国) - 情報処理安全確保支援士試験 -> 支援士登録申請済(24年8月)
'99s なウェブサイトです。
Pterodactyl テーマ(UserCSS) です。(A pterodactyl theme made by UserCSS)
主な機能:
- 背景画像
- カスタムエディタフォント
- グラフのみやすさ調整 etc...
(Background image: https://search.find47.jp/ja/i/LeA39, Kyoto, Japan, CC-BY 4.0 Author: Suganu0405)
KUNLab製のプラグインマネージャ。 主な機能:
- 依存関係の自動解決
- 依存関係ツリーの構築
- GitHubのリリースからのかんたんインストール
- 高度なプラグイン解決エコシステム
KUNLab製のつよつよPaperLibrary。(A strong library for PaperMC made in Japan)
主な機能(Features):
-
Terminal API
Player player; Terminal term = Terminals.of(player); term.info("Hello, World!"); // => (ChatColor.BLUE) I: Hello, World! term.success("%b, %d = %d", 1 == 1, 1, 1); // => (ChatColor.GREEN) S: Yes, 1 = 1. term.error("No, java doesn't know math."); // => (ChatColor.RED) E: No, java doesn't know math. term.warn("Just like peyang."); // => (ChatColor.YELLOW) W: Just like peyang.
-
インタラクティブシステム
さんぷるこーど (Example Code)
``` Terminal term; Question question = term.getInput().showYNQuestionCancellable("Do you like Sushi?", QuestionAttribute.APPLY_FOR_ALL, QuestionAttribute.CANCELLABLE); /* => =============================================================== Do you like Sushi? 1. はい // Yes 2. いいえ // No 3. キャンセル // Cancel 4. すべてはい // Yes for all (Effect of QuestionAttribute.APPLY_FOR_ALL) 5. すべていいえ // No for all (Effect of QuestionAttribute.APPLY_FOR_ALL) 6. すべてキャンセル // Cancel for all (Effect of QuestionAttribute.APPLY_FOR_ALL) =============================================================== */ QuestionResult result = question.waitAndGetResult(); // Blocking method if (!terminal.test(QuestionAttribute.CANCELLABLE)) terminal.success(result.getRawAnswer()); // Get raw answer else terminal.error("NO, THE PLAYER CANCELLED THIS ACTION.") if (terminal.test(QuestionAttribute.YES_FOR_ALL)) terminal.info("↑ For ALL");
</details>
-
BukkitRunnable 系の記述の省略
new BukkitRunnabpe(() ->{ Terminal.ofConsole().info("Hello, world!") }, myPlugin); // ↓↓↓ Runner.run(() => { Terminal.ofConsole().info("Hello, world!"); });
-
コマンド管理システム
- サブコマンドの提供
- ヘルプの自動生成
- このREADME および このリポジトリは, NYSLライセンス v0.9982で公開されています.