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
github.com/stretchr/testify/assert,5086 | |
github.com/gorilla/mux,4568 | |
github.com/Sirupsen/logrus,3695 | |
github.com/gorilla/context,3438 | |
github.com/golang/protobuf/proto,3421 | |
github.com/codegangsta/cli,3103 | |
github.com/mattn/go-sqlite3,2522 | |
github.com/go-sql-driver/mysql,2436 | |
github.com/BurntSushi/toml,2343 | |
github.com/aws/aws-sdk-go/aws,2211 |
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
Thread 1, Queue : com.apple.main-thread | |
#0 0x0000000100462ff0 in mailcore::IMAPFetchFoldersOperation::setDelimiterDataOnMainThread(char*) at /Users/dkb/Dev/mailcore2/src/async/imap/MCIMAPFetchFoldersOperation.cc:64 | |
#1 0x000000010043bbda in performOnMainThread(void*) at /Users/dkb/Dev/mailcore2/src/core/basetypes/MCObject.cc:155 | |
#2 0x000000010044492b in -[LEPPPMainThreadCaller call] at /Users/dkb/Dev/mailcore2/src/core/basetypes/MCMainThread.mm:47 | |
#3 0x00007fff866f41d0 in __NSThreadPerformPerform () | |
#4 0x00007fff8cea6701 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ () | |
#5 0x00007fff8cea5fd2 in __CFRunLoopDoSources0 () | |
#6 0x00007fff8cec3847 in __CFRunLoopRun () | |
#7 0x00007fff8cec2fc3 in CFRunLoopRunSpecific () | |
#8 0x00007fff84672b11 in RunCurrentEventLoopInMode () |
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 = 'CorePlot' | |
s.version = '1.1' | |
s.license = 'BSD' | |
s.summary = 'Cocoa plotting framework for Mac OS X and iOS.' | |
s.homepage = 'http://code.google.com/p/core-plot/' | |
s.authors = { 'Drew McCormack' => '[email protected]', | |
'Brad Larson' => '[email protected]', | |
'Eric Skroch' => '[email protected]', | |
'Barry Wark' => '[email protected]' } |
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
/** | |
* Module dependencies. | |
*/ | |
var express = require('express') | |
, routes = require('./routes') | |
, http = require('http'); | |
var app = express(); | |
var server = app.listen(3000); |
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
// Replace refToObject in node-inspector's lib/sessions.js file to get rid of the 80 character limit on strings outputted from the console or tool tip. | |
// The Scope Variables panel will still show maximum of 80 characters along with the "(length: x)" suffix | |
function refToObject(ref) { | |
var desc = '', | |
name, | |
kids = ref.properties ? ref.properties.length : false; | |
switch (ref.type) { | |
case 'object': | |
name = /#<an?\s(\w+)>/.exec(ref.text); |