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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'fileutils' | |
require 'colorize' | |
puts `brew install tree` | |
puts `gem install colorize` | |
puts 'What are the names of the contributers?' |
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://jacopretorius.net/2014/02/all-rails-db-rake-tasks-and-what-they-do.html | |
http://guides.rubyonrails.org/active_record_basics.html | |
# many to many | |
class CreateEmployeesProjects < ActiveRecord::Migration | |
def change | |
create_table(:employees_projects) , id: false do |t| | |
t.column(:employee_id, :integer) | |
t.column(:project_id, :integer) |
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
function Player (mark) { | |
this.mark = mark | |
}; | |
function Space (x,y) { | |
this.coordinates = [x,y] | |
this.markedBy = undefined | |
}; | |
Space.prototype.marked = function(player) { |
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://www.fse.guru/how-do-i-learn-functional-programming-in-javascript-linkpost |
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://news.ycombinator.com/item?id=13889155 | |
7 git rules: | |
1. Separate subject from body with a blank line | |
2. Limit the subject line to 50 characters | |
3. Capitalize the subject line | |
4. Do not end the subject line with a period | |
5. Use the imperative mood in the subject line | |
6. Wrap the body at 72 characters |
OlderNewer