一、编写windows服务 1、VS2017 - 创建服务Myservice 2、创建好项目之后 >> 双击 Service1.cs >> 出现一个设计界面 >> 右键界面 >> 弹出对话框选择 ”添加安装程序“ 3、在设计界面修改 serviceProcessInstaller1的属性 Accou ...
一、题目描述 A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right a ...
分类:
其他好文 时间:
2018-11-16 18:49:07
阅读次数:
197
冒泡排序(Bubble Sort):一种交换排序,它的基本思想是:两两比较相邻记录的关键字,如果反序则交换,直到没有反序的记录为止。稳定排序算法 时间复杂度 O(n2),里层循环每趟比较第 j 项和第 j+1项,如果前项大于后项,则发生交换。缺点是每次比较后都可能发生交换,交换次数太多了,值从小到大 ...
分类:
编程语言 时间:
2018-11-16 18:49:00
阅读次数:
263
--1.启用Database Mail扩展存储过程 sp_configure 'show advanced options', 1 GO RECONFIGURE GO sp_configure 'Database Mail XPs', 1 GO RECONFIGURE GO sp_configure ...
分类:
数据库 时间:
2018-11-16 18:48:33
阅读次数:
492
导出整个数据库结构和数据 mysqldump -h 127.0.0.1 -uroot -p database > /usr/local/dump.sql 导出单个数据表结构和数据mysqldump -h 127.0.0.1 -uroot -p123456 database table > dump. ...
分类:
数据库 时间:
2018-11-16 18:48:26
阅读次数:
229
public function download() { //文件名 $filename=input('filename'); // $file_dir = $_SERVER["DOCUMENT_ROOT"] . DS . 'uploads' . "/" . $input_data['url']; ... ...
分类:
其他好文 时间:
2018-11-16 18:24:28
阅读次数:
186
pragma solidity ^0.4.0; contract byte1{ /* 固定大小字节数组(Fixed-size byte arrays) 固定大小字节数组可以通过bytes1,bytes2...bytes32声明,byte=byte1 bytes1 只能存储1个字节,也就是二进制的8位... ...
分类:
编程语言 时间:
2018-11-16 18:24:17
阅读次数:
249
怎么在Linux上抓包分析 1、在Linux上抓包 例如在Ubuntu上,用命令抓包, tcpdump tcp -i any -s0 -w desk.cap 用 sz desk.cap 把数据包导入本地Windows 2、在windows上用wireshark分析 用wireshark打开desk. ...
分类:
系统相关 时间:
2018-11-16 18:24:10
阅读次数:
174
1、问题详述, M3/M4内核在sleep 或者 STOP模式 下,内核是不工作的,因此需要 以下 几步操作 第一步: 开启 低功耗模式下,debug 的连接 DBGMCU_Config(DBGMCU_SLEEP, ENABLE); DBGMCU_Config(DBGMCU_STOP, ENABLE ...
分类:
其他好文 时间:
2018-11-16 18:24:03
阅读次数:
270
CentOS 6.5忘记密码,怎么办?
分类:
其他好文 时间:
2018-11-16 18:23:53
阅读次数:
142
1、configure: error: xml2-config not found. Please check your libxml2 installation.yum install libxml2-devel -y openssl-devel bzip2-devel curl-devel 2、 ...
分类:
Web程序 时间:
2018-11-16 18:23:45
阅读次数:
381
用微信官方提供的demo验证token 老是失败, 但是我自己用IIS 加 .net , token就能登录成功, 后来debug, 找各种问题,总是不能解决. 最后还是再搜了搜. 找到这么一篇解决方案.原文在这里: https://www.cnblogs.com/donlyn/p/5675483. ...
分类:
微信 时间:
2018-11-16 18:23:37
阅读次数:
253
1、儿童幼儿园托管中心响应式模板 http://demo.cssmoban.com/cssthemes5/cpts_1435_cjq/about.html ...
分类:
Web程序 时间:
2018-11-16 18:23:31
阅读次数:
278
方法一: public String replaceSpace(StringBuffer str) { if(str==null){ return null; } StringBuilder newStr = new StringBuilder(); for(int i=0;i<str.length ...
分类:
移动开发 时间:
2018-11-16 18:23:20
阅读次数:
614
在写shell脚本时,需要登录到不同的服务器上执行相关命令,在未建立信任之前如何批量操作。 1、ssh 首次登录服务器时会提示RSA key fingerprint输入yes/no,可以通过下面的方法实现. ssh test@192.168.1.3 -o "StrictHostKeyChecking ...
分类:
系统相关 时间:
2018-11-16 18:23:11
阅读次数:
197
今天是冲刺的第二天,按照计划我们开展了代码的查找,是关于闹钟的代码,目的是在备忘录里加入闹钟内容,作为项目的关键,我们没有怠慢,寻找了几条适合不同编程软件的代码,以便为了明天工作的继续。我们的软件之所以区别于其他备忘录和记事本软件,是因为加入了闹钟。明天继续按照原计划进行。 ...
分类:
其他好文 时间:
2018-11-16 18:23:05
阅读次数:
170
当程序作为servcie运行时,且系统启用了rsyslog, 程序中的printf会输出到系统日志文件,一般是/var/log/messages 可以通过配置/etc/rsyslog/conf禁止指定进程记录日志 如禁止名为abc的进程输出到日志 :programname, isequal, "ab ...
分类:
其他好文 时间:
2018-11-16 18:22:57
阅读次数:
232