# --*-- 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
在用Android测试JSON数据解析的时候,报了这样一个异常:java.net.ConnectException:
localhost/127.0.0.1:8080 - Connection refused原来模拟器默认把localhost或者127.0.0.1当做本身了
在网上查了下,在模拟器上...
分类:
移动开发 时间:
2014-05-09 11:21:25
阅读次数:
485
网络编程IP地址: 主机在网络中的逻辑地址 Port: 标定主机中的进程
一个进程绑定一个端口协议: 网络双方约定的通信标准应用表示 应用 HTTP FTP TELNET会话传输 传输网络 网络 寻址和路由数据链路 ...
分类:
编程语言 时间:
2014-05-09 11:07:26
阅读次数:
361
memcached的基本命令(安装、卸载、启动、配置相关):-p 监听的端口 -l 连接的IP地址,
默认是本机 -d start 启动memcached服务 -d restart 重起memcached服务 -d stop|shutdown
关闭正在运行的memcached服务 -d insta....
分类:
其他好文 时间:
2014-05-08 22:16:48
阅读次数:
294
C# driver Releases notesC# driver 指南(博客园友翻译)Mongodb
Connection Stringmongodb的write concern各版本驱动解决的问题(JIRA)
分类:
数据库 时间:
2014-05-08 22:01:44
阅读次数:
360
left join #左连接又叫外连接 left join
返回左表中所有记录和右表中连接字段相等的记录test_user表phpcvs表SQL: select * from test_user left join
phpcvs on test_user.id=phpcvs.id执行结果如下图:.....
分类:
数据库 时间:
2014-05-08 21:08:56
阅读次数:
445
Given a triangle, find the minimum path sum from
top to bottom. Each step you may move to adjacent numbers on the row below.For
example, given the fol...
分类:
其他好文 时间:
2014-05-08 21:08:25
阅读次数:
407
from://http://www.eoeandroid.com/home.php?mod=space&uid=765778&do=blog&id=47674Android开源项目第一篇——个性化控件(View)篇包括ListView、ActionBar、Menu、ViewPager、Gallery...
分类:
移动开发 时间:
2014-05-08 21:02:03
阅读次数:
735
HAVING 子句在 SQL 中增加 HAVING 子句原因是,WHERE
关键字无法与合计函数一起使用。SQL HAVING 语法SELECT column_name,
aggregate_function(column_name)FROM table_nameWHERE column_name ...
分类:
其他好文 时间:
2014-05-08 20:48:01
阅读次数:
311
看代码declare @iid intselect @iid=111select top 1
@iid=isnull(IID,0) from YYGL_PCDMX where IID=0print
@iid上面的情况,如果iid=0没有记录,则@iid会取111,为了避免这个问题1、在查询前,初始化...
分类:
数据库 时间:
2014-05-08 20:13:13
阅读次数:
438