码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
[Nodejs] 错误 DEPTH_ZERO_SELF_SIGNED_CERT
修改环境变量:process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"
分类:Web程序   时间:2014-06-11 09:48:30    阅读次数:1000
得到一个view 所在的控制器(viewController)
- (UIViewController*)viewController { for (UIView* next = [self superview]; next; next =next.superview) { UIResponder*nextResponder = [next nextRe...
分类:其他好文   时间:2014-06-11 09:34:16    阅读次数:227
开发 ASP.NET vNext 初步总结(使用Visual Studio 2014 CTP1)
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 Note of the Paper "Optimal Decoding of Linear Codes for Minimizing Symbol Error Rate"(1)
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
学习IOS开问题篇--类中的成员变量如果不实例化是什么情况
@interface Person : NSObject@property (noatonmic,copy) NSString * name;@end一个person类,name是person得成员变量如果在一个类中写入person为成员变量self.person.name = @"zhangsan...
分类:移动开发   时间:2014-06-11 07:28:01    阅读次数:294
LeetCode: Pascal's Triangle II [119]
【题目】 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入门
TinyXML中主要class的类图: 文档类代表一个XML文档,通过它,你可以载入、输出和保存文档。 载入文档: TiXmlDocument doc("note.xml"); doc.LoadFile(); 输出文档: TiXmlDocument doc("note.xml"); doc.LoadFile(); doc.Print();...
分类:其他好文   时间:2014-06-08 15:16:22    阅读次数:717
[Android]Java4android教程
Note: 学习方法固然重要,但更重要的是选择更好的学习方法,学习材料!背景介绍:01 Java考古学02 Java创世纪03 Java基本概念104 Java的变量05 Java的基本数据模型
分类:移动开发   时间:2014-06-08 07:12:19    阅读次数:185
【LeetCode】Single Number (2 solutions)
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
leetcode--Minimum Path Sum
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!