最近看网上一些开源的源代码,发现尽多不认识的符号,好吧。开始学习新的C++。C++经典书籍C++ Primer,第五版开始有了对C++ 11的讲解C++ Primer Plus,第六版有对C++ 11的讲解,笔者没看过这本,据说比上面那本更基础The C++ Standard Library A T...
分类:
编程语言 时间:
2014-07-07 17:24:24
阅读次数:
231
作为帮助学习的工具目标:较好地清楚地掌握theano的知识结构学习内容:theano documentation 0.6,主要看tutorial 与 library ,看2遍以上。学习时间6.29-6.30,(6.31也许需要完善下DAMS project的事)6.32-6.33 一共4天,大约40...
分类:
其他好文 时间:
2014-07-07 15:16:28
阅读次数:
295
提示Error 1324.The path My Pictures contains an invalid character.解决办法:新建一个文件夹,123, 设置 我的文档文件夹 目录指向 “C:\123” 即可。-----------------------------相关文章 http:/...
分类:
其他好文 时间:
2014-07-07 15:02:50
阅读次数:
211
我们来看一下下面这条语句:BEGIN LOADING stu_flERRORFILES error_1, error_2;如果此时已经存在error_1或error_2表,那么将会报错,信息如下:0008 BEGIN LOADING stu_fl ERRORFILES error_1, er...
分类:
数据库 时间:
2014-06-30 14:31:51
阅读次数:
429
今天加班试图push代码的时候,报出了如下错误:
出现这个错误之前,是在远程服务器上创建了一个tag v2.1.1,同时clone的服务器代码指定的分支也是branch v2.1.1,本地用git tag命令可以查看分支:
在本地删除多余的tag标签:
再次push, Everything thing is OK!...
分类:
其他好文 时间:
2014-06-30 09:40:27
阅读次数:
696
Linux下Memcached的安装步骤,如果出现/usr/local/memcached/bin/memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory异常在/etc/ld.so.conf中加入/usr/local/lib这一行,保存之后,再运行:/sbin/ldconfig –v更新一下配置即可。...
分类:
系统相关 时间:
2014-06-30 09:20:50
阅读次数:
320
(一)
class Shape {
public:
virtual void draw() const = 0;
virtual void error(const string& msg);
int objectID() const;
};
class Rectangle : public Shape {...};
class Ellipse : publi...
分类:
编程语言 时间:
2014-06-30 00:55:48
阅读次数:
409
前天在项目中写的一个ajax jsonp的使用,出现了问题:可以成功获得请求结果,但没有执行success方法,直接执行了error方法提示错误——ajax jsonp之前并没有用过,对其的理解为跟普通的ajax请求差不多,没有深入了解;出现了这种错误,几经调试(检查后台的代码和js部分的属性设置)还是不行,让我感觉很是意外和不解。于是,决定仔细研究下ajax
jsonp的使用,并将最后测试成...
分类:
Web程序 时间:
2014-06-30 00:23:57
阅读次数:
311
Linux下Nginx的安装 如果出现:error: 'ngx_http_file_cache_node_t' has no member named 'length'异常,可能是ngx_cache_purge-2.1.tar.gz版本太旧导致...
分类:
系统相关 时间:
2014-06-30 00:11:43
阅读次数:
401
Add include to "freetype.h"/* add this line */#include #ifndef FT_FREETYPE_H#error "`ft2build.h' hasn't been included yet!"#error "Please always use m...
分类:
其他好文 时间:
2014-06-29 20:24:58
阅读次数:
312