01 2021 档案
摘要:原因 在新某项目开发中遇到一个问题:laravel 的验证方法会自动处理验证响应 比如登录方法: public function login(Request $request) { $request->validate([ 'username' => 'required|string', 'pass
阅读全文
摘要:去抖 在一段时间内同一个时间触发了很多次,规定一定的时间 的多次点击事件延迟执行,最终只触发一次 // 250 毫秒内点击多次只有最后一次生效 var d = undefined var debouncing = function(){ clearTimeout(d) d = setTimeout(
阅读全文
摘要:edit config && add Port 2222 vi /etc/ssh/sshd_config 重启ssh服务 systemctl restart sshd.service 查看端口 sudo netstat -atlunp | grep sshd
阅读全文
摘要:设置当前代理 git config http.proxy http://127.0.0.1:2334 取消当前代理 git config --unset http.proxy 取消全局代理 git config --global --unset http.proxy 设置socks5代理 git c
阅读全文