上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 32 下一页
2023年8月3日
摘要: function getCookie(name) { var r = document.cookie.match("\\b" + name + "=([^;]*)\\b"); return r ? r[1] : undefined; } console.log(getCookie("username 阅读全文
posted @ 2023-08-03 16:43 boye169 阅读(371) 评论(0) 推荐(0)
2023年8月2日
摘要: 什么是黑盒监控 我们监控主机的资源用量、容器的运行状态、数据库中间件的运行数据。这些都是支持业务和服务的基础设施,通过白盒能够了解其内部的实际运行状态,通过对监控指标的观察能够预判可能出现的问题,从而对潜在的不确定因素进行优化。 而从完整的监控逻辑的角度,除了大量的应用白盒监控以外,还应该添加适当的 阅读全文
posted @ 2023-08-02 16:49 boye169 阅读(130) 评论(0) 推荐(0)
2023年7月27日
摘要: #coding:utf-8 import logging import sys import os import datetime from logging import handlers class Logger(object): def __init__(self,name): LOGGING_ 阅读全文
posted @ 2023-07-27 14:47 boye169 阅读(28) 评论(0) 推荐(0)
2023年7月19日
摘要: 下载安装包 https://dev.mysql.com/downloads/mysql/5.7.html#downloads wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.43-linux-glibc2.12-x86_64.tar 阅读全文
posted @ 2023-07-19 15:56 boye169 阅读(1357) 评论(0) 推荐(0)
2023年7月14日
摘要: 列出jar包的文件清单 jar tf test.jar 将需要修改的文件解压出来 jar xf test.jar BOOT-INF/classes/application.yml 使用修改后的文件替换jar包中对应的文件 jar uf tbds-tdw-20221129.jar BOOT-INF/c 阅读全文
posted @ 2023-07-14 15:21 boye169 阅读(21) 评论(0) 推荐(0)
2023年7月10日
摘要: 新建Vue对象 <!DOCTYPE html> <html> <head> <title>Vue Demo</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> </head> <body> < 阅读全文
posted @ 2023-07-10 11:42 boye169 阅读(43) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <title>Vue Demo</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> </head> <body> <div id=" 阅读全文
posted @ 2023-07-10 11:32 boye169 阅读(17) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue 测试实例</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> < 阅读全文
posted @ 2023-07-10 09:50 boye169 阅读(20) 评论(0) 推荐(0)
2023年7月6日
摘要: # -*- coding: utf-8 -*- from contextlib import closing from requests import get url = 'https://www.test.video/aa' # 但是使用with语句的时候是需要条件的,任何对象,只要正确实现了上下 阅读全文
posted @ 2023-07-06 17:00 boye169 阅读(50) 评论(0) 推荐(0)
2023年6月27日
摘要: 什么是协程 协程(co-routine,又称微线程、纤程)是一种多方协同的工作方式。协程不是进程或线程,其执行过程类似于 Python 函数调用,Python 的 asyncio 模块实现的异步IO编程框架中,协程是对使用 async 关键字定义的异步函数的调用。当前执行者在某个时刻主动让出(yie 阅读全文
posted @ 2023-06-27 10:10 boye169 阅读(65) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 32 下一页