本次操作是在sublime text 2下进行。1、先到http://sublime.wbond.net/Package%20Control.sublime-package下载Package Control.sublime-package,然后打开Preferences->Browes Packag...
分类:
其他好文 时间:
2014-06-29 06:18:13
阅读次数:
258
Figure 1: Low latency software defined networking control loop The articles SDN and delay and Delay and stability describe the critical importance of ...
分类:
Windows程序 时间:
2014-06-18 10:58:32
阅读次数:
1043
python中,import module会去sys.path搜索,sys.path是个列表,并且我们可以动态修改。要import某个目录的module,我们sys.path.insert(0,somedir)来加入搜索路径,就可以import了。既然这样,要import上一级目录的module,可...
分类:
其他好文 时间:
2014-06-18 09:37:57
阅读次数:
164
Controller类继承自ControllerBase类, ControllerBase类实现了IController接口.ControllerBase类实现了Exceute方法, 当URL路由匹配到Controller后,就会执行Excecute方法进行Controller的处理.Control...
分类:
Web程序 时间:
2014-06-18 09:31:28
阅读次数:
149
简单介绍:这是HTTP头的Expires与Cache-control的具体页面,介绍了和javascript,Web综合 HTTP头的Expires与Cache-control有关的知识、技巧、经验,和一些javascript源代码等。 1.概念 Cache-control用于控...
分类:
其他好文 时间:
2014-06-18 09:03:47
阅读次数:
147
首先,Oracle安装完成有三个默认用户
Ø Sys:数据库对象的拥有者,权限最高,密码在安装的时候(口令管理)可以改变
Ø System:数据库管理员,密码为manager
Ø Scott:一个普通用户,密码为tiger
再看连接Oracle的三种验证机制
Ø 操作系统验证(详解见下面)
Ø 密码文件验证
Ø 数据库验证
注:前两者适用于系...
分类:
数据库 时间:
2014-06-18 07:38:28
阅读次数:
216
[WinError 2] 系统找不到指定的文件。
[cmd: ['g++', 'D:\\source-code\\sublime\\test.cpp', '-o', 'D:\\source-code\\sublime/test']]
[dir: D:\source-code\sublime]
[path: D:\program\basic\python3.4.0;C:\Windows\sys...
分类:
Windows程序 时间:
2014-06-18 00:56:24
阅读次数:
7280
有时候需要用同一个Python程序在不同的时间来处理不同的文件,此时如果老是要到Python程序中去修改输入、输出文件名,就太麻烦了。而通过Python获取命令行参数就方便多了。下面是我写得一个小程序,希望对大家有所帮助。
比如下面一个程序test.py是通过接受命令行两个参数,并打印出这两个参数。
import sys #需导...
分类:
编程语言 时间:
2014-06-18 00:28:16
阅读次数:
372
Uncaught Sys.InvalidOperationException: Sys.InvalidOperationException: PageRequestManager 不可初始化一次以上。找了半天,原來是他出問題了,或許是和BootStrap衝突了!!!
分类:
其他好文 时间:
2014-06-17 23:52:56
阅读次数:
529
--创建过程,参数为sys_refcursor,为out型
create or replace procedure aabbsys_refcursor(o out sys_refcursor) is
begin
open o for select * from basplumain;
end;
---
--测试过程,使用aabbsys_refcursor传出的值
create or repla...
分类:
其他好文 时间:
2014-06-17 16:04:12
阅读次数:
180