上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 35 下一页

2014年11月11日

Python Matplotlib 中对于 bar 显示时间的问题

摘要: 参考: 官方教程: http://matplotlib.org/1.3.1/users/recipes.html http://stackoverflow.com/questions/13515471/matplotlib-how-to-prevent-x-axis-labels-from... 阅读全文

posted @ 2014-11-11 22:21 norsd 阅读(710) 评论(0) 推荐(0) 编辑

2014年11月9日

git 忽略 Pycharm 中的 workspace.xml 文件

摘要: .gitignore 中要写上 workspace.xml 如果已经不幸之前commit workspace.xml 的话,必须执行以下命令 $ git rm --cached .idea/workspace.xml 参考: http://segmentfault.com/q/101... 阅读全文

posted @ 2014-11-09 16:07 norsd 阅读(823) 评论(0) 推荐(0) 编辑

2014年11月1日

numpy windows环境下载安装

摘要: 由于numpy在多个平台下非常流行,以至于习惯WINDOWS环境下的用户可能找不到下载位置,更多的时候会下载到zip文件,然后需要安装编译(自然通不过) 1.http://www.scipy.org/scipylib/download.html 2.选择 numpy, 点击 Sourc... 阅读全文

posted @ 2014-11-01 12:51 norsd 阅读(167) 评论(0) 推荐(0) 编辑

2014年10月2日

Pycharm 配置autopep8到菜单

摘要: Pycharm 可以自动检测PEP8规范。 我们可以安装autopep8来自动修改文件实现PEP8规范。 1.通过Pycharm安装autopep8 2.File->Setting->Externel Tools-> 添加工具 下面的链接是配置pep8的一个教程,我们依样画葫芦,注意其配... 阅读全文

posted @ 2014-10-02 17:07 norsd 阅读(184) 评论(0) 推荐(0) 编辑

2014年7月17日

c# 添加reference后,Visual Studio 仍然提示无法找到函数, 询问是否添加了含有这个函数的Assembly

摘要: 1.问题 添加reference后,编译仍然无法通过,测试工程添加这个assembly 就可以编译通过。 对比了这个assembly的 .net 版本,也没问题 由于工程是x64的, 添加的assembly为norlib.console, 是any cpu , 尽管知... 阅读全文

posted @ 2014-07-17 19:16 norsd 阅读(304) 评论(0) 推荐(0) 编辑

2014年7月2日

装箱拆箱

摘要: http://blog.csdn.net/xiven/article/details/5378470 (附:在托管C++中,允许直接取加拆箱时第一步得到的实例引用,而直接更改,但C#不行。) 关于把struct通过interface来直接修改装箱后的struct 通过接口方式,可... 阅读全文

posted @ 2014-07-02 18:30 norsd 阅读(114) 评论(0) 推荐(0) 编辑

关于 T[] 的反射问题

摘要: 1. T[] 类型不适应以下代码 Dictionary d = new Dictionary(); // Get a Type object representing the constructed type. // Type constructed... 阅读全文

posted @ 2014-07-02 13:41 norsd 阅读(201) 评论(0) 推荐(0) 编辑

使用dynamic关键词 CS1969错误

摘要: 添加 Microsoft.CSharp.dll 引用即可 不需要添加using Microsoft.CSharp 这类namespace 阅读全文

posted @ 2014-07-02 12:28 norsd 阅读(146) 评论(0) 推荐(0) 编辑

2014年6月18日

MongoDb 数据修补笔记

摘要: 1. 2013.08.21 KS 数据有严重问题, 缺乏数十秒数据, serialNumber 乱序 阅读全文

posted @ 2014-06-18 10:00 norsd 阅读(113) 评论(0) 推荐(0) 编辑

2014年6月16日

MySql 长时间读数据发生超时的异常 Mysql Reader Exception TimeOut expired

摘要: mysql connector: .net var r = cmd.ExecuteReader() r.Reader() // <--长时间不停调用 Timeout expired. The timeout period elapsed prior to completion of the... 阅读全文

posted @ 2014-06-16 19:32 norsd 阅读(598) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 35 下一页

导航