To be a better coder
发布时间:2020-08-07 10:03:28
https://blog.csdn.net/hedongho/article/details/78875825?utm_source=blogxgwz8ceph luminous版本中新增加了一个组件: Ceph Manager Daemon,简称ceph-mgr。 该组件的主要作用是分担和扩展monitor的部分功能,减轻monitor的负担,让更好地管理ceph存储系统。mgr的实现与用途ceph-mgr是由C/C++、python以及Cpytho.........【阅读全文】
发布时间:2020-08-04 15:00:04
int main(){char downflow[32]={0};//get_results_cmd(downflow, "cat /haha.ini");snprintf(downflow,32,"%d",0);printf("%s\n",downflow);return 0;}[root@controller /]# ==============================================[root@controller /]# cat aaa.c #include#include#include......【阅读全文】
发布时间:2019-10-14 11:04:18
[root@localhost aes]# [root@localhost aes]# [root@localhost aes]# [root@localhost aes]# gcc test.c aes.c base64.c json.c license.c -o test -lcurl -lm[root@localhost aes]# [root@localhost aes]# [root@localhost aes]# lsaes.c aes.h base64.c base64.h json.c json.h&nb.........【阅读全文】
发布时间:2019-01-22 13:50:23
数据类型,转化,序列化,反序列化新建了一个文件:json.pyimport jsondata = [{'a':1,'b':2,'c':3,'d':4,'e':5}]json = json.dumps(data)print json执行结果报:AttributeError: 'module' object has no attribute 'dumps'解决方案:就是因为命名的文件名json给python内置的json重名了,所有在导入的时候是我.........【阅读全文】
发布时间:2020-02-11 21:31:25
blog.csdn.net/weixin_43025071/article/details/82491560https://www.cnblogs.com/edan/p/10407202.htmlhttps://blog.csdn.net/qingdujun/article/details/71055759https://blog.csdn.net/qq_37198420/article/details/97276452https://blog.csdn.net/qq_37198420/article/details/97759765https://b.........【阅读全文】