background picture of the home page

Hello World

如何在 Docker 容器中挂载或符号链接单个文件

参考: https://blog.csdn.net/wlcs_6305/article/details/121694902 Docker 卷和绑定挂载用于将主机操作系统上的目录绑定到容器文件系统中的位置。虽然它们通常用于挂载整个目录,但您也可以使用它们来符号链接单个文件。 从主机到 Docker 的

thumbnail of the cover of the post

python+logging+yaml日志分割

参考: https://blog.csdn.net/qq_15111861/article/details/82015753 https://blog.csdn.net/energysober/article/details/53263295 建立log.yaml文件 version: 1 disa

thumbnail of the cover of the post

attention

参考 https://zhuanlan.zhihu.com/p/62486641 https://zhuanlan.zhihu.com/p/88376673 https://github.com/zy1996code/nlp_basic_model/blob/master/lstm_attentio

thumbnail of the cover of the post

[766]托普利茨矩阵

只要比较每一行的[0,n-1]与后一行的[1,n]是否完全一致即可,n为行的长度。 package T766托普利茨矩阵; public class Solution { public boolean isToeplitzMatrix(int[][] matrix) {

thumbnail of the cover of the post

vue中父组件调用子组件的方法

参考: https://www.cnblogs.com/gitByLegend/p/10868538.html 注意:要在使用子组件标签时候写ref,然后通过$refs调用这个ref。 组件 (Component) 是 Vue.js 最强大的功能之一。组件可以扩展 HTML 元素,封装可重用的代码。

thumbnail of the cover of the post

Springboot beetl idea热更新解决方案

参考: https://blog.csdn.net/weixin_34235371/article/details/93502563 https://www.jianshu.com/p/ff37b4b68e56 测试环境:spring boot + beetl模板引擎 工具:idea 在项目的启动类

thumbnail of the cover of the post

谈谈不一样的session、token、cookie理解

参考: https://zhuanlan.zhihu.com/p/141485129 一、session、token、cookie三者之间的关系 关于session、token、cookie的文章已经很多了,本文只想结合自己的理解重新整理一遍自己的思路。谈谈对三者的看法。 1、session是在服务

thumbnail of the cover of the post

在scrapy中捕获并处理各种异常

参考: https://blog.csdn.net/sc_lilei/article/details/80702449 通过下载中间件里的process_exception(self, request, exception, spider)进行处理,如果捕获到response的status为500,

thumbnail of the cover of the post

Ajax和websocket比较与应用场景

参考:http://www.woshipm.com/ucd/1051915.html 我们日常使用的互联网产品,少不了前后端数据的交互,Ajax和websocket都是数据交互的利器,那么它们分别是什么?Ajax和websocket是如何完成数据实时交互的?websocket与Ajax轮询的区别又是

thumbnail of the cover of the post

sql联接

参考: https://www.lintcode.com/course/19/learn/?chapterId=103&sectionId=667&extraParams=%7B%22moduleSource%22%3A%22lc-course%3A19%22%7D 规定要联结的所有表以及它们如何关

thumbnail of the cover of the post