I hereby claim:
- I am inaniwaudon on github.
- I am inaniwaudon (https://keybase.io/inaniwaudon) on keybase.
- I have a public key ASC52qccD2Bg2mHeHAqrEy4TMkhqiUdymvjv--DYHIpIWgo
To claim this, I am signing this object:
| import argparse | |
| def remove_red_command(command, latex_content): | |
| result = [] | |
| i = 0 | |
| n = len(latex_content) | |
| start_token = f"\\{command}{{" | |
| while i < n: |
| from graphviz import Digraph | |
| # editable | |
| transitions = [ | |
| [0, "e", 1], | |
| [1, "a", 2], | |
| [1, "b", 3], | |
| [2, "e", 4], | |
| [3, "e", 4], | |
| [4, "e", 1], |
I hereby claim:
To claim this, I am signing this object:
| const characters = [ | |
| "ふたり", | |
| "廣", | |
| "PA", | |
| "星", | |
| "ぼ", | |
| "リョウ", | |
| "虹", | |
| "喜多", | |
| "ヨヨ", |
| import hashlib | |
| import sys | |
| answer = sys.argv[1] | |
| with open("./myouji.txt") as fp: | |
| myouji = [x.replace("\n", "") for x in fp.readlines()] | |
| with open("./name.txt") as fp: | |
| names = [x.replace("\n", "") for x in fp.readlines()] |
| from PIL import Image, ImageDraw, ImageFont | |
| import argparse | |
| import numpy as np | |
| list = "筑波大学情報学群情報メディア創成学類つくばだいがくじょうほうめでぃあそうせいがくるい" | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("src") | |
| parser.add_argument("-f", "--font", default="FOT-SeuratPro-DB.otf") | |
| args = parser.parse_args() |
| using System; | |
| public class CffOperator | |
| { | |
| private CffTable _table; | |
| public CffOperator(CFFTable table) | |
| { | |
| _table = table; | |
| } |