一、time模块import time1 、时间戳 时间戳(timestamp):时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量。time_stamp = time.time()print(time_stamp, type(time_stamp)) # 1574923359.... ...
分类:
编程语言 时间:
2019-11-28 21:11:05
阅读次数:
70
mixin定义(使用@mixin定义): @mixin hexagon-generator($hexagon-width, $factor, $border-radius){ display: inline-block; border-radius: 50%; width: ($hexagon-wi ...
分类:
Web程序 时间:
2019-11-25 13:16:31
阅读次数:
172
react tree 可拖动树结构: github地址: github地址:react-sortable-tree 安装: NPM npm install react-sortable-tree –save YARN yarn add react-sortable-tree 引用 import So ...
分类:
其他好文 时间:
2019-11-25 11:54:06
阅读次数:
94
安装nodejs环境查看node版本node -v 安装cnpmnpm install cnpm -g --registry=https://registry.npm.taobao.org 安装 Hexocnpm install -g hexo-cli查看版本hexo -v 创建本地博客cd d:/ ...
分类:
其他好文 时间:
2019-11-24 15:20:58
阅读次数:
97
安装Git Bash 下载地址:https://git scm.com/downloads 安装过程一路下一步即可 安装Node.js 下载地址:https://nodejs.org/zh cn/download/ 安装过程一路下一步即可 安装cnpm 用cnpm安装hexo 初始化博客 移动到一个 ...
分类:
其他好文 时间:
2019-11-23 22:16:31
阅读次数:
93
合约示例 可以用solc编译合约,也可以用Remix编译。 如果用solc编译的话,需要下载同合约使用的solidity版本相同的solc版本。 Remix编译后直接复制bytecode到代码里即可。 web3.js部署合约 环境:nodejs 在运行同一个脚本的时候遇到玄学问题, 报出这个错误,找 ...
分类:
Web程序 时间:
2019-11-23 09:57:23
阅读次数:
244
#include <iostream> #include <string> #include <cmath> int main() { std::string hex; while(std::cin>>hex) { int sum=0, flag=0; for(std::string::const_ ...
分类:
其他好文 时间:
2019-11-23 09:46:02
阅读次数:
1509
三步解决mysql字符串的隐藏字符: 1. 隐藏字符导致字符串长度边长,用mysql 自带的 Hex函数让隐藏字符显示真身, 2. 可以拿到隐藏字符的16进制码,然后用windows自带的计算器转化成 十进制数 3. 最后,执行 update user set mobile = REPLACE(mo ...
分类:
数据库 时间:
2019-11-18 20:19:11
阅读次数:
156
fiddler工作原理 Fiddler是位于客户端和服务器端的HTTP代理,也是目前最常用的http抓包工具之一 。 它能够记录客户端和服务器之间的所有 HTTP请求,可以针对特定的HTTP请求,分析请求数据、设置断点、调试web应用、修改请求的数据,甚至可以修改服务器返回的数据。 客户端的所有请求 ...
分类:
其他好文 时间:
2019-11-17 20:44:56
阅读次数:
99
/* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. * Version 2.1 Copyright (C) Pa ...
分类:
其他好文 时间:
2019-11-16 19:22:38
阅读次数:
98