上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 42 下一页
摘要: 类似php中的urlencode 和htmlspecialchars: package main import ( "fmt" "html" "net/url" "testing" ) func Test_Escape(t *testing.T) { //url编码 str := "中文-_." u 阅读全文
posted @ 2019-01-30 11:55 林锅 阅读(7802) 评论(0) 推荐(0) 编辑
摘要: 1、Container安装ssh服务,博主的linux是centos ① 安装ssh sudo yum install openssh-server #安装ssh服务器 service sshd status # 查看ssh服务启动情况 service sshd start # 启动ssh服务 ② 阅读全文
posted @ 2019-01-10 09:39 林锅 阅读(5105) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-01-09 15:37 林锅 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 一、Account // Account represents an Ethereum account located at a specific location defined // by the optional URL field. // Account,代表一个位于由可选的URL字段定义的 阅读全文
posted @ 2019-01-06 21:28 林锅 阅读(434) 评论(0) 推荐(0) 编辑
摘要: accounts 实现了一个高等级的以太坊账户管理 bmt 二进制的默克尔树的实现 build 主要是编译和构建的一些脚本和配置 cmd 命令行工具,又分了很多的命令行工具,下面一个一个介绍 /abigen ABI生成器,Application Binary Interface, 应用二进制接口,在 阅读全文
posted @ 2019-01-03 17:47 林锅 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 关系型数据库中的数据是由一张一张的二维关系表所组成,简单的单表查询只需要遍历一个表,而复杂的多表查询需要将多个表连接起来进行查询任务。对于复杂的查询事件,每次查询都需要编写MySQL代码效率低下。为了解决这个问题,数据库提供了视图(view)功能。 0 视图相关的MySQL指令 创建视图 CREAT 阅读全文
posted @ 2018-12-29 10:06 林锅 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/davidwang456/articles/9001331.html 区块链技术中,共识算法是其中核心的一个组成部分。首先我们来思考一个问题:什么是共识?对于现实世界,共识就是一群人对一件或者多件事情达成一致的看法或者协议。那么在计算机世界当中, 阅读全文
posted @ 2018-12-26 11:30 林锅 阅读(8045) 评论(3) 推荐(1) 编辑
摘要: 首先要开发以太坊的智能合约,需要EVM(以太坊虚拟机),也就是需要运行的环境,我们可以通过 geth 来设置开发环境: geth --datadir testNet --dev console 2>> test.log 命令参数说明(更多命令详解可阅读Geth命令用法-参数详解篇):–dev 启用开 阅读全文
posted @ 2018-12-23 20:33 林锅 阅读(2831) 评论(0) 推荐(0) 编辑
摘要: 一、安装 二、proto 文件 syntax = "proto3"; package gateway; import "google/api/annotations.proto"; message StringMessage { string value = 1; } service Gateway 阅读全文
posted @ 2018-12-21 15:06 林锅 阅读(4763) 评论(2) 推荐(0) 编辑
摘要: 一、概念 1、gRPC默认使用protocol buffers,这是google开源的一套成熟的结构数据序列化机制(当然也可以使用其他数据格式如JSON),可以用proto files创建gRPC服务,用protocol buffers消息类型来定义方法参数和返回类型。 二、安装 1、yum ins 阅读全文
posted @ 2018-12-19 17:43 林锅 阅读(14845) 评论(0) 推荐(1) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 42 下一页