I hereby claim:
- I am loxygenk on github.
- I am loxygenk (https://keybase.io/loxygenk) on keybase.
- I have a public key ASAJjtzoJ8Hu1WoeYEAmZn1DlGdJ-VqDajbqCOoXeRJP3go
To claim this, I am signing this object:
| case class EvaluationError( | |
| val evaluating: Evaluate, | |
| val reason: String, | |
| val cause: String | |
| ) | |
| trait Evaluate { | |
| def evaluate: Either[EvaluationError, Double] | |
| } |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define 領域展開 malloc | |
| #define 領域.zip free | |
| int main() { | |
| int *hoge = 領域展開(0); | |
| 領域.zip(hoge); | |
| } |
| import json | |
| import os | |
| from datetime import datetime | |
| from PIL import Image, UnidentifiedImageError | |
| def main(): | |
| if not os.path.isfile("settings.json"): |
I hereby claim:
To claim this, I am signing this object:
| import re | |
| from typing import Dict | |
| import requests | |
| # Actor情報のRegex。 | |
| actor_regex = re.compile("【(.*)】(.*)") | |
| # 取得元APIのURL。 | |
| url = "https://mediaarts-db.bunka.go.jp/api/search?fieldId=animation&sort=date&limit=10" |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef int bool; | |
| #define true 1 | |
| #define false 0 | |
| #define min(a, b) (a < b ? a : b) | |
| bool askyn(const char *prompt) { | |
| printf("%s [yn]:", prompt); |