#Cursor movement
h - move left
j - move down
k - move up
l - move right
ctrl-b - page up
ctrl-f - page down
% - jump to matching brace
w - jump by start of words (punctuation considered words)
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 |
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 |
http://blog.geocortex.com/2007/12/07/slow-visual-studio-performance-solved/ |
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 |
/* | |
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; |
# 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]" |
// PIN 1 is light bar power | |
// PIN 2 is red light on light bar | |
// PIN 3 is white driver side light | |
// PIN 4 is white passenger side light | |
// PIN 5 is blue light on light bar | |
// PIN 6 is marker lights | |
int led1 = 8; | |
int led2 = 9; | |
int led3 = 10; | |
int led4 = 11; |
curl http://198.45.124.159/job/CSA_Report_Analytics_Tool/api/json | python -mjson.tool |
<script> | |
var app = angular.module('myApp', []); | |
var myController = app.controller('myController', ['$scope', function ($scope, $timeout) {}]); | |
myController.directive('chosen', function(){ | |
var linker = function(scope, element, attrs, ngModel) { | |
var model = attrs['ngModel']; | |
scope.$watch(model, function () { |
#Cursor movement
h - move left
j - move down
k - move up
l - move right
ctrl-b - page up
ctrl-f - page down
% - jump to matching brace
w - jump by start of words (punctuation considered words)