This file contains hidden or 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
# Use this hook to configure devise mailer, warden hooks and so forth. | |
# Many of these configuration options can be set straight in your model. | |
Devise.setup do |config| | |
config.secret_key = 'dontshowsecret' | |
# ==> Mailer Configuration | |
# Configure the e-mail address which will be shown in Devise::Mailer, | |
# note that it will be overwritten if you use your own mailer class with default "from" parameter. | |
config.mailer_sender = "[email protected]" |
This file contains hidden or 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
/* | |
Blink | |
Turns on an LED on for one second, then off for one second, repeatedly. | |
This example code is in the public domain. | |
*/ | |
// Pin 13 has an LED connected on most Arduino boards. | |
// give it a name: | |
int led1 = 8; |
This file contains hidden or 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
Slides | |
https://docs.google.com/presentation/d/1AZiia0edI-BhlsEQHyapj7vZ3eXu6rTrPIAl4HZXgYQ/pub?start=true&loop=true&delayms=3000#slide=id.p | |
Day-Of Instructions | |
https://docs.google.com/document/d/1hbpJ5x4mhvnupjD9NTqkOUiNfQ_AiRP4VLPAA09wc8E/edit | |
Recorded Facilitator Training | |
http://coderetreat.org/video/coderetreat-facilitator-training-2012-11-28 | |
Recorded Intro Example |
This file contains hidden or 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
http://blog.geocortex.com/2007/12/07/slow-visual-studio-performance-solved/ |
This file contains hidden or 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
puts "\r\n a | b | c \r\n---+---+---\r\n d | e | f \r\n---+---+---\r\n g | h | i \r\n\r\n" | |
a | b | c | |
---+---+--- | |
d | e | f | |
---+---+--- | |
g | h | i |
This file contains hidden or 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
Ruby Website | |
http://www.ruby-lang.org | |
http://www.jruby.org | |
http://www.rubyinstaller.org/downloads | |
http://www.rubyinstaller.org/add-ons/devkit | |
http://www.rvm.io | |
http://www.github.com/vertiginous/pik | |
Resources |
This file contains hidden or 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
rundll32.exe user32.dll, LockWorkStation |
This file contains hidden or 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
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/twilight");e.getSession().setMode("ace/mode/javascript");</script> |
This file contains hidden or 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
https://docs.google.com/presentation/pub?id=19WUpckSOMRVyIhKuD9z7x4lYWq5JzF5swZYCVNPjf0I&start=true&loop=true&delayms=1000#slide=id.g17779a8_1_104 |
This file contains hidden or 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
require 'cucumber/rake/task' | |
def run_rake_task(name) | |
begin | |
Rake::Task[name].invoke | |
rescue Exception => e | |
return false | |
end | |
true | |
end |