Skip to content

Instantly share code, notes, and snippets.

『to U』 Bank Band with Salyu
https://www.youtube.com/watch?v=6iDgE2a45SI
日文歌詞:
ike no mizu ga kagami mitai ni sora no ao no iro wo maneteru
池の水が鏡みたいに空の蒼の色を真似てる
池塘中的水彷彿鏡子一般,映照著天空那一片蔚藍
package com;
import java.lang.invoke.MethodHandles;
public abstract class TestStatic {
private static Class classInstance = MethodHandles.lookup().lookupClass();
public Class getClassInstance() {
return classInstance;
}
@SansWord
SansWord / brain_fuck_language.README
Last active March 29, 2021 23:20
Brainfuck Hello World! explained
start with an array of unlimited size all intialized to 0and the curser point to 0.
with a input stream and output stream.
>: move cursor to next position
<: move cursor to last position
+: add 1 to current position
-: minus 1 to current position
[: if current position is 0, jump to paired ], otherwise execute next line
]: if current position is non-0, scroll back to paired [, otherwise execute next line
.: output current position to the output stream (usually ASCII encoding)