VS2013无法链接到TFS(Visual studio online),错误TF31001,TF31002TF31002: Unable to connect to VisualStudio Online with VS 2013but I can using web access - Windo...
分类:
其他好文 时间:
2014-08-27 21:48:38
阅读次数:
213
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=3371题目不难 稍微注意一下 要把已经建好的城市之间的花费定义为0,在用普通Prim算法就可以了;我没有用克鲁斯卡尔算法(Kruskal's algorithm),因为这题数据比较大,而且要处理大量的数据...
分类:
其他好文 时间:
2014-08-27 20:30:38
阅读次数:
221
USB调试
USB调试插线什么的很麻烦,手机的USB口容易损坏,多台设备的时候更是烦恼多多
AdbWireless的使用
https://github.com/Skywriter-se/adbWireless
这个APK允许设备通过wifi网络进行调试,使用起来很简单。
安装APK(手机必须ROOT),点击中间的大按钮就启动了,在下方会显示 adb connect 192...
分类:
移动开发 时间:
2014-08-27 18:48:18
阅读次数:
261
一、Login登陆验证步骤:
1、赋值,用$_POST将id和password传递给loginProcess.php登陆验证页面。
2、建立数据库连接 $conn=mysql_connect($host,$username,$password);
3、选择数据库 mysql_select_db(empmanage);
4、定义sql语句 $sql=”select passwo...
分类:
Web程序 时间:
2014-08-27 18:41:38
阅读次数:
197
首先要确保两台机子直接IP能够互相ping通
然后使用SCP命令从第一台主机向第二台主机拷贝文件
scp src chiwei@192.168.8.144:/home/chiwei/mydisk/buffer_scp_file
ssh: connect to host 192.168.8.144 port 22: Connection refused
l...
分类:
系统相关 时间:
2014-08-27 16:35:48
阅读次数:
354
1、环境:vs12和idl8.32、新建WinForm,添加COM_IDL_connect的引用,修改其互操作类型为False2、把Helloworld.pro拷贝到Debug目录下3、在拖入一个按钮到Form1上,为Button1的Click事件添加如下代码4、运行
分类:
其他好文 时间:
2014-08-27 12:38:47
阅读次数:
421
是用于多IP机器上 比如你的机器有三个ip 192.168.1.1 202.202.202.202 61.1.2.3 如果你serv.sin_addr.s_addr=inet_addr("192.168.1.1"); 然后监听100端口 这时其他机器只有connect 192....
分类:
其他好文 时间:
2014-08-27 10:49:17
阅读次数:
176
基于TCP(面向连接)的Socket编程一、客户端:1、打开一个套接字(Socket);2、发起连接请求(connect);3、如果连接成功,则进行数据交换(read、write、send、recv);4、数据交换完成,关闭连接(shutdown、close);二、服务器端:1、打开一个套接字(So...
#!/usr/bin/envpython#coding=utf-8importparamikoimporttime,datetime,threadingdefssh(ip,user,passwd,command):ssh=paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())try:ssh.connect(ip,port=16333,username=user,password=passwd)exceptpar..
分类:
编程语言 时间:
2014-08-26 19:54:27
阅读次数:
237
关于ios BLE在后台自动重连的问题? 找到一个国外网站是这么描述的 Re: How to make the BTLE APP to auto connect with BTLE device when iPhone4S power on?沿途见识[2] When backgrounding, you can still s...
分类:
其他好文 时间:
2014-08-26 15:41:36
阅读次数:
511