词 | 词性 | 释义 |
---|---|---|
Logonmos | ns | 语言 |
Androparageon | adj | 人造的 |
Lexi | v | 表达语义 |
Lexus | ns | 词 |
Lexunmos | ns | 词典 |
Dinami | v | 移动 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Copyright (c) 2021 Neruthes. | |
# Released under GNU GPLv2. | |
# | |
### Initialize config vars | |
DefaultPythonVer=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TCAP=3 | |
echo "Using $TCAP threads." | |
export UUID=$(uuidgen) | |
echo "[debug] UUID=$UUID" | |
echo "" | |
function _getHeap() { | |
cat /tmp/heap-$UUID | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.14.2-gentoo Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="gcc (Gentoo 11.2.0 p1) 11.2.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110200 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=23700 |
本项目旨在基于希腊语和拉丁语的一些基础词汇设计一个人造语言。在词汇上继承为主,在语法上放弃为主,在语音上简化为主。
注重单词的长度的对称性。
另有动态更新的词汇列表。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 进制下 2 符合条件 | |
4 进制下 3 符合条件 | |
5 进制下 2 符合条件 | |
5 进制下 4 符合条件 | |
6 进制下 5 符合条件 | |
7 进制下 2 符合条件 | |
7 进制下 3 符合条件 | |
7 进制下 6 符合条件 | |
8 进制下 7 符合条件 | |
9 进制下 2 符合条件 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const pingHttps = function(limit) { | |
let totalTimes = -1; | |
const myPingData = []; | |
const analyzeData = function (inputDataArr) { | |
console.log('Raw Ping Data:'); | |
console.log(myPingData); | |
var roundTripTimeArr = inputDataArr.map(x => x.end - x.begin); | |
var avgRoundTripTime = roundTripTimeArr.reduce((a, b) => a + b) / roundTripTimeArr.length; | |
console.log(`Tested ${roundTripTimeArr.length} times. Average round trip time: ${avgRoundTripTime} ms.`); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
你将如青龙般归来 | |
甲光向日金鳞开 | |
塞上燕脂凝夜紫 | |
醉里挑灯看剑 | |
祖国春风不过江岸 | |
我离开你太久了 | |
符拉迪沃斯托克 | |
不是我真姓 | |
图们江一条大河波浪宽 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CryptoJS = require('crypto-js'); | |
var inputUuid = 'e7587bd1-bb94-4949-9a75-7e50e0079a97'.toUpperCase().replace(/\-/g, ''); | |
var claimer = 'Neruthes'; | |
var payload1 = `UUIDClaimProtocol:v1:${inputUuid}:${claimer}`; | |
var payload2 = ''; | |
// var bestHashParamHex = '0000000000000'; | |
var bestHashParamHex = '0000000F7B135'; |