Compare commits

..

No commits in common. "167ae0b77a44ac851148f3e62e482f138dc1c228" and "29e0fb718a17f3eb70f40a29fa31d53e958f0006" have entirely different histories.

23 changed files with 1 additions and 64 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
list/_full_list.txt

View File

@ -1 +0,0 @@
Azopano: (天文)海王星 [1222; =azo+pano]

View File

@ -1 +0,0 @@
Lacopano: (天文)水星 [2222; =laco+pano]

View File

@ -1 +0,0 @@
Lamopano: (天文)火星 [2222; =lamo+pano]

View File

@ -1 +0,0 @@
Leuqopano: (天文)土星 [3222; =leuqo+pano]

View File

@ -1 +0,0 @@
Lidopano: (天文)金星 [2222; =lido+pano]

View File

@ -1 +0,0 @@
Liigopano: (天文)木星 [2222; =liigo+pano]

View File

@ -1 +0,0 @@
Qazopano: (天文)天王星 [2222; =qazo+pano]

View File

@ -1 +0,0 @@
degdolento: 相邻/相邻的 [3232; =deg+dolento]

View File

@ -1 +0,0 @@
degnexo: 连续的 [332; =deg+nexo]

View File

@ -1 +0,0 @@
dolento: 距离 [232; =do+lento]

View File

@ -1 +0,0 @@
iado: 例子/实例 [22; O< iada]

View File

@ -1 +0,0 @@
isopano: 恒星 [1222; =iso+pano]

View File

@ -1 +0,0 @@
lentempo: 延续 [332; =lentiza+tempo]

View File

@ -1 +0,0 @@
lentiza: 延长 [322; =lento+iza]

View File

@ -1 +0,0 @@
partauma: 分工 [332; =part+auma]

View File

@ -1 +1 @@
qazode: 星期六 [222; =qazo+de]
qezode: 星期六 [222; =qezo+de]

View File

@ -1 +0,0 @@
sacoro: 在……内 [222; =sa+coro]

View File

@ -1 +0,0 @@
subisio: 宇宙/时间和空间的统称 [223; =subo+iso]

View File

@ -1 +0,0 @@
teulo: 尾巴/最后的/后缀 [32; E. tail]

View File

@ -1,26 +0,0 @@
const rl = require("readline").createInterface({
input: process.stdin,
output: process.stdout,
});
const { writeFile } = require('fs/promises');
const question = (query) =>
new Promise((resolve) => rl.question(query, (answer) => resolve(answer)));
async function main() {
while (true) {
let input = await question('>');
if (input == null || input == '.quit') {
console.log('end');
return;
}
let name = input.match(/^([^\:]+):/)[1];
if (!input.endsWith('\n')) {
input += '\n';
}
await writeFile(name, input);
}
}
main();

View File

@ -1,18 +0,0 @@
const { readdir, writeFile, readFile } = require('fs/promises');
async function main() {
let res = "";
let list = await readdir('.');
list = list.sort((x, y) => x.toLowerCase() < y.toLowerCase() ? -1 : 1);
for (let f of list) {
let c = await readFile(f, 'utf8');
let l = c.split('\n')[0];
res += l;
if (!l.endsWith('\n')) { res += '\n'; }
}
await writeFile('_full_list.txt', res);
}
main();