linux自定义服务并设置开机自启动 【init.d】 服务脚本 #!/bin/sh #chkconfig: 2345 80 05 #description: api-server start() { nohup java -jar ./ } stop() { } status() { `ps -e ...
分类:
其他好文 时间:
2020-07-10 13:32:25
阅读次数:
70
select * from show_center.biz_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; select * from show_center.std_show where show_Name ...
分类:
其他好文 时间:
2020-07-10 13:08:57
阅读次数:
72
最近一直在做图论的题目。对于初始化的效率要求比较高。正巧我也对这三个函数不是很清楚。 就写了个测试程序来测试效率 测试程序: #include <bits/stdc++.h> //#pragma GCC optimize(2) using namespace std; #define max 100 ...
分类:
其他好文 时间:
2020-07-10 13:03:50
阅读次数:
82
Neo4j数据库导入导出 Neo4j数据进行备份、还原、迁移的操作时,首先要关闭neo4j; neo4j status neo4j stop 如果仍旧运行,可以使用kill 杀死,关闭后确认无法从网页登录 执行导入导出操作: # 导出 neo4j-admin dump --database=grap ...
分类:
数据库 时间:
2020-07-10 12:55:53
阅读次数:
77
1 public ActionResult Show() 2 { 3 return View(); 4 } 5 public ActionResult Add() 6 { 7 return View(); 8 } 9 public ActionResult Del() 10 { 11 return ...
分类:
Web程序 时间:
2020-07-10 10:13:58
阅读次数:
101
Zabbix 监控服务介绍 一、Zabbix 监控服务介绍 1.1.1 Zabbix 监控服务介绍 Zabbix 监控介绍 1、Zabbix 由 Alexei Vladishev 创建,目前由其成立的公司—— Zabbix SIA 积极的持续开发更新维护, 并为用户提供技术支持服务。 2、Zabbi ...
分类:
其他好文 时间:
2020-07-10 09:58:28
阅读次数:
125
1 public List<Dai> Show(string name="") 2 { 3 using (SqlConnection conn=new SqlConnection("Data Source=.;Initial Catalog=Dai6_21;Integrated Security=T ...
v-if 适用于在运行时很少改变条件,不需要频繁切换条件的场景; v-if移除DOM,对其进行销毁; v-show 则适用于需要非常频繁切换条件的场景。 v-show是对元素进行display:none; ...
分类:
其他好文 时间:
2020-07-09 22:48:50
阅读次数:
133
import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2 * np.pi, 50) y = np.sin(x) plt.plot(x, y) plt.show() #在一张图纸里绘制多个图形,一起跑就OK了,简简单 ...
分类:
其他好文 时间:
2020-07-09 19:23:50
阅读次数:
84
<style scoped> .form { width: 50%; } </style> <template> <div class="form"> <el-tree :data="data2" show-checkbox node-key="id" default-expand-all :pro ...
分类:
其他好文 时间:
2020-07-09 15:05:47
阅读次数:
110