mongod --dbpath "d:\Program Files\MongoDB 2.6
Standard\data\db" --logpath "d:\Program Files\MongoDB 2.6
Standard\logs\MongoDB.log" --install --service...
分类:
数据库 时间:
2014-05-09 10:19:13
阅读次数:
301
在配置安卓开发环境时,我将sdk、eclipse等工具包解压在了/opt目录下,在安装adt、导入sdk时,频频出现问题,Failed to create
directory /opt/adt-bundle-linux-x86_64-20140321/sdk/temp原因是程序在/opt目录下权限不...
分类:
系统相关 时间:
2014-05-09 09:03:05
阅读次数:
399
戳我去解题Write an efficient algorithm that searches for
a value in anmxnmatrix. This matrix has the following properties:Integers in
each row are sorted f...
分类:
其他好文 时间:
2014-05-09 08:27:24
阅读次数:
241
完成了一个脚本,find.sh如果希望可以再linux系统中任何位置都可以执行该脚本,可以执行下面操作1. chmod 775 find.sh
给该脚本增加可执行权限2. export PATH=$PATH:存放该脚本的路径
分类:
系统相关 时间:
2014-05-09 08:16:43
阅读次数:
498
贴代码了,已经测试,可正常编译
package org.mark.streamRW;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
/**
* 字节流输出OutputStream
* 注意:1,write(byte[] b)数组方法写入;
*
* @author ...
分类:
其他好文 时间:
2014-05-09 06:19:20
阅读次数:
267
1. Write a procedure count-list to count the
number of elements in a list1 (defun count-list (numbers)2 (if (null numbers) 03
(+ 1 (co...
分类:
其他好文 时间:
2014-05-09 05:41:41
阅读次数:
307
高级I/O
非阻塞IO
非阻塞I/O使我们可以调用open、read和write这样的I/O操作,并使这些操作不会永久阻塞。如果这种操作不能完成,则调用立即出错返回,表示该操作如继续执行将阻塞。
对于一个给定的描述符有两种方法对其指定非阻塞I/O:
1) 如果调用open获得描述符,则可指定O_NONBLOCK标志
2) 对于已打开的一个描述符,则可调用fcntl,由...
分类:
系统相关 时间:
2014-05-09 01:16:55
阅读次数:
577
1、安装godgeminstallgod2、设置环境变量以及开机启动的rc.local文件,其内容如下PATH=$PATH:/zhiyisoft/bingod-c/etc/god/god.god备注:请将rubybin目录下的所有文件链接到/zhiyisoft/bin下面,否则将无法运行如果是rvm,请执行下方命令1、rvmwrapper2.0.0@rails3bootupgod2、..
分类:
其他好文 时间:
2014-05-09 00:52:01
阅读次数:
1277
一、环境ubuntu10.4mysql5.1.60python.6.6java7二、搭建1.安装ubuntu10.4,并更新软件包2.sudosu-切换到root用户下安装mysql5.1.60groupaddmysql
useradd-gmysqlmysql
./configure--prefix=/usr/local/mysql--with-unix-socket-path=/usr/local/mysql/var/mysql.sock--sysconfd..
分类:
编程语言 时间:
2014-05-09 00:48:04
阅读次数:
362
这几个月正式开始运用ExtJS开发项目,接下来会将这几个月的一些经验整理成一个系列博客。今天要讲的是ExtJS中的基础,如何获取component和Dom.element。一、query查询以下的path为查询条件,查询方式类似于JQuery*ComponentQuery返回componentExt.ComponentQuery.query(path)全..
分类:
Web程序 时间:
2014-05-09 00:44:37
阅读次数:
413