Skip to content

Instantly share code, notes, and snippets.

View mmower's full-sized avatar
💭
Writing code

Matt Mower mmower

💭
Writing code
View GitHub Profile
Building target “Elysium” of project “Elysium” with configuration “Debug” — (1 error)
cd /Users/matt/Projects/LucidMac/Elysium
/Developer/usr/bin/gcc-4.0 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk -L/Users/matt/Projects/LucidMac/Elysium/build/Debug -F/Users/matt/Projects/LucidMac/Elysium/build/Debug -F/Users/matt/Projects/LucidMac/Elysium -F/Users/matt/Projects/LucidMac/Elysium/../Honeycomb/build/Release -F/Users/matt/Projects/LucidMac/Elysium/build/Debug -filelist /Users/matt/Projects/LucidMac/Elysium/build/Elysium.build/Debug/Elysium.build/Objects-normal/i386/Elysium.LinkFileList -mmacosx-version-min=10.5 /Users/matt/Projects/LucidMac/Honeycomb/build/Debug/HoneycombView.framework/HoneycombView -framework PYMIDI -framework Cocoa -framework CoreMIDI -framework Sparkle -framework CoreAudio -framework StackedListView -o /Users/matt/Projects/LucidMac/Elysium/build/Debug/Elysium.app/Contents/MacOS/Elysium
Undefined symbols:
"_LMHoneycombViewDefaultColor", referenced from:
_LMHoneyco
RubyMate r8136 running Ruby r1.8.6 (/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby)
>>> contacts_controller_spec.rb
/Library/Ruby/Gems/1.8/gems/builder-2.1.2/lib/blankslate.rb:84:in `blank_slate_method_added': stack level too deep (SystemStackError)
from /Library/Ruby/Gems/1.8/gems/builder-2.1.2/lib/blankslate.rb:84:in `blank_slate_method_added'
from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/builder.rb:86:in `method_added'
from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/builder.rb:111
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
from /Users/matt/Projects/reeplay.it/reeplay_it/vendor/rails/activerecord/lib/../../activesupport/lib/active_support/core_ext/array/conversions.rb:1
Building target “Elysium” of project “Elysium” with configuration “Debug” — (1 error, 5 warnings)
cd /Users/matt/Projects/LucidMac/Elysium
/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Werror -Wreturn-type -Wswitch -Wunused-variable -isysroot /Developer/SDKs/MacOSX10.5.sdk -mfix-and-continue -fobjc-gc-only -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/matt/Projects/LucidMac/Elysium/build/Elysium.build/Debug/Elysium.build/Elysium-generated-files.hmap -I/Users/matt/Projects/LucidMac/Elysium/build/Elysium.build/Debug/Elysium.build/Elysium-own-target-headers.hmap -I/Users/matt/Projects/LucidMac/Elysium/build/Elysium.build/Debug/Elysium.build/Elysium-all-target-headers.hmap -iquote /Users/matt/Projects/LucidMac/Elysium/build/Elysium.build/Debug/Elysium.build/Elysium-project-headers.hmap -Wall -F/Users/matt/Projects/LucidMac/Elysium/build/Debug -F/Users/matt/Projects/LucidMac/Elysium -F/Users/matt/Projects/Luc
@implementation A
- (id)initWithX:(id)x {
if( self = [self init] ) {
// do with x
}
return self;
}
@end
# Used to modify the relationship tags applied to the specified contact
#
# PUT /users/bob/contacts/alice/tags?friend=t&family=f
#
# Sets the tags on the relationship that 'bob' has with 'alice' to be 'friend' and not 'family'
#
def tags
@contact = user.contacts.with_login( params[:id] )
@relationship = user.relationships.with( @contact )
@relationship.set( tags_from_params( params ) )
@mmower
mmower / gist:11041
Created September 16, 2008 15:04 — forked from wilson/gist:11036
# Used to modify the relationship tags applied to the specified contact
#
# PUT /users/bob/contacts/alice/tags?friend=t&family=f
#
# Sets the tags on the relationship that 'bob' has with 'alice' to be 'friend' and not 'family'
#
def tags
@contact = user.contacts.with_login( params[:id] )
@relationship = user.relationships.with( @contact )
@relationship.set( tags_from_params( params ) )
=== BUILDING AGGREGATE TARGET All OF PROJECT JavaScriptCore WITH THE DEFAULT CONFIGURATION (Production) ===
Checking Dependencies...
** BUILD FAILED **
The following build commands failed:
JavaScriptCore:
CompileC build/JavaScriptCore.build/Production/JavaScriptCore.build/Objects-normal/i386/AllInOneFile.o /Users/matt/Projects/Cocoa/3rdParty/WebKit/JavaScriptCore/kjs/AllInOneFile.cpp normal i386 c++ com.apple.compilers.gcc.4_0
CompileC build/JavaScriptCore.build/Production/JavaScriptCore.build/Objects-normal/i386/ProfileGenerator.o /Users/matt/Projects/Cocoa/3rdParty/WebKit/JavaScriptCore/profiler/ProfileGenerator.cpp normal i386 c++ com.apple.compilers.gcc.4_0
CompileC build/JavaScriptCore.build/Production/JavaScriptCore.build/Objects-debug/i386/AllInOneFile.o /Users/matt/Projects/Cocoa/3rdParty/WebKit/JavaScriptCore/kjs/AllInOneFile.cpp debug i386 c++ com.apple.compilers.gcc.4_0
- (void)setNoteTool:(ELBeatTool *)_noteTool_ {
[self removeTool:(ELTool *)noteTool];
noteTool = _noteTool_;
[self addTool:noteTool]; **BOOM**
}
- (void)addTool:(ELTool *)_tool_ {
if( _tool_ ) {
[tools addObject:_tool_];
[_tool_ addedToLayer:layer atPosition:self];
- (float)generateWithT:(float)_t_ {
if( !evalFunction ) {
evalFunction = NSSelectorFromString( [NSString stringWithFormat:@"generate%@WithT:", function] );
NSAssert1( evalFunction, @"Unable to obtain SEL for filter function! (%@)", function );
}
// objc_msgSend_fpret( self, evalFunction );
// return 0.0;
nodes = [_representation_ nodesForXPath:@"cells/cell" error:nil];
for( NSXMLNode *node in nodes ) {
NSXMLElement *element = (NSXMLElement *)node;
NSXMLNode *attributeNode;
attributeNode = [element attributeForName:@"col"];
int col = [[attributeNode stringValue] intValue];
attributeNode = [element attributeForName:@"row"];
int row = [[attributeNode stringValue] intValue];