Skip to content

Instantly share code, notes, and snippets.

View naninunenoy's full-sized avatar

Nakano Yosuke naninunenoy

  • Tokyo
View GitHub Profile
仕事で使うであろうshellコマンドやshellの設定諸々をおさらいする。
(振り返ればチートシートっぽくつかえるかもしれない)
前提条件
Mac OSでbashを使うケースを想定
(地味にインフラ関連はCentOSなどもふくまれているかも)
a. 設定ファイル
.bash_profile
@decoc
decoc / CompileLocker.cs
Last active February 11, 2023 08:48
This editor utility can lock/unlock unity script compile from menu item. See more https://raspberly.hateblo.jp/entry/InvalidateUnityCompile
using UnityEngine;
using UnityEditor;
/// <summary>
/// This editor utility can lock/unlock unity script compile from menu item.
/// See more https://raspberly.hateblo.jp/entry/InvalidateUnityCompile
/// </summary>
public static class CompileLocker
{
[MenuItem("Compile/Lock", false, 1)]