From:view 6(00:17)Knowledge Points:1. The segue is the thing that made it so that it moved over to the other MVC.2. How the segue gets set up? To crea...
分类:
其他好文 时间:
2014-12-03 00:10:51
阅读次数:
191
1,当网络不通的时候重新reload的也不行的时候出现,随机才出现。2,Game Over...
分类:
其他好文 时间:
2014-12-02 22:34:46
阅读次数:
208
settings.py文件中添加配置:EMAIL_HOST=‘smtp.163.com‘EMAIL_HOST_USER=‘username@163.com‘EMAIL_HOST_PASSWORD=‘password‘EMAIL_USE_TLS=True方法1:#-*-coding:utf-8-*-
fromdjango.confimportsettings
settings.configure()
fromdjango.core.mailimportEmailMessage
fromse..
分类:
Web程序 时间:
2014-12-02 17:35:36
阅读次数:
221
最近在redhatenterpriselinux6.0上配置openldap服务器时总是在提示一个错误:ldapwhoami或者ldapsearch是出现sasl绑定错误ldap_sasl_interactive_bind_s:Invalidcredentials(49)additionalinfo:SASL(-13):usernotfound:nosecretindatabase网络上针对ldap服务器的49错误解决方法..
分类:
其他好文 时间:
2014-12-02 12:02:13
阅读次数:
618
DescriptionWhen a radio station is broadcasting over a very large area, repeaters are used to retransmit the signal so that every receiver has a stron...
分类:
其他好文 时间:
2014-12-01 22:11:46
阅读次数:
151
分页的SQL语句sql="select * from (select row_number() over(orderby id) as num,* from table)as t where t.num>=@start and t.num<=@end";分页的公式int start=(pageInd...
分类:
数据库 时间:
2014-12-01 22:04:37
阅读次数:
201
3 Common issues of fail-over clustering configuration....
分类:
其他好文 时间:
2014-12-01 20:55:10
阅读次数:
205
tsung是erlang的一个开源的一个压力测试工具,可以测试包括HTTP, WebDAV, Mysql, PostgreSQL, LDAP, and XMPP/Jabber等服务器。针对 HTTP 测试,Tsung 支持 HTTP 1.0/1.1 ,包含一个代理模式的会话记录、支持 GE...
分类:
其他好文 时间:
2014-12-01 19:11:28
阅读次数:
297
原文:删除sql server中重复的数据
with list_numbers as( select Name, AuthorOrTime, Url, Price, EstimatePrice, Size, Category, ROW_NUMBER() over (order by Name, Au...
分类:
数据库 时间:
2014-12-01 15:54:53
阅读次数:
206
1. SUM SUM是一个求和函数,返回指定列值的总和。SUM 只能用于数字列。其中忽略 Null 值。 语法:SUM ( [ ALL | DISTINCT ] expression ) OVER ( [ partition_by_clause ] order_by_clause ) ...
分类:
数据库 时间:
2014-11-30 18:38:26
阅读次数:
159