码迷,mamicode.com
首页 >  
搜索关键字:note to self    ( 21530个结果
11gR2 dataguard 备库文件损坏处理一例
原文链接:11gR2 dataguard 备库文件损坏处理一例   某客户的一套11gR2 dataguard环境出现异常,检查发现是备库出现文件损坏,且无法正常情况,已经超过1个多月没同步了。 我们先来看下备库的日志: .......省略部分内容 See Note 411.1 at My Oracle Support for error and packaging details. S...
分类:其他好文   时间:2014-06-07 01:25:07    阅读次数:217
程序员初学机器学习算法
英文原文:4 Self-Study Machine Learning Projects   学习机器学习有很多方法,大多数人选择从理论开始。   如果你是个程序员,那么你已经掌握了把问题拆分成相应组成部分及设计小项目原型的能力,这些能力能帮助你学习新的技术、类库和方法。这些对任何一个职业程序员来说都是重要的能力,现在它们也能用在初学机器学习上。   要想有效地学习机器学习你必须学习相关理论,...
分类:其他好文   时间:2014-06-05 11:44:35    阅读次数:208
LeetCode: Combinations [077]
【题目】 Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). For example, S = "ADOBECODEBANC" T = "ABC" Minimum window is "BANC". Note: If there is no such window in S that covers ...
分类:其他好文   时间:2014-06-05 11:14:26    阅读次数:255
python无私有成员变量
python解释器将__init__函数里的__z变量转成 _classname__z了,明白规则后外部依然可以通过实力对象来访问。 In [1]: class aa: ...: def __init__(self): ...: self.x = 10 ...: self.y = 11 ...: self.__z =...
分类:编程语言   时间:2014-06-05 10:25:10    阅读次数:346
LeetCode: Minimum Window Substring [076]
【题目】 Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). For example, S = "ADOBECODEBANC" T = "ABC" Minimum window is "BANC". Note: If there is no such window in S that covers ...
分类:Windows程序   时间:2014-06-05 10:03:07    阅读次数:473
精灵的移动效果,旋转效果
移动: -(void) touchBegan:(UITouch *)touch withEvent:(UIEvent *)event { CGPoint touchLoc = [touch locationInNode:self]; // Log touch location CCLOG(@"Moved sprite to @ %@",NSStringFromCGPo...
分类:移动开发   时间:2014-06-05 08:30:44    阅读次数:352
iOS开发- OpenGL ES屏幕截图
之前写过一个常规的屏幕截图:http://blog.csdn.net/hitwhylz/article/details/17189351但是发现这个办法对于OpenGL 无用。  获取到的数据为空。所以这里介绍下OpenGL ES屏幕截图。1.初始化。CAEAGLLayer *eaglLayer = (CAEAGLLayer *) self.layer; eaglLayer.drawableP...
分类:移动开发   时间:2014-06-05 07:53:33    阅读次数:329
定时器在多线程中的使用
在多线程中使用定时器必须开启Runloop,因为只有开启Runloop保持现成为活动状态,才能保持定时器不断执行- (void)viewDidLoad{ [super viewDidLoad]; [self performSelectorInBackground:@selecto...
分类:编程语言   时间:2014-05-31 16:59:33    阅读次数:285
UIView的autoresizingMask属性的使用
在iOS应用的开发过程中,经常会使用,setFrame的方式对UIView进行布局,经常会使用计算的方式,如self.view.bounds.size.height - 20-44- Heignt等来计算Y的相对位置我们知道上边的数字 20是status bar的高度,44是navigationBa...
分类:其他好文   时间:2014-05-31 15:09:59    阅读次数:231
Aizu 1335 Equal Sum Sets
DescriptionLet us consider sets of positive integers less than or equal ton. Note that all elements of a set are different. Also note that the order o...
分类:其他好文   时间:2014-05-31 05:12:49    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!