摘要:
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
阅读(44)
推荐(0)
摘要:
了解磁盘IO的那些事 https://mp.weixin.qq.com/s/nfhCUZF0ftmFT77H41byew 原创 360质量效能 360质量效能 2022-01-21 12:00 我们作为一名开发,经常耳熟能详的一句话,就是提高程序的性能。对于一个应用程序存在问题的直观体现:页面打开很
阅读全文
posted @ 2022-01-21 22:29
papering
阅读(339)
推荐(0)
摘要:
Linux dmesg(英文全称:display message)命令用于显示开机信息。 kernel 会将开机信息存储在 ring buffer 中。您若是开机时来不及查看信息,可利用 dmesg 来查看。开机信息亦保存在 /var/log 目录中,名称为 dmesg 的文件里。 dmesg七种用
阅读全文
posted @ 2022-01-21 18:37
papering
阅读(227)
推荐(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
阅读(142)
推荐(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
阅读(78)
推荐(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
阅读(74)
推荐(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
阅读(28)
推荐(0)
摘要:
系列 | 58集团白盒代码审计系统建设实践1:技术选型 https://tech.58.com/article?id=151
阅读全文
posted @ 2022-01-20 09:18
papering
阅读(80)
推荐(0)
摘要:
腾讯云短信小助手 https://tccc.qcloud.com/web/im/index.html#/chat?webAppId=8fa15978f85cb41f7e2ea36920cb3ae1&title=Sms
阅读全文
posted @ 2022-01-20 00:27
papering
阅读(80)
推荐(0)
摘要:
事件驱动架构在 vivo 内容平台的实践 https://mp.weixin.qq.com/s/DpaSVMXSNomXsXb0dma0CA
阅读全文
posted @ 2022-01-19 21:30
papering
阅读(87)
推荐(0)
摘要:
failed to watch next config: stat /root/p/configs/config.yaml: no such file or directory
阅读全文
posted @ 2022-01-17 16:41
papering
阅读(262)
推荐(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
阅读(145)
推荐(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
阅读(56)
推荐(0)
摘要:
javascript 获取鼠标点击的元素_彻底拆分,一切可控!-CSDN博客_js 鼠标点击元素 https://blog.csdn.net/tengdazhang770960436/article/details/7461952
阅读全文
posted @ 2022-01-17 01:35
papering
阅读(650)
推荐(0)
摘要:
MySQL8.0之前的版本密码加密规则:mysql_native_password, MySQL8.0密码加密规则:caching_sha2_password
阅读全文
posted @ 2022-01-14 23:34
papering
阅读(866)
推荐(0)
摘要:
小结: 1)获取当日凌晨时间戳 UNIX_TIMESTAMP(CAST(SYSDATE()AS DATE)) MySQL :: MySQL 8.0 Reference Manual :: 12.11 Cast Functions and Operators https://dev.mysql.com
阅读全文
posted @ 2022-01-14 10:46
papering
阅读(47)
推荐(0)
摘要:
https://gitee.com/MinJieLiu/web-standard/tree/master/css
阅读全文
posted @ 2022-01-13 23:13
papering
阅读(40)
推荐(0)
摘要:
石墨文档Websocket百万长连接技术实践-InfoQ https://www.infoq.cn/article/GymHAbqVRO214qo44jHD 石墨文档 Websocket 百万长连接技术实践 杜旻翔 2021-11-29 Web 服务端推送技术经过了长轮询、短轮询的发展,最终到 HT
阅读全文
posted @ 2022-01-13 20:07
papering
阅读(183)
推荐(0)
摘要:
解析json、yaml文件 DsnDG : user:pwd@tcp(ip:portr)/db?charset=utf8mb4 type MysqlConfig struct { DsnDG string `yaml:"DsnDG"` } // config should be a pointer
阅读全文
posted @ 2022-01-13 17:00
papering
阅读(250)
推荐(0)
摘要:
Golang: 常用的文件读写操作 - liuhe688 - 博客园 https://www.cnblogs.com/liuhe688/p/11410464.html
阅读全文
posted @ 2022-01-13 16:14
papering
阅读(42)
推荐(0)
posted @ 2022-01-13 13:41
papering
阅读(34)
推荐(0)
摘要:
https://mp.weixin.qq.com/s/cX4uquSqDJb7MoQb7sQSxA vivo 推送平台架构演进 https://mp.weixin.qq.com/s/cX4uquSqDJb7MoQb7sQSxA
阅读全文
posted @ 2022-01-12 21:18
papering
阅读(51)
推荐(0)
摘要:
inotify(7) - Linux manual page https://www.man7.org/linux/man-pages/man7/inotify.7.html 监听风云1 - inotify 介绍 https://mp.weixin.qq.com/s?src=11×tamp
阅读全文
posted @ 2022-01-12 14:53
papering
阅读(807)
推荐(0)
posted @ 2022-01-12 10:16
papering
阅读(114)
推荐(0)
摘要:
IoWriter.go package main import ( "github.com/natefinch/lumberjack" "io" ) // github.com\natefinch\lumberjack@v2.0.0+incompatible\lumberjack.go type S
阅读全文
posted @ 2022-01-11 17:39
papering
阅读(105)
推荐(0)
摘要:
PHP: bcadd - Manual https://www.php.net/manual/zh/function.bcadd.php (PHP 4, PHP 5, PHP 7, PHP 8) bcadd — 两个任意精度数字的加法计算
阅读全文
posted @ 2022-01-10 23:25
papering
阅读(60)
推荐(0)
摘要:
sudo find / | grep httpd | sudo xargs rm -rf
阅读全文
posted @ 2022-01-10 21:54
papering
阅读(28)
推荐(0)
摘要:
chcon: can't apply partial context to unlabeled file cat /etc/selinux/config # This file controls the state of SELinux on the system.# SELINUX= can ta
阅读全文
posted @ 2022-01-10 21:23
papering
阅读(246)
推荐(0)
posted @ 2022-01-10 20:54
papering
阅读(33)
推荐(0)
摘要:
小结 1) 设置 Content-Disposition 头部为 attachment 是关键,告诉浏览器应该下载这个文件。 此例子不设置 Content-Disposition 头部也是会下载的,因为 Content-Type 被设置为了 application/octet-stream,浏览器认
阅读全文
posted @ 2022-01-10 19:40
papering
阅读(652)
推荐(0)
摘要:
导出文件准备完成 「发货单管理」导出文件已准备完成。文件下载链接将于24小时后失效,请尽快下载。
阅读全文
posted @ 2022-01-09 19:35
papering
阅读(48)
推荐(0)
摘要:
软件秘钥实现 Go docs library for Word, Excel, PowerPoint, OOXML | UniOffice https://unidoc.io/unioffice/ https://github.com/unidoc/unioffice https://github.
阅读全文
posted @ 2022-01-09 17:54
papering
阅读(474)
推荐(0)
摘要:
1) 小结 类比golang build 时的版本参数 extract (PHP 4, PHP 5, PHP 7, PHP 8) extract — Import variables into the current symbol table from an array Description ex
阅读全文
posted @ 2022-01-08 16:22
papering
阅读(79)
推荐(0)
摘要:
公司介绍 https://isite.baidu.com/site/wjzzbcqs/8301be32-1ea9-4d6c-8703-8b2cd13280f5
阅读全文
posted @ 2022-01-08 16:10
papering
阅读(234)
推荐(0)
摘要:
Discuz! 的编码规范_Discuz!开放平台 - Discuz!应用中心 https://open.dismall.com/?ac=document&page=dev_coderule
阅读全文
posted @ 2022-01-08 16:06
papering
阅读(27)
推荐(0)
摘要:
人人都是 Serverless 架构师 | 现代化 Web 应用开发实战 - 知乎 https://zhuanlan.zhihu.com/p/453254190 什么是"现代化应用" 文章标题提到了"现代化应用"的概念,在这里也跟大家解释一下,什么是 "Modern Application"。其实现
阅读全文
posted @ 2022-01-07 09:32
papering
阅读(149)
推荐(0)
摘要:
uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. Se
阅读全文
posted @ 2022-01-06 03:32
papering
阅读(591)
推荐(0)
摘要:
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
阅读全文
posted @ 2022-01-06 03:27
papering
阅读(283)
推荐(0)
摘要:
Event.preventDefault() Event.preventDefault() - Web APIs | MDN https://developer.mozilla.org/en-US/docs/Web/API/Event/preventDefault
阅读全文
posted @ 2022-01-05 10:22
papering
阅读(41)
推荐(0)
摘要:
腾讯云 TI 平台 TI-ONE 时间序列 - 算法手册 - 文档中心 - 腾讯云 https://cloud.tencent.com/document/product/851/17106 迪基福勒检验 单位根检验是一种更客观的判定是否需要差分的方法。这个针对平稳性的统计假设检验被用于判断是否需要差
阅读全文
posted @ 2022-01-04 13:36
papering
阅读(490)
推荐(0)