- https://github.com/rcook/rgpg - interfaces with GPG to avoid interacting with default keyring
- https://github.com/skeeto/enchive - simple CLI encyption tool (see also https://nullprogram.com/blog/2017/03/12/)
- http://manpages.ubuntu.com/manpages/cosmic/man1/gpgme-tool.1.html - a socket API for gpgme
- https://launchpad.net/ubuntu/bionic/amd64/python-gpg - a python API for gpgme (the official one!)
- https://github.com/ueno/ruby-gpgme - a ruby API for gpgme
- https://https.www.google.com.tedunangst.com/flak/post/reop - an encryption tool
This file contains 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
# Cross-platform formatting config | |
# See https://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true |
This file contains 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
# Cross-platform formatting config | |
# See https://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true |
This file contains 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
foo { | |
background: red; | |
bar { | |
background: green; | |
} | |
} |
This file contains 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
foo { | |
background: red; | |
bar { | |
background: green; | |
} | |
} |
This file contains 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
# Cross-platform formatting config | |
# See https://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true |
I ran:
$ raco pkg install lux
Resolving "lux" via http://download.racket-lang.org/releases/6.3/catalog/
Resolving "lux" via http://pkgs.racket-lang.org
Using cached15253002841525300284739 for git://github.com/jeapostrophe/lux
Promoting lux from auto-installed to explicitly installed
$ git clone https://gitlab.com/dustyweb/racktris.git
This file contains 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
type | |
# ... | |
Vector*[T] = object | |
x*, y*: T | |
Animatable* = object of RootObj | |
Ball* = object of Animatable | |
pos*: Vector[float] | |
This file contains 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
type | |
CanDance = concept x | |
dance(x) # `x` is anything that has a `dance` procedure | |
proc doBallet(dancer: CanDance) = | |
# `dancer` can be anything that `CanDance` | |
dance(dancer) | |
# --- |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Number Square</title> | |
<meta name="viewport" content="width=device-width"> |
NewerOlder