上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页
摘要: CSS中height和line-height的区别 height是元素自身的高度,line-height则是元素内部文字的行高。 比如:height:100px; line-height:20px;表示具有height样式的元素的高度为100像素,里面的文字行高为20像素,就是可以排5行文字。 补充 阅读全文
posted @ 2023-05-20 12:15 小小仓鼠 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 参考文档:https://blog.csdn.net/chenghuikai/article/details/77476830 第一步:先执行sync命令 #sync 第二步:(如果仅仅是清理swap的话,这一步可以不执行) #echo 3 > /proc/sys/vm/drop_caches说明: 阅读全文
posted @ 2023-05-04 08:24 小小仓鼠 阅读(419) 评论(0) 推荐(0) 编辑
摘要: windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下[global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2023-04-28 15:19 小小仓鼠 阅读(42) 评论(0) 推荐(0) 编辑
摘要: @echo off start "" "E:\soft\WeChat\WeChat.exe" start "" "E:\soft\WeChat\WeChat.exe" exit() 阅读全文
posted @ 2023-04-26 16:41 小小仓鼠 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 远程桌面清空历史记录: reg delete “HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default” /va /f reg delete “HKEY_CURRENT_USER\Software\Microsoft\T 阅读全文
posted @ 2023-04-24 09:46 小小仓鼠 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/Saintmm/article/details/120847019 .gitignore不生效问题解决方法 第一种方法.gitignore中已经标明忽略的文件目录下的文件,git push的时候还会出现在push的目录中,或者用git statu 阅读全文
posted @ 2023-04-21 18:10 小小仓鼠 阅读(2130) 评论(0) 推荐(1) 编辑
摘要: java jdk 国内下载镜像地址(1)TUNA镜像 https://mirrors.tuna.tsinghua.edu.cn/AdoptOpenJDK/(2)HUAWEI镜像 https://repo.huaweicloud.com/java/jdk/ (3)官网下载地址:https://jdk. 阅读全文
posted @ 2023-04-19 15:26 小小仓鼠 阅读(1754) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43532644/article/details/106762314 阅读全文
posted @ 2023-04-18 23:32 小小仓鼠 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #!/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 阅读全文
posted @ 2023-04-17 15:20 小小仓鼠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #!/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 阅读全文
posted @ 2023-04-11 11:23 小小仓鼠 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页