# -*-coding:utf8-*- import pymysql import datetime import json import random import logging logging.basicConfig(filename="test_convert_org_to_tree.log ...
分类:
Web程序 时间:
2020-04-15 21:18:03
阅读次数:
94
WFConnection:当前节点正在等待对端节点出现。例如对方节点drbdadm down后,本节点将处于本状态。 StandAlone:无连接。出现这种状态可能是因为:未连接过、使用drbdadm disconnect断开连接、节点由于身份验证的原因未成功加入drbd集群使得连接被删除、脑裂后断 ...
分类:
其他好文 时间:
2020-04-15 18:41:13
阅读次数:
107
首先根据定位主机id 寻找主机的基镜像及差异镜像 qemu-img convert -c 衍生-差异镜像文件 衍生基本镜像文件 -O qcow2 one.qcow2; ...
分类:
其他好文 时间:
2020-04-15 16:27:38
阅读次数:
71
环境vs2010 应用=》管理NuGet程序包,安装MVC 4 新建项目 ValuesController.cs using System;using System.Collections.Generic;using System.Linq;using System.Net;using System ...
[极客大挑战 2019]Secret File 0X01考点 php的file伪协议读取文件 ?file=php://filter/convert.base64-encode/resource= 0X02解题过程 bp开启,有页面跳转,然后访问 /secr3t.php 出现了源代码 <html> < ...
分类:
其他好文 时间:
2020-04-15 00:40:18
阅读次数:
81
在之前学到的C#中,我们数据转换时常常用到这些 1.float a=5.5f; int b=(int)a; 此时输出b等于5,舍去了小数点后面的 2.string a="123"; int b=Convert.Toint32(a); 此时输出b为123 但是如果string a="123.5f"这种 ...
分类:
编程语言 时间:
2020-04-14 22:50:06
阅读次数:
88
public class Staff { public string Name { get; set; } public int Age { get; set; } public string Gender { get; set; } public string DepartmentName { g ...
分类:
其他好文 时间:
2020-04-14 22:25:54
阅读次数:
63
class Solution(object): def convert(self, s, numRows): if numRows==1: return s res = ['' for _ in range(numRows)] # 周期 T = numRows + numRows -2 for i ...
分类:
其他好文 时间:
2020-04-14 00:46:29
阅读次数:
91
单体式应用程序 与微服务相对的另一个概念是传统的「单体式应用程序」( Monolithic application ),单体式应用内部包含了所有需要的服务。而且各个服务功能模块有很强的耦合性,也就是相互依赖彼此,很难拆分和扩容。 说在做的各位都写过单体程序,大家都没意见吧?给大家举个栗子,刚开始写代 ...
分类:
其他好文 时间:
2020-04-12 14:16:13
阅读次数:
80