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
Process: Chocolat [63646] | |
Path: /Applications/Chocolat.app/Contents/MacOS/Chocolat | |
Identifier: Chocolat | |
Version: ??? (???) | |
Code Type: X86 (Native) | |
Parent Process: Chocolat [63636] | |
Date/Time: 2011-11-27 15:38:20.656 -0700 | |
OS Version: Mac OS X 10.6.8 (10K549) | |
Report Version: 6 |
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
Camping.goes :Site | |
module Site::Controllers | |
class Index < R '/' | |
def get | |
"<p>Hello, world.</p><p><a href='/about'>About me.</a></p>" | |
end | |
end | |
class About < R '/about' |
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
class ClassName < InheritsFromModule::Class | |
@greeting = 'hay' # ivar | |
:name = 'colby' # symbol, used extensively in Rails | |
def greet | |
puts @greeting + ' ' + :name | |
end | |
end |
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
class Eva < Zebra | |
include MongoMapper::Document | |
include Vegan::Powers | |
include MongoMapperExt::Taggable | |
include MongoMapper::Tweetable | |
## Keys | |
key :scarves_count, Integer, :default => 20 | |
key :compliments_count, Integer, :default => 100 | |
key :hivemind_response_count, Integer, :default => 500 |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "precise64" |
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
{ | |
"color_scheme": "Packages/Theme - Aqua/Color Schemes/Espresso Aqua.tmTheme", | |
"font_size": 12.0, | |
"theme": "Soda Light.sublime-theme", | |
"file_exclude_patterns": [".gitignore", "*.pyc"] | |
} |
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
Minecraft has crashed! | |
---------------------- | |
Minecraft has stopped running because it encountered a problem; Unexpected error | |
A full error report has been saved to /Users/rockets/Library/Application Support/minecraft/crash-reports/crash-2013-06-03_15.15.35-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash :( | |
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
[remote "all"] | |
url = [email protected]:reponame.git | |
url = https://github.com/colbyl/reponame.git |
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
/* | |
* Rdio.h | |
*/ | |
#import <AppKit/AppKit.h> | |
#import <ScriptingBridge/ScriptingBridge.h> | |
@class RdioApplication, RdioTrack, RdioApplication; |
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
var times = 100; | |
for (var i = 0;i < times; i++) { | |
if (i % 3 == 0) { | |
console.log("foo"); | |
} else if (i % 5 == 0) { | |
console.log("bar"); | |
} else if (i % 3 == 0 && i % 5 == 0) { | |
console.log("baz"); | |
} | |
} |
OlderNewer