摘要: 先装了workon,然后装了zsh,发现在zsh里不起作用翻了一下网上没有解答,就看了看bashrc文件,发现一句source /usr/local/bin/virtualenvwrapper.sh将这个在zshrc下又放了一份就好了~~~~~~~~~~~ 阅读全文
posted @ 2015-12-16 17:25 wswang 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 想按照某个值排序,用sort()函数,结果想了半天不知道用数组怎么解决,然后看了答案,才知道原来可以用struct,想想我真是笨死了。。原题描述以及答案如下:Problem DescriptionFatMouse prepared M pounds of cat food, ready to tra... 阅读全文
posted @ 2015-11-25 15:38 wswang 阅读(428) 评论(3) 推荐(0) 编辑
摘要: 安装spark安装hadoop安装ssh,调试免密钥登录配置hadoop配置yarn测试 阅读全文
posted @ 2015-11-24 20:36 wswang 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 1.先得准备环境,需要JAVA环境,还有Python环境(默认会有) JAVA下载JDK之后配置JAVA环境变量 1 export JAVA_HOME=/opt/jdk1.8.0_452 3 export JRE_HOME=${JAVA_HOME}/jre4 5 export CLASSPAT... 阅读全文
posted @ 2015-11-17 00:53 wswang 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 创建项目一般来说,使用scrapy工具的第一件事就是创建您的Scrapy项目:scrapy startproject myproject该命令将会在myproject目录中创建一个Scrapy项目。接下来,进入到项目目录中:cd myproject这时候您就可以使用scrapy命令来管理和控制您的项... 阅读全文
posted @ 2015-11-15 20:17 wswang 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 尝试一下C++模版,起了个比较大小的函数叫max然后发现错误一大堆#includeusing namespace std;templateT max_test(T a,T b){ if(a>b) return a; else return b;}int mai... 阅读全文
posted @ 2015-11-15 20:16 wswang 阅读(628) 评论(2) 推荐(0) 编辑
摘要: http://www.ithao123.cn/content-1906969.htmlhttp://www.it165.net/os/html/201503/12190.html 阅读全文
posted @ 2015-11-14 01:11 wswang 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 如果你还看一些别的C++教程,那么你可能很早就发现了,有些书上的#include命令写作#include ,但有时候又会出现#include "文件名"。你会很疑惑,到底哪个是对的呢?为什么要有这两种不同的写法呢?这两种写法都是正确的写法,但是它们却是有区别的。我们知道C++已经有一些编写好的头文件... 阅读全文
posted @ 2015-10-21 21:01 wswang 阅读(2094) 评论(0) 推荐(0) 编辑
摘要: #error This file requires compiler and library support for the \ISO C++ 2011 standard. This support is currently experimental, and must be \enabled wi... 阅读全文
posted @ 2015-09-24 19:11 wswang 阅读(3815) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include"iostream"#include"math.h"#include"stdio.h"#include"cstdlib"#include"string"#include"cstring"using namespace std;#define Ma... 阅读全文
posted @ 2015-09-23 23:27 wswang 阅读(3272) 评论(2) 推荐(0) 编辑