网络教程、解决方案

更多相关教程已整理至各自合集

IDEA代码警告(warning)整理分析

谷歌翻译插件

参考1

其他插件

极简插件

谷歌chrome浏览器复制标签页方法

1.先按键 Ctrl/command+L 选定网址栏中的整个 URL(或用鼠标选定),之后再按 Alt+Enter,就能在新标签页中打开该 URL。command+shift+回车 就能打开并聚焦

2.组合键Alt +D+Enter (首推)

Mongodb免费云数据库

https://www.jianshu.com/p/f8faa62213f7

https://mongodb.com/

节点订阅 β

https://zgq-inc.github.io/overthefirewall/

免费申请EU.org(欧盟免费顶级域名)

https://www.chzi.eu.org/2022/01/euorg.html

1日元撸value-domain厂家域名

https://www.qfya.com/4569.html

github改host加速

https://hub.nuaa.cf/521xueweihan/GitHub520

如果进不去可访问镜像仓库

sudo vi /etc/hosts

sudo killall -HUP mDNSResponder

hexo

网页常用的防复制代码

https://blog.csdn.net/muzidigbig/article/details/84228639

网页一键加群链接

超级简单,就这么一句代码

这是QQ链接
<a href="http://wpa.qq.com/msgrd?v=3&uin=812778392&site=qq&menu=yes"></a>

这是一键加群链接
<a target="_blank"
href="//shang.qq.com/wpa/qunwpa?idkey=0f765e9e0a502545141ba1785939aa6376943701b19bd128dfe77322da5fb1eb">
<img border="0" src="//pub.idqqimg.com/wpa/images/group.png" alt="一群代码狗" title="一群代码狗"></a>

如何拥有自己的代码呢?

传送门:

QQ:https://shang.qq.com/v3/widget.html

QQ群:https://qun.qq.com/join.html

删除markdown文件里面没有引用的图片

参考1

解决eclipse启动闪退问题

参考1

关于这方面的解决方案很多,我的bug是通过以下才解决,其他都不行

解决办法:/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi”文件,将其删掉,再重启Eclipse,恢复正常。

chrome浏览器如何不使用缓存 如何强制刷新界面

Ctrl+Shift+R

参考1

参考2

windows修改hosts立即生效的方法

https://blog.csdn.net/hqfok/article/details/55095669

刷新之后,eclipse的Tomcat-servers需要重新启动

如何查看GitHub仓库的创建时间

https://blog.51cto.com/zhezhebie/5479212

https://api.github.com/repos/zx20219898/zx20219898.github.io

curl -k https://api.github.com/repos/zx20219898/zx20219898.github.io grep created_at

“created_at”: “2021-11-17T15:28:57Z”,

html页面嵌套其他网站页面的方法

https://blog.csdn.net/weixin_44073315/article/details/106027213

Mac暴力破解带密码的压缩文件

【Mac 教程系列第 10 篇】如何在 Mac 上破解带有密码的 ZIP 压缩文件

fcrackzip使用
fcrackzip -b -c 'A1' -l 20-20 -u /Users/zhangxin/Downloads/1.zip

0HVAMIP2GZN3LITDV8QQ

www.consultdog.com

-c 指定字符集,字符集 格式只能为 -c 'aA1!:' 
a 表示小写字母[a-z]
A 表示大写字母[A-Z]
1 表示阿拉伯数字[0-9]
! 感叹号表示特殊字符[!:$%&/()=?{[]}+*~#]
: 表示包含冒号之后的字符(不能为二进制的空字符),例如 a1:$% 表示 字符集包含小写字母、数字、$字符和%百分号
-b 暴力破解
-c 1 限制密码是数字
-l 6-6 限制密码长度为6
-p 000000 初始化破解起点

USAGE: fcrackzip
[-b|--brute-force] use brute force algorithm
[-D|--dictionary] use a dictionary
[-B|--benchmark] execute a small benchmark
[-c|--charset characterset] use characters from charset
[-h|--help] show this message
[--version] show the version of this program
[-V|--validate] sanity-check the algortihm
[-v|--verbose] be more verbose
[-p|--init-password string] use string as initial password/file
[-l|--length min-max] check password with length min to max
[-u|--use-unzip] use unzip to weed out wrong passwords
[-m|--method num] use method number "num" (see below)
[-2|--modulo r/m] only calculcate 1/m of the password
file... the zipfiles to crack

methods compiled in (* = default):

0: cpmask
1: zip1
*2: zip2, USE_MULT_TAB

修改 win 快捷键适配 macOS

https://blog.csdn.net/howeres/article/details/122683645

端口被占用解决

Windonws端口被占用

查询端口
netstat -ano

查询指定端口
netstat -ano |findstr "端口号"

根据进程PID查询进程名称
tasklist |findstr "进程PID号"

根据PID杀死任务
taskkill /F /PID "进程PID号"

根据进程名称杀死任务
taskkill -f -t -im "进程名称"

MacOS端口被占用

命令 lsof -i tcp:port (port替换成端口号,比如8081)可以查看该端口被什么程序占用,并显示PID,方便KILL

使用kill -9 + pid

示例:

zhangxin@MacBook-Air ~ % lsof -i tcp:8080
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
java 51523 zhangxin 50u IPv6 0xb90e703e99c405bf 0t0 TCP *:http-alt (LISTEN)
zhangxin@MacBook-Air ~ % kill -9 51523
zhangxin@MacBook-Air ~ %