04 2023 档案
摘要:windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下[global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple
阅读全文
摘要:@echo off start "" "E:\soft\WeChat\WeChat.exe" start "" "E:\soft\WeChat\WeChat.exe" exit()
阅读全文
摘要:远程桌面清空历史记录: reg delete “HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default” /va /f reg delete “HKEY_CURRENT_USER\Software\Microsoft\T
阅读全文
摘要:原文链接:https://blog.csdn.net/Saintmm/article/details/120847019 .gitignore不生效问题解决方法 第一种方法.gitignore中已经标明忽略的文件目录下的文件,git push的时候还会出现在push的目录中,或者用git statu
阅读全文
摘要:java jdk 国内下载镜像地址(1)TUNA镜像 https://mirrors.tuna.tsinghua.edu.cn/AdoptOpenJDK/(2)HUAWEI镜像 https://repo.huaweicloud.com/java/jdk/ (3)官网下载地址:https://jdk.
阅读全文
摘要:https://blog.csdn.net/weixin_43532644/article/details/106762314
阅读全文
摘要:#!/bin/bash CUR_PATH='/data/ftp/windows' path=$CUR_PATH for dir in $(ls $path) do echo $dir scp -P 22 -r $dir root@124.2*.x.x:/data/www/ftp/ done
阅读全文
摘要:#!/usr/bin/python3 # -*- coding: utf-8 -*- # Created by iFantastic on 2020/8/7# 用于视频下载(B站等) import sys from you_get import common as you_get #导入you-ge
阅读全文