- Austin: http://www.themakersquare.com/
- Chicago: http://www.starterleague.com/
- Denver: https://www.gschool.it/
- Chicago / NYC / San Francisco: http://devbootcamp.com/
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 'spec_helper' | |
| describe SecretController do | |
| let(:user) { User.create! email: "secret@example.com", | |
| password: "the-secrets", | |
| password_confirmation: "the-secrets" | |
| } | |
| before do | |
| @request.env["devise.mapping"] = Devise.mappings[:user] |
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
| class SecretController < ApplicationController | |
| before_filter :authenticate_user! | |
| def show | |
| end | |
| end |
$client,
As a rule, I don't participate in RFP's. In my experience RFPs lead to clients choosing the least cost, rather than the best creative fix. I know some companies require the process, and I understand that reality.
Best of luck in the process and in the future.
- jesse
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
| #config/initializers/remove-this-sf_bs3_inputs.rb | |
| #Credit: https://github.com/rafaelfranca/simple_form-bootstrap/issues/26#issuecomment-22435894 | |
| inputs = %w[ | |
| CollectionSelectInput | |
| DateTimeInput | |
| FileInput | |
| GroupedCollectionSelectInput | |
| NumericInput |
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
| _ | |
| (_)_ _____ | |
| | \ \ /\ / / _ \ | |
| | |\ V V / (_) | | |
| _/ | \_/\_/ \___/ | |
| |__/ |
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
| class User | |
| attr_reader :first_name, :last_name | |
| def initialize(first_name, last_name) | |
| @firstName = first_name | |
| @lastName = last_name | |
| end | |
| def full_name |
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
| class User | |
| def initialize(first_name, last_name) | |
| @firstName = first_name | |
| @lastName = last_name | |
| end | |
| def full_name | |
| "#{@lastName} #{@firstName}" | |
| end |
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
| class CalculateTheThing | |
| include Celluloid | |
| def calculate | |
| sleep 5 | |
| result = rand | |
| yield(result) if block_given? | |
| result | |
| end | |
| end |
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
| Started GET "/pages/create" for 127.0.0.1 at 2013-05-22 13:15:01 -0500 | |
| Processing by PagesController#create as HTML | |
| About to sleep 2013-05-22 13:15:01 -0500 | |
| Rendered pages/create.html.erb within layouts/application (0.5ms) | |
| Completed 200 OK in 8ms (Views: 5.3ms | ActiveRecord: 0.0ms) | |
| Awake! 2013-05-22 13:15:11 -0500 |