码迷,mamicode.com
首页 >  
搜索关键字:some    ( 6613个结果
SQL:找到一个关于all some any的用法,可在SSMS里看效果
SET nocount ON USE tempdbgo IF ( OBJECT_ID('t1') IS NOT NULL ) DROP TABLE t1CREATE TABLE t1 ( n INT )INSERT INTO t1 SELECT 2 UNIO...
分类:数据库   时间:2014-07-12 00:46:24    阅读次数:262
nginx + django on windows
It's quite simple to run django on nginx on windows. Here are some key steps to follow -1. Download nginx/windows fromhttp://nginx.org/en/download.htm...
分类:Windows程序   时间:2014-07-11 19:40:41    阅读次数:362
How to make your assembly more secure from referencing by unauthorized bits
Now the security has a trend to become more and more important in our daily work, hence I did some researches on some of the topics, and hope to do mo...
分类:其他好文   时间:2014-07-11 19:20:52    阅读次数:283
小谷实战Jquery(一)--用户名校验
小谷童鞋休息了好几天,终于又开始学习了.今天学的是Jquery,先来看看神马是jQuery? JQuery is designed to change the way that you write JavaScript. The focus of jQuery is "find some elements, do something with them". write less,do m...
分类:Web程序   时间:2014-07-09 12:48:41    阅读次数:221
HDU-4819-Mosaic(二维线段树)
Problem Description The God of sheep decides to pixelate some pictures (i.e., change them into pictures with mosaic). Here's how he is gonna make it: for each picture, he divides the picture into n x...
分类:其他好文   时间:2014-07-09 12:14:13    阅读次数:433
文件00
00编写一个程序,接受用户的输入并保存为新的文件:def file_write(file_name): f = open(file_name, 'w') print('请输入内容【单独输入\':w\'保存退出】:') while True: write_some ...
分类:其他好文   时间:2014-07-08 22:10:19    阅读次数:353
【DataStructure】Some useful methods about linkedList(二)
Method 1: Add one list into the other list. For example, if list1is {22, 33, 44, 55} and  list2 is {66, 77, 88, 99},then append(list1, list2)will change list1to {22, 33, 44, 55, 44, 66, 77, 88, 99}. ...
分类:其他好文   时间:2014-07-08 16:18:22    阅读次数:196
【DataStructure】Some useful methods about linkedList(三)
Method 4: Gets the value of element number i For example, if list is {22, 33, 44, 55, 66, 77, 88, 99}, then get(list, 2) will return 44. Solution 1: static int get(Node list, int i) { if (i < 0) ...
分类:其他好文   时间:2014-07-08 14:07:52    阅读次数:262
[PHP]How to get the system info?
it is much easier to get the same result through PHP because the PHP language offers some global constant variables and built-in functions....
分类:Web程序   时间:2014-07-08 12:48:07    阅读次数:196
POJ 1101 The Game(BFS+判方向)
The Game Description One morning, you wake up and think: "I am such a good programmer. Why not make some money?'' So you decide to write a computer game. The game takes place on a rectangular...
分类:其他好文   时间:2014-07-06 09:02:34    阅读次数:287
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!