This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# interactive command | |
gpg2 --full-generate-key | |
# get keyID | |
gpg2 --list-secret-keys --keyid-format=long | |
att .gitconfig with KEYID | |
`git config --global user.signingkey 3AA5C34371567BD2` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Sqrt do | |
def sqrtiter(guess, x) do | |
if (goodenought?(guess, x)) do | |
guess | |
else | |
guess | |
|> improve(x) | |
|> sqrtiter(x) | |
end |
NewerOlder