1. aam 里加入一个ip的internet 2. iis里不用加上ip,但不要有host name 出现的问题: 1. 当打开站点里会出现这个错误 file not found 2. 当加授予用户权限时,用户加不上去: Sorry, we're having trouble reaching t...
分类:
其他好文 时间:
2014-06-23 07:53:04
阅读次数:
223
在Linux上使用vi命令修改一个文件内容的时候,发现无法保存,每次写完使用“:q!”命令可以正常退出但是使用":wq!"命令保存文件并退出时出现一下信息提示:E212: Can't open file for writing Press ENTER or type command to conti...
分类:
系统相关 时间:
2014-06-23 06:06:13
阅读次数:
303
Well, as a college student,I haven't realized how important the English is .
But as a web programmer,I do realize the importance of learning English.
I am not writing an English composition....
分类:
其他好文 时间:
2014-06-22 17:52:50
阅读次数:
157
http://skywalkersoftwaredevelopment.net/blog/writing-an-orchard-webshop-module-from-scratch-part-8定义内容类型 Customer 1.创建CustomerPartRecord 2.创建Custome.....
分类:
其他好文 时间:
2014-06-21 15:42:22
阅读次数:
247
转自:使用Python实现Hadoop MapReduce程序英文原文:Writing an Hadoop MapReduce Program in Python根据上面两篇文章,下面是我在自己的ubuntu上的运行过程。文字基本采用博文使用Python实现Hadoop MapReduce程序, 打...
分类:
编程语言 时间:
2014-06-19 06:01:59
阅读次数:
366
在linux上使用vi命令修改一个文件内容的时候,发现无法保存,每次写完使用“:q!”命令可以正常退出但是使用":wq!"命令保存文件并退出时出现一下信息提示:
E212: Can't open file for writing Press ENTER or type command to continue
出现这个错误的原因可能有两个:
1.当前用户...
分类:
系统相关 时间:
2014-06-14 12:53:30
阅读次数:
512
情况是这样的,我在写一个类似于Online-Judge的系统,用python很容易实现,编译源程序,运行程序,最后比较程序输出与标准输出得出成绩。现在有个问题,万一程序运行时崩溃,比如出现除0异常,assert失败等等,则在windows下会出现恼人的crash
window。我想要避免它,因为我一...
分类:
其他好文 时间:
2014-06-07 07:11:28
阅读次数:
253
Become a Better Developer: 3 Ways Writing Will
Expand Your Mind, Improve Your Code and Grow Your CareerSeptember 10, 2013Oliver
WhiteNo commentsinShar...
分类:
其他好文 时间:
2014-06-05 18:30:54
阅读次数:
447
An iterative way of writing merge sort:
#include
using namespace std;
void merge(int A[], int l, int r, int e, int B[]) {
int i = l, j = r, k = l;
while (i<r && j A[j]) B[k++] =...
分类:
其他好文 时间:
2014-06-03 02:33:24
阅读次数:
215
An iterative way of writing quick sort:
#include
#include
#include
using namespace std;
void quickSort(int A[], int n) {
stack> stk;
stk.push(make_pair(0, n-1));
while (!stk.empty()) {
pair ...
分类:
其他好文 时间:
2014-06-03 00:16:43
阅读次数:
357