background picture of the home page

Hello World

logstash和filebeat的关系

参考: https://www.zhihu.com/question/54058964 http://soft.dog/2015/12/24/beats-basic/#section logstash 和filebeat都具有日志收集功能,filebeat更轻量,占用资源更少,但logstash 具

thumbnail of the cover of the post

前端页签+iframe

<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>主页</title> <style> /* 页签样式 */ .tabs {

thumbnail of the cover of the post

matplotlib x,y轴自定义

参考: https://blog.csdn.net/u011208984/article/details/90720516 xticks()函数原型: xticks(ticks, [labels], **kwargs) 参数说明: ticks:数组类型,用于设置X轴刻度间隔 [labels]:数组类

thumbnail of the cover of the post

[852]山脉数组的峰顶索引

参考: https://leetcode-cn.com/problems/peak-index-in-a-mountain-array/solution/shan-mai-shu-zu-de-feng-ding-suo-yin-by-dtqvv/ 二分法查找: class Solution:

thumbnail of the cover of the post

[728]自除数

参考: https://leetcode-cn.com/problems/self-dividing-numbers/solution/zi-chu-shu-by-leetcode/ class Solution: def selfDividingNumbers(self, left: in

thumbnail of the cover of the post

微信表情制作

https://dongci.kawo.com/ https://www.soogif.com/video 微信表情开放平台:https://sticker.weixin.qq.com/cgi-bin/mmemoticon-bin/readtemplate?t=guide/index.html#/c

thumbnail of the cover of the post

IDEA配置使用阿里云maven仓库

参考: https://blog.csdn.net/NathanniuBee/article/details/80402675 配置xml,注意修改localRepository的位置,以及这里增加了阿里云的maven仓库: <?xml version="1.0" encoding="UTF-8"?

thumbnail of the cover of the post

router.push后css混用

当通过 $router.push('/') 进行页面跳转时,页面的 CSS 样式通常应该是新页面的样式,而不是上一个页面的样式。如果你发现新页面仍然使用了上一个页面的 CSS 样式,可能有以下几个原因: 浏览器缓存问题:浏览器可能在加载新页面时缓存了旧页面的 CSS 文件。你可以尝试在地址栏中输入新

thumbnail of the cover of the post