上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 186 下一页
摘要: 快看移动端日志库 https://mp.weixin.qq.com/s/piNcs_L_qrln6fA6uMCGgw 阅读全文
posted @ 2022-01-28 14:19 papering 阅读(30) 评论(0) 推荐(0) 编辑
摘要: AI + CRM 提高企业的 "绩" 和 "效" https://mp.weixin.qq.com/s/0b1oOvUZaEa4oLf88dfocA 58同城AI Lab产品能力介绍 https://mp.weixin.qq.com/s/sR_EedFNWrcULybxJyPJ1A 特征存储及计算在 阅读全文
posted @ 2022-01-28 09:44 papering 阅读(282) 评论(0) 推荐(0) 编辑
摘要: USENIX Technical Program - Abstract - USENIX 99 https://www.usenix.org/legacy/events/usenix99/provos.html Introduction https://www.usenix.org/legacy/e 阅读全文
posted @ 2022-01-27 17:51 papering 阅读(34) 评论(0) 推荐(0) 编辑
摘要: How To Safely Store A Password | codahale.com https://codahale.com/how-to-safely-store-a-password/ How To Safely Store A Password In which I recommend 阅读全文
posted @ 2022-01-27 17:48 papering 阅读(42) 评论(0) 推荐(0) 编辑
摘要: RSA and ECC in JavaScript RSA and ECC in JavaScript http://www-cs-students.stanford.edu/~tjw/jsbn/ 阅读全文
posted @ 2022-01-27 17:30 papering 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 解读Go语言的2021:稳定为王-InfoQ https://www.infoq.cn/article/eMLshYbKJTEIEiMVzwBJ 2.4 标准库 下面,我们来简要地说一下 Go 语言标准库中的变化。其中大大小小的变更有很多,但从整体来看它们都不是最关键的。因此,作者只会在这里提及那几 阅读全文
posted @ 2022-01-27 17:15 papering 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Semantic Versioning 2.0.0 | Semantic Versioning https://semver.org/spec/v2.0.0.html 解读Go语言的2021:稳定为王-InfoQ https://www.infoq.cn/article/eMLshYbKJTEIEi 阅读全文
posted @ 2022-01-27 16:59 papering 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 登录加密算法破解秘籍 https://mp.weixin.qq.com/s/V_Z3tvWG-MbrsCKYcMkGKg 阅读全文
posted @ 2022-01-27 14:31 papering 阅读(52) 评论(0) 推荐(0) 编辑
摘要: GraphQL及元数据驱动架构在后端BFF中的实践 - 美团技术团队 https://tech.meituan.com/2021/05/06/bff-graphql.html GraphQL及元数据驱动架构在后端BFF中的实践 2021年05月06日 作者: 陆晨 致远 陈琦 文章链接 18473字 阅读全文
posted @ 2022-01-27 14:05 papering 阅读(124) 评论(0) 推荐(0) 编辑
摘要: MySQL :: MySQL 8.0 Reference Manual :: 15.10 InnoDB Row Formats https://dev.mysql.com/doc/refman/8.0/en/innodb-row-format.html When a table is created 阅读全文
posted @ 2022-01-27 09:46 papering 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 小结: 1)mysql查询优化 做搜索查询量大的表一般都以空间来换取时间,设计成静态表 MySQL :: MySQL 8.0 Reference Manual :: 15.10 InnoDB Row Formats https://dev.mysql.com/doc/refman/8.0/en/in 阅读全文
posted @ 2022-01-27 09:12 papering 阅读(127) 评论(0) 推荐(0) 编辑
摘要: io.Reader 解析 - 简书 https://www.jianshu.com/p/03db37ca3249 简介 io.Reader 是一个 Interface 类型,功能非常强大,在任何需要读的地方我们都尽量使用它。先来看下它的原型: type Reader interface { Read 阅读全文
posted @ 2022-01-26 19:18 papering 阅读(73) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2022-01-26 18:51 papering 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1、 并发下载图片的goroutine数为CPU数加1 package goroutin import ( "fmt" "io" "net/http" "os" "sync" ) func dlImg(threadPool, batchNum int) { var wg sync.WaitGroup 阅读全文
posted @ 2022-01-26 11:38 papering 阅读(79) 评论(0) 推荐(0) 编辑
摘要: eapache/queue: Fast golang queue using ring-buffer https://github.com/eapache/queue 阅读全文
posted @ 2022-01-25 14:31 papering 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Facebook React 和 Web Components(Polymer)对比优势和劣势 - 司徒正美 - 博客园 https://www.cnblogs.com/rubylouvre/p/4072979.html 阅读全文
posted @ 2022-01-25 10:21 papering 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 1.2.1【必须】 路径穿越检查 在进行文件操作时,如果对外部传入的文件名未做限制,可能导致任意文件读取或者任意文件写入,严重可能导致代码执行。 // bad: 任意文件读取 func handler(w http.ResponseWriter, r *http.Request) { path := 阅读全文
posted @ 2022-01-25 09:47 papering 阅读(427) 评论(0) 推荐(0) 编辑
摘要: secguide/Go安全指南.md at main · Tencent/secguide · GitHub https://github.com/Tencent/secguide/blob/main/Go%E5%AE%89%E5%85%A8%E6%8C%87%E5%8D%97.md#119%E6% 阅读全文
posted @ 2022-01-25 09:43 papering 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) 使用defer延迟关闭channel secguide/Go安全指南.md at main · Tencent/secguide · GitHub https://github.com/Tencent/secguide/blob/main/Go%E5%AE%89%E5%85%A8%E6 阅读全文
posted @ 2022-01-25 09:35 papering 阅读(68) 评论(0) 推荐(0) 编辑
摘要: secguide/Go安全指南.md at main · Tencent/secguide · GitHub https://github.com/Tencent/secguide/blob/main/Go%E5%AE%89%E5%85%A8%E6%8C%87%E5%8D%97.md#112%E5% 阅读全文
posted @ 2022-01-25 09:33 papering 阅读(349) 评论(0) 推荐(0) 编辑
摘要: secguide/Go安全指南.md at main · Tencent/secguide · GitHub https://github.com/Tencent/secguide/blob/main/Go%E5%AE%89%E5%85%A8%E6%8C%87%E5%8D%97.md 1.1.3【必 阅读全文
posted @ 2022-01-25 09:32 papering 阅读(112) 评论(0) 推荐(0) 编辑
摘要: npm install xxxx --legacy-peer-deps命令是什么? - 知乎 https://zhuanlan.zhihu.com/p/506596270 npm install xxxx --legacy-peer-deps命令是什么? 华为云开发者联盟 ​ 已认证帐号 43 人赞 阅读全文
posted @ 2022-01-24 10:59 papering 阅读(4688) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) "react": "15.2.1" -- 只匹配一个版本,代表锁死版本,只下载15.2.1的版本 "react": "~15.2.1" -- 匹配最近的小版本依赖包,比如 ~15.2.1会匹配所有15.2.x的版本,但不包括15.3.0以上,即 >= 15.2.1 && < 15.3. 阅读全文
posted @ 2022-01-24 09:55 papering 阅读(102) 评论(0) 推荐(0) 编辑
摘要: node.js - sh: 1: node: Permission denied - Stack Overflow https://stackoverflow.com/questions/51811564/sh-1-node-permission-denied npm config set user 阅读全文
posted @ 2022-01-24 09:43 papering 阅读(910) 评论(0) 推荐(0) 编辑
摘要: colly 随机UA标识 下载图片 package main import ( "io/ioutil" "strings" "github.com/gocolly/colly" "github.com/gocolly/colly/extensions" ) func dlImg(uri string 阅读全文
posted @ 2022-01-23 12:21 papering 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Apache log4php - Quick start - Apache log4php https://logging.apache.org/log4php/quickstart.html 阅读全文
posted @ 2022-01-22 20:18 papering 阅读(18) 评论(0) 推荐(0) 编辑
摘要: NGINX 之父 Igor Sysoev 从 F5 离职 - OSCHINA - 中文开源技术交流社区 https://www.oschina.net/news/179313/igor-quit-from-f5 设计了一个新的sendfile(2)系统调用实现,该实现被整合到 FreeBSD 操作系 阅读全文
posted @ 2022-01-22 09:23 papering 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 了解磁盘IO的那些事 https://mp.weixin.qq.com/s/nfhCUZF0ftmFT77H41byew 原创 360质量效能 360质量效能 2022-01-21 12:00 我们作为一名开发,经常耳熟能详的一句话,就是提高程序的性能。对于一个应用程序存在问题的直观体现:页面打开很 阅读全文
posted @ 2022-01-21 22:29 papering 阅读(318) 评论(0) 推荐(0) 编辑
摘要: Linux dmesg(英文全称:display message)命令用于显示开机信息。 kernel 会将开机信息存储在 ring buffer 中。您若是开机时来不及查看信息,可利用 dmesg 来查看。开机信息亦保存在 /var/log 目录中,名称为 dmesg 的文件里。 dmesg七种用 阅读全文
posted @ 2022-01-21 18:37 papering 阅读(174) 评论(0) 推荐(0) 编辑
摘要: var AMap AMapS var once sync.Once func confCV(r *bizRepo) { // TODO once.Do(func() { b := r.data.confTODOBootstrap.DomainSonypathoid json.Unmarshal(b, 阅读全文
posted @ 2022-01-21 18:22 papering 阅读(132) 评论(0) 推荐(0) 编辑
摘要: github.com\tencentcloud\tencentcloud-sdk-go\tencentcloud\sms@v1.0.333\v20210111\models.go type SendStatus struct { // 发送流水号。 SerialNo *string `json:"S 阅读全文
posted @ 2022-01-20 21:42 papering 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 场景 验证码 package base64Captcha // Store An object implementing Store interface can be registered with SetCustomStore // function to handle storage and r 阅读全文
posted @ 2022-01-20 11:17 papering 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Results gofmt 0%go_vet 100%gocyclo 97%golint 100%ineffassign 97%license 100%misspell 100% https://goreportcard.com/report/github.com/mojocn/base64Capt 阅读全文
posted @ 2022-01-20 09:23 papering 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 系列 | 58集团白盒代码审计系统建设实践1:技术选型 https://tech.58.com/article?id=151 阅读全文
posted @ 2022-01-20 09:18 papering 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 腾讯云短信小助手 https://tccc.qcloud.com/web/im/index.html#/chat?webAppId=8fa15978f85cb41f7e2ea36920cb3ae1&title=Sms 阅读全文
posted @ 2022-01-20 00:27 papering 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 事件驱动架构在 vivo 内容平台的实践 https://mp.weixin.qq.com/s/DpaSVMXSNomXsXb0dma0CA 阅读全文
posted @ 2022-01-19 21:30 papering 阅读(63) 评论(0) 推荐(0) 编辑
摘要: failed to watch next config: stat /root/p/configs/config.yaml: no such file or directory 阅读全文
posted @ 2022-01-17 16:41 papering 阅读(257) 评论(0) 推荐(0) 编辑
摘要: call of panic copies lock value: app/internal/conf.Bootstrap contains google.golang.org/protobuf/internal/impl.MessageState contains sync.Mutexcopyloc 阅读全文
posted @ 2022-01-17 16:04 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 监听鼠标悬浮 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <!-- <link href="https://cdn.bootcdn.net/ajax/libs/twitter-boots 阅读全文
posted @ 2022-01-17 02:03 papering 阅读(48) 评论(0) 推荐(0) 编辑
摘要: javascript 获取鼠标点击的元素_彻底拆分,一切可控!-CSDN博客_js 鼠标点击元素 https://blog.csdn.net/tengdazhang770960436/article/details/7461952 阅读全文
posted @ 2022-01-17 01:35 papering 阅读(637) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 186 下一页