Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| ;; An experiment for an SVG toolbar using icons from material.io | |
| ;; | |
| ;; Example usage: (toolbar 48 "black" "white" t t) | |
| ;; Material icons freely available (Apache 2 license) from | |
| ;; - https://material.io/resources/icons/?style=outline | |
| ;; - https://github.com/google/material-design-icons | |
| (require 'xml) (require 'svg) | |
| (defun toobar-item (label icon fg-color bg-color size with-icon with-label) |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| If 2fa is enabled on github switch to ssh instead of https on linux | |
| 1. generate an ssh keypair on your linux box | |
| ssh-keygen -t {rsa|dsa} | |
| 2. add the public key to github: profile - settings - ssh keys | |
| 3. switch from https to ssh | |
| Check your repo remote: |
| (ql:quickload :cffi) | |
| (cffi:load-foreign-library "user32.dll") | |
| (cffi:defctype hwnd :unsigned-int) | |
| (cffi:defcfun ("MessageBoxA" message-box) :int | |
| (wnd hwnd) | |
| (text :string) | |
| (caption :string) |