Github+Hexo+Butterfly搭建个人博客教程
写在前面发现CSDN复制粘贴太严重了,所以选择自己搭建一个博客,前前后后,断断续续,参照了很多的教程,花了一个月的时间,还有很多不足的地方,后续还会继续改进。
以下内容视频教程:https://www.bilibili.com/video/BV1mU4y1j72n?share_source=copy_webNode.js安装与环境配置相关教程:https://www.cnblogs.com/liuqiyun/p/8133904.html关于配置过程出现的问题: 1.win+R 打开cmd管理员命令窗口不可执行,可以点左下角的菜单键,右键后点Windows PowerShell管理员运行。
2.更改缓存路径失败,可以更改文件夹node_global和文件夹node_cache的用户权限,右键属性,允许所有权限。3.验证更改缓存路径是否成功命令:
npm config get prefixnpm config get cache
4.配置淘宝镜像,加快下载相关插件速度:
npm install -g cnpm --registry=https://registry.npm ...
vue2.0
记录学习前端+尚硅谷网课+项目实操
Node基础
记录学习前端+黑马网课+项目实操
Ajax基础
记录学习前端+黑马网课+项目实操
JavaScript进阶
记录学习前端+黑马网课+项目实操
JavaScript基础
记录学习前端+黑马网课+项目实操
html5+css3进阶+移动web
记录学习前端+黑马网课+项目实操
html5+css3基础
记录学习前端+黑马网课+项目实操
一些水题
判断三角形#include <stdio.h>#include <math.h>main(){ float a,b,c; scanf("%f%f%f",&a,&b,&c); if(a+b>c && a+c>b && b+c>a) { if(a==b && a==c) { printf("等边三角形\n"); } else if(a==b ||a==c || b==c) { printf("等腰三角形\n"); } else if(a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a) { printf("直角三角形\n"); } else if(a==b ||a==c || b==c || a*a+b*b==c ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment