Jetbrains 系列破解 Cracker 发表于 2018-09-08 | 分类于 MacOS | 以前自建 http 破解服务器用的很开心, 现在 2018.x 貌似算法更新, 无法使用了, 只能每次进行 jar 破解. 授权码先记录一下授权码, 其中关键内容可以自行修改: "licen ... 阅读全文 »
MacOS 新入手如何快速装机 发表于 2018-09-05 | 分类于 MacOS | 首先需要的是基础类软件安装 brew1/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装基础软件brew install wget git zsh ... 阅读全文 »
搭建基础 EOS 测试节点和开发环境 发表于 2018-08-26 | 分类于 BlockChain | 搭建测试节点 - Docker创建本地文件夹 /home/xxx/contracts, 以后的 CONTRACTS_DIR 都指的是这个地址 使用全路径替换 Docker 启动脚本 #!/bin/bashdocker run --name eosio \ --publish ... 阅读全文 »
BlockChain 区块事件处理最佳实践方案的演变流程 发表于 2018-08-20 | 分类于 BlockChain | 首先说 watch dog 日志走 subscribe 是一件非常愚蠢的行为, 要进行强烈的游街批判. 说说我们 watch dog 的历史演变 version 1.0.1 web3 http + private geth 版该版本底层轮训机制, 拉取最新块的日志信息, 相当于实现了日志推送. 一次 ... 阅读全文 »
AWS Ubuntu 账号登录提示 LC_CTYPE 不存在 发表于 2018-08-03 | 分类于 计算机 , OPS | 登录 aws 主机的时候, 偶尔会出现下面的提示: 1manpath: can't set the locale; make sure $LC_* and $LANG are correct 解决方案如下, 在初始化账户的时候, 首次登录已经做出以下提示: ... 阅读全文 »
区块链 Dapp 合约调用遇到的问题 发表于 2018-07-20 | 分类于 BlockChain | gas required exceeds allowance or always failing transaction遇到这个问题是在工作中, 是刚开始接触 web3 调用合约的时候, 下面一段文字是我写在解决了该问题之后的代码提交的 comment 注释内容: " ... 阅读全文 »
Ubuntu 上安装 Jenkins 发表于 2018-07-16 | 分类于 计算机 , Jenkins | Install Java https://www.cnblogs.com/a2211009/p/4265225.html Install Jenkins https://jenkins.io/download/ Config vim /etc/default/jenkins 更改 /va ... 阅读全文 »
目前为止最好用的 Solidity 编辑器 发表于 2018-07-15 | 分类于 BlockChain | 一切的开始 最开始学习使用 Solidity 进行基于 Ethereum 的区块链应用开发的时候,使用的是 Remix Online 版本: https://remix.ethereum.org/非常方便简单, 编写完代码即可自动编译, 自动检查编写过程中的错误, 类型提示等等.相信很多初学者都是基 ... 阅读全文 »
ElasticSearch 快速安装 发表于 2018-07-12 | 分类于 计算机 , ElasticSearch | 0. 安装 Java 支持Oracle 官网下载 JDK: http://www.oracle.com/technetwork/java/javase/downloads/index.html 下载后, 解压缩到 /usr/local/jdk/ 目录下, 然后添加 PATH=${PATH}:/usr ... 阅读全文 »