星期一, 3月 07, 2022

CA intermediate ssl certificate

 https://www.thesslstore.com/blog/root-certificates-intermediate/



https://aboutssl.org/install-ssl-certificate-on-lighttpd-server/

星期六, 3月 05, 2022

斐波那契數列 Dynamic Programming

 

斐波那契數列 

Dynamic Programming

https://ithelp.ithome.com.tw/articles/10271832

Mutual Information Python

 


https://www.codeleading.com/article/31721058116/

  1. from sklearn import metrics as mr
  2. from scipy.misc import imread
  3. import numpy as np
  4. img1 = imread('1.jpg')
  5. img2 = imread('2.jpg')
  6. img2 = np.resize(img2, (img1.shape[0], img1.shape[1], img1.shape[2]))
  7. img1 = np.reshape(img1, -1)
  8. img2 = np.reshape(img2, -1)
  9. print(img2.shape)
  10. print(img1.shape)
  11. mutual_infor = mr.mutual_info_score(img1, img2)
  12. print(mutual_infor)


https://vimsky.com/zh-tw/examples/detail/python-method-sklearn.metrics.mutual_info_score.html

星期五, 2月 25, 2022

星期一, 2月 21, 2022

星期二, 12月 21, 2021

recvmsg和sendmsg函数

 

recvmsg和sendmsg函数

SCM_RIGHTS
https://blog.csdn.net/u014209688/article/details/71311973
http://blog.chinaunix.net/uid-20937170-id-4247670.html

AF_INET域与AF_UNIX域socket通信原理对比

 

AF_INET域与AF_UNIX域socket通信原理对比

https://blog.csdn.net/sandware/article/details/40923491

星期四, 7月 01, 2021

Load average

 Load average 

https://zhuanlan.zhihu.com/p/75975041 

Linux Load Averages:什么是平均负载?

https://link.zhihu.com/?target=http%3A//www.brendangregg.com/blog/2017-08-08/linux-load-averages.html