Today I Learn

Today I Learn

Snippets, Tips, Links

20 Jul 2020

Vim |> How to Disable Fold When Launch Vim

Work: set foldlevelstart=99 Not Work: set foldmethod=syntax set nofoldenable Use za zo zi to fold code. Reference: http...
06 Jun 2020

Redis |> How to Install Redis Cli Only on Your macOS/Linux

On macOS During modern development, we rarely need to install a redis server on Local(Development) machine. On the othe...
01 Jun 2020

Yarn |> Change Yarn Registry

yarn config set registry <YOUR_REGISTRY_URI> -g Example: yarn config set registry https://registry.npmjs.org/ -g ...
01 Jun 2020

MAC |> Install GnuPG on Mac

Got a message when I tried to install NodeJS via asdf. You should install GnuPG to verify the authenticity of the downl...
24 May 2020

SSH |> Setup SSH for GitHub or other similar services

Open your terminal Generate new SSH key ssh-keygen -t rsa -b 4096 -C "your_email@example.com" terminal will p...