index.jsp 1 2 3 4 5 6 图片 7 8 9 10 11 12 13 14 15
...
分类:
其他好文 时间:
2014-04-29 20:28:33
阅读次数:
707
1
/**************************************************************************** 2
* 文件名: main.c 3 * 内容简述: 4 * 5 * 演示的是3个蓝色LED(LED1-LED3...
分类:
其他好文 时间:
2014-04-29 20:22:29
阅读次数:
528
典型的快速幂成应用题意:求x 使得x^e%n=num#includeusing namespace
std;bool funtion(int x,int e,int n,int num){// m^n % k int b = 1; while (e >
0) { i...
分类:
其他好文 时间:
2014-04-29 20:20:25
阅读次数:
414
Ubuntu默认是安装好了tcpdump工具的,如果没有安装的话使用sudo apt-get
install tcpdump即可安装。 (如果遇到tcpdump: no suitable device
found的问题,检查一下是不是在用root权限运行tcpdump,tcpdump只能在root权...
分类:
其他好文 时间:
2014-04-29 20:18:22
阅读次数:
620
Andrew NG的Machine
learning课程地址为:https://www.coursera.org/course/ml在Linear
Regression部分出现了一些新的名词,这些名词在后续课程中会频繁出现:Cost FunctionLinear RegressionGradient...
分类:
其他好文 时间:
2014-04-29 20:11:10
阅读次数:
616
protected void Button1_Click(object sender,
EventArgs e) { string conStr =
ConfigurationManager.ConnectionStrings["lianxiConnectionString"].Connection...
分类:
其他好文 时间:
2014-04-29 20:10:07
阅读次数:
490
原因是当前的scheduleOnce还没有执行完成,可以将scheduleOnce方法改写成另外一种形式,把CCDelayTime和CCCallFunc拼接构造延迟事件调用:CCDelayTime
* delayAction = CCDelayTime::create(dt); CCCallFun....
分类:
其他好文 时间:
2014-04-29 20:06:01
阅读次数:
1331
这个方法用于把 字符串转换成url 的编码第一个参数是 字符串,第二个参数是
指定的编码(UTF-8 ,GBK, gbk2312...)private string UrlEncode(string str,string
encoding) { StringBui...
分类:
其他好文 时间:
2014-04-29 20:03:59
阅读次数:
444
系列文章[Nhibernate]体系结构引言在上篇文章学习了orm和nhibernate相关概念,这篇文章主要学习ISessionFactory如何配置。因为NHibernate被设计为可以在许多不同环境下工作,所以它有很多配置参数。不过,大部分都已经有默认值了。NHibernate.Test.dl...
分类:
系统相关 时间:
2014-04-29 20:01:54
阅读次数:
706