自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

稻草人的格子衫

我不知道你在害怕什么

  • 博客(3)
  • 收藏
  • 关注

原创 mongo和mongoose基本语法

mongo:1. distinctdb.getCollection('tokentransfer').distinct('from',{"$and": [{"blockNumber": {$gte: 370000}}, {"blockNumber": {$lte: 373085}}]}).length2. update:(更新满足条件的所有,multi设置true)db.getCol...

2018-07-31 17:49:33 756

原创 erc20 智能合约各方法对应的签名编码(transfer / 0xa9059cbb)

erc20智能合约常见方法对应的签名编码:常见例如:transfer(address,uint256)编码为:web3.sha3("transfer(address,uint256)").substring(0,10)  -> "0xa9059cbb"balanceOf(address)编码为:web3.sha3("balanceOf(address)").substring...

2018-07-17 23:53:58 7875 1

原创 linux和mac修改max_user_processes和open_file最大值

1. 进入/etc/security/limits.conf,编辑:* soft nproc 65535* hard nproc 65535* soft nofile 65535* hard nofile 65535nofile对应open_files,nproc对应max_user_processes2. 进入/etc/security/limits.d/90-nproc.conf(没有conf...

2018-07-10 10:42:10 3801

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除