随笔分类 - 其他
摘要:1、数据库 服务器端 https://blog.csdn.net/weixin_43805744/article/details/128082091 安装版本:8.0.20 2、安装nvm 推荐(针对nvm 下载慢):https://juejin.cn/post/723249918066076882
阅读全文
摘要:1、谷歌插件网 https://chrome.pictureknow.com/ 2、录屏软件 好录 旧版chromedriver下载地址(114.0.5735.90及以下版本):https://chromedriver.storage.googleapis.com/index.html 新版chro
阅读全文
摘要:报错提要:443 git time out https://blog.csdn.net/wjnhub/article/details/106710737 https://blog.csdn.net/zhufengyan521521/article/details/115519239 1、修改DNS配
阅读全文
摘要:智能推荐1、两只表数据不同步,导致A表查询B表,key值不存在,导致的报错数据库业务层方面2、线上没有清理缓存,导致没有看到线上最新的数据
阅读全文
摘要:一、环境配置 1、下载brew 命令:/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 一直写y参考文档:https://www.jianshu.com/p/22122a1d4
阅读全文
摘要:【配置环境】1、下载brew参考文档:https://www.jianshu.com/p/22122a1d4474/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"一直写y2、g
阅读全文
摘要:案例 1 # coding=utf-8 2 import requests 3 import re 4 import pandas 5 from time import time 6 7 8 headers = { 9 'UserAgent': 'Mozilla/5.0 (Windows NT 10
阅读全文
摘要:宝藏文档:https://www.cnblogs.com/xiaobaibailongma 1、编程篇 一、排序 1 ls=[3,2,5,1] 2 # 方法一: 3 def bubble(ls): 4 for i in range(0,len(ls)): 5 for j in range(i+1,l
阅读全文
摘要:python 用镜像源安装命令 1 pip install -i https://pypi.doubanio.com/simple/ flask 2 pip install -i https://pypi.doubanio.com/simple/ -r requirements.txt 豆瓣 htt
阅读全文
摘要:思路:穷举方法 1 import itertools as its # https://pypi.org/project/more-itertools/ 2 3 w = '123456' 4 c = its.product(w,repeat=4) 5 num = 0 6 for i in c: 7
阅读全文
摘要:1 #coding:utf-8 2 import pymysql 3 import time 4 from con_mysql import common_file 5 import logging 6 7 8 9 class MysqlHelper(): 10 def __init__(self,
阅读全文
摘要:执行下面命令即可 摘录于:https://blog.csdn.net/qq_20008173/article/details/87280834
阅读全文