Today I Learn

Today I Learn

Snippets, Tips, Links

27 Aug 2020

Git |> Only Show Modified Files

git ls-files -m Reference: https://stackoverflow.com/questions/10018533/is-it-possible-to-git-status-only-modified-file...
26 Aug 2020

macOS |> Solve macOS No Voice After Sleep

Re-plug in power, and voice will return back. Reference:
26 Aug 2020

SSH |> Covert New Format SSH Private Key to PEM

OpenSSH 6.5 and later support a new, more secure format to encode your private key ssh-keygen -p -m PEM -f ~/.ssh/id_rs...
25 Aug 2020

Cloudflare |> Error 526 Invalid SSL Certificate

Set SSL mode to Full Full (strict) -> Full Reference: https://community.cloudflare.com/t/error-526-invalid-ssl-certi...
22 Jul 2020

CLI |> Exclude Directories in grep

grep -R --exclude-dir={node_modules,dir1,dir2,dir3} 'some pattern' /path/to/search Reference: https://stackover...