technology road one step 2021-02-12 1. 工程能力 1. DDD 《DDD》 chapter4 分离领域 ; chapter5 软件中表示的模型 《IDDD》Entity 《分析模式》 确定范围 《对象设计,角色,责任和协作》 2. 软件架构 1. <Java 应 ...
分类:
其他好文 时间:
2021-02-16 11:50:55
阅读次数:
0
This time, you are supposed to find $A+B$ where $A$ and $B$ are two polynomials. Input Specification: Each input file contains one test case. Each cas ...
分类:
其他好文 时间:
2021-02-10 13:03:20
阅读次数:
0
导出表 如何定位导出表(这段写的不是很清楚) 在扩展pe头的最后一个成员(16个结构体*8bytes)中查找 导出表的属性在第一个结构体中: 第一个DWORD是导出表的RVA,要先转化成FOA 然后就可以找到导出表结构体 关键结构体:_IMAGE_EXPORT_DIRECTORY typedef s ...
分类:
其他好文 时间:
2021-02-10 12:55:56
阅读次数:
0
Team Name(2.5) Prime Game(2.6) XOR Sums(2.7) Another Tree with Number Theory Multiple Games Cell Shell Bash Matrix Dream and the Multiverse Cut the Ca ...
分类:
其他好文 时间:
2021-02-08 12:12:42
阅读次数:
0
limitDecimals = value => { const reg = /^(\-)*(\d+)\.(\d).*$/; if (typeof value 'string') { return !isNaN(Number(value)) ? value.replace(reg, '$1$2.$3 ...
分类:
其他好文 时间:
2021-02-05 10:41:28
阅读次数:
0
MaixPy3 模块设计 围绕 Linux 进行设计,主要涵盖以下通用外设。 I2C > /dev/i2c-X > pylibi2c https://github.com/amaork/libi2c SPI > /dev/spidev1.0 > pyspidev https://github.com ...
分类:
系统相关 时间:
2021-02-05 10:39:12
阅读次数:
0
ingress 增加跨域 第一种: kubectl get ingresses. -n rrzhibo-admin test-rrzb-apiadmin-gateway-http-ingress -o yaml apiVersion: extensions/v1beta1 kind: Ingress ...
分类:
其他好文 时间:
2021-02-04 12:05:53
阅读次数:
0
Markdown语法 1.标题 x个#+空格+标题名,最大支持到六级标题 2.字体 加粗 文字左右各加2个星号(*) 这是加粗 斜体 文字左右各加1个星号(*) 这是倾斜 加粗+斜体 文字左右各加3个星号(*) 这是加粗+斜体 删除线 文字左右各加2个波浪(~) 蕾姆是我老婆 3.引用效果 大于号( ...
分类:
其他好文 时间:
2021-02-03 11:02:26
阅读次数:
0
Go语言基础之指针 区别于C/C++中的指针,Go语言中的指针不能进行偏移和运算,是安全指针。 要搞明白Go语言中的指针需要先知道3个概念:指针地址、指针类型和指针取值。 Go语言中的指针 任何程序数据载入内存后,在内存都有他们的地址,这就是指针。而为了保存一个数据在内存中的地址,我们就需要指针变量 ...
分类:
编程语言 时间:
2021-02-02 11:25:50
阅读次数:
0
Windows does not really support dual mode applications. To see console output you need to create a console application CONFIG += console However, if y ...
分类:
其他好文 时间:
2021-01-28 12:25:20
阅读次数:
0