Edit: This list is now maintained in the rust-anthology repo.
| /* | |
| * I add this to html files generated with pandoc. | |
| */ | |
| html { | |
| font-size: 100%; | |
| overflow-y: scroll; | |
| -webkit-text-size-adjust: 100%; | |
| -ms-text-size-adjust: 100%; | |
| } |
| ############################################################### | |
| # Authelia minimal configuration # | |
| ############################################################### | |
| port: 9091 | |
| logs_level: info | |
| jwt_secret: insecure_secret | |
| authentication_backend: | |
| file: | |
| path: /etc/authelia/users.yml | |
| totp: |
The following shell transcript shows how to:
- Create a GPG key
- Create a pass database
- Add git support to the pass database
- Create a remote git repository
- Push the pass database to the remote git repository
- Fetch and display your passwords from another host
It is assumed that the pass package has been installed on both the first and second computers.
by Danny Quah, Aug 2020 (revised Jan 2022)
TL;DR: I write technical articles in LaTeX. But shorter, non-technical writings are easier to do in Markdown. How do I produce PDF from Markdown documents? Answer: provide YAML information in the Markdown; run Pandoc (typically through a Makefile or Atom's Markdown Preview Enhanced). To make all this work, some adjustment is needed in Pandoc options and template files.
Pandoc is a filter that takes a written document in a particular format, and produces a version of that same document in yet a different format. I use Pandoc primarily to transform Markdown documents to PDF, but I also draw on Pandoc to convert Word or ODT documents to Markdown. And vice versa.
Available official Pandoc documentation is voluminous. So as a matter of logic the knowledge to generate PDF from Markdown, to the user's desired degree of control, is already extant, out there somewhere. But a user j
Sample script that allows you to define as environment variables the name of the docker secret that contains the secret value. It will be in charge of analyze all the environment variables searching for the placeholder to substitute the variable value by the secret.
You can define the next environment variables:
| version: "3.3" | |
| services: | |
| authelia: | |
| image: authelia/authelia:4.20.0 | |
| volumes: | |
| - /home/username/authelia:/config | |
| networks: | |
| - traefik-public | |
| deploy: | |
| placement: |
| version: '3.7' | |
| services: | |
| traefik: | |
| image: traefik:v2.2 | |
| container_name: traefik | |
| labels: | |
| - 'traefik.enable=true' | |
| # TODO: Change the Domain | |
| - 'traefik.http.routers.api.rule=Host(`traefik.example.com`)' | |
| - 'traefik.http.routers.api.entrypoints=https' |
| For each pixel on the screen do: | |
| { | |
| x0 = scaled x co-ordinate of pixel (must be scaled to lie somewhere in the interval (-2.5 to 1) | |
| y0 = scaled y co-ordinate of pixel (must be scaled to lie somewhere in the interval (-1, 1) | |
| ESCAPE = 2*2 | |
| x = 0 | |
| y = 0 | |
| iteration = 0 |