最近在复习备考的过程中,总是不自觉把自己的身份从项目经理(project manager)往(architecter)上迁移,旧的技术思维或者关心细节实现的思维(好奇心等)屡屡出现。本篇重新、彻底地强调一下。 ...
分类:
其他好文 时间:
2021-03-29 12:28:16
阅读次数:
0
通过remix部署合约出现了一些问题。 编码如下: pragma solidity^0.4.0;contract FaucetTest{ function withdraw(uint withdraw_amount) public { require(withdraw_amount <= 10000 ...
分类:
移动开发 时间:
2021-03-29 11:57:33
阅读次数:
0
使用element UI的upload组件 handleChange (file, fileList) { let _this = this if (this.formdata.printMode !== 'Bartender') return this.formdata.remark = file ...
分类:
数据库 时间:
2021-03-26 15:14:15
阅读次数:
0
现象 读取不到证书文件 证书文件变大 解决方案 读取不到证书文件 由于是springboot项目,部署时打包成jar启动,无法获取到有效的证书文件地址。解决方案:首次访问时从jar中提取证书文件到当前目录中,代码如下: /** * 获取jar包中证书文件地址 * * @param fileName ...
分类:
编程语言 时间:
2021-03-18 14:18:03
阅读次数:
0
/* * 类中属性的使用 * * 属性(成员变量) vs 局部变量 * 1.相同点: * 1.1 定义变量的格式:数据类型 变量名 = 变量值 * 1.2 先声明,后使用 * 1.3 变量都有其对应的作用域 * * * 2.不同点: * 2.1 在类中声明的位置的不同 * 属性:直接定义在类的一对{ ...
分类:
其他好文 时间:
2021-03-17 14:57:16
阅读次数:
0
1. 下载安装iVerilog 2. 在VSCode中安装插件"Verilog-HDL/SystemVerilog/Bluespec SystemVerilog support for VS Code" 3. 下载ctags,解压后存放在合适的位置,拷贝文件夹中"ctags.exe"的路径,后面需要 ...
分类:
其他好文 时间:
2021-03-17 14:51:16
阅读次数:
0
目录 一、Kafka的架构 二、Topics和Partition 三、Producer消息路由 四、Consumer Group 五、Push vs. Pull 六、Kafka delivery guarantee 正文 回到顶部 一、Kafka的架构 如上图所示,一个典型的Kafka集群中包含若干 ...
分类:
其他好文 时间:
2021-03-17 14:25:54
阅读次数:
0
idea 安装目录 的idea.exe.vmoptions 改了,没起作用,idea64.exe.vmoptions 也改了,也没起作用。 idea的编码格式也设置了,没起作用 最后起作用的是: 先打开tomcat的安装目录 编辑 conf 目录下的 logging.properties 用note ...
分类:
其他好文 时间:
2021-03-17 14:02:51
阅读次数:
0
原文:https://code.visualstudio.com/docs/nodejs/reactjs-tutorial To debug the client side React code, we'll need to install the Debugger for Chrome exten ...
分类:
其他好文 时间:
2021-03-16 14:09:27
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0