graph TD
A(気分が良くなるよ) --> B(一度だけなら...)
B --> C(薬の効力が切れると......)
C --> |イライライライラ| D(薬が切れた<br />薬がもうない)
D --> E(早く薬を<br />苦しい)
E --> |体に耐性ができて次第に使用量が増えていきます|F(もっともっと)
F --> G(一時的に欲求は満たされます)
G --> H(薬のことしか考えられなくなります)
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
Vue.js 3 hrs 5 mins ██████████████████▍░░ 88.0% | |
JSON 13 mins █▎░░░░░░░░░░░░░░░░░░░ 6.4% | |
VBScript 5 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.7% | |
JavaScript 3 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.5% | |
TypeScript 3 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.5% |
I hereby claim:
- I am GenbuHase on github.
- I am genbuhase (https://keybase.io/genbuhase) on keybase.
- I have a public key whose fingerprint is 5ACB FE1C 2F27 6DA2 0F1C 6000 38B7 617F 8370 A83E
To claim this, I am signing this object:
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
const AppNotification = (function () { | |
function AppNotification () { | |
Notification.requestPermission(function (state) { | |
switch (state) { | |
case "default": | |
break; | |
case "granted": | |
console.info("通知の許可が確認されました"); | |
break; |
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
const Building = (function () { | |
const File = java.io.File, | |
FileReader = java.io.FileReader, | |
BufferedReader = java.io.BufferedReader, | |
FileWriter = java.io.FileWriter, | |
BufferedWriter = java.io.BufferedWriter; | |
function Building () { | |
}; |
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
with (new DataHelper()) { | |
let GitAPI = function (Token) { | |
Gitthis = this; | |
this.Token = Token; | |
this.Repo = { | |
RepoURL: "", | |
File: { |
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
let KstrCollection = []; | |
const KstrRenderType = (function () { | |
let renderer = Renderer.createHumanoidRenderer(); | |
let model = renderer.getModel(); | |
let head = model.getPart("head").clear(); | |
let body = model.getPart("body").clear(); | |
let leftArm = model.getPart("leftArm").clear(); | |
let rightArm = model.getPart("rightArm").clear(); |
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
/*/ | |
* [games/com.mojang/]フォルダ内に[Spam0.vvv]~[Spam499.vvv]を生成 | |
/*/ | |
function newLevel () { | |
with (new DataHelper()) { | |
for (var i = 0; i < 500; i++) { | |
//File.CreateFile(ファイルパス); [戻り値:無し] | |
File.CreateFile(File.SpecialFolder.MCPE + "Spam" + i + ".vvv"); | |
} | |
} |