Datasets:
add dataset files
Browse files- awesome-japanese-nlp-classification-dataset.py +87 -0
- test.json +0 -0
- train.json +0 -0
- val.json +2402 -0
awesome-japanese-nlp-classification-dataset.py
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
|
3 |
+
import datasets
|
4 |
+
|
5 |
+
_DESCRIPTION = """\
|
6 |
+
This dataset determines whether a GitHub repository description relates to Japanese natural language processing (NLP). The labels are categorized as "Relevant (1)" and "Not Relevant (0)".
|
7 |
+
"""
|
8 |
+
|
9 |
+
_HOMEPAGE = "https://github.com/taishi-i/awesome-japanese-nlp-resources"
|
10 |
+
_CITATION = ""
|
11 |
+
_LICENSE = "other"
|
12 |
+
|
13 |
+
|
14 |
+
class NagisaStopwordsDataset(datasets.GeneratorBasedBuilder):
|
15 |
+
"""awesome-japanese-nlp-classification-dataset."""
|
16 |
+
|
17 |
+
VERSION = datasets.Version("0.0.1")
|
18 |
+
BUILDER_CONFIGS = [
|
19 |
+
datasets.BuilderConfig(
|
20 |
+
name="awesome-japanese-nlp-classification-dataset",
|
21 |
+
version=VERSION,
|
22 |
+
description=_DESCRIPTION,
|
23 |
+
),
|
24 |
+
]
|
25 |
+
|
26 |
+
def _info(self):
|
27 |
+
features = datasets.Features(
|
28 |
+
{
|
29 |
+
"label": datasets.features.ClassLabel(names=["0", "1"]),
|
30 |
+
"text": datasets.Value("string"),
|
31 |
+
"url": datasets.Value("string"),
|
32 |
+
"created_at": datasets.Value("string"),
|
33 |
+
}
|
34 |
+
)
|
35 |
+
|
36 |
+
return datasets.DatasetInfo(
|
37 |
+
description=_DESCRIPTION,
|
38 |
+
features=features,
|
39 |
+
homepage=_HOMEPAGE,
|
40 |
+
license=_LICENSE,
|
41 |
+
citation=_CITATION,
|
42 |
+
)
|
43 |
+
|
44 |
+
def _split_generators(self, dl_manager):
|
45 |
+
data_url = "https://huggingface.co/datasets/taishi-i/awesome-japanese-nlp-classification-dataset/raw/main"
|
46 |
+
|
47 |
+
return [
|
48 |
+
datasets.SplitGenerator(
|
49 |
+
name=datasets.Split.TRAIN,
|
50 |
+
gen_kwargs={
|
51 |
+
"filepath": dl_manager.download_and_extract(
|
52 |
+
f"{data_url}/train.json"
|
53 |
+
),
|
54 |
+
"split": "train",
|
55 |
+
},
|
56 |
+
),
|
57 |
+
datasets.SplitGenerator(
|
58 |
+
name=datasets.Split.VALIDATION,
|
59 |
+
gen_kwargs={
|
60 |
+
"filepath": dl_manager.download_and_extract(
|
61 |
+
f"{data_url}/val.json"
|
62 |
+
),
|
63 |
+
"split": "val",
|
64 |
+
},
|
65 |
+
),
|
66 |
+
datasets.SplitGenerator(
|
67 |
+
name=datasets.Split.TEST,
|
68 |
+
gen_kwargs={
|
69 |
+
"filepath": dl_manager.download_and_extract(
|
70 |
+
f"{data_url}/test.json"
|
71 |
+
),
|
72 |
+
"split": "test",
|
73 |
+
},
|
74 |
+
),
|
75 |
+
]
|
76 |
+
|
77 |
+
def _generate_examples(self, filepath, split):
|
78 |
+
"""Generates examples."""
|
79 |
+
with open(filepath, "r") as file:
|
80 |
+
data = json.load(file)
|
81 |
+
for id_, row in enumerate(data):
|
82 |
+
yield id_, {
|
83 |
+
"label": row["label"],
|
84 |
+
"text": row["text"],
|
85 |
+
"url": row["url"],
|
86 |
+
"created_at": row["created_at"],
|
87 |
+
}
|
test.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
train.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
val.json
ADDED
@@ -0,0 +1,2402 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"label": 0,
|
4 |
+
"text": "Animator script for SD Web UI",
|
5 |
+
"url": "https://github.com/animator-anon/animator",
|
6 |
+
"created_at": "2022-10-01T06:02:56Z"
|
7 |
+
},
|
8 |
+
{
|
9 |
+
"label": 0,
|
10 |
+
"text": "TOHをyumenoが役職追加等行ったバージョン。",
|
11 |
+
"url": "https://github.com/yumenopai/townofhost_y",
|
12 |
+
"created_at": "2022-10-01T13:25:22Z"
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"label": 0,
|
16 |
+
"text": "Config for monorepo with pnpm + eslint + prettier + husky + lintstaged + commitlint + changesets",
|
17 |
+
"url": "https://github.com/muravjev/configs",
|
18 |
+
"created_at": "2022-10-02T02:29:55Z"
|
19 |
+
},
|
20 |
+
{
|
21 |
+
"label": 0,
|
22 |
+
"text": "Maintain dev.zlog.org",
|
23 |
+
"url": "https://github.com/nextzlog/qxsl",
|
24 |
+
"created_at": "2022-10-02T04:06:45Z"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"label": 0,
|
28 |
+
"text": "Follows https://www.sigbus.info/compilerbook but spits out an ELF / Rui 本ベースで ELF を吐く C コンパイラを作る",
|
29 |
+
"url": "https://github.com/sozysozbot/c_to_elf_compiler",
|
30 |
+
"created_at": "2022-10-02T16:56:19Z"
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"label": 1,
|
34 |
+
"text": "Reproduced package based on Masked Language Model Scoring (ACL2020).",
|
35 |
+
"url": "https://github.com/Ryutaro-A/mlm-scoring-transformers",
|
36 |
+
"created_at": "2022-10-03T05:27:09Z"
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"label": 0,
|
40 |
+
"text": "標準描画等で中間点を多用した時に出てくる点線の表示/非表示を切り替えられるようにする",
|
41 |
+
"url": "https://github.com/nazonosauna/tl_item_cut",
|
42 |
+
"created_at": "2022-10-03T16:33:52Z"
|
43 |
+
},
|
44 |
+
{
|
45 |
+
"label": 0,
|
46 |
+
"text": "A repo for distributed training of language models with Reinforcement Learning via Human Feedback (RLHF)",
|
47 |
+
"url": "https://github.com/carperai/trlx",
|
48 |
+
"created_at": "2022-10-03T19:42:40Z"
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"label": 0,
|
52 |
+
"text": "Easy to handle `[]byte` type in your Go JSON structs",
|
53 |
+
"url": "https://github.com/lestrrat-go/byteslice",
|
54 |
+
"created_at": "2022-10-04T05:52:52Z"
|
55 |
+
},
|
56 |
+
{
|
57 |
+
"label": 0,
|
58 |
+
"text": "The tool that syncs your Splatoon 3's battle/Salmon Run results with stat.ink. ",
|
59 |
+
"url": "https://github.com/issei-m/s3s-docker",
|
60 |
+
"created_at": "2022-10-04T12:27:41Z"
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"label": 0,
|
64 |
+
"text": "✂️ Find unused files, dependencies and exports in your JavaScript and TypeScript projects. Knip it before you ship it!",
|
65 |
+
"url": "https://github.com/webpro/knip",
|
66 |
+
"created_at": "2022-10-04T13:49:30Z"
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"label": 1,
|
70 |
+
"text": "[PyTorch] Show, Attend and Tell for Japanese",
|
71 |
+
"url": "https://github.com/Japanese-Image-Captioning/SAT-for-Japanese",
|
72 |
+
"created_at": "2022-10-04T14:44:34Z"
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"label": 1,
|
76 |
+
"text": "[PyTorch] ClipCap for Japanese",
|
77 |
+
"url": "https://github.com/Japanese-Image-Captioning/ClipCap-for-Japanese",
|
78 |
+
"created_at": "2022-10-04T15:42:18Z"
|
79 |
+
},
|
80 |
+
{
|
81 |
+
"label": 0,
|
82 |
+
"text": "Code for our NeurIPS 2022 paper",
|
83 |
+
"url": "https://github.com/kach/gradient-descent-the-ultimate-optimizer",
|
84 |
+
"created_at": "2022-10-04T17:49:21Z"
|
85 |
+
},
|
86 |
+
{
|
87 |
+
"label": 0,
|
88 |
+
"text": "stable diffusion webui colab",
|
89 |
+
"url": "https://github.com/camenduru/stable-diffusion-webui-colab",
|
90 |
+
"created_at": "2022-10-05T02:45:59Z"
|
91 |
+
},
|
92 |
+
{
|
93 |
+
"label": 0,
|
94 |
+
"text": "simplified version of cmake_example for pybind11 learning.",
|
95 |
+
"url": "https://github.com/atinfinity/tiny_pybind_example",
|
96 |
+
"created_at": "2022-10-05T11:26:12Z"
|
97 |
+
},
|
98 |
+
{
|
99 |
+
"label": 0,
|
100 |
+
"text": "Candidate for RISC-V parser, lexer.",
|
101 |
+
"url": "https://github.com/sardonyx-sard/candidate-riscv-lexer-parser",
|
102 |
+
"created_at": "2022-10-05T11:54:05Z"
|
103 |
+
},
|
104 |
+
{
|
105 |
+
"label": 0,
|
106 |
+
"text": "[WIP] A full-stack todo web app (for learning)",
|
107 |
+
"url": "https://github.com/seanchas116/todoapp",
|
108 |
+
"created_at": "2022-10-05T14:23:30Z"
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"label": 0,
|
112 |
+
"text": "A hardware-accelerated GPU terminal emulator powered by WebGPU, focusing to run in desktops and browsers.",
|
113 |
+
"url": "https://github.com/raphamorim/rio",
|
114 |
+
"created_at": "2022-10-05T15:18:41Z"
|
115 |
+
},
|
116 |
+
{
|
117 |
+
"label": 0,
|
118 |
+
"text": "the AI-native open-source embedding database",
|
119 |
+
"url": "https://github.com/chroma-core/chroma",
|
120 |
+
"created_at": "2022-10-05T17:58:44Z"
|
121 |
+
},
|
122 |
+
{
|
123 |
+
"label": 0,
|
124 |
+
"text": "Samples showcasing the experimental Kotlin Multiplatform Jetpack libraries",
|
125 |
+
"url": "https://github.com/android/kotlin-multiplatform-samples",
|
126 |
+
"created_at": "2022-10-05T18:05:26Z"
|
127 |
+
},
|
128 |
+
{
|
129 |
+
"label": 0,
|
130 |
+
"text": "Text-to-3D & Image-to-3D & Mesh Exportation with NeRF + Diffusion.",
|
131 |
+
"url": "https://github.com/ashawkey/stable-dreamfusion",
|
132 |
+
"created_at": "2022-10-06T06:18:39Z"
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"label": 0,
|
136 |
+
"text": "Heuristics to detect Single Page Apps soft navigations",
|
137 |
+
"url": "https://github.com/wicg/soft-navigations",
|
138 |
+
"created_at": "2022-10-06T07:45:33Z"
|
139 |
+
},
|
140 |
+
{
|
141 |
+
"label": 0,
|
142 |
+
"text": "React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion",
|
143 |
+
"url": "https://github.com/hirotomoyamada/yamada-ui",
|
144 |
+
"created_at": "2022-10-06T13:31:56Z"
|
145 |
+
},
|
146 |
+
{
|
147 |
+
"label": 0,
|
148 |
+
"text": "Tamagotchi P1 emulator for Flipper Zero",
|
149 |
+
"url": "https://github.com/gmman/flipperzero-tamagotch-p1",
|
150 |
+
"created_at": "2022-10-06T22:13:44Z"
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"label": 0,
|
154 |
+
"text": "Fast and flexible reference benchmarks",
|
155 |
+
"url": "https://github.com/stanford-crfm/pubmedgpt",
|
156 |
+
"created_at": "2022-10-07T09:56:09Z"
|
157 |
+
},
|
158 |
+
{
|
159 |
+
"label": 0,
|
160 |
+
"text": "[NeurIPS 2022] DRAGON 🐲: Deep Bidirectional Language-Knowledge Graph Pretraining ",
|
161 |
+
"url": "https://github.com/michiyasunaga/dragon",
|
162 |
+
"created_at": "2022-10-08T00:01:52Z"
|
163 |
+
},
|
164 |
+
{
|
165 |
+
"label": 0,
|
166 |
+
"text": "ユージェネ再現プロジェクト「Aster Connect」用リポジトリ。",
|
167 |
+
"url": "https://github.com/potetiniku/aster-connect",
|
168 |
+
"created_at": "2022-10-08T02:34:34Z"
|
169 |
+
},
|
170 |
+
{
|
171 |
+
"label": 0,
|
172 |
+
"text": "エンジニアのためのお仕事問題集",
|
173 |
+
"url": "https://github.com/kaku3/workbooks",
|
174 |
+
"created_at": "2022-10-08T04:24:55Z"
|
175 |
+
},
|
176 |
+
{
|
177 |
+
"label": 0,
|
178 |
+
"text": "Proc-macro based einsum implementation for rust-ndarray",
|
179 |
+
"url": "https://github.com/termoshtt/einsum-derive",
|
180 |
+
"created_at": "2022-10-08T05:29:02Z"
|
181 |
+
},
|
182 |
+
{
|
183 |
+
"label": 0,
|
184 |
+
"text": "Official repository of Human3.6M 3D WholeBody (H3WB) dataset",
|
185 |
+
"url": "https://github.com/wholebody3d/wholebody3d",
|
186 |
+
"created_at": "2022-10-08T07:57:58Z"
|
187 |
+
},
|
188 |
+
{
|
189 |
+
"label": 0,
|
190 |
+
"text": "Moved to https://github.com/winebarrel/cronplan",
|
191 |
+
"url": "https://github.com/winebarrel/cronparse",
|
192 |
+
"created_at": "2022-10-08T08:13:39Z"
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"label": 0,
|
196 |
+
"text": "WindowInsets utility for compose multiplatform",
|
197 |
+
"url": "https://github.com/mori-atsushi/insetsx",
|
198 |
+
"created_at": "2022-10-08T13:26:58Z"
|
199 |
+
},
|
200 |
+
{
|
201 |
+
"label": 0,
|
202 |
+
"text": "書籍「Pythonで学ぶ画像認識」のコードを配置したリポジトリです",
|
203 |
+
"url": "https://github.com/py-img-recog/python_image_recognition",
|
204 |
+
"created_at": "2022-10-08T22:33:49Z"
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"label": 0,
|
208 |
+
"text": "Mega Drive & ATARI Controller converter for Mega Drive 2 mini/Nintendo SWITCH",
|
209 |
+
"url": "https://github.com/v9938/md2mini2usb",
|
210 |
+
"created_at": "2022-10-09T13:14:27Z"
|
211 |
+
},
|
212 |
+
{
|
213 |
+
"label": 0,
|
214 |
+
"text": "You can use this version to experience how novelai works without a good gpu.",
|
215 |
+
"url": "https://github.com/jingshing/novelai-colab-ver",
|
216 |
+
"created_at": "2022-10-09T13:30:19Z"
|
217 |
+
},
|
218 |
+
{
|
219 |
+
"label": 0,
|
220 |
+
"text": "ゲソタウンの販売状況を表示するiOSウィジェット",
|
221 |
+
"url": "https://github.com/idat50me/splatnet-widget",
|
222 |
+
"created_at": "2022-10-09T17:07:48Z"
|
223 |
+
},
|
224 |
+
{
|
225 |
+
"label": 0,
|
226 |
+
"text": "Rust newtype with guarantees 🇺🇦 🦀",
|
227 |
+
"url": "https://github.com/greyblake/nutype",
|
228 |
+
"created_at": "2022-10-09T20:44:18Z"
|
229 |
+
},
|
230 |
+
{
|
231 |
+
"label": 0,
|
232 |
+
"text": "Phar file support for Emacs archive-mode",
|
233 |
+
"url": "https://github.com/emacs-php/archive-phar.el",
|
234 |
+
"created_at": "2022-10-09T21:05:39Z"
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"label": 0,
|
238 |
+
"text": "Rust bindings to https://github.com/ggerganov/whisper.cpp",
|
239 |
+
"url": "https://github.com/tazz4843/whisper-rs",
|
240 |
+
"created_at": "2022-10-10T02:19:09Z"
|
241 |
+
},
|
242 |
+
{
|
243 |
+
"label": 1,
|
244 |
+
"text": "This repository contains the Japanese–English bilingual chat corpus BPersona-chat published in the paper Chat Translation Error Detection for Assisting Cross-lingual Communications at AACL-IJCNLP 2022's Workshop Eval4NLP 2022.",
|
245 |
+
"url": "https://github.com/cl-tohoku/BPersona-chat",
|
246 |
+
"created_at": "2022-10-10T05:15:09Z"
|
247 |
+
},
|
248 |
+
{
|
249 |
+
"label": 0,
|
250 |
+
"text": "🚀 Develop and run serverless applications on WebAssembly",
|
251 |
+
"url": "https://github.com/vmware-labs/wasm-workers-server",
|
252 |
+
"created_at": "2022-10-10T09:29:34Z"
|
253 |
+
},
|
254 |
+
{
|
255 |
+
"label": 0,
|
256 |
+
"text": "environment monitor",
|
257 |
+
"url": "https://github.com/shapoco/pico-env-mon",
|
258 |
+
"created_at": "2022-10-10T15:08:25Z"
|
259 |
+
},
|
260 |
+
{
|
261 |
+
"label": 0,
|
262 |
+
"text": "This is a very simple fork of https//github.com/IRkernel/IRkernel to provide an rmarkdown (rather than R) jupyter kernel.",
|
263 |
+
"url": "https://github.com/facebookexperimental/recoil",
|
264 |
+
"created_at": "2022-10-11T11:36:31Z"
|
265 |
+
},
|
266 |
+
{
|
267 |
+
"label": 0,
|
268 |
+
"text": "Gh profile thing",
|
269 |
+
"url": "https://github.com/surapunoyousei/firefox-pgo",
|
270 |
+
"created_at": "2022-10-11T14:03:18Z"
|
271 |
+
},
|
272 |
+
{
|
273 |
+
"label": 0,
|
274 |
+
"text": "Easy and accessible container and virtual machine management. A browser interface for LXD",
|
275 |
+
"url": "https://github.com/canonical/lxd-ui",
|
276 |
+
"created_at": "2022-10-11T14:05:30Z"
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"label": 0,
|
280 |
+
"text": "Booru style tag autocompletion for AUTOMATIC1111's Stable Diffusion web UI",
|
281 |
+
"url": "https://github.com/dominikdoom/a1111-sd-webui-tagcomplete",
|
282 |
+
"created_at": "2022-10-11T17:33:14Z"
|
283 |
+
},
|
284 |
+
{
|
285 |
+
"label": 0,
|
286 |
+
"text": "Active Directory data collector for BloodHound written in Rust. 🦀",
|
287 |
+
"url": "https://github.com/opencyber-fr/rusthound",
|
288 |
+
"created_at": "2022-10-12T05:54:35Z"
|
289 |
+
},
|
290 |
+
{
|
291 |
+
"label": 0,
|
292 |
+
"text": "This project provides a GUI for NGINX NAP for violation visibility, false positive management and policy editing",
|
293 |
+
"url": "https://github.com/f5devcentral/sslo-script-tools",
|
294 |
+
"created_at": "2022-10-12T09:43:15Z"
|
295 |
+
},
|
296 |
+
{
|
297 |
+
"label": 0,
|
298 |
+
"text": "Simple, decentralized(atomic) state management for React",
|
299 |
+
"url": "https://github.com/szhsin/reactish-state",
|
300 |
+
"created_at": "2022-10-12T10:17:45Z"
|
301 |
+
},
|
302 |
+
{
|
303 |
+
"label": 0,
|
304 |
+
"text": "Windows API and GUI in safe, idiomatic Rust.",
|
305 |
+
"url": "https://github.com/anatawa12/avataroptimizer",
|
306 |
+
"created_at": "2022-10-13T05:36:59Z"
|
307 |
+
},
|
308 |
+
{
|
309 |
+
"label": 0,
|
310 |
+
"text": "Materials for the Hugging Face Diffusion Models Course",
|
311 |
+
"url": "https://github.com/huggingface/diffusion-models-class",
|
312 |
+
"created_at": "2022-10-13T09:13:48Z"
|
313 |
+
},
|
314 |
+
{
|
315 |
+
"label": 0,
|
316 |
+
"text": "Fencing implementation for Kubernetes",
|
317 |
+
"url": "https://github.com/yosshy/kube-fencing",
|
318 |
+
"created_at": "2022-10-13T11:00:14Z"
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"label": 0,
|
322 |
+
"text": "ECHONET Lite to MQTT bridge.(複数プロパティ更新対応版)",
|
323 |
+
"url": "https://github.com/nana4rider/echonetlite2mqtt",
|
324 |
+
"created_at": "2022-10-13T11:42:56Z"
|
325 |
+
},
|
326 |
+
{
|
327 |
+
"label": 0,
|
328 |
+
"text": "Machikaniaで遊んだサンプルコードを晒すところ(n*´ω`*n)",
|
329 |
+
"url": "https://github.com/layer812/machikania",
|
330 |
+
"created_at": "2022-10-13T16:39:26Z"
|
331 |
+
},
|
332 |
+
{
|
333 |
+
"label": 0,
|
334 |
+
"text": "A transactional, relational-graph-vector database that uses Datalog for query. The hippocampus for AI!",
|
335 |
+
"url": "https://github.com/cozodb/cozo",
|
336 |
+
"created_at": "2022-10-14T09:28:11Z"
|
337 |
+
},
|
338 |
+
{
|
339 |
+
"label": 0,
|
340 |
+
"text": "Debian系(Ubuntu系を含む)向けのアップデートプログラム",
|
341 |
+
"url": "https://github.com/sakurasaki-hiro/pacup",
|
342 |
+
"created_at": "2022-10-14T10:13:44Z"
|
343 |
+
},
|
344 |
+
{
|
345 |
+
"label": 0,
|
346 |
+
"text": "推薦システムを作ってみる (WIP)",
|
347 |
+
"url": "https://github.com/0918nobita/recommendation-system",
|
348 |
+
"created_at": "2022-10-14T16:29:43Z"
|
349 |
+
},
|
350 |
+
{
|
351 |
+
"label": 0,
|
352 |
+
"text": "Complete installer for Automatic1111's infamous Stable Diffusion WebUI",
|
353 |
+
"url": "https://github.com/empiremediascience/a1111-web-ui-installer",
|
354 |
+
"created_at": "2022-10-14T17:06:54Z"
|
355 |
+
},
|
356 |
+
{
|
357 |
+
"label": 0,
|
358 |
+
"text": "otdgen is an open-source tool that generates JavaScript/TypeScript/JSON format test data from an OpenAPI schema file in YAML format.",
|
359 |
+
"url": "https://github.com/tmizuma/openapi-test-data-generator",
|
360 |
+
"created_at": "2022-10-14T17:16:34Z"
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"label": 0,
|
364 |
+
"text": "Documentation for the Person Sensor",
|
365 |
+
"url": "https://github.com/usefulsensors/person_sensor_docs",
|
366 |
+
"created_at": "2022-10-14T21:58:46Z"
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"label": 0,
|
370 |
+
"text": "Simple doc_string eraser for ONNX.",
|
371 |
+
"url": "https://github.com/pinto0309/sde4onnx",
|
372 |
+
"created_at": "2022-10-15T04:52:32Z"
|
373 |
+
},
|
374 |
+
{
|
375 |
+
"label": 0,
|
376 |
+
"text": "ゼロから作るDeep Learning in R",
|
377 |
+
"url": "https://github.com/igjit/deep-learning-from-scratch-r",
|
378 |
+
"created_at": "2022-10-15T09:10:24Z"
|
379 |
+
},
|
380 |
+
{
|
381 |
+
"label": 0,
|
382 |
+
"text": "netcdf4-python: python/numpy interface to the netCDF C library",
|
383 |
+
"url": "https://github.com/btbn/ffmpeg-builds",
|
384 |
+
"created_at": "2022-10-16T11:35:27Z"
|
385 |
+
},
|
386 |
+
{
|
387 |
+
"label": 0,
|
388 |
+
"text": "Cron expression parser for Amazon EventBridge.",
|
389 |
+
"url": "https://github.com/winebarrel/cronplan",
|
390 |
+
"created_at": "2022-10-16T12:44:36Z"
|
391 |
+
},
|
392 |
+
{
|
393 |
+
"label": 0,
|
394 |
+
"text": "D1 dialect for Kysely",
|
395 |
+
"url": "https://github.com/aidenwallis/kysely-d1",
|
396 |
+
"created_at": "2022-10-16T21:01:23Z"
|
397 |
+
},
|
398 |
+
{
|
399 |
+
"label": 0,
|
400 |
+
"text": "a css reset for 2022 and beyond.",
|
401 |
+
"url": "https://github.com/mayank99/reset.css",
|
402 |
+
"created_at": "2022-10-16T21:20:25Z"
|
403 |
+
},
|
404 |
+
{
|
405 |
+
"label": 0,
|
406 |
+
"text": "HTMX, WebAssembly, Rust, ServiceWorkers",
|
407 |
+
"url": "https://github.com/richardanaya/wasm-service",
|
408 |
+
"created_at": "2022-10-16T21:52:04Z"
|
409 |
+
},
|
410 |
+
{
|
411 |
+
"label": 0,
|
412 |
+
"text": "THETA API Specifications",
|
413 |
+
"url": "https://github.com/ricohapi/theta-api-specs",
|
414 |
+
"created_at": "2022-10-17T02:36:12Z"
|
415 |
+
},
|
416 |
+
{
|
417 |
+
"label": 0,
|
418 |
+
"text": "An Open Source Financial Switch to make Payments fast, reliable and affordable",
|
419 |
+
"url": "https://github.com/juspay/hyperswitch",
|
420 |
+
"created_at": "2022-10-17T11:18:28Z"
|
421 |
+
},
|
422 |
+
{
|
423 |
+
"label": 0,
|
424 |
+
"text": "Python Client for Supabase",
|
425 |
+
"url": "https://github.com/rawandahmad698/pychatgpt",
|
426 |
+
"created_at": "2022-10-17T16:58:41Z"
|
427 |
+
},
|
428 |
+
{
|
429 |
+
"label": 0,
|
430 |
+
"text": "A simple notebook demonstrating prompt-based music generation via Mubert API",
|
431 |
+
"url": "https://github.com/mubertai/mubert-text-to-music",
|
432 |
+
"created_at": "2022-10-17T18:42:18Z"
|
433 |
+
},
|
434 |
+
{
|
435 |
+
"label": 0,
|
436 |
+
"text": "🐤 The brain of ai.",
|
437 |
+
"url": "https://github.com/yuderobot/ai",
|
438 |
+
"created_at": "2022-10-18T07:11:30Z"
|
439 |
+
},
|
440 |
+
{
|
441 |
+
"label": 0,
|
442 |
+
"text": "This is a project to convert the source code on Github into a video.",
|
443 |
+
"url": "https://github.com/noricha-vr/source_converter",
|
444 |
+
"created_at": "2022-10-18T11:31:06Z"
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"label": 0,
|
448 |
+
"text": "Visually simulate Git operations in your own repos with a single terminal command.",
|
449 |
+
"url": "https://github.com/initialcommit-com/git-sim",
|
450 |
+
"created_at": "2022-10-18T15:36:17Z"
|
451 |
+
},
|
452 |
+
{
|
453 |
+
"label": 0,
|
454 |
+
"text": "Pure Rust multi-line text handling",
|
455 |
+
"url": "https://github.com/pop-os/cosmic-text",
|
456 |
+
"created_at": "2022-10-18T18:07:53Z"
|
457 |
+
},
|
458 |
+
{
|
459 |
+
"label": 0,
|
460 |
+
"text": "Azure verified modules for Terraform",
|
461 |
+
"url": "https://github.com/azure/enterprise-scale-for-avs",
|
462 |
+
"created_at": "2022-10-18T22:16:39Z"
|
463 |
+
},
|
464 |
+
{
|
465 |
+
"label": 0,
|
466 |
+
"text": "The web extension boilerplate which helps setting up browser extension project quickly using typescript, svelte, jest, webpack, githook, prettier and github actions",
|
467 |
+
"url": "https://github.com/tennana/trpg-clerks",
|
468 |
+
"created_at": "2022-10-19T01:18:14Z"
|
469 |
+
},
|
470 |
+
{
|
471 |
+
"label": 0,
|
472 |
+
"text": "競技プログラミング用のライブラリ",
|
473 |
+
"url": "https://github.com/aktardigrade13/my_kyoupuro_library",
|
474 |
+
"created_at": "2022-10-19T05:11:26Z"
|
475 |
+
},
|
476 |
+
{
|
477 |
+
"label": 0,
|
478 |
+
"text": "DocILE: Document Information Localization and Extraction Benchmark",
|
479 |
+
"url": "https://github.com/rossumai/docile",
|
480 |
+
"created_at": "2022-10-19T13:40:53Z"
|
481 |
+
},
|
482 |
+
{
|
483 |
+
"label": 0,
|
484 |
+
"text": "CLI to build and develop Next.js apps for Cloudflare Pages",
|
485 |
+
"url": "https://github.com/cloudflare/next-on-pages",
|
486 |
+
"created_at": "2022-10-19T15:39:07Z"
|
487 |
+
},
|
488 |
+
{
|
489 |
+
"label": 0,
|
490 |
+
"text": "An open-source framework for training large multimodal models.",
|
491 |
+
"url": "https://github.com/mlfoundations/open_flamingo",
|
492 |
+
"created_at": "2022-10-20T00:32:35Z"
|
493 |
+
},
|
494 |
+
{
|
495 |
+
"label": 0,
|
496 |
+
"text": "State-of-the-art deep learning based audio codec supporting both mono 24 kHz audio and stereo 48 kHz audio.",
|
497 |
+
"url": "https://github.com/facebookresearch/encodec",
|
498 |
+
"created_at": "2022-10-20T12:35:53Z"
|
499 |
+
},
|
500 |
+
{
|
501 |
+
"label": 0,
|
502 |
+
"text": "Tips for studying and working abroad for Japanese students",
|
503 |
+
"url": "https://github.com/kstoneriv3/tips-for-studying-and-working-abroad-ja",
|
504 |
+
"created_at": "2022-10-20T15:28:05Z"
|
505 |
+
},
|
506 |
+
{
|
507 |
+
"label": 0,
|
508 |
+
"text": "Code for 'Why is Winoground Hard? Investigating Failures in Visuolinguistic Compositionality', EMNLP 2022",
|
509 |
+
"url": "https://github.com/ajd12342/why-winoground-hard",
|
510 |
+
"created_at": "2022-10-20T19:14:30Z"
|
511 |
+
},
|
512 |
+
{
|
513 |
+
"label": 0,
|
514 |
+
"text": "Sample projects for the Unity.CharacterController package",
|
515 |
+
"url": "https://github.com/unity-technologies/com.unity.search.extensions",
|
516 |
+
"created_at": "2022-10-20T20:23:07Z"
|
517 |
+
},
|
518 |
+
{
|
519 |
+
"label": 0,
|
520 |
+
"text": "Nature Remo sensor monitor",
|
521 |
+
"url": "https://github.com/ciniml/m5stack-remo-monitor",
|
522 |
+
"created_at": "2022-10-20T22:35:27Z"
|
523 |
+
},
|
524 |
+
{
|
525 |
+
"label": 0,
|
526 |
+
"text": "Who am I?",
|
527 |
+
"url": "https://github.com/hal-art/hal-andr4t",
|
528 |
+
"created_at": "2022-10-21T01:25:29Z"
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"label": 0,
|
532 |
+
"text": "よく使うアルゴリズム、使ったことがあるアルゴリズムをライブラリとして保管(自分用)",
|
533 |
+
"url": "https://github.com/e-taku/my-algorithm-library",
|
534 |
+
"created_at": "2022-10-21T04:44:49Z"
|
535 |
+
},
|
536 |
+
{
|
537 |
+
"label": 0,
|
538 |
+
"text": "convert to scalameta AST in web browser",
|
539 |
+
"url": "https://github.com/xuwei-k/scalameta-ast",
|
540 |
+
"created_at": "2022-10-21T05:42:24Z"
|
541 |
+
},
|
542 |
+
{
|
543 |
+
"label": 0,
|
544 |
+
"text": "A simple implementation of SimCSE",
|
545 |
+
"url": "https://github.com/hpprc/simple-simcse",
|
546 |
+
"created_at": "2022-10-21T06:59:29Z"
|
547 |
+
},
|
548 |
+
{
|
549 |
+
"label": 0,
|
550 |
+
"text": "Singing Voice Conversion via diffusion model",
|
551 |
+
"url": "https://github.com/prophesier/diff-svc",
|
552 |
+
"created_at": "2022-10-22T10:04:00Z"
|
553 |
+
},
|
554 |
+
{
|
555 |
+
"label": 0,
|
556 |
+
"text": "Rehosting of FFMPEG in a consistent way, to ensure downloading with chaiNNer is reliable.",
|
557 |
+
"url": "https://github.com/chainner-org/chainner",
|
558 |
+
"created_at": "2022-10-22T17:31:34Z"
|
559 |
+
},
|
560 |
+
{
|
561 |
+
"label": 0,
|
562 |
+
"text": "3Dライブラリを作る",
|
563 |
+
"url": "https://github.com/neknaj/3d",
|
564 |
+
"created_at": "2022-10-22T23:48:07Z"
|
565 |
+
},
|
566 |
+
{
|
567 |
+
"label": 0,
|
568 |
+
"text": "CLI tool to clear (so delete all objects and versions/delete-markers in) Amazon S3 Bucket. The bucket itself can also be deleted by the option.",
|
569 |
+
"url": "https://github.com/go-to-k/cls3",
|
570 |
+
"created_at": "2022-10-23T13:11:49Z"
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"label": 0,
|
574 |
+
"text": "adjustimerで起動されたことのある動画をツイートする.",
|
575 |
+
"url": "https://github.com/patioglass/tweet_adjustimer_trend",
|
576 |
+
"created_at": "2022-10-23T13:51:13Z"
|
577 |
+
},
|
578 |
+
{
|
579 |
+
"label": 0,
|
580 |
+
"text": "Heavily refactored version of the stable diffusion development repository. Used for the SmirkingFace project.",
|
581 |
+
"url": "https://github.com/smirkingface/stable-diffusion",
|
582 |
+
"created_at": "2022-10-23T16:17:12Z"
|
583 |
+
},
|
584 |
+
{
|
585 |
+
"label": 0,
|
586 |
+
"text": "WSL Images mirror",
|
587 |
+
"url": "https://github.com/desktopecho/t95-h616-malware",
|
588 |
+
"created_at": "2022-10-24T01:36:21Z"
|
589 |
+
},
|
590 |
+
{
|
591 |
+
"label": 0,
|
592 |
+
"text": "Running Ubuntu x noVNC using Docker in a simple way",
|
593 |
+
"url": "https://github.com/atsushisaito/docker-ubuntu-sweb",
|
594 |
+
"created_at": "2022-10-24T02:57:27Z"
|
595 |
+
},
|
596 |
+
{
|
597 |
+
"label": 1,
|
598 |
+
"text": "This repository provides the code for Japanese NLI model, a fine-tuned masked language model.",
|
599 |
+
"url": "https://github.com/CyberAgentAILab/japanese-nli-model",
|
600 |
+
"created_at": "2022-10-24T06:59:08Z"
|
601 |
+
},
|
602 |
+
{
|
603 |
+
"label": 0,
|
604 |
+
"text": "解説動画生成ツール",
|
605 |
+
"url": "https://github.com/windymelt/zmm",
|
606 |
+
"created_at": "2022-10-24T11:11:22Z"
|
607 |
+
},
|
608 |
+
{
|
609 |
+
"label": 0,
|
610 |
+
"text": "A JavaScript library to generate merkle trees and merkle proofs.",
|
611 |
+
"url": "https://github.com/openzeppelin/merkle-tree",
|
612 |
+
"created_at": "2022-10-24T17:08:31Z"
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"label": 0,
|
616 |
+
"text": "Some Gradle plugins written in Groovy may not be compatible with Kotlin DSL",
|
617 |
+
"url": "https://github.com/jmatsu/repro-kotlin-dsl-bug-gradle-plugin-written-in-groovy",
|
618 |
+
"created_at": "2022-10-24T18:08:43Z"
|
619 |
+
},
|
620 |
+
{
|
621 |
+
"label": 0,
|
622 |
+
"text": "株式会社ゆめみ Flutter 研修",
|
623 |
+
"url": "https://github.com/yumemi-inc/flutter-training-template",
|
624 |
+
"created_at": "2022-10-25T01:52:06Z"
|
625 |
+
},
|
626 |
+
{
|
627 |
+
"label": 0,
|
628 |
+
"text": "CH32V003 is an ultra-cheap RISC-V MCU with 2KB SRAM, 16KB flash, and up to 18 GPIOs that sells for under $0.10",
|
629 |
+
"url": "https://github.com/openwch/ch32v003",
|
630 |
+
"created_at": "2022-10-25T02:50:36Z"
|
631 |
+
},
|
632 |
+
{
|
633 |
+
"label": 0,
|
634 |
+
"text": "Laravel Breeze(+Laravel UIとJetstream)を一瞬で日本語化し、言語切替機能も提供するパッケージです / Laravelの各種バリデーションメッセージも日本語化するのでBreeze無しでも便利✨",
|
635 |
+
"url": "https://github.com/askdkc/breezejp",
|
636 |
+
"created_at": "2022-10-25T03:47:09Z"
|
637 |
+
},
|
638 |
+
{
|
639 |
+
"label": 0,
|
640 |
+
"text": "present speech demo of FTTS",
|
641 |
+
"url": "https://github.com/ofa-sys/ofasys",
|
642 |
+
"created_at": "2022-10-25T04:48:44Z"
|
643 |
+
},
|
644 |
+
{
|
645 |
+
"label": 1,
|
646 |
+
"text": "Whisper based Japanese subtitle generator",
|
647 |
+
"url": "https://github.com/Ayanaminn/N46Whisper",
|
648 |
+
"created_at": "2022-10-25T05:25:03Z"
|
649 |
+
},
|
650 |
+
{
|
651 |
+
"label": 0,
|
652 |
+
"text": "GitHub action to check whether all files have a specified copyright license header",
|
653 |
+
"url": "https://github.com/anatawa12/vpmpackageautoinstaller",
|
654 |
+
"created_at": "2022-10-26T00:36:02Z"
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"label": 0,
|
658 |
+
"text": "パッケージの更新を簡単にします",
|
659 |
+
"url": "https://github.com/s1204it/pacup",
|
660 |
+
"created_at": "2022-10-26T08:54:29Z"
|
661 |
+
},
|
662 |
+
{
|
663 |
+
"label": 0,
|
664 |
+
"text": "L2RPN WCCI 2022 2nd winner solution",
|
665 |
+
"url": "https://github.com/alibabaresearch/damo-convai",
|
666 |
+
"created_at": "2022-10-26T09:10:14Z"
|
667 |
+
},
|
668 |
+
{
|
669 |
+
"label": 0,
|
670 |
+
"text": "Android Clean Architecture Sample App (WIP🤪)",
|
671 |
+
"url": "https://github.com/okuzawats/android-clean-architecture",
|
672 |
+
"created_at": "2022-10-26T12:44:48Z"
|
673 |
+
},
|
674 |
+
{
|
675 |
+
"label": 0,
|
676 |
+
"text": "tkgshnがルーティング周りを勉強するかい",
|
677 |
+
"url": "https://github.com/tkgshn/dynamic-routing",
|
678 |
+
"created_at": "2022-10-26T19:42:48Z"
|
679 |
+
},
|
680 |
+
{
|
681 |
+
"label": 0,
|
682 |
+
"text": "Parallel support implementation of \"aggregated residual transformations for deep neural networks\" using keras",
|
683 |
+
"url": "https://github.com/delcos/hentai-diffusion",
|
684 |
+
"created_at": "2022-10-27T05:28:27Z"
|
685 |
+
},
|
686 |
+
{
|
687 |
+
"label": 0,
|
688 |
+
"text": "A mega collection of all resources and news related to Stable Diffusion. Focused around AUTOMATIC1111's webui (https://github.com/AUTOMATIC1111/stable-diffusion-webui)",
|
689 |
+
"url": "https://github.com/questianon/sdupdates",
|
690 |
+
"created_at": "2022-10-27T08:26:53Z"
|
691 |
+
},
|
692 |
+
{
|
693 |
+
"label": 1,
|
694 |
+
"text": "Finetuning Whisper ASR model",
|
695 |
+
"url": "https://github.com/sarulab-speech/whisper-asr-finetune",
|
696 |
+
"created_at": "2022-10-27T11:21:59Z"
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"label": 0,
|
700 |
+
"text": "2d cutting stock problem in ECLiPSe CLP",
|
701 |
+
"url": "https://github.com/koyahatataku/2d-cutting-stock-problem",
|
702 |
+
"created_at": "2022-10-28T00:16:40Z"
|
703 |
+
},
|
704 |
+
{
|
705 |
+
"label": 0,
|
706 |
+
"text": "Rails7 で構築された非Hotwireのアプリを、Hotwire各技術で改良していくリポジトリです。",
|
707 |
+
"url": "https://github.com/everyleaf/hotwire-demo",
|
708 |
+
"created_at": "2022-10-28T00:37:54Z"
|
709 |
+
},
|
710 |
+
{
|
711 |
+
"label": 0,
|
712 |
+
"text": "Extension for AUTOMATIC1111 to add custom backend API for Krita Plugin & more",
|
713 |
+
"url": "https://github.com/interpause/auto-sd-paint-ext",
|
714 |
+
"created_at": "2022-10-28T01:54:07Z"
|
715 |
+
},
|
716 |
+
{
|
717 |
+
"label": 0,
|
718 |
+
"text": "Device Tree Overlays",
|
719 |
+
"url": "https://github.com/m5stack/m5stack-linux-dtoverlays",
|
720 |
+
"created_at": "2022-10-28T03:30:53Z"
|
721 |
+
},
|
722 |
+
{
|
723 |
+
"label": 0,
|
724 |
+
"text": "Benchmarking Vite vs. Next + turbopack HMR performance",
|
725 |
+
"url": "https://github.com/yyx990803/vite-vs-next-turbo-hmr",
|
726 |
+
"created_at": "2022-10-28T08:09:12Z"
|
727 |
+
},
|
728 |
+
{
|
729 |
+
"label": 0,
|
730 |
+
"text": "My Micro-Frontend App",
|
731 |
+
"url": "https://github.com/caburchin/micro-frontend",
|
732 |
+
"created_at": "2022-10-28T14:04:17Z"
|
733 |
+
},
|
734 |
+
{
|
735 |
+
"label": 0,
|
736 |
+
"text": "IETF WG proposal to facilitate the evolution of IETF protocols and associated operational guidance to Post-Quantum Cryptography",
|
737 |
+
"url": "https://github.com/rdanyliw/ietf-pqc-transition",
|
738 |
+
"created_at": "2022-10-28T15:09:16Z"
|
739 |
+
},
|
740 |
+
{
|
741 |
+
"label": 0,
|
742 |
+
"text": "three.jsで遊ぶ",
|
743 |
+
"url": "https://github.com/tetracalibers/three-play",
|
744 |
+
"created_at": "2022-10-29T03:19:56Z"
|
745 |
+
},
|
746 |
+
{
|
747 |
+
"label": 0,
|
748 |
+
"text": "シンプルな構成とサンプルコンテンツを組み込んだ Drupal のインストールプロファイルです。",
|
749 |
+
"url": "https://github.com/bkenro/sqbase",
|
750 |
+
"created_at": "2022-10-29T05:02:58Z"
|
751 |
+
},
|
752 |
+
{
|
753 |
+
"label": 0,
|
754 |
+
"text": "Kiite Cafeのデスクトップ版。",
|
755 |
+
"url": "https://github.com/sevenc-nanashi/kiitecafe-desktop",
|
756 |
+
"created_at": "2022-10-30T02:17:58Z"
|
757 |
+
},
|
758 |
+
{
|
759 |
+
"label": 0,
|
760 |
+
"text": "computer craft's codes for my streaming",
|
761 |
+
"url": "https://github.com/yuniruyuni/yunicraft",
|
762 |
+
"created_at": "2022-10-30T02:24:48Z"
|
763 |
+
},
|
764 |
+
{
|
765 |
+
"label": 0,
|
766 |
+
"text": "Listening and Speaking",
|
767 |
+
"url": "https://github.com/sinproject-inc/talk",
|
768 |
+
"created_at": "2022-10-30T09:16:19Z"
|
769 |
+
},
|
770 |
+
{
|
771 |
+
"label": 0,
|
772 |
+
"text": "IRB with Typed Completion",
|
773 |
+
"url": "https://github.com/tompng/katakata_irb",
|
774 |
+
"created_at": "2022-10-30T15:57:17Z"
|
775 |
+
},
|
776 |
+
{
|
777 |
+
"label": 0,
|
778 |
+
"text": "A CLI tool that automatically writes commit messages for you.",
|
779 |
+
"url": "https://github.com/m1guelpf/auto-commit",
|
780 |
+
"created_at": "2022-10-30T17:09:58Z"
|
781 |
+
},
|
782 |
+
{
|
783 |
+
"label": 0,
|
784 |
+
"text": "Build highly concurrent, distributed, and resilient message-driven applications using Java/Scala",
|
785 |
+
"url": "https://github.com/apache/incubator-pekko",
|
786 |
+
"created_at": "2022-10-31T08:40:39Z"
|
787 |
+
},
|
788 |
+
{
|
789 |
+
"label": 0,
|
790 |
+
"text": "⚡ Automates terminal operations.",
|
791 |
+
"url": "https://github.com/koki-develop/clive",
|
792 |
+
"created_at": "2022-10-31T21:49:17Z"
|
793 |
+
},
|
794 |
+
{
|
795 |
+
"label": 0,
|
796 |
+
"text": "Webpage HTML Export lets you export single files or whole vaults as HTML websites or documents. It is similar to publish, but you get direct access to the exported HTML.",
|
797 |
+
"url": "https://github.com/kosmosisdire/obsidian-webpage-export",
|
798 |
+
"created_at": "2022-10-31T23:44:23Z"
|
799 |
+
},
|
800 |
+
{
|
801 |
+
"label": 0,
|
802 |
+
"text": "Turn Vue Mixins into Composables with a simple wrapper function",
|
803 |
+
"url": "https://github.com/linusborg/vue-mixable",
|
804 |
+
"created_at": "2022-11-01T20:01:58Z"
|
805 |
+
},
|
806 |
+
{
|
807 |
+
"label": 0,
|
808 |
+
"text": "convert pngs to a greyscale c header encoded via x bits brightness and y bits length",
|
809 |
+
"url": "https://github.com/phobgcc/phobgcc-doc",
|
810 |
+
"created_at": "2022-11-01T20:06:11Z"
|
811 |
+
},
|
812 |
+
{
|
813 |
+
"label": 0,
|
814 |
+
"text": "Implementation of aspect ratio bucketing for training generative image models as described in: https://blog.novelai.net/novelai-improvements-on-stable-diffusion-e10d38db82ac",
|
815 |
+
"url": "https://github.com/novelai/novelai-aspect-ratio-bucketing",
|
816 |
+
"created_at": "2022-11-01T20:34:47Z"
|
817 |
+
},
|
818 |
+
{
|
819 |
+
"label": 0,
|
820 |
+
"text": "Config files for my GitHub profile.",
|
821 |
+
"url": "https://github.com/keisukeyamagishi/throttle",
|
822 |
+
"created_at": "2022-11-02T00:40:10Z"
|
823 |
+
},
|
824 |
+
{
|
825 |
+
"label": 0,
|
826 |
+
"text": "LlamaIndex (GPT Index) is a data framework for your LLM applications",
|
827 |
+
"url": "https://github.com/jerryjliu/llama_index",
|
828 |
+
"created_at": "2022-11-02T04:24:54Z"
|
829 |
+
},
|
830 |
+
{
|
831 |
+
"label": 0,
|
832 |
+
"text": "CH559 Flash Utility",
|
833 |
+
"url": "https://github.com/toyoshim/ch559flasher",
|
834 |
+
"created_at": "2022-11-02T15:14:33Z"
|
835 |
+
},
|
836 |
+
{
|
837 |
+
"label": 0,
|
838 |
+
"text": "Tool to run MMD auto trace v3 on Docker",
|
839 |
+
"url": "https://github.com/errno-mmd/mmd-auto-trace-3-docker",
|
840 |
+
"created_at": "2022-11-02T15:27:00Z"
|
841 |
+
},
|
842 |
+
{
|
843 |
+
"label": 0,
|
844 |
+
"text": "Learning audio concepts from natural language supervision",
|
845 |
+
"url": "https://github.com/microsoft/semi-supervised-learning",
|
846 |
+
"created_at": "2022-11-02T17:55:31Z"
|
847 |
+
},
|
848 |
+
{
|
849 |
+
"label": 0,
|
850 |
+
"text": "DjangoCongress JP 2022 の発表資料のサンプルコードです。",
|
851 |
+
"url": "https://github.com/shihono/drf-doc-demo",
|
852 |
+
"created_at": "2022-11-03T04:50:46Z"
|
853 |
+
},
|
854 |
+
{
|
855 |
+
"label": 0,
|
856 |
+
"text": "tiniest x86-64-linux emulator",
|
857 |
+
"url": "https://github.com/jart/blink",
|
858 |
+
"created_at": "2022-11-03T06:07:09Z"
|
859 |
+
},
|
860 |
+
{
|
861 |
+
"label": 0,
|
862 |
+
"text": "[W.I.P] a web extension to insert calil link to Tulips OPAC.",
|
863 |
+
"url": "https://github.com/eniehack/tulips2calil",
|
864 |
+
"created_at": "2022-11-03T14:29:52Z"
|
865 |
+
},
|
866 |
+
{
|
867 |
+
"label": 0,
|
868 |
+
"text": "Shape, Pose, and Appearance from a Single Image via Bootstrapped Radiance Field Inversion",
|
869 |
+
"url": "https://github.com/google-research/nerf-from-image",
|
870 |
+
"created_at": "2022-11-03T14:30:55Z"
|
871 |
+
},
|
872 |
+
{
|
873 |
+
"label": 0,
|
874 |
+
"text": "High Resolution Depth Maps for Stable Diffusion WebUI",
|
875 |
+
"url": "https://github.com/thygate/stable-diffusion-webui-depthmap-script",
|
876 |
+
"created_at": "2022-11-03T17:21:15Z"
|
877 |
+
},
|
878 |
+
{
|
879 |
+
"label": 0,
|
880 |
+
"text": "janky twitter replacement.",
|
881 |
+
"url": "https://github.com/diracdeltas/tweets",
|
882 |
+
"created_at": "2022-11-04T06:13:36Z"
|
883 |
+
},
|
884 |
+
{
|
885 |
+
"label": 0,
|
886 |
+
"text": "Program of rcj in 2023.",
|
887 |
+
"url": "https://github.com/konoe-akitoshi/rcj-2023",
|
888 |
+
"created_at": "2022-11-04T11:58:50Z"
|
889 |
+
},
|
890 |
+
{
|
891 |
+
"label": 0,
|
892 |
+
"text": "pseudo dos for MSX / MSXのDisk BASIC用のBDOSコール(0F37DH)を用いてMSX-DOSのBDOSコール(00005H)を代替し、MSX-DOS用のアプリケーションを動作させるOS",
|
893 |
+
"url": "https://github.com/tablacus/dosformsx",
|
894 |
+
"created_at": "2022-11-04T12:43:27Z"
|
895 |
+
},
|
896 |
+
{
|
897 |
+
"label": 0,
|
898 |
+
"text": "💡GENIUS – generating text using sketches! A strong text generation & data augmentation tool.",
|
899 |
+
"url": "https://github.com/beyondguo/genius",
|
900 |
+
"created_at": "2022-11-04T15:52:47Z"
|
901 |
+
},
|
902 |
+
{
|
903 |
+
"label": 0,
|
904 |
+
"text": "🚀 Yet another repository management with auto-attaching profiles.",
|
905 |
+
"url": "https://github.com/siketyan/ghr",
|
906 |
+
"created_at": "2022-11-05T09:49:50Z"
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"label": 0,
|
910 |
+
"text": "A Chrome extension that helps you translate Kaggle notebook with translate engine like Google Translate.",
|
911 |
+
"url": "https://github.com/bilzard/kaggle-notebook-translation-helper",
|
912 |
+
"created_at": "2022-11-05T16:27:48Z"
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"label": 0,
|
916 |
+
"text": "Benchmarking Parcel vs. Vite vs. Turbopack HMR performance",
|
917 |
+
"url": "https://github.com/devongovett/parcel-vs-vite-vs-turbopack-hmr",
|
918 |
+
"created_at": "2022-11-05T23:52:13Z"
|
919 |
+
},
|
920 |
+
{
|
921 |
+
"label": 1,
|
922 |
+
"text": "COMET-ATOMIC ja",
|
923 |
+
"url": "https://github.com/nlp-waseda/comet-atomic-ja",
|
924 |
+
"created_at": "2022-11-06T01:29:15Z"
|
925 |
+
},
|
926 |
+
{
|
927 |
+
"label": 0,
|
928 |
+
"text": "HSP3で比較的簡単にプログレスバーを設置するモジュール",
|
929 |
+
"url": "https://github.com/yuzranium/01_mypb",
|
930 |
+
"created_at": "2022-11-06T04:15:54Z"
|
931 |
+
},
|
932 |
+
{
|
933 |
+
"label": 0,
|
934 |
+
"text": "Open Source Python Interpreter in 1 File for Game Scripting",
|
935 |
+
"url": "https://github.com/blueloveth/pocketpy",
|
936 |
+
"created_at": "2022-11-06T04:17:25Z"
|
937 |
+
},
|
938 |
+
{
|
939 |
+
"label": 0,
|
940 |
+
"text": "Clone plain JSON value faster than the fastest",
|
941 |
+
"url": "https://github.com/rhysd/fast-json-clone",
|
942 |
+
"created_at": "2022-11-06T10:36:18Z"
|
943 |
+
},
|
944 |
+
{
|
945 |
+
"label": 0,
|
946 |
+
"text": "busdes-kic の backend",
|
947 |
+
"url": "https://github.com/mercy34mercy/bustimer_kic",
|
948 |
+
"created_at": "2022-11-06T12:08:22Z"
|
949 |
+
},
|
950 |
+
{
|
951 |
+
"label": 0,
|
952 |
+
"text": "A tool which notifies on different platforms about an starting stream",
|
953 |
+
"url": "https://github.com/poeschl/twitch-notifier",
|
954 |
+
"created_at": "2022-11-06T14:44:04Z"
|
955 |
+
},
|
956 |
+
{
|
957 |
+
"label": 0,
|
958 |
+
"text": "モータードライバ用ライブラリ",
|
959 |
+
"url": "https://github.com/yutotnh/spirit",
|
960 |
+
"created_at": "2022-11-06T16:45:45Z"
|
961 |
+
},
|
962 |
+
{
|
963 |
+
"label": 0,
|
964 |
+
"text": "Implementation of Paint-with-words with Stable Diffusion : method from eDiff-I that let you generate image from text-labeled segmentation map.",
|
965 |
+
"url": "https://github.com/cloneofsimo/paint-with-words-sd",
|
966 |
+
"created_at": "2022-11-06T20:26:30Z"
|
967 |
+
},
|
968 |
+
{
|
969 |
+
"label": 0,
|
970 |
+
"text": "麻雀配信向けわんコメプラグイン",
|
971 |
+
"url": "https://github.com/yuarasino/onecomme-plugin-formj",
|
972 |
+
"created_at": "2022-11-07T03:52:38Z"
|
973 |
+
},
|
974 |
+
{
|
975 |
+
"label": 0,
|
976 |
+
"text": "Get answers for CLI commands from GPT3 right from your terminal",
|
977 |
+
"url": "https://github.com/abhagsain/ai-cli",
|
978 |
+
"created_at": "2022-11-07T04:21:30Z"
|
979 |
+
},
|
980 |
+
{
|
981 |
+
"label": 0,
|
982 |
+
"text": "ブラウザ上の VSCode で Zenn をプレビューするための拡張",
|
983 |
+
"url": "https://github.com/zenn-dev/zenn-vscode-extension",
|
984 |
+
"created_at": "2022-11-07T08:30:16Z"
|
985 |
+
},
|
986 |
+
{
|
987 |
+
"label": 0,
|
988 |
+
"text": "The Finch CLI an open source client for container development",
|
989 |
+
"url": "https://github.com/runfinch/finch",
|
990 |
+
"created_at": "2022-11-07T08:38:12Z"
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"label": 0,
|
994 |
+
"text": "This repository stores data and scripts used in Large-Scale Prediction of Activity Cliffs Using Machine and Deep Learning Methods of Increasing Complexity.",
|
995 |
+
"url": "https://github.com/tamshun/large-scale_acprediction",
|
996 |
+
"created_at": "2022-11-07T08:53:38Z"
|
997 |
+
},
|
998 |
+
{
|
999 |
+
"label": 0,
|
1000 |
+
"text": "It is an application that combines several images",
|
1001 |
+
"url": "https://github.com/kochodeska/dximagecombiner.git",
|
1002 |
+
"created_at": "2022-11-07T15:52:17Z"
|
1003 |
+
},
|
1004 |
+
{
|
1005 |
+
"label": 0,
|
1006 |
+
"text": "Multi-step automation merge tool. Extension/Script for Stable Diffusion UI by AUTOMATIC1111 https://github.com/AUTOMATIC1111/stable-diffusion-webui",
|
1007 |
+
"url": "https://github.com/bbc-mc/sdweb-merge-board",
|
1008 |
+
"created_at": "2022-11-07T16:25:50Z"
|
1009 |
+
},
|
1010 |
+
{
|
1011 |
+
"label": 0,
|
1012 |
+
"text": "A puzzle to stamp letters and send them to the mailbox",
|
1013 |
+
"url": "https://github.com/mame/posting-puzzle",
|
1014 |
+
"created_at": "2022-11-08T00:45:34Z"
|
1015 |
+
},
|
1016 |
+
{
|
1017 |
+
"label": 0,
|
1018 |
+
"text": "Insert ar5iv link button into arXiv.",
|
1019 |
+
"url": "https://github.com/bilzard/ar5iv-button",
|
1020 |
+
"created_at": "2022-11-08T09:08:59Z"
|
1021 |
+
},
|
1022 |
+
{
|
1023 |
+
"label": 0,
|
1024 |
+
"text": "Database for recording allergic reactions and meals. / アレルギー反応と食事を記録するためのシンプルなデータベースの雛形です。 SQLiteで「*.db」ファイルを作成しています。",
|
1025 |
+
"url": "https://github.com/machistore/allergic-reactions-database",
|
1026 |
+
"created_at": "2022-11-08T12:34:30Z"
|
1027 |
+
},
|
1028 |
+
{
|
1029 |
+
"label": 0,
|
1030 |
+
"text": "WinterCG Fetch Standard",
|
1031 |
+
"url": "https://github.com/wintercg/fetch",
|
1032 |
+
"created_at": "2022-11-08T15:53:31Z"
|
1033 |
+
},
|
1034 |
+
{
|
1035 |
+
"label": 0,
|
1036 |
+
"text": "Node.js team focusing on performance",
|
1037 |
+
"url": "https://github.com/nodejs/performance",
|
1038 |
+
"created_at": "2022-11-08T18:27:38Z"
|
1039 |
+
},
|
1040 |
+
{
|
1041 |
+
"label": 0,
|
1042 |
+
"text": "converts from markdown to gemtext",
|
1043 |
+
"url": "https://github.com/azumabashi/markdown2gemtext",
|
1044 |
+
"created_at": "2022-11-08T23:25:55Z"
|
1045 |
+
},
|
1046 |
+
{
|
1047 |
+
"label": 0,
|
1048 |
+
"text": "Web frontend of OtoMADB",
|
1049 |
+
"url": "https://github.com/otomadb/web",
|
1050 |
+
"created_at": "2022-11-09T12:07:24Z"
|
1051 |
+
},
|
1052 |
+
{
|
1053 |
+
"label": 0,
|
1054 |
+
"text": "An in-development vitest environment with support for testing code that needs a Nuxt runtime environment",
|
1055 |
+
"url": "https://github.com/danielroe/nuxt-vitest",
|
1056 |
+
"created_at": "2022-11-10T00:02:15Z"
|
1057 |
+
},
|
1058 |
+
{
|
1059 |
+
"label": 0,
|
1060 |
+
"text": "A browser extension that shows twitter blue vs real verified users",
|
1061 |
+
"url": "https://github.com/wseagar/eight-dollars",
|
1062 |
+
"created_at": "2022-11-10T04:23:12Z"
|
1063 |
+
},
|
1064 |
+
{
|
1065 |
+
"label": 0,
|
1066 |
+
"text": "Simple React Component That Makes Titles More Readable",
|
1067 |
+
"url": "https://github.com/shuding/react-wrap-balancer",
|
1068 |
+
"created_at": "2022-11-10T08:21:36Z"
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"label": 0,
|
1072 |
+
"text": "Use App Runner Managed PHP Runtime with Apache + PHP-FPM",
|
1073 |
+
"url": "https://github.com/n1215/app-runner-managed-php",
|
1074 |
+
"created_at": "2022-11-10T13:42:08Z"
|
1075 |
+
},
|
1076 |
+
{
|
1077 |
+
"label": 0,
|
1078 |
+
"text": "Flask-SocketIOを用いたシンプルなチャットシステム",
|
1079 |
+
"url": "https://github.com/cress-cc/simple-websocket-chat",
|
1080 |
+
"created_at": "2022-11-10T16:37:51Z"
|
1081 |
+
},
|
1082 |
+
{
|
1083 |
+
"label": 0,
|
1084 |
+
"text": "My PFP History with Ethereum",
|
1085 |
+
"url": "https://github.com/konojunya/pfp.konojunya.com",
|
1086 |
+
"created_at": "2022-11-11T03:32:05Z"
|
1087 |
+
},
|
1088 |
+
{
|
1089 |
+
"label": 0,
|
1090 |
+
"text": "趣味とかいろいろ",
|
1091 |
+
"url": "https://github.com/shinanashi/od",
|
1092 |
+
"created_at": "2022-11-11T14:23:09Z"
|
1093 |
+
},
|
1094 |
+
{
|
1095 |
+
"label": 0,
|
1096 |
+
"text": "enjoy-pnpm-monorepo",
|
1097 |
+
"url": "https://github.com/agoetc/dependency-limit-by-pnpm-monorepo",
|
1098 |
+
"created_at": "2022-11-12T06:37:14Z"
|
1099 |
+
},
|
1100 |
+
{
|
1101 |
+
"label": 0,
|
1102 |
+
"text": "byebye pkg/errors",
|
1103 |
+
"url": "https://github.com/podhmo/un-pkg-errors",
|
1104 |
+
"created_at": "2022-11-12T10:42:55Z"
|
1105 |
+
},
|
1106 |
+
{
|
1107 |
+
"label": 0,
|
1108 |
+
"text": "imple 2D CAD wrapped in p5js. It implements command input, layers, and classes for handling shapes, just like CAD software.",
|
1109 |
+
"url": "https://github.com/baues/building-editor-2d",
|
1110 |
+
"created_at": "2022-11-12T13:11:18Z"
|
1111 |
+
},
|
1112 |
+
{
|
1113 |
+
"label": 0,
|
1114 |
+
"text": "Unoffical cool536's plate data ",
|
1115 |
+
"url": "https://github.com/is-watering/cool536-plate",
|
1116 |
+
"created_at": "2022-11-13T16:13:11Z"
|
1117 |
+
},
|
1118 |
+
{
|
1119 |
+
"label": 0,
|
1120 |
+
"text": "A scripting API for Blender's Geometry Nodes",
|
1121 |
+
"url": "https://github.com/carson-katri/geometry-script",
|
1122 |
+
"created_at": "2022-11-13T19:51:58Z"
|
1123 |
+
},
|
1124 |
+
{
|
1125 |
+
"label": 0,
|
1126 |
+
"text": "Bridge Blender to AffinityPhoto(etc.....)",
|
1127 |
+
"url": "https://github.com/t0rry/affinity_bridge",
|
1128 |
+
"created_at": "2022-11-14T00:07:55Z"
|
1129 |
+
},
|
1130 |
+
{
|
1131 |
+
"label": 0,
|
1132 |
+
"text": "Vulnerability scanner written in Go which uses the data provided by https://osv.dev",
|
1133 |
+
"url": "https://github.com/google/osv-scanner",
|
1134 |
+
"created_at": "2022-11-14T01:05:20Z"
|
1135 |
+
},
|
1136 |
+
{
|
1137 |
+
"label": 0,
|
1138 |
+
"text": "Mod necessary for defeatedcrow's mod in 1.9.4+",
|
1139 |
+
"url": "https://github.com/hiiragi283/ragilibrary",
|
1140 |
+
"created_at": "2022-11-14T02:15:31Z"
|
1141 |
+
},
|
1142 |
+
{
|
1143 |
+
"label": 0,
|
1144 |
+
"text": "A nimble Mastodon web client",
|
1145 |
+
"url": "https://github.com/elk-zone/elk",
|
1146 |
+
"created_at": "2022-11-14T03:33:32Z"
|
1147 |
+
},
|
1148 |
+
{
|
1149 |
+
"label": 0,
|
1150 |
+
"text": "IANA Media Types as a Rust crate.",
|
1151 |
+
"url": "https://github.com/termoshtt/iana-media-types",
|
1152 |
+
"created_at": "2022-11-14T06:15:15Z"
|
1153 |
+
},
|
1154 |
+
{
|
1155 |
+
"label": 0,
|
1156 |
+
"text": "Official Implementation for \"Latent-NeRF for Shape-Guided Generation of 3D Shapes and Textures\"",
|
1157 |
+
"url": "https://github.com/eladrich/latent-nerf",
|
1158 |
+
"created_at": "2022-11-14T16:22:53Z"
|
1159 |
+
},
|
1160 |
+
{
|
1161 |
+
"label": 0,
|
1162 |
+
"text": "Rust crate for Flattened Devicetree parsing ",
|
1163 |
+
"url": "https://github.com/topjohnwu/magisk",
|
1164 |
+
"created_at": "2022-11-14T22:08:04Z"
|
1165 |
+
},
|
1166 |
+
{
|
1167 |
+
"label": 0,
|
1168 |
+
"text": "Kubeday Japan Demo - Step by Step tutorial ",
|
1169 |
+
"url": "https://github.com/salaboy/kubeday-japan-2022",
|
1170 |
+
"created_at": "2022-11-15T11:34:05Z"
|
1171 |
+
},
|
1172 |
+
{
|
1173 |
+
"label": 0,
|
1174 |
+
"text": "Native Rust reimplementation of Inochi2D",
|
1175 |
+
"url": "https://github.com/inochi2d/inox2d",
|
1176 |
+
"created_at": "2022-11-15T12:26:46Z"
|
1177 |
+
},
|
1178 |
+
{
|
1179 |
+
"label": 0,
|
1180 |
+
"text": "This package is a wrapper for \"microcms-js-sdk\". More type-safe.",
|
1181 |
+
"url": "https://github.com/tsuki-lab/microcms-ts-sdk",
|
1182 |
+
"created_at": "2022-11-15T15:25:35Z"
|
1183 |
+
},
|
1184 |
+
{
|
1185 |
+
"label": 0,
|
1186 |
+
"text": "Prisma generator to define model factory",
|
1187 |
+
"url": "https://github.com/quramy/prisma-fabbrica",
|
1188 |
+
"created_at": "2022-11-15T16:29:10Z"
|
1189 |
+
},
|
1190 |
+
{
|
1191 |
+
"label": 0,
|
1192 |
+
"text": "Data analysis and visualizations of daily COVID cases report",
|
1193 |
+
"url": "https://github.com/cssegisanddata/covid-19",
|
1194 |
+
"created_at": "2022-11-15T19:38:14Z"
|
1195 |
+
},
|
1196 |
+
{
|
1197 |
+
"label": 0,
|
1198 |
+
"text": "パブロのZR連打を代わりにやってくれるプログラム。Raspberry PiのUSB gadget機能とプロコン使用。",
|
1199 |
+
"url": "https://github.com/minobon/splatoon-inkbrush-masher",
|
1200 |
+
"created_at": "2022-11-15T22:21:06Z"
|
1201 |
+
},
|
1202 |
+
{
|
1203 |
+
"label": 0,
|
1204 |
+
"text": "Stable Diffusion with Core ML on Apple Silicon",
|
1205 |
+
"url": "https://github.com/apple/ml-stable-diffusion",
|
1206 |
+
"created_at": "2022-11-16T00:48:18Z"
|
1207 |
+
},
|
1208 |
+
{
|
1209 |
+
"label": 0,
|
1210 |
+
"text": "Official repository for paper \"Stare at What You See: Masked Image Modeling without Reconstruction\"",
|
1211 |
+
"url": "https://github.com/opendrivelab/uniad",
|
1212 |
+
"created_at": "2022-11-16T04:53:00Z"
|
1213 |
+
},
|
1214 |
+
{
|
1215 |
+
"label": 0,
|
1216 |
+
"text": "Dancing Onigiri \"CW Edition\" Wiki",
|
1217 |
+
"url": "https://github.com/cwtickle/danoniplus-docs",
|
1218 |
+
"created_at": "2022-11-16T09:29:19Z"
|
1219 |
+
},
|
1220 |
+
{
|
1221 |
+
"label": 0,
|
1222 |
+
"text": "This library provides the easiest and powerful Dart/Flutter library for Mastodon API 🎯",
|
1223 |
+
"url": "https://github.com/mastodon-dart/mastodon-api",
|
1224 |
+
"created_at": "2022-11-17T04:58:21Z"
|
1225 |
+
},
|
1226 |
+
{
|
1227 |
+
"label": 0,
|
1228 |
+
"text": "List implementation for UdonSharp.",
|
1229 |
+
"url": "https://github.com/koyashiro/udon-list",
|
1230 |
+
"created_at": "2022-11-17T09:09:11Z"
|
1231 |
+
},
|
1232 |
+
{
|
1233 |
+
"label": 0,
|
1234 |
+
"text": "A curated list of awesome 🔥 TypeScript Tips 🔥",
|
1235 |
+
"url": "https://github.com/jellydn/typescript-tips",
|
1236 |
+
"created_at": "2022-11-17T14:46:36Z"
|
1237 |
+
},
|
1238 |
+
{
|
1239 |
+
"label": 0,
|
1240 |
+
"text": "Latent Diffusion Model made of public domain images (CC-0).",
|
1241 |
+
"url": "https://github.com/alfredplpl/clean-diffusion",
|
1242 |
+
"created_at": "2022-11-17T21:10:15Z"
|
1243 |
+
},
|
1244 |
+
{
|
1245 |
+
"label": 0,
|
1246 |
+
"text": "The sold linker",
|
1247 |
+
"url": "https://github.com/bluewhalesystems/sold",
|
1248 |
+
"created_at": "2022-11-18T03:18:11Z"
|
1249 |
+
},
|
1250 |
+
{
|
1251 |
+
"label": 0,
|
1252 |
+
"text": "Fully open source configurable high speed CoreXY 3D printer.",
|
1253 |
+
"url": "https://github.com/snakeoilxy/snakeoil-xy",
|
1254 |
+
"created_at": "2022-11-18T20:02:26Z"
|
1255 |
+
},
|
1256 |
+
{
|
1257 |
+
"label": 0,
|
1258 |
+
"text": "Script and patches for building PHH-Treble Evolution X",
|
1259 |
+
"url": "https://github.com/ponces/treble_build_evo",
|
1260 |
+
"created_at": "2022-11-18T23:36:03Z"
|
1261 |
+
},
|
1262 |
+
{
|
1263 |
+
"label": 0,
|
1264 |
+
"text": "Seichi Portalのバックエンド。",
|
1265 |
+
"url": "https://github.com/giganticminecraft/seichi-portal-backend",
|
1266 |
+
"created_at": "2022-11-19T02:07:46Z"
|
1267 |
+
},
|
1268 |
+
{
|
1269 |
+
"label": 0,
|
1270 |
+
"text": "an experimental optic library for OCaml",
|
1271 |
+
"url": "https://github.com/leque/optics.ml",
|
1272 |
+
"created_at": "2022-11-19T02:45:53Z"
|
1273 |
+
},
|
1274 |
+
{
|
1275 |
+
"label": 0,
|
1276 |
+
"text": "CloudAK is scripts for setup Virtual Machine for penetration testing for Cloud.",
|
1277 |
+
"url": "https://github.com/lhazy/cloudak",
|
1278 |
+
"created_at": "2022-11-19T04:03:35Z"
|
1279 |
+
},
|
1280 |
+
{
|
1281 |
+
"label": 0,
|
1282 |
+
"text": "The official website for Thundercard.",
|
1283 |
+
"url": "https://github.com/dev-roll/thundercard-website",
|
1284 |
+
"created_at": "2022-11-19T10:03:51Z"
|
1285 |
+
},
|
1286 |
+
{
|
1287 |
+
"label": 0,
|
1288 |
+
"text": "noise generator made by ATTiny10",
|
1289 |
+
"url": "https://github.com/kinoshita-lab/noise-guy",
|
1290 |
+
"created_at": "2022-11-19T10:32:57Z"
|
1291 |
+
},
|
1292 |
+
{
|
1293 |
+
"label": 0,
|
1294 |
+
"text": "The library lets you generate TypeScript types from your Laravel code",
|
1295 |
+
"url": "https://github.com/7nohe/laravel-typegen",
|
1296 |
+
"created_at": "2022-11-19T16:00:07Z"
|
1297 |
+
},
|
1298 |
+
{
|
1299 |
+
"label": 0,
|
1300 |
+
"text": "交差点でのチェックインを補助するために作成された Swarm 利用者のための Android アプリケーション",
|
1301 |
+
"url": "https://github.com/private-yusuke/interscheckin",
|
1302 |
+
"created_at": "2022-11-20T10:58:35Z"
|
1303 |
+
},
|
1304 |
+
{
|
1305 |
+
"label": 0,
|
1306 |
+
"text": "intmax ZK rollup for client side",
|
1307 |
+
"url": "https://github.com/internetmaximalism/intmax-rollup-cli",
|
1308 |
+
"created_at": "2022-11-20T20:54:57Z"
|
1309 |
+
},
|
1310 |
+
{
|
1311 |
+
"label": 0,
|
1312 |
+
"text": "💤 A modern plugin manager for Neovim",
|
1313 |
+
"url": "https://github.com/folke/lazy.nvim",
|
1314 |
+
"created_at": "2022-11-20T21:36:02Z"
|
1315 |
+
},
|
1316 |
+
{
|
1317 |
+
"label": 0,
|
1318 |
+
"text": "Documentation website for Rival - DOTS Character Controller",
|
1319 |
+
"url": "https://github.com/unity-technologies/rival-documentation",
|
1320 |
+
"created_at": "2022-11-21T22:37:59Z"
|
1321 |
+
},
|
1322 |
+
{
|
1323 |
+
"label": 0,
|
1324 |
+
"text": "nomifactory translation project for Japanese",
|
1325 |
+
"url": "https://github.com/naari3/nomifactory-ja",
|
1326 |
+
"created_at": "2022-11-22T00:57:14Z"
|
1327 |
+
},
|
1328 |
+
{
|
1329 |
+
"label": 0,
|
1330 |
+
"text": "Blazingly fast DataFrames for Ruby",
|
1331 |
+
"url": "https://github.com/ankane/polars-ruby",
|
1332 |
+
"created_at": "2022-11-22T05:59:48Z"
|
1333 |
+
},
|
1334 |
+
{
|
1335 |
+
"label": 0,
|
1336 |
+
"text": "This is a background removing tool powered by InSPyReNet (ACCV 2022)",
|
1337 |
+
"url": "https://github.com/plemeri/transparent-background",
|
1338 |
+
"created_at": "2022-11-22T12:53:10Z"
|
1339 |
+
},
|
1340 |
+
{
|
1341 |
+
"label": 0,
|
1342 |
+
"text": "Send your creation image to Eagle with PNGinfo. Extension for Stable Diffusion UI by AUTOMATIC1111",
|
1343 |
+
"url": "https://github.com/bbc-mc/sdweb-eagle-pnginfo",
|
1344 |
+
"created_at": "2022-11-22T15:22:47Z"
|
1345 |
+
},
|
1346 |
+
{
|
1347 |
+
"label": 0,
|
1348 |
+
"text": "株式会社ゆめみ Flutter ギルドの状況",
|
1349 |
+
"url": "https://github.com/yumemi-inc/flutter-guild-status",
|
1350 |
+
"created_at": "2022-11-23T00:44:08Z"
|
1351 |
+
},
|
1352 |
+
{
|
1353 |
+
"label": 0,
|
1354 |
+
"text": "Headless Gyazo app for desktop PC. ",
|
1355 |
+
"url": "https://github.com/hata6502/gyazemon",
|
1356 |
+
"created_at": "2022-11-23T06:20:24Z"
|
1357 |
+
},
|
1358 |
+
{
|
1359 |
+
"label": 0,
|
1360 |
+
"text": "mcl with expansion resetting (version 2)",
|
1361 |
+
"url": "https://github.com/cit-autonomous-robot-lab/emcl2_ros2",
|
1362 |
+
"created_at": "2022-11-23T06:46:12Z"
|
1363 |
+
},
|
1364 |
+
{
|
1365 |
+
"label": 0,
|
1366 |
+
"text": "jendeley is a JSON-based document organizing software.",
|
1367 |
+
"url": "https://github.com/akawashiro/jendeley",
|
1368 |
+
"created_at": "2022-11-23T07:28:11Z"
|
1369 |
+
},
|
1370 |
+
{
|
1371 |
+
"label": 0,
|
1372 |
+
"text": "顔情報がある動画より性格を推測する",
|
1373 |
+
"url": "https://github.com/squid-cat/personality_analysis",
|
1374 |
+
"created_at": "2022-11-23T08:43:15Z"
|
1375 |
+
},
|
1376 |
+
{
|
1377 |
+
"label": 1,
|
1378 |
+
"text": "Using Vim as an input method for X11 apps",
|
1379 |
+
"url": "https://github.com/algon-320/vime",
|
1380 |
+
"created_at": "2022-11-23T10:52:43Z"
|
1381 |
+
},
|
1382 |
+
{
|
1383 |
+
"label": 0,
|
1384 |
+
"text": "Rust Example/Practice",
|
1385 |
+
"url": "https://github.com/taaaaakahiro/rust_axum_mongo_example",
|
1386 |
+
"created_at": "2022-11-23T11:15:55Z"
|
1387 |
+
},
|
1388 |
+
{
|
1389 |
+
"label": 0,
|
1390 |
+
"text": "Ultra-tiny router for Cloudflare Workers and Deno",
|
1391 |
+
"url": "https://github.com/yusukebe/pico",
|
1392 |
+
"created_at": "2022-11-23T13:23:00Z"
|
1393 |
+
},
|
1394 |
+
{
|
1395 |
+
"label": 0,
|
1396 |
+
"text": "High-Resolution Image Synthesis with Latent Diffusion Models",
|
1397 |
+
"url": "https://github.com/stability-ai/stablediffusion",
|
1398 |
+
"created_at": "2022-11-23T23:59:50Z"
|
1399 |
+
},
|
1400 |
+
{
|
1401 |
+
"label": 0,
|
1402 |
+
"text": "AIGC x Animation",
|
1403 |
+
"url": "https://github.com/opentalker/sadtalker",
|
1404 |
+
"created_at": "2022-11-24T05:49:14Z"
|
1405 |
+
},
|
1406 |
+
{
|
1407 |
+
"label": 0,
|
1408 |
+
"text": "Charmed operator driving Grafana Tempo on Kubernetes.",
|
1409 |
+
"url": "https://github.com/canonical/microcloud",
|
1410 |
+
"created_at": "2022-11-24T08:22:33Z"
|
1411 |
+
},
|
1412 |
+
{
|
1413 |
+
"label": 0,
|
1414 |
+
"text": "golang製のAtCoderAPIライブラリとCLIツール",
|
1415 |
+
"url": "https://github.com/tbistr/atcoder-go",
|
1416 |
+
"created_at": "2022-11-24T08:38:30Z"
|
1417 |
+
},
|
1418 |
+
{
|
1419 |
+
"label": 0,
|
1420 |
+
"text": "BFF(Backend For Frontend) with GraphQL generated its DB schema (postgres) by sqlc.",
|
1421 |
+
"url": "https://github.com/tk42/bff-gqlgen-sqlc-template",
|
1422 |
+
"created_at": "2022-11-24T19:45:36Z"
|
1423 |
+
},
|
1424 |
+
{
|
1425 |
+
"label": 0,
|
1426 |
+
"text": "Copilotちゃんに殆ど作って貰ったGoのじゃんけんゲーム",
|
1427 |
+
"url": "https://github.com/askdkc/janken-go",
|
1428 |
+
"created_at": "2022-11-25T01:15:07Z"
|
1429 |
+
},
|
1430 |
+
{
|
1431 |
+
"label": 0,
|
1432 |
+
"text": "🤗 PEFT: State-of-the-art Parameter-Efficient Fine-Tuning.",
|
1433 |
+
"url": "https://github.com/huggingface/peft",
|
1434 |
+
"created_at": "2022-11-25T03:51:09Z"
|
1435 |
+
},
|
1436 |
+
{
|
1437 |
+
"label": 0,
|
1438 |
+
"text": "This repository contains samples that demonstrates the usage of the Pretia AR Cloud.",
|
1439 |
+
"url": "https://github.com/pretia/pretia-samples",
|
1440 |
+
"created_at": "2022-11-25T04:33:49Z"
|
1441 |
+
},
|
1442 |
+
{
|
1443 |
+
"label": 0,
|
1444 |
+
"text": "a compact calendar date",
|
1445 |
+
"url": "https://github.com/kawanet/cdate",
|
1446 |
+
"created_at": "2022-11-25T11:55:29Z"
|
1447 |
+
},
|
1448 |
+
{
|
1449 |
+
"label": 0,
|
1450 |
+
"text": "How to restate a theorem which uses the equation counter",
|
1451 |
+
"url": "https://github.com/kimajin/latex-restate-theorem-using-equation-counter",
|
1452 |
+
"created_at": "2022-11-25T15:42:49Z"
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"label": 0,
|
1456 |
+
"text": "Create masks out of depthmaps in img2img",
|
1457 |
+
"url": "https://github.com/extraltodeus/depthmap2mask",
|
1458 |
+
"created_at": "2022-11-25T18:52:59Z"
|
1459 |
+
},
|
1460 |
+
{
|
1461 |
+
"label": 0,
|
1462 |
+
"text": "Twitterのウィジットのカスタマイズ",
|
1463 |
+
"url": "https://github.com/manzoku-bukuro/twitter-widgets-loading",
|
1464 |
+
"created_at": "2022-11-26T09:00:50Z"
|
1465 |
+
},
|
1466 |
+
{
|
1467 |
+
"label": 0,
|
1468 |
+
"text": "day.js wrapper package for Go based on goja.",
|
1469 |
+
"url": "https://github.com/syumai/go-dayjs",
|
1470 |
+
"created_at": "2022-11-26T15:16:21Z"
|
1471 |
+
},
|
1472 |
+
{
|
1473 |
+
"label": 0,
|
1474 |
+
"text": "Type-safe i18n library for TypeScript apps. Based on and largely compatible with MessageFormat.",
|
1475 |
+
"url": "https://github.com/tanekloc/tmsg",
|
1476 |
+
"created_at": "2022-11-26T16:52:06Z"
|
1477 |
+
},
|
1478 |
+
{
|
1479 |
+
"label": 0,
|
1480 |
+
"text": "This is a Dockerfile to use OpenGL/CUDA/Vulkan application on Docker container with NVIDIA GPU.",
|
1481 |
+
"url": "https://github.com/atinfinity/cudagl",
|
1482 |
+
"created_at": "2022-11-27T08:22:19Z"
|
1483 |
+
},
|
1484 |
+
{
|
1485 |
+
"label": 0,
|
1486 |
+
"text": "homework for GA",
|
1487 |
+
"url": "https://github.com/ucaszyp/steps",
|
1488 |
+
"created_at": "2022-11-27T15:38:44Z"
|
1489 |
+
},
|
1490 |
+
{
|
1491 |
+
"label": 0,
|
1492 |
+
"text": "Declarative ThreeJS using Vue Components",
|
1493 |
+
"url": "https://github.com/tresjs/tres",
|
1494 |
+
"created_at": "2022-11-27T20:36:37Z"
|
1495 |
+
},
|
1496 |
+
{
|
1497 |
+
"label": 0,
|
1498 |
+
"text": "The PHP Interpreter",
|
1499 |
+
"url": "https://github.com/youkidearitai/php-src",
|
1500 |
+
"created_at": "2022-11-27T23:24:46Z"
|
1501 |
+
},
|
1502 |
+
{
|
1503 |
+
"label": 0,
|
1504 |
+
"text": "「アルゴリズム実技検定 公式テキスト[上級]〜[エキスパート]編」の解答ソースコードと正誤情報",
|
1505 |
+
"url": "https://github.com/tsutaj/pastbook-2-source-code",
|
1506 |
+
"created_at": "2022-11-28T01:50:42Z"
|
1507 |
+
},
|
1508 |
+
{
|
1509 |
+
"label": 0,
|
1510 |
+
"text": "Debian Package Builder for ROS2 Package",
|
1511 |
+
"url": "https://github.com/harvestx/ros2_deb_builder",
|
1512 |
+
"created_at": "2022-11-28T10:13:35Z"
|
1513 |
+
},
|
1514 |
+
{
|
1515 |
+
"label": 0,
|
1516 |
+
"text": "🏢 This is an app to search corporate info",
|
1517 |
+
"url": "https://github.com/akkeylab/c-search",
|
1518 |
+
"created_at": "2022-11-28T10:59:40Z"
|
1519 |
+
},
|
1520 |
+
{
|
1521 |
+
"label": 0,
|
1522 |
+
"text": "Oculus showcase demonstrating how to use Vulkan subpasses to implement performant tonemapping for color grading LUTs, day-night cycle, fade in / fade out, and vignette effects.",
|
1523 |
+
"url": "https://github.com/oculus-samples/unity-sharedspatialanchors",
|
1524 |
+
"created_at": "2022-11-28T23:23:08Z"
|
1525 |
+
},
|
1526 |
+
{
|
1527 |
+
"label": 0,
|
1528 |
+
"text": "🗾 地図から探す CoderDojo『DojoMap』 - A map for visitors to find out a CoderDojo nearby.",
|
1529 |
+
"url": "https://github.com/coderdojo-japan/map.coderdojo.jp",
|
1530 |
+
"created_at": "2022-11-28T23:36:47Z"
|
1531 |
+
},
|
1532 |
+
{
|
1533 |
+
"label": 0,
|
1534 |
+
"text": "Boilerplate to build your own customized python environment for machine learning.",
|
1535 |
+
"url": "https://github.com/bilzard/ml-docker-boilerplate",
|
1536 |
+
"created_at": "2022-11-29T05:18:22Z"
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"label": 0,
|
1540 |
+
"text": "Convert twitter users and tweets to ActivityPub format.",
|
1541 |
+
"url": "https://github.com/hideki0403/twitter-activitypub-bridge",
|
1542 |
+
"created_at": "2022-11-29T15:42:48Z"
|
1543 |
+
},
|
1544 |
+
{
|
1545 |
+
"label": 0,
|
1546 |
+
"text": "Metal on Symbol",
|
1547 |
+
"url": "https://github.com/opensphere-inc/metal-on-symbol",
|
1548 |
+
"created_at": "2022-11-30T02:14:01Z"
|
1549 |
+
},
|
1550 |
+
{
|
1551 |
+
"label": 0,
|
1552 |
+
"text": "webサイトの背景に画像スライドショーを挿入するJavaScript関数",
|
1553 |
+
"url": "https://github.com/ayaexptech/axt-func.js",
|
1554 |
+
"created_at": "2022-11-30T06:54:09Z"
|
1555 |
+
},
|
1556 |
+
{
|
1557 |
+
"label": 0,
|
1558 |
+
"text": "A simple timer in your terminal",
|
1559 |
+
"url": "https://github.com/faustind/climer",
|
1560 |
+
"created_at": "2022-11-30T08:41:30Z"
|
1561 |
+
},
|
1562 |
+
{
|
1563 |
+
"label": 0,
|
1564 |
+
"text": "Statistical Rethinking Course for Jan-Mar 2023",
|
1565 |
+
"url": "https://github.com/rmcelreath/stat_rethinking_2023",
|
1566 |
+
"created_at": "2022-11-30T09:01:17Z"
|
1567 |
+
},
|
1568 |
+
{
|
1569 |
+
"label": 1,
|
1570 |
+
"text": "部首文字正規化ライブラリ",
|
1571 |
+
"url": "https://github.com/yamamaya/radicalchar",
|
1572 |
+
"created_at": "2022-11-30T10:20:15Z"
|
1573 |
+
},
|
1574 |
+
{
|
1575 |
+
"label": 0,
|
1576 |
+
"text": "Simulate making sandwiches for Pokemon Scarlet and Violet.",
|
1577 |
+
"url": "https://github.com/cecilbowen/pokemon-sandwich-simulator",
|
1578 |
+
"created_at": "2022-11-30T11:47:14Z"
|
1579 |
+
},
|
1580 |
+
{
|
1581 |
+
"label": 0,
|
1582 |
+
"text": "通販サイトを開いた時にスーパーの音楽(呼び込み君)を再生するChrome拡張を自分用に作ったら買い物が楽しくなった https://twitter.com/solt9029/status/1605199422274801671",
|
1583 |
+
"url": "https://github.com/solt9029/chrome-ec-yobikomi",
|
1584 |
+
"created_at": "2022-11-30T15:28:49Z"
|
1585 |
+
},
|
1586 |
+
{
|
1587 |
+
"label": 0,
|
1588 |
+
"text": "日本心理学会2022年版文献スタイル",
|
1589 |
+
"url": "https://github.com/sbtseiji/biblatex-jpa",
|
1590 |
+
"created_at": "2022-11-30T16:17:41Z"
|
1591 |
+
},
|
1592 |
+
{
|
1593 |
+
"label": 0,
|
1594 |
+
"text": "jq, but for HTML",
|
1595 |
+
"url": "https://github.com/orf/hq",
|
1596 |
+
"created_at": "2022-11-30T22:12:30Z"
|
1597 |
+
},
|
1598 |
+
{
|
1599 |
+
"label": 0,
|
1600 |
+
"text": "A tiny library to sign and verify JWT tokens using Rust bindings for pure performance.",
|
1601 |
+
"url": "https://github.com/dan-online/jwtrust",
|
1602 |
+
"created_at": "2022-11-30T23:53:12Z"
|
1603 |
+
},
|
1604 |
+
{
|
1605 |
+
"label": 0,
|
1606 |
+
"text": "ChatGPT for Mac, living in your menubar.",
|
1607 |
+
"url": "https://github.com/vincelwt/chatgpt-mac",
|
1608 |
+
"created_at": "2022-12-01T12:31:30Z"
|
1609 |
+
},
|
1610 |
+
{
|
1611 |
+
"label": 0,
|
1612 |
+
"text": "速習symbolをnode.jsで実施する版",
|
1613 |
+
"url": "https://github.com/kazumasamatsumoto/sokushu-symbol-ts-node",
|
1614 |
+
"created_at": "2022-12-01T14:07:06Z"
|
1615 |
+
},
|
1616 |
+
{
|
1617 |
+
"label": 0,
|
1618 |
+
"text": "DAAM for Stable Diffusion Web UI",
|
1619 |
+
"url": "https://github.com/kousw/stable-diffusion-webui-daam",
|
1620 |
+
"created_at": "2022-12-01T15:33:16Z"
|
1621 |
+
},
|
1622 |
+
{
|
1623 |
+
"label": 0,
|
1624 |
+
"text": "tiktoken is a fast BPE tokeniser for use with OpenAI's models.",
|
1625 |
+
"url": "https://github.com/openai/tiktoken",
|
1626 |
+
"created_at": "2022-12-01T23:22:11Z"
|
1627 |
+
},
|
1628 |
+
{
|
1629 |
+
"label": 0,
|
1630 |
+
"text": "Score Jacobian Chaining: Lifting Pretrained 2D Diffusion Models for 3D Generation (CVPR 2023)",
|
1631 |
+
"url": "https://github.com/pals-ttic/sjc",
|
1632 |
+
"created_at": "2022-12-02T00:57:33Z"
|
1633 |
+
},
|
1634 |
+
{
|
1635 |
+
"label": 0,
|
1636 |
+
"text": "Access the JS host environment from Zig compiled to WebAssembly.",
|
1637 |
+
"url": "https://github.com/mitchellh/zig-js",
|
1638 |
+
"created_at": "2022-12-02T05:53:26Z"
|
1639 |
+
},
|
1640 |
+
{
|
1641 |
+
"label": 0,
|
1642 |
+
"text": "A hub with a curated awesome list of all Azure AI samples",
|
1643 |
+
"url": "https://github.com/azure-samples/azure-ai",
|
1644 |
+
"created_at": "2022-12-02T08:29:32Z"
|
1645 |
+
},
|
1646 |
+
{
|
1647 |
+
"label": 0,
|
1648 |
+
"text": "MathJax source code for version 3 and beyond",
|
1649 |
+
"url": "https://github.com/rhysd/nyaovim",
|
1650 |
+
"created_at": "2022-12-02T10:23:45Z"
|
1651 |
+
},
|
1652 |
+
{
|
1653 |
+
"label": 0,
|
1654 |
+
"text": "Mycelite is a SQLite extension that allows you to synchronize changes from one instance of SQLite to another.",
|
1655 |
+
"url": "https://github.com/mycelial/mycelite",
|
1656 |
+
"created_at": "2022-12-02T13:02:10Z"
|
1657 |
+
},
|
1658 |
+
{
|
1659 |
+
"label": 0,
|
1660 |
+
"text": "Node.js client for the official ChatGPT API. 🔥",
|
1661 |
+
"url": "https://github.com/transitive-bullshit/chatgpt-api",
|
1662 |
+
"created_at": "2022-12-03T00:05:09Z"
|
1663 |
+
},
|
1664 |
+
{
|
1665 |
+
"label": 0,
|
1666 |
+
"text": "Check if a char is alphabetic or not at compile time.",
|
1667 |
+
"url": "https://github.com/ryuma017/ascii-alphabetic-char",
|
1668 |
+
"created_at": "2022-12-03T12:40:45Z"
|
1669 |
+
},
|
1670 |
+
{
|
1671 |
+
"label": 0,
|
1672 |
+
"text": "A joke program like the \"sl\" command that is executed when you mistype \"free\" for \"freee\".",
|
1673 |
+
"url": "https://github.com/freee/freee",
|
1674 |
+
"created_at": "2022-12-03T12:44:52Z"
|
1675 |
+
},
|
1676 |
+
{
|
1677 |
+
"label": 0,
|
1678 |
+
"text": "A VSCode extension that allows you to use ChatGPT",
|
1679 |
+
"url": "https://github.com/mpociot/chatgpt-vscode",
|
1680 |
+
"created_at": "2022-12-03T23:04:39Z"
|
1681 |
+
},
|
1682 |
+
{
|
1683 |
+
"label": 0,
|
1684 |
+
"text": "Solve Advent of Code puzzles with GPT-3",
|
1685 |
+
"url": "https://github.com/max-sixty/aoc-gpt",
|
1686 |
+
"created_at": "2022-12-04T05:22:53Z"
|
1687 |
+
},
|
1688 |
+
{
|
1689 |
+
"label": 0,
|
1690 |
+
"text": "Solving \"Advent of Code 2022\" by using Crystal lang.",
|
1691 |
+
"url": "https://github.com/arcage/advent_of_code_2022",
|
1692 |
+
"created_at": "2022-12-04T12:25:14Z"
|
1693 |
+
},
|
1694 |
+
{
|
1695 |
+
"label": 0,
|
1696 |
+
"text": "Curated list of awesome tools, demos, docs for ChatGPT and GPT-3",
|
1697 |
+
"url": "https://github.com/humanloop/awesome-chatgpt",
|
1698 |
+
"created_at": "2022-12-04T12:28:23Z"
|
1699 |
+
},
|
1700 |
+
{
|
1701 |
+
"label": 0,
|
1702 |
+
"text": "Fast, and friendly Bun web framework",
|
1703 |
+
"url": "https://github.com/elysiajs/elysia",
|
1704 |
+
"created_at": "2022-12-04T12:53:30Z"
|
1705 |
+
},
|
1706 |
+
{
|
1707 |
+
"label": 0,
|
1708 |
+
"text": "Glow stuff with flutter",
|
1709 |
+
"url": "https://github.com/renancaraujo/glow_stuff_with_flutter",
|
1710 |
+
"created_at": "2022-12-04T15:51:01Z"
|
1711 |
+
},
|
1712 |
+
{
|
1713 |
+
"label": 0,
|
1714 |
+
"text": "Easily share permanent links to ChatGPT conversations with your friends",
|
1715 |
+
"url": "https://github.com/domeccleston/sharegpt",
|
1716 |
+
"created_at": "2022-12-04T19:52:01Z"
|
1717 |
+
},
|
1718 |
+
{
|
1719 |
+
"label": 0,
|
1720 |
+
"text": "Selected ChatGPT demos, tools, articles, and more ✨",
|
1721 |
+
"url": "https://github.com/saharmor/awesome-chatgpt",
|
1722 |
+
"created_at": "2022-12-05T01:58:49Z"
|
1723 |
+
},
|
1724 |
+
{
|
1725 |
+
"label": 0,
|
1726 |
+
"text": "X1 HuBASIC Disk Image Handler",
|
1727 |
+
"url": "https://github.com/ho-ogino/ld-nrtp",
|
1728 |
+
"created_at": "2022-12-05T09:01:20Z"
|
1729 |
+
},
|
1730 |
+
{
|
1731 |
+
"label": 0,
|
1732 |
+
"text": "apex shutdown bug fix ",
|
1733 |
+
"url": "https://github.com/h-h/apex",
|
1734 |
+
"created_at": "2022-12-05T10:57:42Z"
|
1735 |
+
},
|
1736 |
+
{
|
1737 |
+
"label": 1,
|
1738 |
+
"text": "Heteronym disambiguation library using a fine-tuned BERT model.",
|
1739 |
+
"url": "https://github.com/passaglia/yomikata",
|
1740 |
+
"created_at": "2022-12-05T12:16:15Z"
|
1741 |
+
},
|
1742 |
+
{
|
1743 |
+
"label": 0,
|
1744 |
+
"text": "This repo includes ChatGPT prompt curation to use ChatGPT better.",
|
1745 |
+
"url": "https://github.com/f/awesome-chatgpt-prompts",
|
1746 |
+
"created_at": "2022-12-05T13:54:13Z"
|
1747 |
+
},
|
1748 |
+
{
|
1749 |
+
"label": 0,
|
1750 |
+
"text": "Profile README Repository",
|
1751 |
+
"url": "https://github.com/notdarkn/xinaa15",
|
1752 |
+
"created_at": "2022-12-05T16:05:12Z"
|
1753 |
+
},
|
1754 |
+
{
|
1755 |
+
"label": 0,
|
1756 |
+
"text": "Painter & SegGPT Series: Vision Foundation Models from BAAI",
|
1757 |
+
"url": "https://github.com/baaivision/eva",
|
1758 |
+
"created_at": "2022-12-05T17:43:17Z"
|
1759 |
+
},
|
1760 |
+
{
|
1761 |
+
"label": 1,
|
1762 |
+
"text": "デジタル化資料から作成したOCRテキストデータのngram頻度統計情報のデータセット",
|
1763 |
+
"url": "https://github.com/ndl-lab/ndlngramdata",
|
1764 |
+
"created_at": "2022-12-06T01:20:11Z"
|
1765 |
+
},
|
1766 |
+
{
|
1767 |
+
"label": 0,
|
1768 |
+
"text": "The open source initiative for anonymized, elite-level athletic motion capture data. Run by Driveline Baseball.",
|
1769 |
+
"url": "https://github.com/drivelineresearch/openbiomechanics",
|
1770 |
+
"created_at": "2022-12-06T02:35:38Z"
|
1771 |
+
},
|
1772 |
+
{
|
1773 |
+
"label": 0,
|
1774 |
+
"text": "wellnoteのデータエクスポートを行うソフトウェア",
|
1775 |
+
"url": "https://github.com/jirokun/wellnote",
|
1776 |
+
"created_at": "2022-12-06T15:42:28Z"
|
1777 |
+
},
|
1778 |
+
{
|
1779 |
+
"label": 0,
|
1780 |
+
"text": "An unofficial Visual Studio Code - OpenAI ChatGPT integration",
|
1781 |
+
"url": "https://github.com/gencay/vscode-chatgpt",
|
1782 |
+
"created_at": "2022-12-06T16:16:40Z"
|
1783 |
+
},
|
1784 |
+
{
|
1785 |
+
"label": 0,
|
1786 |
+
"text": "Point cloud diffusion for 3D model synthesis",
|
1787 |
+
"url": "https://github.com/openai/point-e",
|
1788 |
+
"created_at": "2022-12-06T16:32:13Z"
|
1789 |
+
},
|
1790 |
+
{
|
1791 |
+
"label": 0,
|
1792 |
+
"text": "Examples of Prisma Client extensions.",
|
1793 |
+
"url": "https://github.com/prisma/prisma-client-extensions",
|
1794 |
+
"created_at": "2022-12-06T18:58:50Z"
|
1795 |
+
},
|
1796 |
+
{
|
1797 |
+
"label": 0,
|
1798 |
+
"text": "Simple and Beautiful QR Code Reading and Generating App 📸",
|
1799 |
+
"url": "https://github.com/dev-roll/qrio",
|
1800 |
+
"created_at": "2022-12-07T13:22:13Z"
|
1801 |
+
},
|
1802 |
+
{
|
1803 |
+
"label": 0,
|
1804 |
+
"text": "A new framework for creating desktop apps from websites, using system installed browsers and NodeJS",
|
1805 |
+
"url": "https://github.com/gluon-framework/gluon",
|
1806 |
+
"created_at": "2022-12-07T16:07:54Z"
|
1807 |
+
},
|
1808 |
+
{
|
1809 |
+
"label": 0,
|
1810 |
+
"text": "community forum archive",
|
1811 |
+
"url": "https://github.com/wnelson03/restorecord-source-code",
|
1812 |
+
"created_at": "2022-12-07T23:00:21Z"
|
1813 |
+
},
|
1814 |
+
{
|
1815 |
+
"label": 0,
|
1816 |
+
"text": "Using Low-rank adaptation to quickly fine-tune diffusion models.",
|
1817 |
+
"url": "https://github.com/cloneofsimo/lora",
|
1818 |
+
"created_at": "2022-12-08T00:09:05Z"
|
1819 |
+
},
|
1820 |
+
{
|
1821 |
+
"label": 1,
|
1822 |
+
"text": "Viterbi-based accelerated tokenizer (Python wrapper)",
|
1823 |
+
"url": "https://github.com/daac-tools/python-vibrato",
|
1824 |
+
"created_at": "2022-12-08T03:30:10Z"
|
1825 |
+
},
|
1826 |
+
{
|
1827 |
+
"label": 0,
|
1828 |
+
"text": "卒論用、デジタルツイン環境の構築",
|
1829 |
+
"url": "https://github.com/pokopoko02/digitaltwin_ryonagai",
|
1830 |
+
"created_at": "2022-12-08T09:00:44Z"
|
1831 |
+
},
|
1832 |
+
{
|
1833 |
+
"label": 0,
|
1834 |
+
"text": "Minimal C-Compiler for my practice about zig.",
|
1835 |
+
"url": "https://github.com/r-mutax/mcc_zig",
|
1836 |
+
"created_at": "2022-12-08T16:23:57Z"
|
1837 |
+
},
|
1838 |
+
{
|
1839 |
+
"label": 0,
|
1840 |
+
"text": "Talk to ChatGPT AI using your voice and listen to its answers through a voice",
|
1841 |
+
"url": "https://github.com/c-nedelcu/talk-to-chatgpt",
|
1842 |
+
"created_at": "2022-12-09T02:15:26Z"
|
1843 |
+
},
|
1844 |
+
{
|
1845 |
+
"label": 0,
|
1846 |
+
"text": "Self-hosted x86-64 Assembler written in V",
|
1847 |
+
"url": "https://github.com/v420v/vas",
|
1848 |
+
"created_at": "2022-12-09T05:15:36Z"
|
1849 |
+
},
|
1850 |
+
{
|
1851 |
+
"label": 0,
|
1852 |
+
"text": "keyboard firmware for tinygo",
|
1853 |
+
"url": "https://github.com/sago35/tinygo-keyboard",
|
1854 |
+
"created_at": "2022-12-09T13:14:11Z"
|
1855 |
+
},
|
1856 |
+
{
|
1857 |
+
"label": 0,
|
1858 |
+
"text": "JavaScript tooling for working with WebAssembly Components",
|
1859 |
+
"url": "https://github.com/bytecodealliance/jco",
|
1860 |
+
"created_at": "2022-12-09T20:51:46Z"
|
1861 |
+
},
|
1862 |
+
{
|
1863 |
+
"label": 0,
|
1864 |
+
"text": "LAPRASの現在のスコアをSVG画像のカードとして、GitHub Profileに埋め込むGitHub Actions",
|
1865 |
+
"url": "https://github.com/kawamataryo/lapras-card-readme",
|
1866 |
+
"created_at": "2022-12-10T02:25:37Z"
|
1867 |
+
},
|
1868 |
+
{
|
1869 |
+
"label": 0,
|
1870 |
+
"text": "Cross development environment for the SHARP X68K.",
|
1871 |
+
"url": "https://github.com/axsann/xdev68k-mac",
|
1872 |
+
"created_at": "2022-12-10T06:12:15Z"
|
1873 |
+
},
|
1874 |
+
{
|
1875 |
+
"label": 0,
|
1876 |
+
"text": "OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested",
|
1877 |
+
"url": "https://github.com/otiai10/openaigo",
|
1878 |
+
"created_at": "2022-12-10T08:13:35Z"
|
1879 |
+
},
|
1880 |
+
{
|
1881 |
+
"label": 0,
|
1882 |
+
"text": "MAG image converter",
|
1883 |
+
"url": "https://github.com/h-o-soft/slang-compiler",
|
1884 |
+
"created_at": "2022-12-10T08:52:24Z"
|
1885 |
+
},
|
1886 |
+
{
|
1887 |
+
"label": 0,
|
1888 |
+
"text": "A fast, well-tested and widely used WebSocket implementation for Go.",
|
1889 |
+
"url": "https://github.com/shiguredo/websocket",
|
1890 |
+
"created_at": "2022-12-10T09:55:31Z"
|
1891 |
+
},
|
1892 |
+
{
|
1893 |
+
"label": 1,
|
1894 |
+
"text": "VRChatにAI Botを作るためのリポジトリ",
|
1895 |
+
"url": "https://github.com/Geson-anko/vrchatbot",
|
1896 |
+
"created_at": "2022-12-10T13:48:46Z"
|
1897 |
+
},
|
1898 |
+
{
|
1899 |
+
"label": 0,
|
1900 |
+
"text": "WebGL 勉強会Vol.1 2022/12/11",
|
1901 |
+
"url": "https://github.com/tanababy/webgl-studies-vol1",
|
1902 |
+
"created_at": "2022-12-10T17:30:40Z"
|
1903 |
+
},
|
1904 |
+
{
|
1905 |
+
"label": 0,
|
1906 |
+
"text": "formatyaya for vscode",
|
1907 |
+
"url": "https://github.com/apxxxxxxe/formatyaya-vscode",
|
1908 |
+
"created_at": "2022-12-11T02:06:43Z"
|
1909 |
+
},
|
1910 |
+
{
|
1911 |
+
"label": 0,
|
1912 |
+
"text": "Digital Piano Benchmark",
|
1913 |
+
"url": "https://github.com/frieve-a/dipbench",
|
1914 |
+
"created_at": "2022-12-11T04:04:48Z"
|
1915 |
+
},
|
1916 |
+
{
|
1917 |
+
"label": 0,
|
1918 |
+
"text": "A collection of RMMV scripts",
|
1919 |
+
"url": "https://github.com/ohisama-craft/srpg_gearmv",
|
1920 |
+
"created_at": "2022-12-11T13:56:45Z"
|
1921 |
+
},
|
1922 |
+
{
|
1923 |
+
"label": 0,
|
1924 |
+
"text": "Smart Transaction for Symbol PoC",
|
1925 |
+
"url": "https://github.com/opensphere-inc/smart-transaction-poc",
|
1926 |
+
"created_at": "2022-12-12T00:51:04Z"
|
1927 |
+
},
|
1928 |
+
{
|
1929 |
+
"label": 0,
|
1930 |
+
"text": "OpenAI API client library for Rust (unofficial)",
|
1931 |
+
"url": "https://github.com/dongri/openai-api-rs",
|
1932 |
+
"created_at": "2022-12-12T02:41:19Z"
|
1933 |
+
},
|
1934 |
+
{
|
1935 |
+
"label": 0,
|
1936 |
+
"text": "A memory safe implementation of sudo and su.",
|
1937 |
+
"url": "https://github.com/memorysafety/sudo-rs",
|
1938 |
+
"created_at": "2022-12-12T16:40:01Z"
|
1939 |
+
},
|
1940 |
+
{
|
1941 |
+
"label": 0,
|
1942 |
+
"text": "URL manipulation cheatsheet for JavaScript",
|
1943 |
+
"url": "https://github.com/azu/url-cheatsheet",
|
1944 |
+
"created_at": "2022-12-13T15:25:27Z"
|
1945 |
+
},
|
1946 |
+
{
|
1947 |
+
"label": 0,
|
1948 |
+
"text": "Running Rails from Docker for easy start to development",
|
1949 |
+
"url": "https://github.com/rails/docked",
|
1950 |
+
"created_at": "2022-12-13T15:28:48Z"
|
1951 |
+
},
|
1952 |
+
{
|
1953 |
+
"label": 0,
|
1954 |
+
"text": "Yet Another VRChat Creator Companion (VCC) for Mac and Windows",
|
1955 |
+
"url": "https://github.com/kurotu/tiny_vcc",
|
1956 |
+
"created_at": "2022-12-13T15:50:07Z"
|
1957 |
+
},
|
1958 |
+
{
|
1959 |
+
"label": 0,
|
1960 |
+
"text": "Example macros for the Swift macros effort",
|
1961 |
+
"url": "https://github.com/douggregor/swift-macro-examples",
|
1962 |
+
"created_at": "2022-12-13T23:57:35Z"
|
1963 |
+
},
|
1964 |
+
{
|
1965 |
+
"label": 0,
|
1966 |
+
"text": "So-called ”SAME GAME(さめがめ)” based on mini-game ”Color Junction” of iGoogle",
|
1967 |
+
"url": "https://github.com/fugamaru/color-junction",
|
1968 |
+
"created_at": "2022-12-14T12:21:00Z"
|
1969 |
+
},
|
1970 |
+
{
|
1971 |
+
"label": 0,
|
1972 |
+
"text": "A playground building a simple WebGPU app with Rust",
|
1973 |
+
"url": "https://github.com/ogukei/webgpu-sandbox",
|
1974 |
+
"created_at": "2022-12-14T18:33:56Z"
|
1975 |
+
},
|
1976 |
+
{
|
1977 |
+
"label": 0,
|
1978 |
+
"text": "Merge models with separate rate for each 25 U-Net block (input, middle, output). Extension for Stable Diffusion UI by AUTOMATIC1111",
|
1979 |
+
"url": "https://github.com/bbc-mc/sdweb-merge-block-weighted-gui",
|
1980 |
+
"created_at": "2022-12-15T05:29:22Z"
|
1981 |
+
},
|
1982 |
+
{
|
1983 |
+
"label": 0,
|
1984 |
+
"text": "recreate",
|
1985 |
+
"url": "https://github.com/0xk1h0/chatgpt_dan",
|
1986 |
+
"created_at": "2022-12-15T07:58:09Z"
|
1987 |
+
},
|
1988 |
+
{
|
1989 |
+
"label": 0,
|
1990 |
+
"text": "A vocal pitch correction web application (like Autotune)",
|
1991 |
+
"url": "https://github.com/alexcrist/autotone",
|
1992 |
+
"created_at": "2022-12-15T08:01:48Z"
|
1993 |
+
},
|
1994 |
+
{
|
1995 |
+
"label": 0,
|
1996 |
+
"text": "XC2.1のライブラリをライブラリアン形式(拡張子 .L)からアーカイバ形式(.A)に変換するバッチファイル ",
|
1997 |
+
"url": "https://github.com/kg68k/xc21-ltoa",
|
1998 |
+
"created_at": "2022-12-15T13:51:42Z"
|
1999 |
+
},
|
2000 |
+
{
|
2001 |
+
"label": 0,
|
2002 |
+
"text": "Filelist generator",
|
2003 |
+
"url": "https://github.com/pezy-computing/flgen",
|
2004 |
+
"created_at": "2022-12-16T00:31:23Z"
|
2005 |
+
},
|
2006 |
+
{
|
2007 |
+
"label": 0,
|
2008 |
+
"text": "Riffusion extension for AUTOMATIC1111's SD Web UI",
|
2009 |
+
"url": "https://github.com/enlyth/sd-webui-riffusion",
|
2010 |
+
"created_at": "2022-12-16T02:34:34Z"
|
2011 |
+
},
|
2012 |
+
{
|
2013 |
+
"label": 0,
|
2014 |
+
"text": "[CVPR2023] The code for 《Position-guided Text Prompt for Vision-Language Pre-training》",
|
2015 |
+
"url": "https://github.com/sail-sg/ptp",
|
2016 |
+
"created_at": "2022-12-16T06:01:43Z"
|
2017 |
+
},
|
2018 |
+
{
|
2019 |
+
"label": 0,
|
2020 |
+
"text": "Capture or stream Game Boy gameplay footage via USB without modifying the Game Boy.",
|
2021 |
+
"url": "https://github.com/staacks/gbinterceptor",
|
2022 |
+
"created_at": "2022-12-16T10:06:56Z"
|
2023 |
+
},
|
2024 |
+
{
|
2025 |
+
"label": 0,
|
2026 |
+
"text": "MVU framework + VDOM runtime (inspired by Elm)",
|
2027 |
+
"url": "https://github.com/0918nobita/mvu",
|
2028 |
+
"created_at": "2022-12-16T16:15:47Z"
|
2029 |
+
},
|
2030 |
+
{
|
2031 |
+
"label": 0,
|
2032 |
+
"text": "rcfiles...",
|
2033 |
+
"url": "https://github.com/ukiuki-engineer/dotfiles",
|
2034 |
+
"created_at": "2022-12-16T21:37:25Z"
|
2035 |
+
},
|
2036 |
+
{
|
2037 |
+
"label": 0,
|
2038 |
+
"text": "クラスルームの通知をLINEに送るプログラム。",
|
2039 |
+
"url": "https://github.com/valleyorigin/excelpixelart",
|
2040 |
+
"created_at": "2022-12-17T04:20:48Z"
|
2041 |
+
},
|
2042 |
+
{
|
2043 |
+
"label": 0,
|
2044 |
+
"text": "Steamdeckデスクトップモードを日本語で使いやすくするためのプロジェクトです。",
|
2045 |
+
"url": "https://github.com/yutabiji/japanize-steamdeck",
|
2046 |
+
"created_at": "2022-12-17T22:18:58Z"
|
2047 |
+
},
|
2048 |
+
{
|
2049 |
+
"label": 0,
|
2050 |
+
"text": "Semi-automatic pipeline to extract image training set from anime for generative model training",
|
2051 |
+
"url": "https://github.com/cyber-meow/anime_screenshot_pipeline",
|
2052 |
+
"created_at": "2022-12-17T22:32:39Z"
|
2053 |
+
},
|
2054 |
+
{
|
2055 |
+
"label": 0,
|
2056 |
+
"text": "Open source implementation of receiver plugin for mocopi motion tracking system.",
|
2057 |
+
"url": "https://github.com/seagetch/mcp-receiver",
|
2058 |
+
"created_at": "2022-12-18T04:47:26Z"
|
2059 |
+
},
|
2060 |
+
{
|
2061 |
+
"label": 0,
|
2062 |
+
"text": "エンジニアに関する知識を記録・共有するためのサービス「Qiita」をNVDAで閲覧する際、見出しとともに不要な読み上げがなされてしまう問題を暫定的に修正します。",
|
2063 |
+
"url": "https://github.com/yamahubuki/qiita-helper",
|
2064 |
+
"created_at": "2022-12-18T07:28:08Z"
|
2065 |
+
},
|
2066 |
+
{
|
2067 |
+
"label": 1,
|
2068 |
+
"text": "Haystack + Elasticsearch + wikipedia(ja) を用いた、日本語の質問応答システムのサンプル",
|
2069 |
+
"url": "https://github.com/Shingo-Kamata/japanese_qa_demo_with_haystack_and_es",
|
2070 |
+
"created_at": "2022-12-18T10:16:47Z"
|
2071 |
+
},
|
2072 |
+
{
|
2073 |
+
"label": 0,
|
2074 |
+
"text": "domain for vpm",
|
2075 |
+
"url": "https://github.com/anatawa12/vpm.anatawa12.com",
|
2076 |
+
"created_at": "2022-12-18T12:21:59Z"
|
2077 |
+
},
|
2078 |
+
{
|
2079 |
+
"label": 0,
|
2080 |
+
"text": "ELF to X68k executable converter with cross development environment",
|
2081 |
+
"url": "https://github.com/yunkya2/elf2x68k",
|
2082 |
+
"created_at": "2022-12-18T13:50:45Z"
|
2083 |
+
},
|
2084 |
+
{
|
2085 |
+
"label": 0,
|
2086 |
+
"text": "A nostr library, written in java, for generating, signing and publishing events.",
|
2087 |
+
"url": "https://github.com/tcheeric/nostr-java",
|
2088 |
+
"created_at": "2022-12-18T13:51:35Z"
|
2089 |
+
},
|
2090 |
+
{
|
2091 |
+
"label": 0,
|
2092 |
+
"text": "Zero-shot multimodal punctuation insertion and truecasing using Whisper",
|
2093 |
+
"url": "https://github.com/jumon/whisper-punctuator",
|
2094 |
+
"created_at": "2022-12-19T03:45:47Z"
|
2095 |
+
},
|
2096 |
+
{
|
2097 |
+
"label": 0,
|
2098 |
+
"text": "Basic Common Modules",
|
2099 |
+
"url": "https://github.com/pezy-computing/pzbcm",
|
2100 |
+
"created_at": "2022-12-19T04:09:50Z"
|
2101 |
+
},
|
2102 |
+
{
|
2103 |
+
"label": 0,
|
2104 |
+
"text": "ORM for Chrome Extension with `chrome.storage` API",
|
2105 |
+
"url": "https://github.com/otiai10/chromestorm",
|
2106 |
+
"created_at": "2022-12-19T06:46:57Z"
|
2107 |
+
},
|
2108 |
+
{
|
2109 |
+
"label": 0,
|
2110 |
+
"text": "AI Commit Messages Autocomplete for InteliJ",
|
2111 |
+
"url": "https://github.com/mamiksik/parrot-intellij",
|
2112 |
+
"created_at": "2022-12-19T13:40:49Z"
|
2113 |
+
},
|
2114 |
+
{
|
2115 |
+
"label": 0,
|
2116 |
+
"text": "An explanation of a Haskell library `syb`",
|
2117 |
+
"url": "https://github.com/toku-sa-n/playing-with-syb",
|
2118 |
+
"created_at": "2022-12-20T03:04:35Z"
|
2119 |
+
},
|
2120 |
+
{
|
2121 |
+
"label": 0,
|
2122 |
+
"text": "Design system library by pixiv",
|
2123 |
+
"url": "https://github.com/pixiv/charcoal-android",
|
2124 |
+
"created_at": "2022-12-20T05:30:06Z"
|
2125 |
+
},
|
2126 |
+
{
|
2127 |
+
"label": 0,
|
2128 |
+
"text": "A super lightweight library that helps you to compose multiple conditional expressions and make them asynchronous easily.",
|
2129 |
+
"url": "https://github.com/line/conditional",
|
2130 |
+
"created_at": "2022-12-20T06:27:27Z"
|
2131 |
+
},
|
2132 |
+
{
|
2133 |
+
"label": 0,
|
2134 |
+
"text": "Twitterのツイートラベルを復活",
|
2135 |
+
"url": "https://github.com/skota11/twi-label",
|
2136 |
+
"created_at": "2022-12-20T11:47:20Z"
|
2137 |
+
},
|
2138 |
+
{
|
2139 |
+
"label": 0,
|
2140 |
+
"text": "キャラクター交流型ウェブゲーム基幹システムLunchtoteのバックエンド",
|
2141 |
+
"url": "https://github.com/kaikourok/lunchtote-backend",
|
2142 |
+
"created_at": "2022-12-20T18:07:54Z"
|
2143 |
+
},
|
2144 |
+
{
|
2145 |
+
"label": 0,
|
2146 |
+
"text": "Stable Diffusion Browser for Windows, Mac, and Linux",
|
2147 |
+
"url": "https://github.com/cocktailpeanut/breadboard",
|
2148 |
+
"created_at": "2022-12-20T19:28:39Z"
|
2149 |
+
},
|
2150 |
+
{
|
2151 |
+
"label": 0,
|
2152 |
+
"text": "for X680x0 software distribution",
|
2153 |
+
"url": "https://github.com/tantangh/distribution",
|
2154 |
+
"created_at": "2022-12-20T23:55:31Z"
|
2155 |
+
},
|
2156 |
+
{
|
2157 |
+
"label": 0,
|
2158 |
+
"text": "A gradio web UI for running Large Language Models like LLaMA, llama.cpp, GPT-J, OPT, and GALACTICA.",
|
2159 |
+
"url": "https://github.com/oobabooga/text-generation-webui",
|
2160 |
+
"created_at": "2022-12-21T04:17:37Z"
|
2161 |
+
},
|
2162 |
+
{
|
2163 |
+
"label": 0,
|
2164 |
+
"text": "OSS consortium patched version of GnuCOBOL.",
|
2165 |
+
"url": "https://github.com/opensourcecobol/gnucobol-osscons-patch",
|
2166 |
+
"created_at": "2022-12-21T07:30:41Z"
|
2167 |
+
},
|
2168 |
+
{
|
2169 |
+
"label": 0,
|
2170 |
+
"text": "Orbit bridge docker images",
|
2171 |
+
"url": "https://github.com/terra-rebels/classic",
|
2172 |
+
"created_at": "2022-12-21T11:45:41Z"
|
2173 |
+
},
|
2174 |
+
{
|
2175 |
+
"label": 0,
|
2176 |
+
"text": "A Rust library for various cryptocurrency exchange APIs",
|
2177 |
+
"url": "https://github.com/negi-grass/crypto-botters",
|
2178 |
+
"created_at": "2022-12-21T12:14:54Z"
|
2179 |
+
},
|
2180 |
+
{
|
2181 |
+
"label": 0,
|
2182 |
+
"text": "This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.",
|
2183 |
+
"url": "https://github.com/google/comprehensive-rust",
|
2184 |
+
"created_at": "2022-12-21T15:17:24Z"
|
2185 |
+
},
|
2186 |
+
{
|
2187 |
+
"label": 0,
|
2188 |
+
"text": "Wildebeest is an ActivityPub and Mastodon-compatible server",
|
2189 |
+
"url": "https://github.com/cloudflare/wildebeest",
|
2190 |
+
"created_at": "2022-12-21T17:29:55Z"
|
2191 |
+
},
|
2192 |
+
{
|
2193 |
+
"label": 0,
|
2194 |
+
"text": "Speech synthesis software without voice actors",
|
2195 |
+
"url": "https://github.com/koharuyuzuki/poino",
|
2196 |
+
"created_at": "2022-12-21T19:41:08Z"
|
2197 |
+
},
|
2198 |
+
{
|
2199 |
+
"label": 0,
|
2200 |
+
"text": "Example Discord bot written in Python that uses the completions API to have conversations with the `text-davinci-003` model, and the moderations API to filter the messages.",
|
2201 |
+
"url": "https://github.com/openai/gpt-discord-bot",
|
2202 |
+
"created_at": "2022-12-21T21:53:06Z"
|
2203 |
+
},
|
2204 |
+
{
|
2205 |
+
"label": 0,
|
2206 |
+
"text": "UTAUのUSTファイルから歌書キコのボーカルパートを生成。 Converts UTAU sequence text file to vocal MML for Utakakiko (template for FlMML).",
|
2207 |
+
"url": "https://github.com/grj1234/ust2kiko",
|
2208 |
+
"created_at": "2022-12-21T23:44:05Z"
|
2209 |
+
},
|
2210 |
+
{
|
2211 |
+
"label": 0,
|
2212 |
+
"text": "GORA = GraphQL Operation Driven Approach",
|
2213 |
+
"url": "https://github.com/k-kinzal/goda-rs",
|
2214 |
+
"created_at": "2022-12-22T06:18:32Z"
|
2215 |
+
},
|
2216 |
+
{
|
2217 |
+
"label": 0,
|
2218 |
+
"text": "SDK for interacting with stability.ai APIs (e.g. stable diffusion inference)",
|
2219 |
+
"url": "https://github.com/stability-ai/stablestudio",
|
2220 |
+
"created_at": "2022-12-22T11:40:31Z"
|
2221 |
+
},
|
2222 |
+
{
|
2223 |
+
"label": 0,
|
2224 |
+
"text": "smcleod.net",
|
2225 |
+
"url": "https://github.com/shogo82148/fsnotify",
|
2226 |
+
"created_at": "2022-12-22T12:21:50Z"
|
2227 |
+
},
|
2228 |
+
{
|
2229 |
+
"label": 0,
|
2230 |
+
"text": "コンテナ内から安全にダークウェブをクローリングするための環境",
|
2231 |
+
"url": "https://github.com/phishing-hunter/dark-fess",
|
2232 |
+
"created_at": "2022-12-22T12:35:33Z"
|
2233 |
+
},
|
2234 |
+
{
|
2235 |
+
"label": 0,
|
2236 |
+
"text": "Elixir Docker",
|
2237 |
+
"url": "https://github.com/c-a-p-engineer/docker-elixir",
|
2238 |
+
"created_at": "2022-12-23T16:06:41Z"
|
2239 |
+
},
|
2240 |
+
{
|
2241 |
+
"label": 0,
|
2242 |
+
"text": "Some Denial of Service Defenses for SmartCanisters on IC",
|
2243 |
+
"url": "https://github.com/icdev2dev/dos",
|
2244 |
+
"created_at": "2022-12-24T00:38:20Z"
|
2245 |
+
},
|
2246 |
+
{
|
2247 |
+
"label": 0,
|
2248 |
+
"text": "This code could get motion data from apple watch",
|
2249 |
+
"url": "https://github.com/akihikooharazawa/get_motiondata",
|
2250 |
+
"created_at": "2022-12-24T07:40:41Z"
|
2251 |
+
},
|
2252 |
+
{
|
2253 |
+
"label": 0,
|
2254 |
+
"text": "The repository picker",
|
2255 |
+
"url": "https://github.com/comamoca/recker",
|
2256 |
+
"created_at": "2022-12-24T15:23:29Z"
|
2257 |
+
},
|
2258 |
+
{
|
2259 |
+
"label": 0,
|
2260 |
+
"text": "SD.Next: Advanced Implementation of Stable Diffusion",
|
2261 |
+
"url": "https://github.com/vladmandic/automatic",
|
2262 |
+
"created_at": "2022-12-24T20:59:11Z"
|
2263 |
+
},
|
2264 |
+
{
|
2265 |
+
"label": 0,
|
2266 |
+
"text": "NAT written in pure ruby",
|
2267 |
+
"url": "https://github.com/kazuho/rat",
|
2268 |
+
"created_at": "2022-12-25T00:54:03Z"
|
2269 |
+
},
|
2270 |
+
{
|
2271 |
+
"label": 0,
|
2272 |
+
"text": "Rust implementation of ESP32 NVS partition generator.",
|
2273 |
+
"url": "https://github.com/ciniml/esp32-nvs-rs",
|
2274 |
+
"created_at": "2022-12-25T01:27:39Z"
|
2275 |
+
},
|
2276 |
+
{
|
2277 |
+
"label": 0,
|
2278 |
+
"text": "ポートフォリオサイト作成リポジトリ",
|
2279 |
+
"url": "https://github.com/blackyaki29/blackyaki29.jpn.org",
|
2280 |
+
"created_at": "2022-12-25T02:20:25Z"
|
2281 |
+
},
|
2282 |
+
{
|
2283 |
+
"label": 0,
|
2284 |
+
"text": "autoclose brackets, quotations, html tags",
|
2285 |
+
"url": "https://github.com/ukiuki-engineer/vim-autoclose",
|
2286 |
+
"created_at": "2022-12-25T09:20:06Z"
|
2287 |
+
},
|
2288 |
+
{
|
2289 |
+
"label": 0,
|
2290 |
+
"text": "連打くん in Python",
|
2291 |
+
"url": "https://github.com/eggplants/rendakun.py",
|
2292 |
+
"created_at": "2022-12-25T11:04:20Z"
|
2293 |
+
},
|
2294 |
+
{
|
2295 |
+
"label": 0,
|
2296 |
+
"text": "Manage the external elisp bits and pieces upon which you depend!",
|
2297 |
+
"url": "https://github.com/takeokunn/el-get",
|
2298 |
+
"created_at": "2022-12-25T11:25:59Z"
|
2299 |
+
},
|
2300 |
+
{
|
2301 |
+
"label": 0,
|
2302 |
+
"text": "VS Code Codespaces ハンズオン 参加者向けガイド",
|
2303 |
+
"url": "https://github.com/vscodejp/codespaces-handson",
|
2304 |
+
"created_at": "2022-12-26T03:30:11Z"
|
2305 |
+
},
|
2306 |
+
{
|
2307 |
+
"label": 1,
|
2308 |
+
"text": "2023年1月にリニューアルしたNDL Ngram Viewerのソースコード等一式",
|
2309 |
+
"url": "https://github.com/ndl-lab/ndlngramviewer_v2",
|
2310 |
+
"created_at": "2022-12-26T04:29:57Z"
|
2311 |
+
},
|
2312 |
+
{
|
2313 |
+
"label": 0,
|
2314 |
+
"text": "ミンサガリマスターの覚え書き",
|
2315 |
+
"url": "https://github.com/gachianiki69/rsms",
|
2316 |
+
"created_at": "2022-12-26T15:53:10Z"
|
2317 |
+
},
|
2318 |
+
{
|
2319 |
+
"label": 0,
|
2320 |
+
"text": "Chat with your notes in Obsidian! Plus, see what's most relevant in real-time! Interact and stay organized. Powered by OpenAI ChatGPT, GPT-4 & Embeddings.",
|
2321 |
+
"url": "https://github.com/brianpetro/obsidian-smart-connections",
|
2322 |
+
"created_at": "2022-12-26T20:21:13Z"
|
2323 |
+
},
|
2324 |
+
{
|
2325 |
+
"label": 0,
|
2326 |
+
"text": "Extension to generate prompt from simple text for SD web UI by AUTOMATIC1111",
|
2327 |
+
"url": "https://github.com/toshiaki1729/stable-diffusion-webui-text2prompt",
|
2328 |
+
"created_at": "2022-12-27T17:05:47Z"
|
2329 |
+
},
|
2330 |
+
{
|
2331 |
+
"label": 0,
|
2332 |
+
"text": "The fastest Unity asset reference search editor extension",
|
2333 |
+
"url": "https://github.com/mika-f/asset-lens",
|
2334 |
+
"created_at": "2022-12-27T17:26:02Z"
|
2335 |
+
},
|
2336 |
+
{
|
2337 |
+
"label": 0,
|
2338 |
+
"text": "Elgato StreamDeck Advanced HTTP Plugin",
|
2339 |
+
"url": "https://github.com/flowingspdg/streamdeck-advanced-http",
|
2340 |
+
"created_at": "2022-12-28T16:26:29Z"
|
2341 |
+
},
|
2342 |
+
{
|
2343 |
+
"label": 0,
|
2344 |
+
"text": "Cramming the training of a (BERT-type) language model into limited compute.",
|
2345 |
+
"url": "https://github.com/jonasgeiping/cramming",
|
2346 |
+
"created_at": "2022-12-29T01:29:41Z"
|
2347 |
+
},
|
2348 |
+
{
|
2349 |
+
"label": 1,
|
2350 |
+
"text": "JCommonsenseMorality is a dataset created through crowdsourcing that reflects the commonsense morality of Japanese annotators.",
|
2351 |
+
"url": "https://github.com/Language-Media-Lab/commonsense-moral-ja",
|
2352 |
+
"created_at": "2022-12-29T04:18:04Z"
|
2353 |
+
},
|
2354 |
+
{
|
2355 |
+
"label": 0,
|
2356 |
+
"text": "MP4/AVI movie file to animated GIF file converter",
|
2357 |
+
"url": "https://github.com/tantangh/mp3exp",
|
2358 |
+
"created_at": "2022-12-29T10:07:41Z"
|
2359 |
+
},
|
2360 |
+
{
|
2361 |
+
"label": 0,
|
2362 |
+
"text": "📖 A command line translate tool with interactive mode inspired by translate-shell",
|
2363 |
+
"url": "https://github.com/sheepla/strans",
|
2364 |
+
"created_at": "2022-12-29T11:52:22Z"
|
2365 |
+
},
|
2366 |
+
{
|
2367 |
+
"label": 0,
|
2368 |
+
"text": "go nullable type for database/sql and encoding/json, this is not monadic library",
|
2369 |
+
"url": "https://github.com/podhmo/nullable",
|
2370 |
+
"created_at": "2022-12-29T13:24:34Z"
|
2371 |
+
},
|
2372 |
+
{
|
2373 |
+
"label": 0,
|
2374 |
+
"text": "Code release for ConvNeXt V2 model",
|
2375 |
+
"url": "https://github.com/facebookresearch/shumai",
|
2376 |
+
"created_at": "2022-12-29T23:40:13Z"
|
2377 |
+
},
|
2378 |
+
{
|
2379 |
+
"label": 0,
|
2380 |
+
"text": "MaiNovel は AI 技術を使って手軽にビジュアルノベルを作れるツールです。",
|
2381 |
+
"url": "https://github.com/zuntan03/latentcouplehelper",
|
2382 |
+
"created_at": "2022-12-30T05:30:45Z"
|
2383 |
+
},
|
2384 |
+
{
|
2385 |
+
"label": 0,
|
2386 |
+
"text": "MIDI DIN-TRS Converter with Polarity reversing switch",
|
2387 |
+
"url": "https://github.com/pikopikofactory/pikokeyv1_1",
|
2388 |
+
"created_at": "2022-12-30T14:02:34Z"
|
2389 |
+
},
|
2390 |
+
{
|
2391 |
+
"label": 0,
|
2392 |
+
"text": "HDMI Transmitter IP Core",
|
2393 |
+
"url": "https://github.com/osafune/hdmi_tx",
|
2394 |
+
"created_at": "2022-12-30T20:09:36Z"
|
2395 |
+
},
|
2396 |
+
{
|
2397 |
+
"label": 0,
|
2398 |
+
"text": "Create swarmplot + boxplot",
|
2399 |
+
"url": "https://github.com/mitotaiki/swarmplot-boxplot",
|
2400 |
+
"created_at": "2022-12-31T12:12:41Z"
|
2401 |
+
}
|
2402 |
+
]
|