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
from struct import unpack | |
from scipy.io import wavfile | |
import scipy.io | |
import numpy as np | |
import os, sys | |
import glob | |
threshold = 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
1. 入力系 | |
Ctrl2Cap https://docs.microsoft.com/en-us/sysinternals/downloads/ctrl2cap | |
英字キーボード/Ctrl+Space切替 https://enjoypclife.net/2016/10/17/windows-10-us-keyboard-layout-japan-tips/ | |
再起動 | |
2. Chocolatey | |
choco install ConEmu git GoogleJapaneseInput rapidee slack SourceTree GoogleChrome winscp vlc foobar2000 audacity 7zip everything vscode zoom discord -y | |
必要に応じて ninite | |
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
#include <array> | |
template <typename T, typename ...Args> | |
inline std::array<T, sizeof...(Args)> make_array(Args &&...args) { | |
return std::array<T, sizeof...(Args)>{ std::forward<Args>(args)... }; | |
} | |
#define MAKE_ARRAY(T, ...) decltype(make_array<T>(__VA_ARGS__)){__VA_ARGS__} | |
#include <typeinfo> |