create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| Copyright (c) 2010 Luke Redpath | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in |
| Class Main { | |
| public void bfs() | |
| { | |
| // BFS uses Queue data structure | |
| Queue queue = new LinkedList(); | |
| queue.add(this.rootNode); | |
| printNode(this.rootNode); | |
| rootNode.visited = true; | |
| while(!queue.isEmpty()) { | |
| Node node = (Node)queue.remove(); |
| From: http://snipt.net/yonishin/about-xcode-4-project-template | |
| XCode 4 Projects and Files Template Folder: /Developer/Library/Xcode/Templates | |
| Examples: | |
| /Developer/Library/Xcode/Templates/Project Templates/Base/Other/Empty.xctemplate | |
| /Developer/Library/Xcode/Templates/Project Templates/Base/Base.xctemplate | |
| /Developer/Library/Xcode/Templates/Project Templates/Mac/Mac Base.xctemplate | |
| /Developer/Library/Xcode/Templates/Project Templates/Mac/Application/Command Line Tool.xctemplate | |
| /Developer/Library/Xcode/Templates/Project Templates/Mac/Application/Cocoa Application.xctemplate |
| [schwa@ungoliant] ~$ export OBJC_HELP=1 | |
| [schwa@ungoliant] ~$ /Applications/Safari.app/Contents/MacOS/Safari | |
| objc[10559]: Objective-C runtime debugging. Set variable=YES to enable. | |
| objc[10559]: OBJC_HELP: describe available environment variables | |
| objc[10559]: OBJC_PRINT_OPTIONS: list which options are set | |
| objc[10559]: OBJC_PRINT_IMAGES: log image and library names as they are loaded | |
| objc[10559]: OBJC_PRINT_LOAD_METHODS: log calls to class and category +load methods | |
| objc[10559]: OBJC_PRINT_INITIALIZE_METHODS: log calls to class +initialize methods | |
| objc[10559]: OBJC_PRINT_RESOLVED_METHODS: log methods created by +resolveClassMethod: and +resolveInstanceMethod: | |
| objc[10559]: OBJC_PRINT_CLASS_SETUP: log progress of class and category setup |
| // | |
| // UIDeviceHardware.h | |
| // | |
| // Used to determine EXACT version of device software is running on. | |
| #import <Foundation/Foundation.h> | |
| @interface UIDeviceHardware : NSObject | |
| - (NSString *) platform; |
| // | |
| // TransitionController.h | |
| // | |
| // Created by XJones on 11/25/11. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface TransitionController : UIViewController |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| #!/usr/bin/python | |
| # fix-xcode | |
| # Rob Napier <[email protected]> | |
| # Script to link in all your old SDKs every time you upgrade Xcode | |
| # Create a directory called /SDKs (or modify source_path). | |
| # Under it, put all the platform directories: | |
| # MacOSX.platform iPhoneOS.platform iPhoneSimulator.platform | |
| # Under those, store the SDKs: |
| - (UIViewController *)topViewController{ | |
| return [self topViewController:[UIApplication sharedApplication].keyWindow.rootViewController]; | |
| } | |
| - (UIViewController *)topViewController:(UIViewController *)rootViewController | |
| { | |
| if (rootViewController.presentedViewController == nil) { | |
| return rootViewController; | |
| } | |