微软近期Open的职位:Microsoft Launched the public cloud service-Azure in China on May 2013, Cosmos is the key component to Azure which support the platform of...
分类:
其他好文 时间:
2014-07-06 22:59:13
阅读次数:
267
微软近期Open的职位:Location: China, BeijingDivision: Operations System Group Engineering Group OverviewOSG is delivering flagship products in Microsoft. Chin...
分类:
移动开发 时间:
2014-07-06 16:18:51
阅读次数:
307
不知道怎么回事,实验室的电脑在同学搞过之后,每次启动都报错rpcbind: cannot open '/run/rpcbind/rpcbind.xdr' file for reading, errno 2 (no such file or directory)rpcbind: cannot open...
分类:
其他好文 时间:
2014-07-06 14:45:46
阅读次数:
301
微软近期Open的职位:Location: China, BeijingDivision: Operations System Group Engineering Group OverviewOSG is delivering flagship products in Microsoft. Chin...
分类:
移动开发 时间:
2014-07-06 13:39:38
阅读次数:
283
说实话,我一看到这个returnValue就有点反感,感觉这个就是IE式的老套的用法,因为项目中有用到就了解了下,以下主要是一些我的理解和发现吧。PS:returnValue是window的属性,showModalDialog和open是window的方法。returnValue是与showModa...
分类:
其他好文 时间:
2014-07-06 12:59:05
阅读次数:
271
f = open("foo.txt") # 返回一个文件对象line = f.readline() # 调用文件的 readline()方法while line: print line, # 后面跟 ',' 将忽略...
分类:
编程语言 时间:
2014-07-05 21:24:54
阅读次数:
287
using (ServiceHost host = new ServiceHost(typeof(CalculatorService))) { host.Open(); Console.WriteLine("OK"); Console.Read(); }
分类:
Web程序 时间:
2014-07-05 16:49:41
阅读次数:
244
Linux的命令后面会有命令选项,有的选项还有选项值。选项的前面有短横线“-”,命令、选项、选项值之间使用空格隔开。有的命令没有选项,会有参数。选项是命令内置的功能,参数是用户提供的符合命令格式的内容。1.1.1. 命令提示符在桌面上点击鼠标右键,在弹出菜单中选择“Open in Terminal”...
分类:
系统相关 时间:
2014-07-05 11:18:23
阅读次数:
293
如果让你接触一样新的东西,你可能感觉无所适从,但是如果本来就是旧事物的话,你学习起来还难吗?
一、ODBC,我们的老朋友
ODBC(Open Database Connectivity)是微软公司与数据库的接口规范。
精华点:
1.ODBC,建立了一组规范并提供了一组对数据库访问的标准API,标准应用程序数据接口。
2.ODBC是用C语言实...
分类:
数据库 时间:
2014-07-04 07:38:59
阅读次数:
365
deffm():
#定义一个函数fm()这个函数的内容是以下一个脚本。
foriinrange(0,6):
fr=open("qg/t.txt",‘r‘)
#打开一人文件并读取
print(fr.readlines()[5-i])
#显示这个文件的内容,是从最后5行显示到第1行。这个文件只有5行。
fr.close()
#关闭这个打开的文件。
#定义函数fm,..
分类:
编程语言 时间:
2014-07-04 06:21:02
阅读次数:
240