修改环境变量:process.env.NODE_TLS_REJECT_UNAUTHORIZED =
"0"
分类:
Web程序 时间:
2014-06-11 09:48:30
阅读次数:
1000
- (UIViewController*)viewController { for (UIView*
next = [self superview]; next; next =next.superview) { UIResponder*nextResponder
= [next nextRe...
分类:
其他好文 时间:
2014-06-11 09:34:16
阅读次数:
227
ASP.NET MVC 6.0,又称ASP.NET
vNext,比之从前的版本有了大规模的更新,几乎所有类库全部重写,本文基于Visual Studo 2014 CTP1创建ASP.NET
vNext,记录基本创建、self-host、IIS运行时遇到的问题。
分类:
Web程序 时间:
2014-06-11 08:44:50
阅读次数:
309
The paper "Optimal Decoding of Linear Codes for
Minimizing Symbol Error Rate", which is the source of the BCJR decoding
algorithm, is my current obje....
分类:
其他好文 时间:
2014-06-11 07:35:20
阅读次数:
250
@interface Person : NSObject@property
(noatonmic,copy) NSString *
name;@end一个person类,name是person得成员变量如果在一个类中写入person为成员变量self.person.name =
@"zhangsan...
分类:
移动开发 时间:
2014-06-11 07:28:01
阅读次数:
294
【题目】
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
【题意】
给定行索引k, k从0开始,返回该索引指向的杨辉三角的行
要求只能使用O(k)的额外空间
【思路】
...
分类:
其他好文 时间:
2014-06-08 15:46:02
阅读次数:
272
TinyXML中主要class的类图:
文档类代表一个XML文档,通过它,你可以载入、输出和保存文档。
载入文档:
TiXmlDocument doc("note.xml");
doc.LoadFile();
输出文档:
TiXmlDocument doc("note.xml");
doc.LoadFile();
doc.Print();...
分类:
其他好文 时间:
2014-06-08 15:16:22
阅读次数:
717
Note: 学习方法固然重要,但更重要的是选择更好的学习方法,学习材料!背景介绍:01
Java考古学02 Java创世纪03 Java基本概念104 Java的变量05 Java的基本数据模型
分类:
移动开发 时间:
2014-06-08 07:12:19
阅读次数:
185
Single NumberGiven an array of integers, every
element appearstwiceexcept for one. Find that single one.Note:Your algorithm
should have a linear runti...
分类:
其他好文 时间:
2014-06-07 23:44:39
阅读次数:
302
Given amxngrid filled with non-negative
numbers, find a path from top left to bottom right whichminimizesthe sum of all
numbers along its path.Note:Yo...
分类:
其他好文 时间:
2014-06-07 20:22:17
阅读次数:
264