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.
Assign a macro to a specific key mapping in your .vimrc file for easy access. For example, map@a maps the macro in register a to the F2 key.
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.