Skip to content

Instantly share code, notes, and snippets.

@LucaPanofsky
LucaPanofsky / multiple-ssh-keys-git.adoc
Created November 10, 2023 14:08 — forked from alejandro-martin/multiple-ssh-keys-git.adoc
Configure multiple SSH Keys for Git

Use Multiple SSH Keys for Git host websites (Github, Gitlab)

This is guide about how to configure multiple SSH keys for some Git host websites such as Github, Gitlab, among others.

Creating SSH keys

  1. Create SSH directory:

@LucaPanofsky
LucaPanofsky / core.clj
Created September 2, 2023 17:08
clojure sicp random
(ns learn.core)
;; this recursion cannot be optimized in clojure
(defn sum-integers-recursive [a b]
(if (> a b)
0
(+ a (sum-integers-recursive (+ a 1) b))))
(comment (sum-integers-recursive 1 3))
;; (sum-integers 1 3)