摘要:
连接GitHub: ssh-keygen -t rsa #生成公钥密钥 cd ~/.ssh/ #进入~/.ssh/ 目录 cat ~/.ssh/ #查看 ~/.ssh/ 目录 ll -a #列出目录下的所有文件,如果使用cmd就用dir cat id_rsa.pub #查看id_rsa.pub,如果 阅读全文
摘要:
// 一、数组: // 1.遍历数组: [1, 2, 3, 4, 5].forEach(function(value, index) { console.log(value) }) // 2.映射新数组: const arr = [1, 2, 3, 4, 5].map(n => n*n) // 3. 阅读全文
摘要:
// 一、作用域————块级作用域————let、const: { var name = 'pangpang' } console.log(name) { let name = 'pangpang' } console.log(name) const name = 'pangpang' name = 阅读全文
摘要:
以管理员身份运行cmd 切换npm源: npm config set registry https://registry.npm.taobao.org 切换yarn源: yarn config set registry https://registry.npm.taobao.org 安装或更新cre 阅读全文
摘要:
一、安装nginx: 下载nginx,解压到“C:\”(Windows): http://nginx.org/download/nginx-1.18.0.zip 二、nginx基本命令: 以管理员身份运行cmd 进入nginx根目录: cd C:\nginx-1.18.0 启动nginx: star 阅读全文
摘要:
下载并安装Redis,使用默认设置(Windows): https://github.com/tporadowski/redis/releases/download/v5.0.10/Redis-x64-5.0.10.msi 以管理员身份运行cmd 进入Redis安装目录: cd C:\Program 阅读全文
摘要:
1.以管理员身份运行cmd(windows) 2.使用vscode打开host文件: code C:\Windows\System32\drivers\etc\hosts 3.进入以下网址: ipaddress.com 4.分别查找如下几个网址的IP: github.com assets-cdn.g 阅读全文
摘要:
HTML: <div id="container"> <div id="child1">...</div> <div is="child2">...</div> </div> CSS: #container{ display: flex; flex-flow: column; } #child1{ 阅读全文
摘要:
以管理员身份运行cmd(Windows) cd C:\Program Files\MySQL\MySQL Server 8.0\bin mysql -uroot -proot ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_pas 阅读全文
摘要:
下载MySQL(Windows): https://dev.mysql.com/get/Downloads/MySQLInstaller/mysql-installer-community-8.0.26.0.msi 安装MySQL: 使用开发默认配置,root密码设成自己能记住的,以后如果密码忘了就 阅读全文