摘要: 在线安装tree命令: yum -y install tree 但是在线包总是下载失败: Repository epel is listed more than once in the configuration Repository epel-debuginfo is listed more th 阅读全文
posted @ 2024-01-25 14:13 二奎 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 首先安装anaconda。 创建一个paddlehub的环境:为什么使用3.8呢,是看到一个文章说的,推荐使用。 conda create -n paddlehub_env python=3.8 成功后,切换到paddle_env环境: conda activate paddlehub_env 如何 阅读全文
posted @ 2022-05-18 22:34 二奎 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 使用anaconda,可以不安装python。 anaconda自带python, python的版本与anaconda版本有关, 可以通过conda 命令安装不同python版本的环境: conda create -n tensorflow1_env python=3.6 windows serv 阅读全文
posted @ 2022-05-17 19:57 二奎 阅读(721) 评论(0) 推荐(0) 编辑
摘要: window server 2008 安装 node-v16.11.0-x64时报 This application only supported on window8.1, windows Server 2012R2,or higher。 经查 window server 2008能 node-v 阅读全文
posted @ 2021-11-29 10:18 二奎 阅读(1964) 评论(0) 推荐(0) 编辑
摘要: 基于vue+element+select实现的自定义控件selectTree,效果如图: 单选: 输出值:"tree":3 多选: 输出值:"tree":[2,3] 代码如下: <template> <el-select ref="selectTree" v-model="value" :place 阅读全文
posted @ 2021-05-16 14:14 二奎 阅读(3096) 评论(3) 推荐(0) 编辑
摘要: extjs 的 tabpanel有一个tabBar配置项,配置: tabBar: { hidden: true }, 即可隐藏。 如果想隐藏所有的tabPanel的header需要修改css: .x-tab-bar-default { display: none; } 阅读全文
posted @ 2021-04-29 10:53 二奎 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 两种实现: 先定义一个服务接口: /** * webservice 服务接口 * @author hkk */ public interface IServiceAgent { String invoke(Object... params) throws Exception; } 一. cfx实现: 阅读全文
posted @ 2021-01-14 14:12 二奎 阅读(1845) 评论(0) 推荐(0) 编辑
摘要: Security配置代码: protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers("/**").permitAll() .anyRequest().au 阅读全文
posted @ 2020-11-23 15:21 二奎 阅读(9179) 评论(1) 推荐(2) 编辑
摘要: 分为建表规约、SQL规约、索引规约三个部分,每部分的每一条都有强制、建议两个级别,大家在参考时,根据自己公司的情况来权衡。 一、建表规约 【强制】(1) 存储引擎必须使用InnoDB 解读:InnoDB支持事物、行级锁、并发性能更好,CPU及内存缓存页优化使得资源利用率更高。 【强制】(2)每张表必 阅读全文
posted @ 2020-11-09 10:19 二奎 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 早上刚上班,我就打开刚在腾讯云买的服务器,想看下,docker正在运行的容器是否正常,看到如下: 一看就傻了,这么多没见过的container, 肯定被黑了。马上看一下是否有异常登录: 登录失败次数太多,日志翻了了好多页,这是真中招了。 我在阿里云上跑了一个月的服务器,都没中招,腾讯云的才三天就中招 阅读全文
posted @ 2020-09-27 11:13 二奎 阅读(1906) 评论(0) 推荐(0) 编辑