flowchart TD
袱 --> 衣 -->|-1| 示
袱 --> 人
袱 --> 犬
猱 --> 犬
猱 --> 矛 -->|-1| 予
猱 --> 木
猱 <--> 申
犬 --> 犬神
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
FROM nixos/nix:latest AS builder | |
RUN nix-env --install jq | |
COPY . /tmp/build | |
WORKDIR /tmp/build | |
RUN drvpath=$(nix --extra-experimental-features "nix-command flakes" derivation show | jq -r 'to_entries[0] | .key') \ | |
&& echo $drvpath is the path \ | |
&& closure=$(nix-store --query --requisites $drvpath | grep -v -F $drvpath) \ |
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
FROM python:3.9-slim AS base | |
RUN apt-get update && apt-get install -y curl git | |
RUN curl --proto '=https' --tlsv1.2 -fsSL https://static.pantsbuild.org/setup/get-pants.sh | bash | |
FROM base as env_a | |
RUN umask 022 \ | |
&& git clone https://github.com/pantsbuild/example-python example_repo \ | |
&& cd example_repo \ | |
&& git checkout 3de75f5 \ | |
&& PATH=$HOME/bin:$PATH pants package :: |
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
let | |
parseLine = line: | |
let | |
parts = builtins.match "([^[:space:]=#]+)[[:space:]]*=[[:space:]]*(.*)" line; | |
in | |
if (!builtins.isNull parts) && (builtins.length parts) == 2 then | |
{ name = builtins.elemAt parts 0; value = builtins.elemAt parts 1; } | |
else | |
null; | |
in |
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
{ lib, stdenv, fetchurl, ... }: | |
let | |
version = "2.11.0"; | |
platform = stdenv.hostPlatform; | |
archive = | |
if platform.isLinux then | |
{ | |
url = "https://downloads.slack-edge.com/slack-cli/slack_cli_${version}_linux_64-bit.tar.gz"; | |
sha256 = "1sk6hb1m6j327fp8zlnw8bd8sni1wfwgc95wxqaxmr5gcg1fxqks"; | |
} |
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
""" | |
Generate a set of emoji images depicting various points on a hill. | |
Assumes pillow is available | |
https://pypi.org/project/pillow/ | |
Image size is based on the size recommended by Notion | |
""" | |
import math | |
import sys |
OlderNewer