HX2023-2024 AI, Robotics and Programming Class
1 minute read Published: 2023-09-04Globe Class
1 minute read Published: 2023-06-11WeChat QR Code
1 minute read Published: 2021-10-21Scan with WeChat.
Keep up to date with news.
POC14 Local Native Demo on macOS - from Installation to Syncing
1 minute read Published: 2020-10-31Install Local Native browser extension for Firefox and Chrome
Install Local Native macOS desktop application
Search by query and filter by time range
Syncing Local Native desktop with another mobile device
POC13 rustup - Cargo - IntelliJ Rust Plugin
1 minute read Published: 2020-09-15cargo build
POC12 Mac Settings - Primary Display and Date
1 minute read Published: 2020-09-14POC11 Mac Settings - Show Hidden Files and iTerm2 Panel etc
1 minute read Published: 2020-09-13Finder - Show all filename extensions
Finder - Copy selected path
⌘C
Shell - Paste path
⌘V
Shell - Show hidden files in list view
ls -lart
Finder - Toggle hidden files
⌘⇧.
Vim - Cursor movement
h j k l
iTerm2 - Color presets
Shell - Show current directory
pwd
iTerm2 - Reuse previous session's directory
iTerm2 - Split pane
⌘⇧D
⌘D
iTerm2 - Go to other pane
⌘[
⌘]
iTerm2 - Close pane
⌘W
iTerm2 - Toggle full screen
⌘↵
iTerm2 - Toggle maximize a pane
⌘⇧↵
Shell - Exit
^D
POC10 Git clone localnative Code Repo
1 minute read Published: 2020-09-12# dotfiles
source "$HOME/.homesick/repos/homeshick/homeshick.sh"
homeshick link
mr u
ls
# config git
git config --global user.name "your name"
git config --global user.email "[email protected]"
less .gitconfig
q
vim .gitconfig
:PlugInstall
:q
# clone code repo
mkdir -p repos/localnative
cd repos/localnative
git clone [email protected]:localnative/localnative.git
tree -L 2 localnative
POC9 Brew Install vim ffmpeg etc
1 minute read Published: 2020-09-11brew install vim ffmpeg tig tree htop
ffmpeg -i video.mkv -c copy video.mp4