When starting gdb with application message “Debugging Helper Missing” is displayed [Solved] http://qt-project.org/forums/viewthread/23332 文章大意就是QtCrea ...
分类:
其他好文 时间:
2018-05-11 12:55:02
阅读次数:
181
第一种: 需要在主类头加上 @EnableAutoConfiguration 第二种: pom文件是否加了 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter< ...
分类:
移动开发 时间:
2018-05-10 15:49:31
阅读次数:
22295
报错 git clone xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/ ...
分类:
系统相关 时间:
2018-05-08 16:21:46
阅读次数:
715
由于使用的是内网环境,所以使用用户名密码验证,建议使用密钥认证check.pyimportparamiko#获取ssh连接并执行shellcomand返回正确的结果defdoshell(hostname,port,username,password,shellcommand):ssh=paramiko.SSHClient()ssh.set_missing_host_key_policy(param
分类:
数据库 时间:
2018-05-08 10:22:49
阅读次数:
338
生成自签名的CA+SSL证书 Chrome自签名证书报Subject Alternative Name Missing & ERR_SSL_VERSION_OR_CIPHER_MISMATCH错误解决方法 ...
分类:
其他好文 时间:
2018-05-04 14:20:31
阅读次数:
242
在网上看的淘淘商城的项目,自己在配置maven项目的时候遇见了这个异常,按照网上教程试了试,一重启各种异常。 后来直接,就更改了自己的maven仓库就ok了。 解决方法: 对比一下,你就能够发现问题,你只需要用我上传的包.m2替换你的.m2就可以了,.m2文件包下载地址https://downloa ...
分类:
编程语言 时间:
2018-05-02 21:06:44
阅读次数:
1021
新建项目没有src/main/java 和 src/main/resources 两个source文件的解决方法: Step 1 : Create a Maven Webapp project. Right click on the Package Explorer pane go to New – ...
分类:
编程语言 时间:
2018-04-30 17:53:13
阅读次数:
216
Tutorial on word2vector Project page: https://radimrehurek.com/gensim/models/word2vec.html 1. install gensim: https://radimrehurek.com/gensim/install. ...
分类:
其他好文 时间:
2018-04-28 19:35:31
阅读次数:
338
#!/bin/bashHOST="目标服务器"USER="用户"PASSWD="密码"LCD=" 本地目录"RCD="远程服务器目录"lftp -c "open ftp://$USER:$PASSWD@$HOST;mirror -R --only-newer --only-missing $LCD ...
分类:
其他好文 时间:
2018-04-27 15:45:47
阅读次数:
146
Python学习记录-paramiko模块[TOC]paramiko模块基于SSH用于连接远程服务器并执行相关操作。1.SSHClient用于连接远程服务器并执行基本命令基于用户名密码连接:importparamiko#创建SSH对象ssh=paramiko.SSHClient()#允许连接不在know_hosts文件中的主机ssh.set_missing_host_key_policy(para
分类:
编程语言 时间:
2018-04-27 12:21:41
阅读次数:
170