笔记
酒觉
这个作者很懒,什么都没留下…
展开
-
vimrc02
" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by" the call to :runtime you can find below. If you wish to change any of those" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim" will be overwritten ev原创 2020-08-17 18:50:07 · 125 阅读 · 0 评论 -
vimrc
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 显示相关"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""set shortmess=atI " 启动的时候不显示那个援助乌干达儿童的提示"winpos 5 5原创 2020-08-17 18:45:10 · 257 阅读 · 0 评论 -
以太坊 助记词提取 账户 公钥 私钥 最新实现可用。
装依赖的包:yarn add bip39 ethereumjs-wallet ethereumjs-util演示代码:const bip39 = require('bip39')const {hdkey} = require('ethereumjs-wallet')constutil = require('ethereumjs-util')//npm install bip39 ethereumjs-wallet ethereumjs-util// https://iancoleman.i原创 2020-07-15 19:59:01 · 2191 阅读 · 2 评论 -
js将毫秒转换为年月日时分秒(两种输出格式)
var sec=1588328818;var time = new Date(sec*1000);//style oneconsole.log(time.getFullYear()+"年"+":"+(time.getMonth()+1)+"月"+":"+time.getDate()+"日"+":"+time.getHours()+"点"+":"+time.getMinutes()+1+"分"...原创 2020-05-01 19:00:07 · 1666 阅读 · 0 评论