Skip to content

Instantly share code, notes, and snippets.

@Chadh13
Chadh13 / Some Complexities Surrounding Provider Reviews.md
Last active July 21, 2016 19:19
Some Complexities Surrounding Provider Reviews

In response to: https://dfwstartupcommunity.slack.com/archives/testing-feedback/p1468805613000002

It always is, a difficult problem to approach for sure.

Some of the complexities are in the pretext and fluidity of the relationships. Person A who has previous technology product experience or product management experience is going to have a much different experience with Provider A than Person B who is without that experience has.

A bit of set up for some (most likely contrived) context:

Person A - Business Founder who has previous technology product, product management or engineering (of any kind) experience — engineers tend innately understand complexity and dependencies. Person B - Business Founder who has no previous technology development experience

class Template < ActiveRecord::Base
belongs_to :user
mount_uploader :file, PdfUploader
def create_embedded_template
client = HelloSign::Client.new :api_key => ENV['HELLOSIGN_API_KEY']
request = client.create_embedded_template_draft(
:test_mode => 1,
:client_id => ENV['HELLOSIGN_CLIENT_ID'],
class HellosignController < ApplicationController
skip_before_action :verify_authenticity_token, only: [:callbacks]
def callbacks
respond_to do |format|
format.json { render json: 'Hello API Event Received', status: 200 }
end
end
def create_embedded_template
@Chadh13
Chadh13 / Ruby
Last active August 29, 2015 14:17
### Console
2015-03-20T00:28:31.774387+00:00 app[web.1]: Started GET "/signatures/23" for 67.78.75.162 at 2015-03-20 00:28:31 +0000
2015-03-20T00:28:31.622533+00:00 app[web.1]: Redirected to https://app.gamechangeagency.com/signatures/23
2015-03-20T00:28:31.622606+00:00 app[web.1]: Filter chain halted as :authorize rendered or redirected
2015-03-20T00:28:31.622746+00:00 app[web.1]: Completed 302 Found in 23ms (ActiveRecord: 7.6ms)
2015-03-20T00:28:32.043143+00:00 app[web.1]: Completed 500 Internal Server Error in 266ms
2015-03-20T00:28:32.159142+00:00 app[web.1]: Completed 200 OK in 49ms (Views: 0.2ms | ActiveRecord: 12.5ms)
2015-03-20T00:28:32.263371+00:00 app[web.1]: Rendered layouts/_header.html.erb (23.6ms)
2015-03-20T00:28:32.109978+00:00 app[web.1]: Processing by SignatureRequestsController#create as */*