摘要: 1.先进入MySQL的配置项。增加如下配置。 default_authentication_plugin=mysql_native_password 2.通过数据库连接进入数据库。配置下列信息。 select host from user where user = 'root'; update us 阅读全文
posted @ 2025-07-23 08:41 GaoAnLee 阅读(13) 评论(0) 推荐(0)
摘要: 创建删除Bat @echo off set "target_dir=D:\RJDB\RuiJie" set "days_old=3" :: 使用forfiles命令删除3天前的.bak文件 forfiles /p "%target_dir%" /m *.bak /d -%days_old% /c " 阅读全文
posted @ 2025-07-21 13:24 GaoAnLee 阅读(72) 评论(0) 推荐(0)
摘要: 摘自:https://www.cnblogs.com/iupoint/p/10893641.html 1 2 3 4 5 import numpy as np import pandas as pd import matplotlib import matplotlib.pyplot as plt 阅读全文
posted @ 2021-06-21 17:08 GaoAnLee 阅读(266) 评论(0) 推荐(0)
摘要: import java.io.UnsupportedEncodingException; import java.nio.charset.StandardCharsets; import java.util.Base64; public class Demo { public static void 阅读全文
posted @ 2021-06-20 14:22 GaoAnLee 阅读(239) 评论(0) 推荐(0)
摘要: 摘自:https://www.cnblogs.com/ryans/p/6512631.html //base64加密 解密 /* //1.加密 var result = Base.encode('125中文'); //--> "MTI15Lit5paH" //2.解密 var result2 = B 阅读全文
posted @ 2021-06-20 14:18 GaoAnLee 阅读(1639) 评论(0) 推荐(0)
摘要: driver=com.mysql.cj.jdbc.Driver 阅读全文
posted @ 2021-06-13 19:01 GaoAnLee 阅读(122) 评论(0) 推荐(0)
摘要: 摘自:https://zhuanlan.zhihu.com/p/349607083 原文地址:https://towardsdatascience.com/pandas-vs-sql-in-5-examples-485b5571d934 本文的重点是在合并和连接操作方面比较Pandas和SQL。Pa 阅读全文
posted @ 2021-05-31 09:13 GaoAnLee 阅读(187) 评论(0) 推荐(0)
摘要: 0 0 10,14,16 * * ? 每天上午10点,下午2点,4点 0 0/30 9-17 * * ? 朝九晚五工作时间内每半小时 0 0 12 ? * WED 表示每个星期三中午12点 0 0 12 * * ? 每天中午12点触发 0 15 10 ? * * 每天上午10:15触发 0 15 1 阅读全文
posted @ 2021-04-07 11:05 GaoAnLee 阅读(192) 评论(0) 推荐(0)
摘要: 验证数字的正则表达式集 验证数字:^[0-9]*$ 验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$ 验证m-n位的数字:^\d{m,n}$ 验证零和非零开头的数字:^(0|[1-9][0-9]*)$ 验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$ 验证有1-3位 阅读全文
posted @ 2020-10-21 12:57 GaoAnLee 阅读(419) 评论(0) 推荐(0)
摘要: 摘自:https://www.cnblogs.com/helloworld2018/p/9011369.html 本文目的是通过java实战开发教程理解区块链是什么。将通过实战入门学习,用Java自学开发一个很基本的区块链,并在此基础上能扩展如web框架应用等。这个基本的java区块链也实现简单的工 阅读全文
posted @ 2020-08-27 14:23 GaoAnLee 阅读(419) 评论(0) 推荐(0)