- 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
- 虚词:副词、介词、连词、助词、拟声词、叹词。
n 名词
nr 人名
/* | |
fork from https://github.com/ai/nanoevents | |
changes: | |
- support listening wildcard event name | |
- return handler result, use Promise.all() to wait task done. | |
*/ | |
( | |
/** | |
* Interface for event subscription. |
[foo] | |
foo 1 | |
foo 2 | |
[bar] | |
bar 1 | |
bar 2 |
/** | |
* ObjectKeys | |
* @desc Extract name from type or class | |
* @param T type to analyze | |
* @param MatchType type to keep. Default is any - all types be included | |
* @param Reverse reverse match. Default is false | |
* @example | |
* class SimpleClass { | |
* static ZERO = 0; | |
* readonly one: string = '1'; |
FROM shadowsocks/shadowsocks-libev:latest | |
USER root | |
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories | |
ENV DNS_ADDRS= | |
# ---------- openvpn ---------- | |
ENV OPENVPN_CFG=client.ovpn | |
RUN set -x \ | |
&& apk add --update --no-cache openvpn |