-
ILSpyを使う。
-
使い方は直感的にわかるレベル。検索すれば日本語の解説も多分みつかる。
-
KCRDB.csprojとかソースコードやリソースファイル一式が手に入る。そのままVSで開けるのでコードの解析はかなり楽。
-
スレ見た感じ修正しないとコンパイルは通らないらしいけど、改修が目的じゃないので無視。必要になったら調べる。
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
/isort condition armourychest spiritbond des | |
/isort condition armourychest materia des | |
/isort condition armourychest hq des | |
/isort condition armourychest id des | |
/isort condition armourychest itemlevel des | |
/isort condition armourychest level des | |
/isort execute armourychest | |
/isort condition inventory spiritbond des | |
/isort condition inventory itemlevel des | |
/isort condition inventory stack des |
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
/setblock 0 64 0 mob_spawner 0 replace {EntityId:FallingSand,SpawnData:{Block:anvil,Time:200,DropItem:0},SpawnCount:10,Delay:1,MinSpawnDelay:1} |
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
import java.util.Optional; | |
public class Sample { | |
static final Sample instance = new Sample(); | |
Optional<Any1> get() { | |
return Optional.of(new Any1()); | |
} |
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
F.Option<Value> valueOrNull = findOptionValue(); | |
// valueがあったら更新して返す | |
for (Value val : valueOrNull) { | |
val.update(); | |
return val; | |
} | |
// valueがなかったらあたらしく作って初期化して保存して返す | |
Value newValue = new Value(); |
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
import java.util.Arrays; | |
import java.util.Optional; | |
import java.util.function.Consumer; | |
public class LambdaTest { | |
final static Consumer<String> staticField = o -> {}; | |
final Consumer<Integer> instancefield = o -> {}; | |
LambdaTest() { | |
final Consumer<Long> constructorLocal = o -> {}; |
備忘録
ちょうど認証制限で垢追加できなくてこまってたので。
元ネタ
こっちも参考になった
forge付属のeclipseフォルダーをワークスペースとしない感じでの環境作成手順簡易版。 eclipse/.metadataに最低限のワークスペースの情報はあるのだが、古い情報が更新されないまま残っており、現在は不要なjarsなどのリンクフォルダーの情報が残ったままになっている問題がある。消してしまえば問題ないが、このままだとワークスペースを内部にもったプロジェクトになるので、あまりおすすめできない。より一般的な、ワークスペース以下にプロジェクトが存在する形の構成を知るためにも、1からワークスペースを作成することをおすすめする。
ソラで書いてるからおかしいところはあるかもしれない。いつかちゃんとまとめるためのメモ。
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
package bbop; | |
import java.util.List; | |
import java.util.Random; | |
import com.google.common.collect.Lists; | |
public class BBOP | |
{ | |
static final String[] RANDOM_WORDS = { "ビ", "ビ", "ド", "レ", "ド", "オ", "ペ", "レ", "ショ" }; |
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
diff --git a/Rakefile b/Rakefile | |
index c2f2a78..f9188c8 100644 | |
--- a/Rakefile | |
+++ b/Rakefile | |
@@ -22,9 +22,10 @@ blog_index_dir = 'source' # directory for your blog's index page (if you put | |
deploy_dir = "_deploy" # deploy directory (for Github pages deployment) | |
stash_dir = "_stash" # directory to stash posts for speedy generation | |
posts_dir = "_posts" # directory for blog files | |
+posts_images_dir= "images/posts" | |
themes_dir = ".themes" # directory for blog files |
NewerOlder