Date and time note was created$= dv.current().file.ctime
Date and time note was modified$= dv.current().file.mtime

Related : Computer Networks, Github SSH
Q. What the hell is SSH? See SSH.

Steps to create SSH key :

  1. First we need to check if we have a SSH key already generated for the system/local machine,we want to get authenticated or not.1

  2. Add the generated ssh public to GitHub using the following steps

    1. Open GitHub settings.
    2. Go to SSH and GPG keys
    3. Click New SSH key or Add SSH key.
    4. Name the SSH key using title
    5. Now on your personal computer get the content of public key you generated cat ~/.ssh/id_ed25519.pub and copy the output.
    6. Paste the content in the blank field provided on GitHub new ssh key area and press add key.
    7. You can test the connection by using the following command.2 ssh -T git@github.com

Further things to explore attaching the hardware key to authenticate to github. Generating a new SSH key for hardware

References::

  1. Generating a new SSH key and adding it to the ssh-agent - GitHub Docs

Foot-notes::

Footnotes

  1. Checking for existing SSH keys - GitHub Docs

  2. Testing your SSH connection - GitHub Docs