To free pagecache: echo 1 > /proc/sys/vm/drop_caches;to free dentries and inodes: echo 2 > /proc/sys/vm/drop_caches;to free pagecache, dentries and in...
分类:
系统相关 时间:
2014-06-28 10:41:39
阅读次数:
222
一。查看内核版本命令:1) [root@SOR_SYS ~]# cat /proc/versionLinux version 2.6.18-238.el5 (mockbuild@x86-012.build.bos.redhat.com) (gcc version 4.1.2 20080704 (Re...
分类:
系统相关 时间:
2014-06-25 22:40:48
阅读次数:
361
原文来自于:http://www.infoq.com/cn/articles/new-idea-of-nodejs-asynchronous-processing-tasks?utm_source=infoq&utm_medium=popular_links_homepageNode.js擅长数据密...
分类:
Web程序 时间:
2014-06-25 21:21:47
阅读次数:
436
%%% Fragment
%%% 对原图做四个方向的平移,然后对平移的结果取平均
%%% 碎片效果
clc;
clear all;
addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');
Image=imread('4.jpg');
Image=double(Image)/255;...
分类:
其他好文 时间:
2014-06-24 21:06:24
阅读次数:
226
###How to qulick start Like virtual memory,before closing system,win8 write kernel dialog to a file named hiberfil.sys so ,it just write hiberfil.sy.....
表中的数据被delete之后并不会真正删除数据,而是打了一个删除标记,只要还没有被覆盖就可以恢复回来。
实验过程如下:
SYS@ORCL>create table bbed_test(x varchar2(20));
Table created.
SYS@ORCL>insert into bbed_test values('BADLY9');
1 row created...
分类:
数据库 时间:
2014-06-22 22:06:59
阅读次数:
330
本文参考了李春葆版本的数据结构上机指导,但是原版是c代码,
本文用了c++实现,并且修复了深度优先搜索非递归的一个bug。
graph.cpp文件:
#include"graph.h"
#include
#include
int visited[MAXV];
MGraph::MGraph(int A[100][10],int nn,int ee)
{
e=ee;
n=nn;...
分类:
编程语言 时间:
2014-06-22 19:37:23
阅读次数:
655
今天是2014-06-18,在复制数据的时候出现如下错误:
RMAN-05537: DUPLICATE without TARGET connection when auxiliary instance is started with spfile cannot use SPFILE clause
操作过程如下:
[oracle@dg1 dbs]$ rman target sys/root@...
分类:
其他好文 时间:
2014-06-22 19:13:14
阅读次数:
306
对于Python 的脚本传参,很多人可能都会使用 ( ... , ... ) = sys.argv ,但是如果你想更轻松更随性的传递参数呢? 比如说我们 可以使用 python argv.py -a 123 -path '/home/long/path' -c=123 这样的传递参数。 或者想要更佳绚丽的help 界面。
本文简介一个很简单的实现这种随便带参的方法,相信能够抛砖引玉 :)...
分类:
编程语言 时间:
2014-06-22 17:05:40
阅读次数:
259
昨晚在csdn看到一位前辈写一个ajax+servlet+jsp验证,顿时心血来潮,在前辈的代码下我做出了如下简单好用的小 验证码生成器Demo,供大家做个参考。
1:添加VeriyCodeUtils类生成验证码图像
package com.servlet;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graph...
分类:
Web程序 时间:
2014-06-22 08:22:22
阅读次数:
258