Blogger Information
Blog 16
fans 0
comment 1
visits 5760
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
前端常用软件安装
P粉890456325
Original
286 people have browsed it

0112作业

1.安装chrome浏览器

浏览器: chrome
01.下载安装谷歌浏览器下一步就行。
02.安装插件https://www.gugeapps.net/webstore/category/extensions
AdBlock — 最佳广告拦截工具5.3.3
Charset0.5.5
FeHelper(前端助手)2023.1.512
Infinity 新标签页10.0.91
Vue.js devtools6.4.5
划词翻译9.2.2
清除历史记录和Web缓存3.0.1

划词翻译->小齿轮->选择百度翻译->打开完整设置->服务申请->百度翻译
查看申请步骤
https://hcfy.app/docs/services/baidu-api
根据提示注册即可
拿到密钥后管理密钥 APP ID 密钥

2.安装vscode

  1. . 编辑器: VSCode
  2. 编程字体: 等宽,连写(Fira Code, Cascadia Code)
  3. vscode 常用插件(部分)

  4. 简体中文: Chinese(Simplified)...

  5. 编辑窗口主题: One Dark Pro
  6. 图标主题: Material Icon Theme
  7. 产品主题: Material Product Icons
  8. 格式化: Prettier-Code formatter
  9. 标签自动闭合: Auto Close Tag
  10. 标签自动更名: Auto Rename Tag
  11. 代码拼写检查: Code Spell Checker
  12. MarkDown 预览:Markdown Preview Enhanced
  13. Markdown 语法验证: markdownnlint
    04.设置字体
    vscode->设置->搜索->font->settings.json中编辑-> editor.fontLigatures”: true -> editor.fontFamily”: “‘Fira Code’,’Consolas’,’Cascadia Code’,’monospace’”,
    -> emmet.variables”: {
    1. "lang": "zh-CN",
    2. "charset": "UTF-8"
    },

3. 选做:Git本地也远程仓库的创建与管理

  1. Git 版本控制: Git

Git 基本操作

注册->登录

本地仓库

软件上登录

  1. # 初始化, 将目录(项目)->git可管理的项目
  2. git init
  3. # 提交到暂存区/索引区
  4. git add .
  5. # 提交到本地的版本库/仓库中
  6. git commit -m 'first commit'

远程仓库

  1. # 自我介绍
  2. git config --global user.name "zhuyuseng"
  3. git config --global user.email "zhuyuseng@aliyun.com"
  4. # 设置远程仓库的地址
  5. git remote add origin https://gitee.com/bnkt/22.git
  6. # 仓库的自我介绍: 将本地与远程仓库进行关联
  7. git push --set-upstream origin master
  8. # 以后, 只要用以下指令直接提交
  9. git push
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!