微软近期Open的职位:SharePoint is a multi-billion dollar enterprise business that has grown from an on-premises product that IT admins love into a core part o...
分类:
其他好文 时间:
2015-01-16 06:28:15
阅读次数:
177
搬运自本人博客:http://www.xgezhang.com/vim_command_useful.html
vim这东西就是得多用多练,一段时间之后再来进行总结。这里列出了一些非常有用但自己用的不太熟练的命令,当做记录复习吧。
o 在当前行后插入一行,习惯了End+i+Enter,这个简直方便太多。
I 在当前行首插入。
...
分类:
系统相关 时间:
2015-01-15 22:06:48
阅读次数:
209
1、通过存储过程方式CREATE OR REPLACE procedure XXZY.p_testis i number; begin for i in 1..210000 loopINSERT INTO test_job VALUES(i,'张三'||to_char(i));end LOOP;EX...
分类:
数据库 时间:
2015-01-15 19:43:22
阅读次数:
231
#import @interface model : NSObject@property(nonatomic,copy)NSString *bookName;@property(nonatomic,assign)double BookPrice;@end//实现委托@interface model(...
分类:
其他好文 时间:
2015-01-15 18:02:09
阅读次数:
136
1、打开或新建一个word文档2、按 fn + option + F11 键,会弹出一个【项目】窗口,选中Normal, 双击[模块], 修改为125Sub AutoOpen() ActiveWindow.ActivePane.View.Zoom.Percentage = 125 End Sub.....
分类:
系统相关 时间:
2015-01-15 17:37:25
阅读次数:
258
题目描述Description设有N*N的方格图(N0) do begin init[x,y]:=v; readln(x,y,v); end; for i:=1 to n do for j:=1 to n do ...
分类:
其他好文 时间:
2015-01-15 17:35:28
阅读次数:
143
如题,由于不熟悉这个框架的API,所以用的时候出错了,直接上代码 public List getAllBetweenDate(String start, String end) { List types = null; try {// types = typeDaoOpe.queryBuil...
分类:
其他好文 时间:
2015-01-15 14:13:31
阅读次数:
946
Ctrl+a:光标回到命令行首,或者直接使用Home键 (a:ahead)Ctrl+e:光标回到命令行尾,或者直接使用End键 (e:end)Ctrl+b:光标向行首移动一个字符 (b:backwards)Ctrl+f:光标向行尾移动一个字符 (f:forwards)Ctrl+w: 删除光标处到行首...
分类:
系统相关 时间:
2015-01-15 12:41:59
阅读次数:
178
在VMWARE虚拟机下安装RHEL7.0,启动时有以下提示。经网上搜索,答复为floppy及piix4_smbus设备加载时找不到设备所致。解决办法如下:floppy,在BIOS里禁用软驱,重启piix4_smbus,先检查一下是否有加载piix4,如有把i2c_piix4加入黑名单,启动时不加载此模块#lsmod|grepi2c_pii..
分类:
其他好文 时间:
2015-01-15 01:57:20
阅读次数:
593
--游标为输出参数CREATE OR REPLACE PROCEDURE pro_emp_select(empsal OUT sys_refcursor)ASBEGIN OPEN empsal FOR SELECT empno,sal FROM emp ; END pro_emp_select;-....
分类:
其他好文 时间:
2015-01-15 00:13:02
阅读次数:
213