David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said almost 4 years ago on Creating and Reading QR Codes :
  It was a custom solution. I have a gitlab server which hosts the files and this site communicates to the gitlab server via their open API. I basically then list out the files and folders and display whichever file that was clicked on.

David Kimura PRO said almost 4 years ago on Booking System :
   Pretty interesting idea. Something similar to what Calendly does I assume? The last bit, I'm not sure I understand what you mean by consolidate their appointment.
If Possible Users will be required to pay a small account of money to consolidate their appointment

David Kimura PRO said almost 4 years ago on Payment Gateway Basics with Stripe :
  Can you drill into the Starter plan, there should be an ID in there which is what you need to use within your code.

David Kimura PRO said almost 4 years ago on Payment Gateway Basics with Stripe :
Stripe::Plan.create(
  { 
    product: { 
      name: 'Pro',               
      id: 'pro'
    }, 
    id: 'pro',
    interval: 'month', 
    currency: 'usd', 
    amount: 1500
  }
)

This is what I use to create the Product/Plan

David Kimura PRO said almost 4 years ago on Payment Gateway Basics with Stripe :
what happens when you call customer.save after you set the customer.default_source?