Add the function below to your .vimrc config file.
function! Vtip() echomsg system('curl -s -m 3 https://vtip.43z.one') endfunction
In vim type :call Vtip() and hit <Enter> to view a random tip like.
Use :normal followed by a sequence of normal mode commands to execute them on each line in the range. For example, :1,5normal! I// comments out lines 1 to 5 by inserting // at the beginning of each line.
Use Vim's built-in documentation with :help anything if something is unclear.
noremap ,v :call Vtip()<CR>Now just pressing ,v will show a tip.