前言 SpringBoot的默认配置文件格式是.properities,同时也支持***.yaml或***.yml 1、指定启动的环境 spring: profiles: active: dev 2、给springboot服务命名(配合springcloud时非常有用) spring: applic ...
分类:
编程语言 时间:
2021-07-29 16:19:22
阅读次数:
0
进度条 通过这些简单、灵活的进度条,为当前工作流程或动作提供实时反馈。 基本实例 默认样式的进度条 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin ...
分类:
其他好文 时间:
2021-07-29 16:17:59
阅读次数:
0
手机图片上传后获取到的宽高反了,网上的说法是操作系统里的文件属性功能可能已经把图片给修正过了,看到的图片是正确的,但是通过getimagesize获取到的宽高不对;这时需要用到exif扩展的exif_read_data方法获取图片头部信息 exif扩展安装:[https://www.cnblogs. ...
分类:
Web程序 时间:
2021-07-28 21:37:41
阅读次数:
0
debug:am trace-ipc源码分析 一、使用 官网介绍 链接:Slow rendering 如果您有 binder 事务,则可以使用以下 adb 命令捕获其调用堆栈: $ adb shell am trace-ipc start … use the app - scroll/animate ...
分类:
其他好文 时间:
2021-07-28 21:34:30
阅读次数:
0
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:
其他好文 时间:
2021-07-28 21:23:54
阅读次数:
0
源代码: x = Dense(output_dim=NB_CLASS, activation='softmax')(x) 错误提示: 修正: x = Dense(uints=NB_CLASS, activation='softmax')(x) 代码运行成功。 ...
分类:
其他好文 时间:
2021-07-28 21:23:40
阅读次数:
0
ffmpeg相关操作参考点这儿 视频截取gif 参考这儿 ffmpeg -ss 00:00:20 -i sample.mp4 -to 10 -r 10 -vf scale=200:-1 cutekid_cry.gif ss : indicates the starting point of GIF ...
分类:
其他好文 时间:
2021-07-28 21:17:46
阅读次数:
0
本文记录昨天看的两篇文章 Knowledge Vault&MLP 和 TATEC。因为后面还安排了别的学习任务,时间不太多了,而且双线性也不是研究重点,所以只简单记录一下模型要点就好了。 Knowledge Vault & MLP 【paper】 Knowledge Vault: A Web-Sca ...
分类:
其他好文 时间:
2021-07-28 21:16:02
阅读次数:
0
思路:暴力模拟。 看到题解大多是从大到小分析位置输出答案,这里特别提供一种简洁易懂的暴力模拟涂色方法。 根据题目上的涂色方式,我们可以想到一种模拟:对于原图每一个白块,我们可以在新图上把它替换成单位正方形;对于原图每一个黑块,我们可以在新图上把它替换成 \(n \times n\) 的全黑正方形。 ...
分类:
其他好文 时间:
2021-07-28 21:15:27
阅读次数:
0
安装certbot 安装 certbot 为免费证书做准备 yum install certbot python2-certbot-nginx 安装 svn 安装svn yum install svn 创建svn库 # 创建库 svnadmin create /var/svn/data # 授权ap ...
分类:
Web程序 时间:
2021-07-27 17:31:33
阅读次数:
0