1. add a new branch cd workspace git branch user1/newbranch1 git checkout user1/newbranch1 or git checkout -b user2/newbranch2 2. when user1/newbranch...
分类:
其他好文 时间:
2014-07-16 23:09:50
阅读次数:
164
git tag is used to create labels, usually for version numbers. Format: git tag Example: git tag v0.1 HEAD is to create a version number v0.1 on curren...
分类:
其他好文 时间:
2014-07-10 14:29:01
阅读次数:
213
1、设置tableview返回时取消选中状态- (void)viewWillAppear:(BOOL)animated{ [superviewWillAppear:animated]; [self.tableviewdeselectRowAtIndexPath:self.tableview.in.....
分类:
其他好文 时间:
2014-07-10 13:55:33
阅读次数:
197
//创建并从底部弹出来
- (void)viewDidLoad
{
[super
viewDidLoad];
[self
setupDocumentControllerWithURL:fileURL];
CGRect rect =
CGRectMake(0,
0, ScreenWidth,
ScreenHeight);
// [s...
分类:
其他好文 时间:
2014-06-28 08:34:02
阅读次数:
202
【问题】
Sort a linked list in O(n log n)
time using constant space complexity.
【代码】
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# ...
分类:
编程语言 时间:
2014-06-28 08:29:23
阅读次数:
222
【问题】
Sort a linked list using insertion sort.
【代码】
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Sol...
分类:
编程语言 时间:
2014-06-28 07:55:49
阅读次数:
199
//创建
UIImagePickerController *imagePick = [[UIImagePickerController
alloc]
init];
imagePick.delegate =
self;
imagePick.allowsEditing =
YES;
imagePick.sourceType ...
分类:
其他好文 时间:
2014-06-28 07:49:26
阅读次数:
248
实用场景编号场景1数据库连接2<?php
/**
*PHP设计模式-单例模式
*@authorchengtao3
*/
classSingleton{
privatestatic$Instance=null;
/**
*公共静态方法获取实例
*@returnSingleton
*/
publicfunctiongetInstance(){
if(self::$Instance==null){
self::$Instanc..
分类:
Web程序 时间:
2014-06-28 00:12:03
阅读次数:
228
APP开发学习//添加xib文件到窗口中NSArray *views = [[NSBundle mainBundle]loadNibNamed:@"View" owner:self options:nil];[self.window addSubview:[views lastObject]];//...
分类:
移动开发 时间:
2014-06-27 22:34:23
阅读次数:
320
又被抽去做了一段时间的Fitnesse用例的编写,现在case写了几个星期,有点收获,最近会一起整理出来。SetUp这个页面主要被我用来做环境变量的设置了。环境变量的设置:!note这一部分用来在写测试步骤里包含,来定义用户场景。!note比如!note1,用户一($USERNAME_A)注册帐户,密码..
分类:
其他好文 时间:
2014-06-27 06:00:15
阅读次数:
163