戳我去解题Givennnon-negative integersa1,a2, ...,an,
where each represents a point at coordinate (i,ai).nvertical lines are drawn
such that the two endpoint...
分类:
其他好文 时间:
2014-07-22 23:09:34
阅读次数:
337
string path = Server.MapPath("copycode/code.txt");
string[] allCodeLine = System.IO.File.ReadAllLines(path, System.Text.Encoding.UTF8);
System.Text.StringBuilder strb = new Sys...
分类:
Web程序 时间:
2014-07-22 23:02:54
阅读次数:
366
Linux下Rsync+inotify-tools实现数据实时同步中有一个重要的配置就是设置Inotify的max_user_watches值,如果不设置,当遇到大量文件的时候就会出现出错的情况。一般网上修改方法就是直接修改文件:/proc/sys/fs/inotify/max_user_watch...
分类:
系统相关 时间:
2014-05-01 21:22:57
阅读次数:
715
采用sys or system / manager as sysdba;
连接数据库。创建普通用户konglin: create user konglin identified by pwd_oracle;删除用户, drop
user konglin;授予用户登录数据库的权限: grant cre...
分类:
数据库 时间:
2014-05-01 15:29:35
阅读次数:
372
select * from sys_role_list where id in (select c
from (with test as (select roleid c from sys_role_info where id=1) select
substr(t.ca,instr(t.ca,...
分类:
数据库 时间:
2014-05-01 02:34:49
阅读次数:
670
看了一些基础的 Python 入门教程后,深深感觉到 Python 的简洁与强大,这是我的第一个 Python Demo。以下是完整代码与运行截图。
代码:
# encoding: utf-8
'''
@author: Techzero
@email: techzero@163.com
@time: 2014-4-30 下午1:31:04
'''
import os
import sys
im...
分类:
编程语言 时间:
2014-04-30 22:18:39
阅读次数:
433
SYS
sys这个模块让你能够访问与Python解释器联系紧密的变量和函数,下面是一些sys模块中重要的函数和变量:函数和变量描述argv
命令行参数,包括脚本和名称exit([arg]) 退出当前的程序,可选参数为给定的返回值或者错误信息modules映射模块名字到载入模块的字典p...
分类:
编程语言 时间:
2014-04-30 18:07:52
阅读次数:
545
1.sqlplus /nolog2.connect sys/orcl@ORCL as
sysdba3.select sysdate from dualexit;
分类:
数据库 时间:
2014-04-29 16:42:47
阅读次数:
480
Given n non-negative integers a1, a2,
..., an, where each represents a point at coordinate (i, ai). n vertical
lines are drawn such that the two endpoints of line i is at (i, ai) and (i,
0). Fin...
分类:
其他好文 时间:
2014-04-29 13:15:21
阅读次数:
415
1.在ORACLE里默认只有三个系统用户,ORACLE是通过用户登入。
SYS用户:超级管理员,权限最高,它的角色是DBA。默认密码是change_on_install。具有创建数据库的权限
SYSTEM用户:系统管理员,权限很高,它的角色是DBA operator,默认密码manager。不具有....
分类:
数据库 时间:
2014-04-29 11:38:45
阅读次数:
516