- meishi キット https://yushakobo.jp/shop/meishi/
- スイッチ、キーキャップつきを選ぶと必要なものが全部そろいます
- なしを選んだ場合、スイッチとキーキャップを自分で選んでください
- はんだごて
- 今後を考えると温度調節機能付きを選びましょう
- 定番は Hakko FX600 https://amzn.to/2XnHGmq です
- コテ台
- 置いたときに転倒したりしない安定しないやつを選びましょう
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
#!/bin/ruby | |
# Based on http://blog.teapla.net/2015/05/5444 | |
TOUCH_FILE = ENV["HOME"] + "/.imeoff" | |
INTERVAL_SEC = 10 | |
if not File.exists?(TOUCH_FILE) or Time.now - File.ctime(TOUCH_FILE) > INTERVAL_SEC | |
system("osascript -e 'tell application \"System Events\" to key code 102'") | |
system("touch #{TOUCH_FILE}") | |
end |