1 2 6 7 8 9 10 ">11 12 My JSP 'Calculator.jsp' starting page13 14 15 16 17 18 19 20 21 22 29 ...
分类:
Web程序 时间:
2014-07-16 19:27:50
阅读次数:
243
I have not written any articles here since I graduated from my university. Now I begin to write down my experience about my career of programming du.....
分类:
Web程序 时间:
2014-07-15 08:17:27
阅读次数:
331
本文转自:http://stackoverflow.com/questions/1288046/how-can-i-get-my-webapps-base-url-in-asp-net-mvcMaybe it is extension or modification of the answers p...
分类:
移动开发 时间:
2014-07-14 23:24:22
阅读次数:
283
出现Out of resources when opening file './xxx.MYD' (Errcode: 24)错误是因为打开的文件数超过了my.cnf的--open-files-limit。open-files-limit选项无法在mysql命令行直接修改,必须在my.cnf中设定,最...
分类:
数据库 时间:
2014-07-14 21:16:24
阅读次数:
247
python join 和 split方法的使用,join用来连接字符串,split恰好相反,拆分字符串的。1.join用法示例 >>>li = ['my','name','is','bob'] >>>' '.join(li) 'my name is bob' >>>'_'.join(li) 'm....
分类:
编程语言 时间:
2014-07-14 19:12:52
阅读次数:
247
附:一些Select的技巧1.动态创建selectfunction createSelect(){var mySelect = document.createElement("select");mySelect.id = "mySelect";document.body.appendChild(my...
分类:
Web程序 时间:
2014-07-14 17:58:23
阅读次数:
307
一幅图是由许多元素组成的。包括图标题,x轴标签,y轴标签,刻度线等。图1给出了各个元素的一个示意图。
这些所有的元素在scilab中都是可以用代码控制的。
标题
上个笔记上介绍了用xtitle()函数可以在图上添加标题。比如:
title("My Plot");
实际上,title函数有三种形式:
title(my_title)
title(my_title,)
ti...
分类:
其他好文 时间:
2014-07-14 16:13:18
阅读次数:
241
请支持原创:http://www.cnblogs.com/donlianli/p/3841762.html1、索引格式1.x之前的版本,被索引的文档type会同时出现在url和传输的数据格式中,如下:PUT /my_index/my_type/1{ "my_type": { ... doc fie....
原list: ( ( 1 2 ) ( 3 4 ) )
转置: ( ( 3 4 ) ( 1 2 ) )
深度转置: ( ( 4 3 ) ( 2 1 ) )
( define tree ( list 1 ( list 2 ( list 3 4 ) 5 ) ( list 6 7 ) ) )
( define nil '() )
( define ( my-reverse items...
分类:
其他好文 时间:
2014-07-14 13:04:42
阅读次数:
170
Finding the Centroid of a Room Boundary It's been a while since my last post and I'm sure most of you were like... "Where the hell is Don!".... it's o...
分类:
其他好文 时间:
2014-07-14 10:35:17
阅读次数:
247