上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 188 下一页
摘要: https://golangbyexample.com/go-mod-sum-module/ Understanding go.sum and go.mod file in Go (Golang) – Welcome To Golang By Example https://golangbyexam 阅读全文
posted @ 2018-09-12 08:56 papering 阅读(1295) 评论(0) 推荐(0)
摘要: let - JavaScript | MDN https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/let#Temporal_dead_zone_and_errors_with_let 阅读全文
posted @ 2018-09-12 07:36 papering 阅读(156) 评论(0) 推荐(0)
摘要: t 阅读全文
posted @ 2018-09-11 16:53 papering 阅读(549) 评论(0) 推荐(0)
摘要: Installing on RPM-based Linux (RHEL, CentOS, Fedora, openSUSE) — RabbitMQ https://www.rabbitmq.com/install-rpm.html ulimit -n 1024 Controlling System 阅读全文
posted @ 2018-09-11 16:12 papering 阅读(2445) 评论(0) 推荐(0)
摘要: Simple: Sample TCP/UDP server https://msdn.microsoft.com/en-us/library/aa231754(v=vs.60).aspx Simple: Sample TCP/UDP server This sample is a simple TC 阅读全文
posted @ 2018-09-11 14:59 papering 阅读(348) 评论(0) 推荐(0)
摘要: Object.defineProperty() - JavaScript | MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty The 阅读全文
posted @ 2018-09-11 14:23 papering 阅读(204) 评论(0) 推荐(0)
摘要: const $ID = (p) => document.getElementById(p)const $CLASS = (p) => document.getElementsByClassName(p) 阅读全文
posted @ 2018-09-11 11:59 papering 阅读(294) 评论(0) 推荐(0)
摘要: const ThisDay = window.location.href.split('/').pop() {{define "PotentialCustomer"}} <!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta http-equiv 阅读全文
posted @ 2018-09-11 10:54 papering 阅读(349) 评论(0) 推荐(0)
摘要: k匿名(k-anonymity)是一种常用的社交网络隐私保护技术,其思想是通过人为构造一定数量与目标节点拓扑结构相同的节点来降低用户被定位的概率 【匿名】英语怎么说_在线翻译_有道词典 http://dict.youdao.com/w/%E5%8C%BF%E5%90%8D/#keyfrom=dict 阅读全文
posted @ 2018-09-11 01:30 papering 阅读(497) 评论(0) 推荐(0)
摘要: 这种实现方式比使用 += 要更节省内存和 CPU,尤其是要串联的字符串数目特别多的时候。 阅读全文
posted @ 2018-09-11 01:29 papering 阅读(278) 评论(0) 推荐(0)
摘要: 小结: 1、 在图 7.3 的第一幅图中: var p *[]int = new([]int) // *p == nil; with len and cap 0 p := new([]int) 在第二幅图中, p := make([]int, 0) ,切片 已经被初始化,但是指向一个空的数组。 以上 阅读全文
posted @ 2018-09-11 01:29 papering 阅读(392) 评论(0) 推荐(0)
摘要: the-way-to-go_ZH_CN/07.1.md at master · Unknwon/the-way-to-go_ZH_CN https://github.com/Unknwon/the-way-to-go_ZH_CN/blob/master/eBook/07.1.md Go 语言中的数组 阅读全文
posted @ 2018-09-11 01:28 papering 阅读(507) 评论(0) 推荐(0)
摘要: http://ssdb.io/docs/zh_cn/index.html 用户案例 如果你在生产环境中使用 SSDB, 欢迎你给我发邮件(ssdb#udpwork.com), 我很愿意把你加入到下面的用户列表中. 邮件中请包含如下信息: 产品/公司/团队名称 LOGO(作为附件) 网站链接 公司/产 阅读全文
posted @ 2018-09-11 01:27 papering 阅读(988) 评论(0) 推荐(0)
摘要: https://github.com/jhao104/proxy_pool/blob/master/doc/introduce.md 3、代码模块 Python中高层次的数据结构,动态类型和动态绑定,使得它非常适合于快速应用开发,也适合于作为胶水语言连接已有的软件部件。用Python来搞这个代理IP 阅读全文
posted @ 2018-09-11 01:27 papering 阅读(183) 评论(0) 推荐(0)
摘要: 伪类 伪元素 CSS中:和:: - CSDN博客 https://blog.csdn.net/u014527697/article/details/81087139 Pseudo-elements - CSS: Cascading Style Sheets | MDN https://develop 阅读全文
posted @ 2018-09-11 01:26 papering 阅读(182) 评论(0) 推荐(0)
摘要: https://github.com/Tencent/wepy/issues/207 阅读全文
posted @ 2018-09-11 01:25 papering 阅读(182) 评论(0) 推荐(0)
摘要: 实践: 1) ![抓包截图][img1] [img1]:data:image/png;base64,iVBORw0KGgoAAA MarkDown 文档中插入 Base64 图片_战歌起-CSDN博客_markdown 图片base64 https://blog.csdn.net/baidu_332 阅读全文
posted @ 2018-09-11 01:10 papering 阅读(424) 评论(0) 推荐(0)
摘要: const notShorter = (o, minLen) => { if (o.length < minLen) { return false } return true } const notLonger = (o, maxLen) => { if (o.length > maxLen) { 阅读全文
posted @ 2018-09-10 23:44 papering 阅读(225) 评论(0) 推荐(0)
摘要: const delAllNonPrintableCharacter = (str) => { const r = str.replace(/\s/g, '') return { isEmpty: r.length === 0, str: r } } 阅读全文
posted @ 2018-09-10 21:44 papering 阅读(246) 评论(0) 推荐(0)
摘要: eval is not a function 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(1549) 评论(0) 推荐(0)
摘要: for (const k in v){ const a=[11,22,33,44]for(let i in a ){console.log(i)i=i+1}console.log(' ')for(const i in a ){console.log(i)i=i+1} VM64:3 0VM64:3 1 阅读全文
posted @ 2018-09-10 21:26 papering 阅读(889) 评论(0) 推荐(0)
摘要: 爬虫站点的历史入库数据,对入库数据的无外网处理,幂等操作;反之,不幂等操作 阅读全文
posted @ 2018-09-10 10:30 papering 阅读(238) 评论(0) 推荐(0)
摘要: vdso(7) - Linux manual page http://man7.org/linux/man-pages/man7/vdso.7.html NAME | SYNOPSIS | DESCRIPTION | NOTES | ARCHITECTURE-SPECIFIC NOTES | SEE 阅读全文
posted @ 2018-09-10 09:38 papering 阅读(295) 评论(0) 推荐(0)
摘要: @input 阅读全文
posted @ 2018-09-09 22:01 papering 阅读(143) 评论(0) 推荐(0)
摘要: Console Standard https://console.spec.whatwg.org/#log File an issue about the selected text Console Living Standard — Last Updated 21 July 2018 Partic 阅读全文
posted @ 2018-09-09 17:07 papering 阅读(247) 评论(0) 推荐(0)
摘要: wepy 实现 用户名登录与短信验证码登录 阅读全文
posted @ 2018-09-09 16:59 papering 阅读(363) 评论(0) 推荐(0)
摘要: wepy/packages/wepy-web/src/helper/device.js https://github.com/Tencent/wepy/blob/bd0003dca2bfb9581134e1b05d4aa1d80fc53858/packages/wepy-web/src/helper 阅读全文
posted @ 2018-09-09 16:57 papering 阅读(384) 评论(0) 推荐(0)
摘要: 【最近30天】消费总金额{{apiRes.RecentConsumeTotal.consume}}币,充值总金额{{apiRes['RecentConsumeTotal']['recharge']}}币 【当前】冻结金额{{apiRes.AccountBalance['1'].freeze}}币,当前余额{{apiRes.Acco... 阅读全文
posted @ 2018-09-09 16:55 papering 阅读(221) 评论(0) 推荐(0)
摘要: https://github.com/axios/axios Features Make XMLHttpRequests from the browser Make http requests from node.js Supports the Promise API Intercept reque 阅读全文
posted @ 2018-09-09 16:52 papering 阅读(133) 评论(0) 推荐(0)
摘要: 是小程序实例化后 读入内存 还是每次调用从文件系统读取 https://github.com/Tencent/wepy/blob/bd0003dca2bfb9581134e1b05d4aa1d80fc53858/packages/wepy-web/src/wx.js 数据缓存 · 小程序 https 阅读全文
posted @ 2018-09-09 16:38 papering 阅读(533) 评论(0) 推荐(0)
摘要: getStorageSync 在程序运行中是在内存 还是去文件系统读取? const UID = this.$parent.UID wx.getStorageSync('UID') 性能的差异 const UID = this.$parent.UID wx.getStorageSync('UID') 阅读全文
posted @ 2018-09-09 15:02 papering 阅读(266) 评论(0) 推荐(0)
摘要: 运行机制 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/framework/operating-mechanism.html?search-key=reLaunch 运行机制 小程序启动会有两种情况,一种是「冷启动」,一种是「热启动」。 阅读全文
posted @ 2018-09-09 14:03 papering 阅读(1893) 评论(0) 推荐(0)
摘要: 登录成功后的获取的帐号的基础资料的本地存储和内存访问 本地存储 下次无需使用帐号密码 内存访问 已经登录状态后,对数据的快速读取 阅读全文
posted @ 2018-09-09 12:16 papering 阅读(267) 评论(0) 推荐(0)
摘要: 注册页面 | 微信开放文档 https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page.html Page(Object object) | 微信开放文档 https://developers.weixin. 阅读全文
posted @ 2018-09-09 12:08 papering 阅读(1704) 评论(0) 推荐(0)
摘要: 每个微信小程序都可以有自己的本地缓存 数据缓存 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/api/data.html 每个微信小程序都可以有自己的本地缓存,可以通过 wx.setStorage(wx.setStorageSync)、 阅读全文
posted @ 2018-09-09 09:58 papering 阅读(415) 评论(0) 推荐(0)
摘要: const isMobilePhoneNum = (params) => { const areaCode = params.areaCode || 'cn' const str = params.str switch (areaCode) { case 'de': break default: case 'cn': const ... 阅读全文
posted @ 2018-09-08 23:46 papering 阅读(198) 评论(0) 推荐(0)
摘要: wx.getUpdateManager() 基础库 1.9.90 开始支持,低版本需做兼容处理。 获取全局唯一的版本更新管理器,用于管理小程序更新。 关于小程序的更新机制,可以查看 运行机制 文档。 updateManager updateManager 对象的方法列表: 注: 检查更新操作由微信在 阅读全文
posted @ 2018-09-08 18:48 papering 阅读(697) 评论(0) 推荐(0)
摘要: 网络状态 · 小程序 https://developers.weixin.qq.com/miniprogram/dev/api/device.html#wxonnetworkstatuschangecallback 和声明的位置无关,一次声明,整个小程序 都在使用 所以放到 app.wpy? 1、在 阅读全文
posted @ 2018-09-08 17:37 papering 阅读(4935) 评论(1) 推荐(0)
摘要: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions D:\GPUGO\MP\wepy\mpBMCwepy\src\utils\wxRequest.js wepy bui 阅读全文
posted @ 2018-09-08 16:39 papering 阅读(237) 评论(0) 推荐(0)
摘要: const f =()=>{ console.log(this) let a=5 console.log(this) console.log(this) this.ak =3} f() let a ={} a['k'] =3 阅读全文
posted @ 2018-09-08 15:54 papering 阅读(330) 评论(0) 推荐(0)
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 188 下一页