git remote 命令用来管理远程仓库 git remote add 添加远程仓库(实质上是添加远程仓库 URL 的别名) git remote add origin https://github.com/xiaohigh/test2.git origin 就是别名(小名) https://gi ...
分类:
其他好文 时间:
2020-06-04 15:44:39
阅读次数:
85
今天pg数据库需要添加一个只读用户,由于在pgAdmin4中无法添加,遂用sql添加,遇到了一个大坑,很基础的问题,只怪自己学艺不精,一次提醒自己; 注意;postgresql数据库对大小写不敏感!!! CREATE USER test2 WITH ENCRYPTED PASSWORD 'test2 ...
分类:
数据库 时间:
2020-06-03 23:22:15
阅读次数:
133
test1.jsp <a href ="test.jsp?p=fuck">跳转到test2</a> test2.jsp <%@ page language="java" import="java.util.*" pageEncoding="gb2312"%><%String path = reque ...
分类:
Web程序 时间:
2020-06-02 13:34:11
阅读次数:
55
多播委托,顾名思义即使一个委托引用多个方法 举列 static void Test1 { Console.writLine(“test1”); } static void Test2 { Console.writLine("test2"); } static void Main(string[] a ...
分类:
其他好文 时间:
2020-06-01 13:39:27
阅读次数:
63
临时重定向 echo "error" >&2 # test.sh 脚本里 将标准输出重定向到标准错误 ./test.sh 2> test2.txt # 运行脚本时,将错误重定向到文件,则 error 会被写入到文件中 永久重定向 exec 1>a.txt 将脚本中所有标准输出 都重定向到a.txt ...
分类:
系统相关 时间:
2020-05-26 20:27:40
阅读次数:
84
在一个脚本中引用另一个脚本 test1.sh内容 test2.sh内容 ...
分类:
系统相关 时间:
2020-05-23 20:43:39
阅读次数:
63
#include <QMetaEnum>public: enum TestType{ TEST1=0, TEST2 }; Q_ENUM(TestType) QMetaEnum metaEnum = QMetaEnum::fromType<MainWidget::TestType>();for (in ...
分类:
编程语言 时间:
2020-05-21 18:58:22
阅读次数:
52
import time def test1(): time.sleep(3) print('in the test1') def test2(): time.sleep(3) print('in the test2') test1() test2() ...
分类:
其他好文 时间:
2020-05-20 10:47:29
阅读次数:
44
from threading import Thread g_num = 0 def test1(): global g_num for i in range(1000000): g_num += 1 print(" test1 g_num=%d"%g_num) def test2(): globa ...
分类:
编程语言 时间:
2020-05-07 21:24:41
阅读次数:
75
```java @Data @Component //可以通过@ConfigurationProperties来自动绑定 //@ConfigurationProperties(prefix = "test2") @PropertySource({"classpath:test.properties"... ...
分类:
其他好文 时间:
2020-05-03 10:32:11
阅读次数:
61