public class Solution { public int StrToInt(String str) { if (str == null || str.trim().length() < 1) { return 0; } char op = str.charAt(0); int start... ...
分类:
其他好文 时间:
2019-12-10 12:58:56
阅读次数:
88
Dubbox和Zookeeper 一。准备dubbox和zookeeper文件 1.dubbox下载路径 https://github.com/dangdangdotcom/dubbox 2.zookeeper下载“单机”路径 https://mirrors.tuna.tsinghua.edu.cn ...
分类:
其他好文 时间:
2019-12-09 18:51:26
阅读次数:
143
参考链接: http://www.ruanyifeng.com/blog/2011/08/what_is_a_digital_signature.html https://blog.csdn.net/weixin_37887248/article/details/82805508 这里涉及到了非对称 ...
分类:
其他好文 时间:
2019-12-09 13:30:48
阅读次数:
114
参考文章: ElasticSearch基础介绍:5:可视化工具之cerebro https://blog.csdn.net/liumiaocn/article/details/98517815 [root@LogServer bin]# docker run --name cerebro -d -p ...
分类:
其他好文 时间:
2019-12-08 20:13:24
阅读次数:
200
原文作者:Xuejie 原文链接:https://xuejie.space/2019_09_06_introduction_to_ckb_script_programming_udt/ Nervos CKB 脚本编程简介[3]:自定义代币 CKB 的 Cell 模型和 VM 支持许多新的用例。然而, ...
分类:
其他好文 时间:
2019-12-07 23:02:13
阅读次数:
117
有些时候在某些服务管理脚本中看到$"$string"或$"string",经过一些测试,又发现引号外面的$有和没有是一样的。一直也没去找究竟,刚才有人问了我,于是就去翻了下man bash,找到了解释。 (1).如果没有特殊定制bash环境或有特殊需求,$"string"和"string"是完全等价 ...
分类:
系统相关 时间:
2019-12-07 22:58:23
阅读次数:
109
//hdu2089 #include "cstdio" #include "cstring" #include "iostream" #include "algorithm" using namespace std; int cont; long long dig[10001]; long long ...
分类:
其他好文 时间:
2019-12-07 01:26:06
阅读次数:
182
用于加密相关操作,主要有SHA1,SHA224,SHA256,SHA384,SHA512,依次逐渐复杂 例子1,加密hello 例子1只能加密,不能解密(用于保存用户的密码,既不泄露,又能利用它校队) # -*- coding: utf-8 -*- import hashlib obj=hashli ...
分类:
编程语言 时间:
2019-12-02 23:23:43
阅读次数:
116
$ch = curl_init();curl_setopt($ch, CURLOPT_URL, $linkUrl);curl_setopt($ch, CURLOPT_VERBOSE, 1);curl_setopt($ch, CURLOPT_FAILONERROR, false);curl_setop ...
分类:
Web程序 时间:
2019-12-02 11:51:17
阅读次数:
200
团队博客第二周——DIG 修改完善上周提交的需求规格说明书 服务人群的改变 考虑到我校特有的保密性质,经小组讨论修改应用人群,从大众转向特定局部网络下的特定人群,例如:军人、秘密基地、山区等 修改应用场景 用户场景A:军人小伟和小邹在一个特殊的训练基地,时间紧急,为尽快了解所有菜品,进行点菜,使用A ...
分类:
其他好文 时间:
2019-12-02 00:33:26
阅读次数:
110