摘要:
func main() { a := []string{} a = append(a, "hello") a = append(a, ", ") a = append(a, "world") fmt.Println(a) for i := 0; i < len(a); i++ { fmt.Print
阅读全文
posted @ 2020-05-12 00:04
Chuan_Chen
阅读(1239)
推荐(0)
编辑
摘要:
算术运算符 详见菜鸟课程 "https://www.runoob.com/go/go operators.html"
阅读全文
posted @ 2020-05-11 23:43
Chuan_Chen
阅读(244)
推荐(0)
编辑
摘要:
打印格式 %v 值的默认格式显示 %+v 类似%v ,单输出结构体是会添加字段名 % v 值的go语言表示 %T 值的类型的go语法表示 ··· func main() { str := "stenve" fmt.Printf("%T ,%v\n",str,str) var a rune =' '
阅读全文
posted @ 2020-05-11 23:36
Chuan_Chen
阅读(438)
推荐(0)
编辑
摘要:
基础需求:85% 角色:学员、讲师、管理员 要求: 1. 创建北京、上海 2 所学校 2. 创建linux , python , go 3个课程 , linux\py 在北京开, go 在上海开 3. 课程包含,周期,价格,通过学校创建课程 4. 通过学校创建班级, 班级关联课程、讲师 5. 创建学
阅读全文
posted @ 2020-05-06 18:00
Chuan_Chen
阅读(249)
推荐(0)
编辑
摘要:
Print 和 Println 这两个打印方式类似,只在格式上有区别 1. Println 打印的每一项之间都会有空行,Print 没有,例如: 2. Println 会自动换行,Print 不会,例如: Println 和 Printf %d 是占位符,表示数字的十进制表示。Printf 中的占位
阅读全文
posted @ 2020-04-15 23:41
Chuan_Chen
阅读(651)
推荐(1)
编辑
摘要:
本周出差到别的地方部署了公司的产品,在进行服务器虚拟化时遇到了很大的问题。 使用u盘制作启动盘。 本来是想使用服务器的iDRAC口安装esxi环境,但是检查配置明明已经没有问题,但是就是连接不上。最后u盘直接装的系统。 (1)首先插入U盘并将其格式化成FAT文件系统。 (2) 打开UltraISO软
阅读全文
posted @ 2020-04-11 21:41
Chuan_Chen
阅读(763)
推荐(1)
编辑
摘要:
转载自 "https://blog.csdn.net/lu0422/article/details/78892497" 在使用数据库查询语句时,单表的查询有时候不能满足项目的业务需求,在项目开发过程中,有很多需求都是要涉及到多表的连接查询,总结一下mysql中的多表关联查询 一,内连接查询 是指所有
阅读全文
posted @ 2020-03-31 23:09
Chuan_Chen
阅读(676)
推荐(0)
编辑
摘要:
近期需要做的事情 1.因线上环境需要,现在需要做一个类似socket通信的程序。 客户端:单节点客户端,定于服务端ip信息,向服务端发送指令,并接收返回数据。 服务端:多节点服务端,定于客户端ip信息。接收客户端发送的指令,并发送返回数据。 客户端:配置文件应包括,服务端ip地址,默认向所有服务端发
阅读全文
posted @ 2020-03-29 15:22
Chuan_Chen
阅读(155)
推荐(0)
编辑
摘要:
因为本周有一个是需要使用pandos做一个数据分析的需求,所以在这里做一下记录。 Python中用Pandas进行数据分析,最常用的就是Dataframe数据结构, 这里我们主要介绍Pandas如何读取数据到Dataframe。 1. Pandas读取Mysql数据要读取Mysql中的数据,首先要安
阅读全文
posted @ 2020-03-24 00:11
Chuan_Chen
阅读(6246)
推荐(0)
编辑
摘要:
CentOS启动 ES 过程中遇到的问题 1. seccomp unavailable 错误 解决方法:elasticsearch.yml 配置 bootstrap.memory_lock: false bootstrap.system_call_filter: false 2. max file
阅读全文
posted @ 2020-03-22 13:52
Chuan_Chen
阅读(339)
推荐(0)
编辑
#waifu-toggle {
background-color: #fa0;
border-radius: 5px;
bottom: 66px;
color: #fff;
cursor: pointer;
font-size: 12px;
right: 0;
margin-right: -100px;
padding: 5px 2px 5px 5px;
position: fixed;
transition: margin-right 1s;
width: 60px;
writing-mode: vertical-lr;
}
#waifu-toggle.waifu-toggle-active {
margin-right: -40px;
}
#waifu-toggle.waifu-toggle-active:hover {
margin-right: -30px;
}
#waifu {
bottom: -1000px;
right: 0;
line-height: 0;
margin-bottom: -10px;
position: fixed;
transform: translateY(3px);
transition: transform .3s ease-in-out, bottom 3s ease-in-out;
z-index: 1;
}
#waifu:hover {
transform: translateY(0);
}
#waifu-tips {
animation: shake 50s ease-in-out 5s infinite;
background-color: rgba(236, 217, 188, .5);
border: 1px solid rgba(224, 186, 140, .62);
border-radius: 12px;
box-shadow: 0 3px 15px 2px rgba(191, 158, 118, .2);
font-size: 14px;
line-height: 24px;
margin: -30px 20px;
min-height: 70px;
opacity: 0;
overflow: hidden;
padding: 5px 10px;
position: absolute;
text-overflow: ellipsis;
transition: opacity 1s;
width: 250px;
word-break: break-all;
}
#waifu-tips.waifu-tips-active {
opacity: 1;
transition: opacity .2s;
}
#waifu-tips span {
color: #0099cc;
}
#waifu #live2d {
cursor: grab;
height: 300px;
position: relative;
width: 300px;
}
#waifu #live2d:active {
cursor: grabbing;
}
#waifu-tool {
color: #aaa;
opacity: 0;
position: absolute;
left: -10px;
top: 70px;
transition: opacity 1s;
}
#waifu:hover #waifu-tool {
opacity: 1;
}
#waifu-tool span {
color: #7b8c9d;
cursor: pointer;
display: block;
line-height: 30px;
text-align: center;
transition: color .3s;
}
#waifu-tool span:hover {
color: #0684bd;
/* #34495e */
}
@keyframes shake {
2% {
transform: translate(.5px, -1.5px) rotate(-.5deg);
}
4% {
transform: translate(.5px, 1.5px) rotate(1.5deg);
}
6% {
transform: translate(1.5px, 1.5px) rotate(1.5deg);
}
8% {
transform: translate(2.5px, 1.5px) rotate(.5deg);
}
10% {
transform: translate(.5px, 2.5px) rotate(.5deg);
}
12% {
transform: translate(1.5px, 1.5px) rotate(.5deg);
}
14% {
transform: translate(.5px, .5px) rotate(.5deg);
}
16% {
transform: translate(-1.5px, -.5px) rotate(1.5deg);
}
18% {
transform: translate(.5px, .5px) rotate(1.5deg);
}
20% {
transform: translate(2.5px, 2.5px) rotate(1.5deg);
}
22% {
transform: translate(.5px, -1.5px) rotate(1.5deg);
}
24% {
transform: translate(-1.5px, 1.5px) rotate(-.5deg);
}
26% {
transform: translate(1.5px, .5px) rotate(1.5deg);
}
28% {
transform: translate(-.5px, -.5px) rotate(-.5deg);
}
30% {
transform: translate(1.5px, -.5px) rotate(-.5deg);
}
32% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
34% {
transform: translate(2.5px, 2.5px) rotate(-.5deg);
}
36% {
transform: translate(.5px, -1.5px) rotate(.5deg);
}
38% {
transform: translate(2.5px, -.5px) rotate(-.5deg);
}
40% {
transform: translate(-.5px, 2.5px) rotate(.5deg);
}
42% {
transform: translate(-1.5px, 2.5px) rotate(.5deg);
}
44% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
46% {
transform: translate(1.5px, -.5px) rotate(-.5deg);
}
48% {
transform: translate(2.5px, -.5px) rotate(.5deg);
}
50% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
52% {
transform: translate(-.5px, 1.5px) rotate(.5deg);
}
54% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
56% {
transform: translate(.5px, 2.5px) rotate(1.5deg);
}
58% {
transform: translate(2.5px, 2.5px) rotate(.5deg);
}
60% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
62% {
transform: translate(-1.5px, .5px) rotate(1.5deg);
}
64% {
transform: translate(-1.5px, 1.5px) rotate(1.5deg);
}
66% {
transform: translate(.5px, 2.5px) rotate(1.5deg);
}
68% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
70% {
transform: translate(2.5px, 2.5px) rotate(.5deg);
}
72% {
transform: translate(-.5px, -1.5px) rotate(1.5deg);
}
74% {
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
}
76% {
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
}
78% {
transform: translate(-1.5px, 2.5px) rotate(.5deg);
}
80% {
transform: translate(-1.5px, .5px) rotate(-.5deg);
}
82% {
transform: translate(-1.5px, .5px) rotate(-.5deg);
}
84% {
transform: translate(-.5px, .5px) rotate(1.5deg);
}
86% {
transform: translate(2.5px, 1.5px) rotate(.5deg);
}
88% {
transform: translate(-1.5px, .5px) rotate(1.5deg);
}
90% {
transform: translate(-1.5px, -.5px) rotate(-.5deg);
}
92% {
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
}
94% {
transform: translate(.5px, .5px) rotate(-.5deg);
}
96% {
transform: translate(2.5px, -.5px) rotate(-.5deg);
}
98% {
transform: translate(-1.5px, -1.5px) rotate(-.5deg);
}
0%, 100% {
transform: translate(0, 0) rotate(0);
}
}
© 2022 GitHub, Inc.
Terms
Privacy
Securi