go语言vscode报错一些注意的地方
lantinglou 发布于 2022-07-21
1.一个包可以包含多个文件 2.同一个包的文件必须在同一个目录,且同一个目录只能包含一个包 3.vscode需要打开项目的根目录 否则会报警 4.go mod init test 来生成项目目录 go.mod 不然因为程序去go主目录寻找的原因失败 5.同一个包的函数可以相互引...
阅读(56)评论(0)赞 (1)
lantinglou 发布于 2022-07-21
1.一个包可以包含多个文件 2.同一个包的文件必须在同一个目录,且同一个目录只能包含一个包 3.vscode需要打开项目的根目录 否则会报警 4.go mod init test 来生成项目目录 go.mod 不然因为程序去go主目录寻找的原因失败 5.同一个包的函数可以相互引...
阅读(56)评论(0)赞 (1)
lantinglou 发布于 2022-07-19
什么是CORS CORS是一个W3C标准,全称是跨域资源共享(Cross-origin resource sharing)。它允许浏览器向跨源服务器,发出XMLHttpRequest请求,从而克服了AJAX只能同源使用的限制。 当前几乎所有的浏览器(Internet Explor...
阅读(73)评论(0)赞 (7)
lantinglou 发布于 2022-07-16
echo root:YourPasswordHere |sudo chpasswd root sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config; sudo sed -i...
阅读(63)评论(0)赞 (0)
lantinglou 发布于 2022-07-15
1、nohup 将程序以忽略挂起信号的方式运行起来 补充说明 nohup命令 可以将程序以忽略挂起信号的方式运行起来,被运行的程序的输出信息将不会显示到终端。 无论是否将 nohup 命令的输出重定向到终端,输出都将附加到当前目录的 nohup.out 文件中。 如果当前目录的 ...
阅读(56)评论(0)赞 (0)
lantinglou 发布于 2022-07-12
plugins=(git extract z zsh-autosuggestions zsh-syntax-highlighting) zsh-autosuggestions 按tab键补全或者显示目录 还有一个 自动补全插件叫incr 也不错
阅读(61)评论(0)赞 (0)
lantinglou 发布于 2022-07-12
使用iTerm2 shell intergration进行文件传输(推荐) 其实一种最强大便捷的文件传输方式是使用 iTerm2 shell intergration。 安装iTerm2 shell intergration 安装非常简单,只需要先登录服务器端,执行如下命令: 选...
阅读(63)评论(0)赞 (0)
lantinglou 发布于 2022-07-11
方式一 新建一个shell文件,如ssh.sh #!/usr/bin/expect -f set user username set password password set host ip/domian set port 22 set timeout -1 spawn ssh...
阅读(75)评论(0)赞 (0)
lantinglou 发布于 2022-07-09
介绍 iTerm2 是一个MacOS 下的终端模拟器,和其他的终端本质上没啥大不同。但相对比自带那个终端它有更多的功能和更好的用户体验。 Zsh 全称是The Z shell. 是一个unix shell. 类似Bash, ksh 等。比原生shell 提供更多的功能。(Maco...
阅读(83)评论(0)赞 (0)
lantinglou 发布于 2022-03-03
https://www.bilibili.com/read/cv13866041
阅读(377)评论(0)赞 (0)
lantinglou 发布于 2022-02-13
# 机器A 允许转发 echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf sysctl -p # 机器A 建立GRE隧道 ip tunnel add tunnel1 mode gre local AIP remote BI...
阅读(128)评论(0)赞 (0)
最新评论