上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 186 下一页
摘要: ALTER TABLE `test`ADD COLUMN `avatarbase64tmpsave` mediumblob NULL COMMENT '待优化方案:头像的base64编码;后端透明存储';SET GLOBAL max_allowed_packet=67108864;SHOW GLOB 阅读全文
posted @ 2021-12-23 23:24 papering 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 2FA (Two Factor Authentication) 阅读全文
posted @ 2021-12-23 18:02 papering 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Go/src/crypto/tls/common.go:289 // ClientAuth determines the server's policy for// TLS Client Authentication. The default is NoClientCert.ClientAuth C 阅读全文
posted @ 2021-12-23 17:31 papering 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Go/src/crypto/tls/common.go:1173 // The only signed key exchange we support is ECDHE.if !supportsECDHE(config, chi.SupportedCurves, chi.SupportedPoint 阅读全文
posted @ 2021-12-23 11:32 papering 阅读(76) 评论(0) 推荐(0) 编辑
摘要: Deprecated: SSLv3 is cryptographically broken, and is no longer// supported by this package. See golang.org/issue/32716. Go/src/crypto/tls/common.go:3 阅读全文
posted @ 2021-12-23 11:23 papering 阅读(102) 评论(0) 推荐(0) 编辑
摘要: package syncimport ( "sync/atomic" "unsafe")// Cond implements a condition variable, a rendezvous point// for goroutines waiting for or announcing the 阅读全文
posted @ 2021-12-22 14:05 papering 阅读(388) 评论(0) 推荐(0) 编辑
摘要: https://github.com/google/btree 阅读全文
posted @ 2021-12-22 13:46 papering 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) 以前开发一个页面:创建 JS -> 创建 CSS -> 创建 Model -> 创建 service -> 写页面组件。现在开发一个页面:下载区块 -> 基于区块初始化好的页面组件修改代码。 Pro 资产的使用 - Ant Design Pro https://pro.ant.desi 阅读全文
posted @ 2021-12-22 10:08 papering 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) a particular variable in your program is never assigned to null; you want to avoid triggering a NullPointerException @Autowired Lesson: Annotat 阅读全文
posted @ 2021-12-22 01:15 papering 阅读(73) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
posted @ 2021-12-22 00:38 papering 阅读(54) 评论(0) 推荐(0) 编辑
摘要: RFC 2986: PKCS #10: Certification Request Syntax Specification Version 1.7 https://www.rfc-editor.org/rfc/rfc2986#page-5 翻译 搜索 复制 阅读全文
posted @ 2021-12-21 17:38 papering 阅读(103) 评论(0) 推荐(0) 编辑
摘要: google.golang.org\grpc@v1.43.0\testdata\x509 #!/bin/bash # Create the server CA certs. openssl req -x509 \ -newkey rsa:4096 \ -nodes \ -days 3650 \ -k 阅读全文
posted @ 2021-12-21 11:36 papering 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 分控板控制协议 Modbus 协议 详解modbus-上 - 知乎 https://zhuanlan.zhihu.com/p/77502146 Modbus通讯协议_百度百科 https://baike.baidu.com/item/Modbus%E9%80%9A%E8%AE%AF%E5%8D%8F 阅读全文
posted @ 2021-12-20 19:53 papering 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 一些连接池相关的总结 https://xargin.com/some-connection-pool/ 阅读全文
posted @ 2021-12-20 11:26 papering 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) 单元化架构要求系统必须具备的一项能力:数据分区,实际上正是数据分区决定了各个单元可承担的业务流量比例。数据分区(shard),即是将全局数据按照某一个维度水平划分开来,每个分区的数据内容互不重叠,这也就是数据库水平拆分所做的事情。 仅把数据分区了还不够,单元化的另外一个必要条件是,全站 阅读全文
posted @ 2021-12-20 11:02 papering 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 面向过程的设计方式(贫血模型) 面向对象的领域驱动设计方式(充血模型) 多种设计模型(失血模型,贫血模型,充血模型,胀血模型)比较_ices的博客-CSDN博客 https://blog.csdn.net/chenxiang0207/article/details/6423086 领域 阅读全文
posted @ 2021-12-20 10:00 papering 阅读(217) 评论(0) 推荐(0) 编辑
摘要: Window.history - Web API 接口参考 | MDN https://developer.mozilla.org/zh-CN/docs/Web/API/Window/history 阅读全文
posted @ 2021-12-19 16:15 papering 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/双曲面/1991059?fr=aladdin 阅读全文
posted @ 2021-12-18 08:08 papering 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 仿soul首页星球 - DCloud 插件市场 https://ext.dcloud.net.cn/plugin?id=5567 仿soul首页星球 球坐标 球坐标计算,o-yz平面 设在o-yz平面内,旧位置(Y0,Z0)的弧度数为Q, 则Y0=RcosQ,Z0=RsinQ, 一个时间间隔内,弧度 阅读全文
posted @ 2021-12-18 00:47 papering 阅读(722) 评论(0) 推荐(0) 编辑
摘要: iOS开发 仿SOUL星球布局,写的一款笔记类应用 - 简书 https://www.jianshu.com/p/d1114b13dfb4 dongxinb/DBSphereTagCloud: A 3D spherical tag cloud view of iOS. https://github. 阅读全文
posted @ 2021-12-17 23:51 papering 阅读(612) 评论(0) 推荐(0) 编辑
摘要: /* Magic UMD boilerplate Beginning */ /**/ (function (root, factory) { /**/ if (typeof define 'function' && define.amd) { /**/ define([], factory); /* 阅读全文
posted @ 2021-12-17 11:33 papering 阅读(60) 评论(0) 推荐(0) 编辑
摘要: Go/src/builtin/builtin.go:52 // int64 is the set of all signed 64-bit integers.// Range: -9223372036854775808 through 9223372036854775807.type int64 i 阅读全文
posted @ 2021-12-17 11:24 papering 阅读(49) 评论(0) 推荐(0) 编辑
摘要: Python RASP 工程化:一次入侵的思考 - 七夜的故事 - 博客园 https://www.cnblogs.com/qiyeboy/p/10359081.html 阅读全文
posted @ 2021-12-17 09:47 papering 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 百度登录加密协议分析(上) - 七夜的故事 - 博客园 https://www.cnblogs.com/qiyeboy/p/5722424.html 百度登录加密协议分析(下) - 七夜的故事 - 博客园 https://www.cnblogs.com/qiyeboy/p/5728293.html 阅读全文
posted @ 2021-12-17 09:43 papering 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: vscode 工具生成测试文件、测试代码 package main import ( "os" "strings" ) func ExtractDir(isDIr bool, p string) string { if isDIr { return p } ps := "/" l := string 阅读全文
posted @ 2021-12-17 09:23 papering 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Shebang - 维基百科,自由的百科全书 https://zh.wikipedia.org/wiki/Shebang Shebang (Unix) - Wikipedia https://en.wikipedia.org/wiki/Shebang_%28Unix%29 在计算领域中,Sheban 阅读全文
posted @ 2021-12-16 13:41 papering 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 实践: 1) 使用dos2unix命令:dos2unix filename Linux下去掉^M的四种方法_linux shell_脚本之家 https://www.jb51.net/article/142224.htm 第一种方法: cat -A filename 就可以看到windows下的断元 阅读全文
posted @ 2021-12-16 11:28 papering 阅读(6151) 评论(0) 推荐(0) 编辑
摘要: 小结: 1) 状态机的核心要素 1.statusTag记录路径信息;2.status和old_status记录节点上下游信息;3.depth记录节点深度; https://mp.weixin.qq.com/s?src=11&timestamp=1639617896&ver=3499&signatur 阅读全文
posted @ 2021-12-16 09:35 papering 阅读(145) 评论(0) 推荐(0) 编辑
摘要: SVG - 术语表 | MDN https://developer.mozilla.org/zh-CN/docs/Glossary/SVG 可缩放矢量图形 (SVG) 是一个基于 XML 语法的 2D 矢量图形格式。 W3C (en-US) 于20世纪90年代末开始着手 SVG 的工作,但是当 In 阅读全文
posted @ 2021-12-16 09:21 papering 阅读(114) 评论(0) 推荐(0) 编辑
摘要: WEB烟花效果——Canvas实现 - 朱雀桥边 - 博客园 https://www.cnblogs.com/visualiz/p/fireworks.html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> 阅读全文
posted @ 2021-12-15 20:44 papering 阅读(63) 评论(0) 推荐(0) 编辑
摘要: css3中transform属性实现的4种功能(旋转、缩放、倾斜、移动)-css教程-PHP中文网 https://www.php.cn/css-tutorial-409036.html (3)计算3D变形3D缩放变形使用的4X4矩阵transform:matrix3d(sx,0,0,0,0,sy, 阅读全文
posted @ 2021-12-15 20:26 papering 阅读(103) 评论(0) 推荐(0) 编辑
摘要: github.com/go-kratos/kratos/v2@v2.1.2/middleware/tracing/tracing.go:11 Tracing:遵循 OpenTelemetry 规范定义,以实现微服务链路追踪; kratos/main.go at main · go-kratos/kr 阅读全文
posted @ 2021-12-15 20:16 papering 阅读(134) 评论(0) 推荐(0) 编辑
摘要: func main() { mutex := make(chan struct{}, 1) counter := 0 increase := func() { mutex <- struct{}{} counter++ <-mutex } increase1000 := func(done chan 阅读全文
posted @ 2021-12-15 09:44 papering 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 通道用例大全 - Go语言101(通俗版Go白皮书) https://gfw.go101.org/article/channel-use-cases.html 采用最快回应 本用例可以看作是上例中只使用一个通道变种的增强。 有时候,一份数据可能同时从多个数据源获取。这些数据源将返回相同的数据。 因为 阅读全文
posted @ 2021-12-15 09:42 papering 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 编程式的导航 | Vue Router https://router.vuejs.org/zh/guide/essentials/navigation.html Programmatic Navigation Aside from using <router-link> to create anch 阅读全文
posted @ 2021-12-15 09:21 papering 阅读(57) 评论(0) 推荐(0) 编辑
摘要: VMarker https://vmarker.sagocloud.com/diy/#upbm 阅读全文
posted @ 2021-12-15 00:11 papering 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 左右互搏:GAN在爱奇艺短视频推荐冷启动中的实践 https://mp.weixin.qq.com/s/Thdf6hAwktCfd7LJc_9Tmw 左右互搏:GAN在爱奇艺短视频推荐冷启动中的实践 原创 随刻基础推荐团队 爱奇艺技术产品团队 2021-12-10 11:59 收录于话题 #冷启动1 阅读全文
posted @ 2021-12-13 14:51 papering 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 源码 kratos 配置热加载分析 github.com\go-kratos\kratos\v2@v2.1.2\config\value.go github.com/go-kratos/kratos/v2@v2.1.2/config/config.go:40 通过go程开启监听文件变动的功能 pac 阅读全文
posted @ 2021-12-13 09:51 papering 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 重磅!《安全规则集合》正式发布 https://mp.weixin.qq.com/s/_AX2dOte7QKMYQg3UjN4bQ safe-rules/c-cpp-rules.md at main · Qihoo360/safe-rules https://github.com/Qihoo360/ 阅读全文
posted @ 2021-12-13 09:38 papering 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 七牛云李意扬:如何收集 Go 实时覆盖率丨ECUG Meetup 回顾 https://mp.weixin.qq.com/s/aKI0NO4-WQwK0gxF7RDSnA 七牛云李意扬:如何收集 Go 实时覆盖率丨ECUG Meetup 回顾 原创 ECUG 活动组 七牛云技术团队 2021-12- 阅读全文
posted @ 2021-12-13 09:34 papering 阅读(966) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 186 下一页