T.C.

Results 7 comments of T.C.

In my case, it is one of the reasons to use `ldap_exop_password` method that password history check mechanism is currently implemented by OpenLDAP server itself. It is difficult to store...

If I set `$ldap_use_exop_passwd = false;` and `$ldap_use_ppolicy_control = true;`, the log of LDAP server shows: ``` 61511dad conn=1056 op=4 MOD dn="uid=xxxx,ou=xxx,dc=xxx,dc=xxx,dc=xx" 61511dad conn=1056 op=4 MOD attr=userPassword ``` It seems...

Thanks a lot for your kind information. With the following config: ``` $ldap_use_exop_passwd = false; $ldap_use_ppolicy_control = true; $hash = "clear"; ``` the ppolicy seems to be applied. Therefore, there...

如果你是一个人写只给自己看的代码,那可以闭着眼睛只用`interface`。如果写的代码会给别人看,那就用`type`。下列所谓的`interface`合并功能明显是违反OCP的: ```typescript interface User { name: string, } /* User interface itself now has been changed! */ interface User { sex: string, } ``` 这跟js中从头到尾用一个变量a来接收所有值是一个性质——只要不用维护,怎么写都是你的自由。 事实上,`interface`的能力比`type`强大(除了起别名),这就是为什么文档中说: > If you would...

With all due respect, could you please clarify some more detail background behind the change from single thread model to multi-thread model of external task client? In fact, there are...

Actually, there is a formula to calculate distance from RSSI (10^(REF-RSSI)/10N). However, some of the parameters are empirical and inconstant, and they may be changed according to the electric power,...