絵文字 | 文字列 | 意味 |
---|---|---|
🎨 | art | コードのフォーマットや構造にテコ入れ |
🚀 | rocket | パフォーマンスを改善 |
✏️ | pencil2 | ドキュメントを書いた時 |
🚧 | construction | 作業中 |
➕ | heavy_plus_sign | 機能を追加,完成 |
➖ | heavy_minus_sign | 機能を削除 |
🔈 | speaker | ログを追加 |
🔇 | mute | ログを削除 |
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
ソースはこちら: https://github.com/syuchan1005/LanguageHelper |
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
https://github.com/syuchan1005/ItemStackRecipe |
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
/** | |
* Created by syuchan on 2016/07/23. | |
*/ | |
public enum PokemonEnum { | |
BULBASAUR(1, "フシギダネ", "Bulbasaur"), | |
IVYSAUR(2, "フシギソウ", "Ivysaur"), | |
VENUSAUR(3, "フシギバナ", "Venusaur"), | |
CHARMANDER(4, "ヒトカゲ", "Charmander"), | |
CHARMELEON(5, "リザード", "Charmeleon"), | |
CHARIZARD(6, "リザードン", "Charizard"), |
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
import lombok.AllArgsConstructor; | |
import lombok.Builder; | |
import lombok.Getter; | |
import lombok.ToString; | |
import org.bukkit.Bukkit; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; |
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
/* | |
ESP8266のIPのserverPortにリクエストを送信して下さい。 | |
(IPはSerialで出力しています) | |
リクエスト: | |
method: POST | |
URL: <ESP8266'sIP>:<serverPort> | |
Header: { | |
Content-Type: application/json | |
} | |
Body: "{ |
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
[ | |
'https://unpkg.com/[email protected]/lib/codemirror.js', | |
'https://code.jquery.com/jquery-3.3.1.min.js', | |
].forEach(url => { | |
const script = document.createElement('script'); | |
script.src = url; | |
document.head.appendChild(script); | |
}); | |
[ |
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
class Brainfuck { | |
constructor() { | |
this.functions = { | |
incrementPointer: () => { | |
this.ptr += 1; | |
if (this.debug) this.write('>', this.ptr); | |
}, // '>' | |
decrementPointer: () => { | |
this.ptr -= 1; | |
if (this.ptr < 0) this.ptr = 0; |
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
# after starting | |
# run-cmd: sudo chown -R 13001:13001 Hub/ TeamCity/ Upsource/ YouTrack/ | |
version: "3" | |
services: | |
hub-server: | |
image: jetbrains/hub:2018.1.9156 | |
volumes: | |
- ./Hub/data:/opt/hub/data | |
- ./Hub/conf:/opt/hub/conf |
OlderNewer