This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From library | |
typedef void (*Callback) ( int nEvent, const char* sMessage ); | |
void SetCallback( Callback * cbk ); | |
// My code | |
void MyCallback(int nEvent, const char* sMessage) { | |
// .... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error: comparison of Fixnum with String failed | |
Please report this bug: | |
https://github.com/mxcl/homebrew/wiki/troubleshooting | |
/usr/local/Library/Homebrew/formula.rb:215:in `>=' | |
/usr/local/Library/Homebrew/formula.rb:215:in `fails_with?' | |
/usr/local/Library/Homebrew/requirements/python_dependency.rb:204:in `any?' | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/set.rb:195:in `each' | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/set.rb:195:in `each_key' | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/set.rb:195:in `each' | |
/usr/local/Library/Homebrew/formula.rb:214:in `any?' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%!PS-Adobe-3.0 EPSF-3.0 | |
%%Creator: hart[dev] Takuzu Generator | |
%%Title: Takuzu Title | |
%%CreationDate: 4/12/90 3:20 AM | |
%%BoundingBox: -0.5 -0.5 256.5 256.5 | |
%%EndComments | |
% Modifiable variables | |
/linewidth 1 def |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== Xamarin Studio === | |
Version 4.0.9 (build 12) | |
Installation UUID: 611c8ffe-1664-4b4e-acac-29a56d6f8404 | |
Runtime: | |
Mono 2.10.12 (mono-2-10/c9b270d) | |
GTK 2.24.16 | |
GTK# (2.12.0.0) | |
Package version: 210120000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GenerationEntry : INotifyPropertyChanged | |
{ | |
private int quantity; | |
private int size; | |
private Level level; | |
public event PropertyChangedEventHandler PropertyChanged; | |
public GenerationEntry() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Scanning for projects... | |
[INFO] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building gengo 1.0 | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD FAILURE | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 0.300s | |
[INFO] Finished at: Fri Jul 05 00:47:44 CEST 2013 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'SDURLCache' | |
s.version = '1.2' | |
s.summary = 'URLCache subclass with on-disk cache support on iPhone/iPad.' | |
s.homepage = 'https://github.com/rs/SDURLCache' | |
s.author = 'Olivier Poitrey' | |
s.source = { :git => 'https://github.com/steipete/SDURLCache.git' } | |
s.requires_arc = true | |
s.source_files = 'SDURLCache.h', 'SDURLCache.m' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'cocos2d' | |
s.license = 'MIT' | |
s.version = '2.0.0' | |
s.summary = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications.' | |
s.description = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications for iPod Touch, iPhone, iPad and Mac. It is based on the cocos2d design but instead of using python it, uses objective-c.' | |
s.homepage = 'http://www.cocos2d-iphone.org' | |
s.author = { 'Ricardo Quesada' => '[email protected]', 'Zynga Inc.' => 'https://zynga.com/' } | |
s.source = {:git => 'https://github.com/cocos2d/cocos2d-iphone.git', :tag => 'release-2.0'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'cocos2d' | |
s.license = { :type => 'MIT', :file => 'LICENSE_cocos2d.txt' } | |
s.version = '1.1.rc0' | |
s.summary = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications.' | |
s.description = 'cocos2d for iPhone is a framework for building 2D games, demos, and other graphical/interactive applications for iPod Touch, iPhone, iPad and Mac. It is based on the cocos2d design but instead of using python it, uses objective-c.' | |
s.homepage = 'http://www.cocos2d-iphone.org' | |
s.author = { 'Ricardo Quesada' => '[email protected]', 'Zynga Inc.' => 'https://zynga.com/' } | |
s.source = {:git => 'https://github.com/cocos2d/cocos2d-iphone.git', :commit => '7ee5b9abf645c32379a45317986a308204277bb1'} | |
s.preferred_dependency = 'cocos2d' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "HDAppDelegate.h" | |
#import "HDViewController.h" | |
@interface HDAppDelegate () | |
@property (nonatomic, strong) HDViewController* viewController; | |
@end |