物理的攻撃 = 細胞を破壊
精神的攻撃 = 危険を感じさせる
= 常時交感神経が優位
= 臓器機能、免疫機能の低下
= 細胞を破壊
いずれにせよ、人の寿命を縮める行為
危険信号の具体例
騒音
侮辱
ビビらせる
; AutoHotKey v2
; {blind} shift同時押し
; sendevent 押しっぱ時貫通防止
; ! alt
; + shift
; ^ ctrl
; vk1d 無変換
; vkbb セミコロン
; vkba コロン
vk1d & i::sendevent "{blind}{up}"
vk1d & j::sendevent "{blind}{left}"
vk1d & k::sendevent "{blind}{down}"
vk1d & l::sendevent "{blind}{right}"
vk1d & u::sendevent "{blind}{home}"
vk1d & o::sendevent "{blind}{end}"
vk1d & h::sendevent "{blind}{pgup}"
vk1d & n::sendevent "{blind}{pgdn}"
vk1d & vkbb::enter
vk1d & p::bs
vk1d & ,::send "!{left}" ; 戻る
vk1d & .::send "!{right}" ; 進む
vk1d & q::escape
vk1d & 8::[
vk1d & 9::]
vk1d & vkba::_
vk1d & m::&
vk1d & 1::reload
; 右手マウス、左手キーボード時
vk1d & c::^c
vk1d & v::^v
vk1d & f::^f
vk1d & s::^s
vk1d & a::^a
vk1d & z::^z
vk1d & e::enter
vk1d & w::bs
; vscode エクスプローラー ctrl 0
vk1d & 0::^0
; 無変換 capslockで shift capslock発動 (大文字)
vk1d & f12::SetCapsLockState !GetKeyState("CapsLock", "T")
; 無変換で英語 無変換+スペースで日本語
vk1d::IME_SET(0)
vk1d & space::IME_SET(1)
IME_SET(setSts) {
hWnd := WinGetID("A") ; アクティブウィンドウのハンドルを取得
DllCall("SendMessage", "UInt", DllCall("imm32.dll\ImmGetDefaultIMEWnd", "UInt", hWnd), "UInt", 0x0283, "Int", 0x006, "Int", setSts)
}
; メモ帳でctrl+Lで行削除
#HotIf WinActive("ahk_exe Notepad.exe")
^l::{
Send "{Home}"
Send "+{End}"
Send "{delete}"
Send "{delete}"
}
#HotIf
[
{// 行複製
"key": "ctrl+b",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{// pageupをカーソル2行上に移動
"key": "pageup",
"command": "cursorMove",
"args": {
"to": "up",
"by": "wrappedLine",
"value": 2,
},
"when": "editorFocus"
},
{// 選択用
"key": "shift+pageup",
"command": "cursorMove",
"args": {
"to": "up",
"by": "wrappedLine",
"value": 2,
"select": true
},
"when": "editorFocus"
},
{// pagedonwをカーソル2行下に移動
"key": "pagedown",
"command": "cursorMove",
"args": {
"to": "down",
"by": "wrappedLine",
"value": 2,
},
"when": "editorFocus"
},
{// 選択用
"key": "shift+pagedown",
"command": "cursorMove",
"args": {
"to": "down",
"by": "wrappedLine",
"value": 2,
"select": true
},
"when": "editorFocus"
},
{// 行削除
"key": "ctrl+l",
"command": "editor.action.deleteLines"
},
{// ファイル内シンボル一覧
"key": "ctrl+o",
"command": "workbench.action.gotoSymbol",
"when": "!accessibilityHelpIsShown && !accessibleViewIsShown"
},
{// シンボル検索 ctrl+Tと同等
"key": "ctrl+f12",
"command": "workbench.action.showAllSymbols"
}
]
| Golden Sun 64 | Mario Builder 64 | Mario vs. Wario Ware |
|---|---|---|
| Minesweeper 64 | Rovertronicのスプラトゥーンハック | Dorriealの幻のドンキーモーション動画 |
| Arena | マリオカート | ドラコ |
|---|---|---|
| ゼロ | ゼロの仲間 | ノコノコはりつけ |
| ネス |
| 緑 vs 赤 | 全レベル一望 Star Road | |
|---|---|---|
| MMD4体 | バスター・ブレイダー カオス・ソルジャー | 美鈴100体 |
| ポケモン | ダイナミック バウンディングボックス |
| PokeRogue | ロックマンエグゼの空想のクロス |
|---|
ドーパミンが出ることランキングTop4
睡眠、食事、せ○○○は殿堂入りのため除外
全ては生存戦略のために育まれた
{
"version": "0.2.0",
"configurations": [
{
"name":"Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/us_pc/sm64.us.f3dex2e.exe",
"cwd":"${workspaceRoot}/build/us_pc/",
"externalConsole": true,
"miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe"
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make DEBUG=1 WINDOWS_CONSOLE=1"
}
]
}
{
"terminal.integrated.defaultProfile.windows": "MSYS2 Bash",
"terminal.integrated.profiles.windows": {
"MSYS2 Bash": {
"path": [
"C:\\msys64\\usr\\bin\\bash.exe"
],
"args": [
"--login"
],
"env": {
"MSYSTEM": "MINGW64",
"CHERE_INVOKING": "1"
}
}
}
}