- (Apple ID でログインする)
- トラックパッド
- "システム環境設定"を開く
- トラックパッド
- ポイントとクリック
- "タップでクリック" を有効化
- "サイレントクリック" を有効化
- そのほかのジェスチャ
- "アプリケーション Exposé" を有効化
- ポイントとクリック
- トラックパッド
- "システム環境設定"を開く
- アクセシビリティ
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/sh | |
| ## usase: $ sh ./find-xib-use-autolayout.sh <path_to_search_directoty> | |
| path_to_search_directoty="$1" | |
| cd "$path_to_search_directoty" | |
| function document_uses_autolayout () { | |
| # $1: file path | |
| matched_text=`grep -H -i -e 'useAutolayout="YES"' -e 'key="IBDocument.UseAutolayout">YES' "$1"` |
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
| //: Playground - noun: a place where people can play | |
| import Foundation | |
| var testCases: [(input: String, expectedOutput: String)] = [] | |
| func addTestCase(_ input: String, _ expectedOutput: String) { | |
| testCases.append((input, expectedOutput)) | |
| } |
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
| import Foundation | |
| struct TestCase: CustomStringConvertible { | |
| var input: String | |
| var expectedOutput: String | |
| var description: String { | |
| return String("input: \(self.input), expected output: \(self.expectedOutput)\n") | |
| } |
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
| // 横浜へなちょこプログラミング勉強会 | Doorkeeper | |
| // https://yhpg.doorkeeper.jp/ | |
| import Foundation | |
| var test_count = 0 | |
| var ok_count = 0 | |
| var ng_count = 0 | |
| func solve(input: String) -> String { |
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
| // 横浜へなちょこプログラミング勉強会 | Doorkeeper | |
| // https://yhpg.doorkeeper.jp/ | |
| // | |
| // アンエスケープ 2018.12.8 | |
| // http://nabetani.sakura.ne.jp/hena/orde29unes/ | |
| import Foundation | |
| var tested_count = 0 | |
| var ok_count = 0 | |
| var ng_count = 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
| #Include IME.ahk | |
| CapsLock::Ctrl | |
| LWin::LCtrl | |
| RWin::RCtrl | |
| /* | |
| ;;;;;;;; Inspired by https://github.com/karakaram/alt-ime-ahk | |
| */ | |
| ; 主要なキーを HotKey に設定し、何もせずパススルーする |
- Configure dotfiles
- Install homebrew
- Install Nerd Fonts
- Install Starship
- Set installed Nerd Fonts in Terminal
...
- setup macOS 12 Monterey
- setup macOS 13 Ventura 👇
- Configure dotfiles
- Install homebrew
- Install Nerd Fonts
- Install Starship
- Set installed Nerd Fonts in Terminal
OlderNewer