Skip to content

Instantly share code, notes, and snippets.

View o-gh's full-sized avatar
🐢

o-ba o-gh

🐢
View GitHub Profile
@o-gh
o-gh / gist:e84ee1bd55151467804fd57660ce2b85
Last active December 30, 2019 07:34
Windows7のIntelliJ IDEAを日本語化する

Windows7のIntelliJ IDEAを日本語化する

Eclipse用日本語化プラグインのPleiadesを利用してIntelliJ IDEAを日本語化する手順

1.IntelliJ IDEAのDownload

https://www.jetbrains.com/idea/ からwindows用をダウンロードする

2.IntelliJ IDEAのInstall

@o-gh
o-gh / gist:7558c8545c7f0719421a22aad7dd4da0
Last active April 7, 2017 01:52
SSH port forwarding

ssh [host] -l [login_name] -L [local port]:[remote host]:[remote port] -f -N

@o-gh
o-gh / gist:5ac244d2fc5d8002a6e32d0a15c7717d
Last active February 19, 2023 08:12
Windows7のTeraTermでConsolasフォント使用時に日本語を表示する方法

Windows7のTeraTermでConsolasフォント使用時に日本語を表示する方法

1.regedit.exeでFontLinkを設定する

  1. スタートメニューを開き「プログラムとファイルの検索」ボックスに半角で「regedit」と入力し、キーボードの Enterキー を押しレジストリーエディターを起動
  2. レジストリーエディター内で左側ウインドウでHKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > WindowsNT > CurrentVersion > FontLink > SystemLinkに移動
  3. レジストリーエディター内の右側のウインドウで右クリックし「新規」>「複数文字列値」を選択
  4. 設定の名前を「Consolas」にする
  5. 「Consolas」を右クリックして「修正」を選択「値のデータ」に「MEIRYO.TTC,Meiryo UI,128,102」と入力しOKを押す
  6. Windows7を再起動する

Lua言語入門

Hello World

コードを書く

print("hello World!!\")

拡張子は.lua としてファイルを保存

@o-gh
o-gh / gist:8f353f0db0fdd4ccf706fd8b6db0f07c
Last active February 8, 2023 01:21
WindowsでSubversionをGitと連携させて使う方法

WindowsでSubversionをGitと連携させて使う方法

1.Gitの設定

改行コードが変換されないようにする

git config --global core.autoCRLF false

2.Gitリポジトリの作成