Hexo 是一个快速、简洁且高效的博客框架。Hexo 使用 Markdown(或其他渲染引擎)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。使用 Cloud Studio ,就不需要再折腾 Hexo 环境,不需要再解决不同平台上的各种冲突,直接在 Cloud Studio 里面即可进行 Hex... ...
分类:
其他好文 时间:
2020-09-24 21:47:19
阅读次数:
49
#include<iostream> using namespace std; int main(){ string s; cin >> s; cout << "Hex: 0x" << s << endl; int dec = 0, oct = 0; for(int i = 0; i < s.siz ...
分类:
其他好文 时间:
2020-09-18 03:14:58
阅读次数:
39
//1个字节的16进制,转换为8位的2进制stringHexstring2binstring(stringstrSrc){intiNumber=strSrc.size();if(iNumber==0){return"";}intiValue=0;//转换后的10进制值for(inti=0;i<iNumber;i++){intiTemp=Char2Dec(strSrc.at(i));iValu
分类:
其他好文 时间:
2020-09-18 00:26:12
阅读次数:
30
https://mp.weixin.qq.com/s/bM7xtVDwAA82d42UrhEx2g我第一次相亲就被大三岁的姐姐看上收录于话题#相亲828#程序人生661#程序员1555上周西湖区有一次联合企业联谊文化活动(相亲),我对这种活动向来都是不感冒的,你们看敖丙需要参加相亲么?结果没想到被小伙伴偷偷给我报了名。而且最让我气愤的是,25岁以下不能参加?这是什么规定,单身平时就已经很没说话权了
分类:
其他好文 时间:
2020-09-17 22:34:25
阅读次数:
27
一、 处理Modbus协议的数据时,碰到IEEE754浮点数的转换,根据规则自己写出转换代码,方便以后使用。 1.在线转换网址:http://lostphp.com/hexconvert/ 二、 转换浮点数32位。 void MainWindow::on_pushButton_clicked() { ...
分类:
其他好文 时间:
2020-09-17 21:59:12
阅读次数:
54
hex2Rgb(hex) { //十六进制转为RGB var rgb = [] // 定义rgb数组 if (/^\#[0-9A-F]{3}$/i.test(hex)) { //判断传入是否为#三位十六进制数 let sixHex = '#' hex.replace(/[0-9A-F]/gi, fu ...
分类:
其他好文 时间:
2020-08-10 21:02:05
阅读次数:
72
apiVersion: policy/v1beta1 kind: PodDisruptionBudget metadata: name: elasticsearch-pdb namespace: test spec: selector: matchLabels: app: elasticsearch ...
分类:
其他好文 时间:
2020-08-06 13:10:25
阅读次数:
74
URLDecoder对参数进行解码时候,代码如: URLDecoder.decode(param,"utf-8"); 有时候会出现类似如下的错误: URLDecoder异常Illegal hex characters in escape (%) 这是因为传参有一些特殊字符,比如%号或者说+号,导致不 ...
分类:
Web程序 时间:
2020-08-05 19:43:29
阅读次数:
101
org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'lo ...
分类:
编程语言 时间:
2020-07-30 01:54:09
阅读次数:
131