# macOS
### Tips
- Windowを別のSpaceへ移動
- ショートカットはないっぽい
- タイトルバーをホールドしたままSpaceを移動する
- iCloud上のファイル
- `~/Library/Mobile Documents`
- 隠しファイルを表示/非表示
- `command` + `shift` + `.`
[Appleシリコン搭載のMacターミナルでRosettaを使用する方法](https://blog.looseknot.jp/mac/m1mac_terminal_rosetta.html)
`uname -a` でアーキテクチャ確認
Finder > Applications > Terminal.app > Get Info > Open using Rossetta
## Apps
### Obsidian
[Obsidian](https://obsidian.md/)
> A second brain, for you, forever.
> Obsidian is a powerful knowledge base that works on top of
a local folder of plain text Markdown files.
## Disk Cloning with DD
[Disk Cloning with DD](https://pbxbook.com/other/dd_clone.html)
```sh
diskutil list
dd if=source of=destination bs=1m
```
```sh
dd if=/dev/disk6 of=/dev/disk10
```
## Check Port
```sh
lsof -P -i:3000
```