周波斯

导航

2024年8月11日 #

mac 端口8080已被占用怎么解决?

摘要: 1. 找到占用8080端口的进程 lsof -i tcp:8080 2. 杀死进程 kill -9 PID 阅读全文

posted @ 2024-08-11 16:21 周波斯 阅读(14) 评论(0) 推荐(0) 编辑

2024年3月3日 #

终端设置vpn

摘要: linux子系统 wsl1:export ALL_PROXY="http://127.0.0.1:10809" (ip为127.0.0.1,端口看自己的代理,查看方法下面有) ​​​​​​​ linux子系统 wsl2:export ALL_PROXY="http://ip:10809"(ip为wi 阅读全文

posted @ 2024-03-03 16:52 周波斯 阅读(3) 评论(0) 推荐(0) 编辑

2024年1月10日 #

CentOS 7 安装 alien

摘要: alien 实现deb与rpm相互转换 # yum install epel-release # rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro # rpm -Uvh http://li.nux.ro/download/nu 阅读全文

posted @ 2024-01-10 23:45 周波斯 阅读(436) 评论(0) 推荐(0) 编辑

2024年1月8日 #

VM VirtualBox下centos7后无法安装增强功能

摘要: 步骤: 1.更新kernel yum update kernel -y 2.安装kernel-herders并编译 yum install kernel-headers kernel-devel gcc make -y 3.重启并选择进入新安装的kernel reboot 4.打开菜单:设备-》分配 阅读全文

posted @ 2024-01-08 22:02 周波斯 阅读(163) 评论(0) 推荐(0) 编辑

2024年1月7日 #

Oracle VM VirtualBox安装的Centos7无法上网

摘要: Oracle VM VirtualBox安装的Centos7无法上网解决方法: 1、设置第一块网卡使用 仅主机网络。 2、设置第二块网卡使用 网络地址转换 (NAT)。 阅读全文

posted @ 2024-01-07 07:49 周波斯 阅读(146) 评论(0) 推荐(0) 编辑

2023年7月24日 #

编程常用的变量命名英文缩写

摘要: A addr = address app = application arg = argument asm = assemble asyn = asynchronization auth = authorization / authentication avg = average B buf = b 阅读全文

posted @ 2023-07-24 17:47 周波斯 阅读(162) 评论(0) 推荐(0) 编辑

2023年6月28日 #

.net代码混淆

摘要: obfuscar: http://www.obfuscar.com/ https://docs.obfuscar.com/getting-started/configuration#variables-inpath-and-outpath 1、安装 https://www.nuget.org/pac 阅读全文

posted @ 2023-06-28 09:49 周波斯 阅读(216) 评论(0) 推荐(0) 编辑

2023年6月27日 #

nginx常用指令

摘要: 1、检验配置文件 nginx -t 2、重载nginx nginx -s reload 阅读全文

posted @ 2023-06-27 07:27 周波斯 阅读(6) 评论(0) 推荐(0) 编辑

2022年7月12日 #

如何实现在WSL Ubuntu可以使用code指令呼出window下安装的vscode

摘要: 在WSL Ubuntu中执行指令: alias code="/mnt/c/Users/Administrator/AppData/Local/Programs/Microsoft\ VS\ Code/bin/code" 阅读全文

posted @ 2022-07-12 09:50 周波斯 阅读(87) 评论(0) 推荐(0) 编辑

2022年1月3日 #

visual studio 常用快捷键收藏

摘要: ///////////////////////////////折叠-展开 方法/////////////////////////////////////// Ctrl + M + O: 折叠所有方法 Ctrl + M + M: 折叠或者展开当前方法 Ctrl + M + L: 展开所有方法 //// 阅读全文

posted @ 2022-01-03 11:50 周波斯 阅读(68) 评论(0) 推荐(0) 编辑