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
| ARG LATEX_VERSION=latest | |
| FROM tianon/latex:$LATEX_VERSION | |
| USER root | |
| RUN apt-get update && apt-get install -y build-essential curl gnupg && \ | |
| curl -sL https://deb.nodesource.com/setup_10.x | bash - && \ | |
| apt-get install -y nodejs && \ | |
| npm install -g diagrams svg2png --unsafe-perm=true |
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
| import React, { useEffect, useRef } from 'react'; | |
| const drawBox = (canvas, { background } = {}) => new Promise((resolve, reject) => { | |
| const { width, height } = canvas; | |
| const ctx = canvas.getContext('2d'); | |
| if (!ctx) { | |
| return null; | |
| } | |
| const drawBadge = () => { | |
| ctx.font = `${height * 0.6}px sans-serif`; |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am davidkelley on github. | |
| * I am davidkelley (https://keybase.io/davidkelley) on keybase. | |
| * I have a public key ASCeqwL6T8QCUW4srlnKrYts64RlVsHreq-y5SPF4Lw3wAo | |
| To claim this, I am signing this object: |
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
| { | |
| "id": "base1-1", | |
| "urn": "urn:managem:pokemon:base1/1", | |
| "title": "Base Set: Alakazam", | |
| "name": "Alakazam", | |
| "set": { | |
| "id": "base1", | |
| "name": "Base Set", | |
| "reference": "BS" | |
| }, |
OlderNewer