会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Designed by yanggb,参考https://www.cnblogs.com/yanggb
加载资源 ......
遇见彩虹
遇见彩虹🌈吃定彩虹🌈
首页
新随笔
管理
2023年3月7日
关于Git:git add 撤销、git commit 撤销
摘要: 1、git add 添加多余文件 撤销操作 git reset HEAD 后面什么都不跟的,就是上一次add 里面的内容全部撤销 git reset HEAD XXX 后面跟文件名,就是对某个文件进行撤销 2、git commit 撤销操作 git reset --soft HEAD^ 这样就成功的
阅读全文
posted @ 2023-03-07 09:36 godsaury
阅读(92)
评论(0)
推荐(0)
2022年5月16日
无法加载文件 xxx,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?L inkID=135170 中的 about_Execution_Policies。
摘要: 在vscode上运行cnpm config get registry 的时候,出现这样的信息 这是执行策略的设置问题,默认情况下,执行策略为不允许任何脚本运行,所以会报错 解决方法:管理员打开PowerShell(windows电脑在开始那个按钮右边的搜索栏里面直接搜,然后右键管理员运行),输入se
阅读全文
posted @ 2022-05-16 22:51 godsaury
阅读(1007)
评论(0)
推荐(0)
2022年2月22日
Vue笔记
摘要: 10、Vue总结笔记(超全) 阅读目录 一、前端核心分析 1.1、概述 1.2、前端三要素 1.3、结构层(HTML) 1.4、表现层(CSS) 1.5、行为层(JavaScript) 二、前端发展史 2.1、UI框架 2.2、JavaScript构建工具 2.3、三端同一 2.4、后端技术 2.5
阅读全文
posted @ 2022-02-22 10:24 godsaury
阅读(82)
评论(0)
推荐(0)
2022年1月5日
javascript学习笔记 BOM 和 DOM 详解
摘要: 文档对象模型(DOM),描述处理网页内容的方法和接口。 浏览器对象模型(BOM),描述与浏览器进行交互的方法和接口。 BOM(浏览器对象模型) 所有浏览器都支持window对象,他表示浏览器窗口。 所有js全局对象,函数,变量均自动成为window对象的成员。 全局变量是window对象的属性。 全
阅读全文
posted @ 2022-01-05 21:31 godsaury
阅读(88)
评论(0)
推荐(0)
2021年11月29日
数据库笔记
摘要: 数据库的组成: 数据类文件: 管理数据 主数据文件:有且唯一 .mdf 辅助数据文件:可以有,可以没有,可以有多个 .ndf 日志类文件:备份数据 至少一个 .ldf 文件属性 每一个文件有五个属性: name:逻辑名称,字符型数据 filename:路径 size:文件初始大小 size=5mb,
阅读全文
posted @ 2021-11-29 10:28 godsaury
阅读(255)
评论(0)
推荐(0)
2021年6月18日
C语言Struct例题
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <math.h> 4 #include <string.h> 5 6 #define NUM 3 7 #define N 10 8 struct person 9 { 10 //声明结构体类型
阅读全文
posted @ 2021-06-18 10:19 godsaury
阅读(135)
评论(0)
推荐(0)
C语言#define例题
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <math.h> 4 #define PIN1 char* //简单的字符串替换(宏替换) PIN1 替换 char* 5 typedef char* PIN2; //对类型说明符重新命名 c
阅读全文
posted @ 2021-06-18 10:18 godsaury
阅读(256)
评论(0)
推荐(0)
C语言练习题【2】
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 #include <math.h> 4 #include <ctype.h> 5 #define N 20 6 int main() 7 { 8 //调试下列程序,使之具有如下功能:输入10个整数,按每行3个数
阅读全文
posted @ 2021-06-18 10:17 godsaury
阅读(546)
评论(0)
推荐(0)
C语言练习题【1】
摘要: 1 #define M 10 2 #include<math.h> 3 #include<stdio.h> 4 #include<string.h> 5 int main1234(){ 6 #if( 0 ) 7 double x,s; 8 printf("input number:\n"); 9 s
阅读全文
posted @ 2021-06-18 10:16 godsaury
阅读(654)
评论(0)
推荐(0)
C语言函数function练习题
摘要: 1 #include <stdio.h> 2 #include <math.h> 3 #include <string.h> 4 #include <conio.h> 5 6 int main111(void) 7 { 8 #if( 0 ) 9 void avg(void); 10 avg(); 1
阅读全文
posted @ 2021-06-18 10:13 godsaury
阅读(401)
评论(0)
推荐(0)
下一页
公告