Skip to content

Instantly share code, notes, and snippets.

FROM node:latest
RUN apt-get update
# ttfautohint
RUN apt-get install -y ttfautohint
# otfcc depends on premake5
WORKDIR /tmp
RUN curl -sLo premake5.tar.gz https://github.com/premake/premake-core/releases/download/v5.0.0-alpha14/premake-5.0.0-alpha14-linux.tar.gz
@astellon
astellon / Doushite.jl
Last active May 29, 2020 03:18 — forked from abap34/Doushite.jl
これは何 -> 今勉強用に作っているkwii名前のDLフレームワークのplot機能の実装です。動きません。どうして...
function plot(to_file = "graph.png")
dot_graph =
"""
digraph graph_name {
hoge -> foo
}
"""
mktempdir() do tmp_dir
dot_file_path = joinpath(tmp_dir, "tmp_graph.dot")