# --*-- coding: utf-8 --*--from
matplotlib.font_manager import FontPropertiesimport matplotlib.pyplot as pltfont
= FontProperties(fname=r"/usr/share/f...
分类:
其他好文 时间:
2014-05-09 11:51:09
阅读次数:
323
这是kbmmw 作者关于认证管理器的说明,我懒得翻译了,自己看吧。There are 5 parts
of setting up an authorization manager: A) Defining what the resources are
(often services or servi...
分类:
其他好文 时间:
2014-05-09 11:33:05
阅读次数:
471
以上问题的解决方式如下:1.
打开windows运行对话框。在对话框输入mmc。打开了如图所示的控制台。2. 文件---添加/删除管理单元(M)。3. 添加。然后选择Microsoft
SQL 企业管理器。添加。4. 文件---选项---用户模式-完全访问---应用---确定。5.回到控制台,另存为...
分类:
数据库 时间:
2014-05-09 11:17:41
阅读次数:
352
IE10下的Input Text和谷歌下面的 input search
一旦输入内容,会在最右端出现一个叉号,点击后,内容就会自动清空,看似方便,其实有些场景并不需要,需要写代码清除掉。代码如下:input::-webkit-search-cancel-button{display:
none;} ...
分类:
其他好文 时间:
2014-05-08 20:15:33
阅读次数:
644
创建基于Arduino自动化系统的过程,一般解决处理问题需要大量时间。Arduino Manager 是一个app,可在iPhone和iPad上使用,用它来控制你的Arduino板,并可通过以太网、WiFi及BLE 来获取信息。...
分类:
移动开发 时间:
2014-05-07 04:47:53
阅读次数:
400
I make a connection through SSH and then I type:
# x0vncserver --PasswordFile=/home/hello/.vnc/passwd
x0vncserver: unable to open display ""
~ImageCleanup called
the reason is :
...
分类:
其他好文 时间:
2014-05-07 04:23:43
阅读次数:
581
/images/loadingImg.gif"/>
数据保存中...
提示:
显示div:$("#gcjDhccFullScreen").css("display","block");
隐藏div:$("#gcjDhccFullScreen").css("display","none");...
分类:
其他好文 时间:
2014-05-07 03:38:29
阅读次数:
275
#include
using namespace std;
class Stu //声明基类
{
public:
Stu(int n, string nam ); //基类构造函数
void display( ); //成员函数,输出基类数据成员
protected: //(*)访问权限为保护型的数据成员
int nu...
分类:
其他好文 时间:
2014-05-06 23:20:29
阅读次数:
296
#include
using namespace std;
class Stu
{
public:
Stu (int n,string nam);
void display();
protected:
int num; //学号
string name; //姓名
};
Stu::Stu(int n,st...
分类:
其他好文 时间:
2014-05-06 21:35:26
阅读次数:
292
Java在java.math包中提供的API类BigDecimal,用来对超过16位有效位的数进行精确的运算。双精度浮点型变量double可以处理16位有效数。在实际应用中,需要对更大或者更小的数进行运算和处理。float和double只能用来做科学计算或者是工程计算,在商业计算中要用java.math.BigDecimal。BigDecimal所创建的是对象,我们不能使用传统的+、-、*、/等算...
分类:
其他好文 时间:
2014-05-06 19:23:46
阅读次数:
288