- SSDをMBRで初期化(この手順は不要?)
- EaseUS Partition Master 13.0(EPM)で、もとのディスクをそのままクローン(パーティションごとではなく、ディスクごとクローンする)
- クローン処理には8時間くらいかかった。
- クローンしたSSDを換装して起動。ブートまでは成功するが、ブルースクリーンで起動できない。
- 再起動して、ブートオプションからセーフモードで起動 => 成功
- セーフモードで起動できたので、その後も正しく起動できた。
- 正常に起動完了後、もとのディスクのパーティション構造をEPMで変更。(Cドライブの容量を増やした)
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
#!/bin/bash | |
sudo curl -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64 | |
echo "set permission..." | |
sudo chmod +x /usr/local/bin/gitlab-runner | |
echo "start gitlab-runner..." | |
gitlab-runner start |
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
sudo installer -dumplog -verbose -pkg ./<installer>.pkg -target / |
- JUCE_ARAでARAプラグインを作成しようとすると、 現在のバージョンではビルドエラーがいくつか発生した。それの対処法のメモ。
- JUCE_ARAのREADMEには、ARAブランチがあるという記述があるが、現在それは見つからないので、 developブランチで試した。
- 今回の検証用には、ARA SDK バージョン 1.9.6.001 を使用している。
- これは、以前にARA SDKを申請したユーザー向けに、Celemonyから新バージョン公開の通知が来て、入手できたもの。
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
# 指定したディレクトリ直下にあるaifファイルをmp3に変換 | |
if [ $# -ne 1 ]; then | |
echo "need a directory." | |
echo "usage $0 <target_dir>" | |
exit 1 | |
fi | |
echo "Target Dir : $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
#pragma once | |
#if defined(_MSC_VER) | |
#include <windows.h> | |
#else | |
#include <cstdlib> | |
#include <cwchar> | |
#include <vector> | |
#include <dlfcn.h> | |
#endif |
Chromeの開発者ツールのElementタブで、*
のスタイルに、以下の内容を追加
tab-size: 4 !important;
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
#include <iostream> | |
#include <chrono> | |
#include <thread> | |
#include <cmath> | |
// 行を上書きして更新するサンプル | |
int main() | |
{ | |
std::cout << "Hello" << std::endl; |
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
// https://wandbox.org/permlink/oFiLhUB4zQ73nxTx | |
const kCMajorScale = ["C", "D", "E", "F", "G", "A", "B"]; | |
const kAMinorScale = ["A", "B", "C", "D", "E", "F", "G"]; | |
const ScaleShiftDirection = { | |
kDominant: 0, | |
kSubdominant: 1, | |
} |