VS Code最佳插件
发表于|更新于|杂项资料
|浏览量:
1.视图类的插件
Material Theme && Material Theme Icon
Prettier - code formatter
Bracket Pair Colorizer 2
显示bracket的section.
indent-rainbow
彩虹式的显示缩进
2. 功能类插件
Auto Rename Tag
改一个tag自动变相联的tag头
REST Client
测试后台接口

CSS Pick
自动从HTML中选择出CSS
HTML CSS Support
自动提示CSS及补全HTML
Live Sass Compiler
根据当前的CSS,自动生成CSS文件。
Live Server
显示内置浏览器窗口
文章作者: 霍家鹏
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Avery的城堡!
相关推荐
2022-05-19
Python Note 2
Python Note 2 Python中每一个数据类型实际上都是一个类。 Function definition As python recommended, left two blank lines after function def greet_user(): print("GO") print("Hi THERE!")greet_user() Function parameters def greet_user(name): print(f"GO:{name}") print("Hi THERE!")greet_user("John")greet_user() #Error, no parameterdef greet_user2(first_name,second_name): print(f"GO:{first_name} {second_name}&q...
2022-05-19
Python Note 4
Python Note 4 Pypi & Pip pypi use as : pip install openpyxl to install Use openpyxl import openpyxl as xlfrom openpyxl.chart import BarChart, Referencewb = xl.load_workbook("pydemo2/transactions.xlsx")sheet = wb["Sheet1"]for row in range(2, sheet.max_row + 1): cell = sheet.cell(row, 3) real_val = cell.value * 0.9 real_val_cell = sheet.cell(row, 4) real_val_cell.value = real_valvalues = Reference(sheet, min_row=2, max_row=sheet.max_row, min_col=4, max_col...

2022-05-19
Python Core Programming Note 1
Regular Expression match() & search() import rem = re.match('\d','a541')if m is not None: print(m.group())else: print("none found") ## none foundimport rem = re.match('\d','a541')if m is not None: print(m.group())else: print("none found") ## 5 import rem = re.search('..[\d]{1,3}','\na51')if m is not None: print(m.group())else: print("none found")# . 匹配除\n外的任意字符,其他如\t,\.都...
2022-05-19
Django 实例 Web Application
Preparing Python Django Html css Javascript Databases HeroKu Materialize Beautiful suite Web scraping Starters! 创建conda环境 conda create --name codedaddies python=3 安装django pip install django 创建工程(指定目录下) django-admin startproject codedaddies_list 创建APP python manage.py startapp my_app 数据库构建 python manage.py makemigrationspython manage.py migrate Templates文件夹 配置在settings中,加入以下: TEMPLATE_DIR = os.path.join(BASE_DIR, “templates”) 底部加入: STATICFILES_DIR = (os.path.join(BASE_DIR, ‘sta...
2022-05-19
Django 初步构建
Generic View 简化写法,可选的有generic.IndexView和generic.DetailView DetailView 默认使用 <app name>/<model name>_detail.html.为模板, 可使用template重定向。自动生成model小写名字_list 为名的对象 ListView 默认使用 <app name>/<model name>_list.html 为模板,可使用template重定向。 自动生成model小写名字的context对象
2022-05-19
开言体验营 - Day5
预习 1.put you up 提供住宿,容忍 Bosses have a lot to put up with like you for instance! All women search for beauty. Maybe you will feel better after you put on make-up. layover 转机 Dialog Dialog study
公告
Welcome to my blog
目录





