码迷,mamicode.com
首页 >  
搜索关键字:hex    ( 1568个结果
Python常用模块
一、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
css中 @mixin的使用
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可拖动的好用的树结构插件
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
在Github或Gitee上用hexo搭建个人博客
安装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
从零开始在github上搭建hexo博客
安装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
如何用web3部署智能合约
合约示例 可以用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中字符串的隐藏字符处理
三步解决mysql字符串的隐藏字符: 1. 隐藏字符导致字符串长度边长,用mysql 自带的 Hex函数让隐藏字符显示真身, 2. 可以拿到隐藏字符的16进制码,然后用windows自带的计算器转化成 十进制数 3. 最后,执行 update user set mobile = REPLACE(mo ...
分类:数据库   时间:2019-11-18 20:19:11    阅读次数:156
Fiddler的原理和使用介绍
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
1568条   上一页 1 ... 20 21 22 23 24 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!