Skip to content

Instantly share code, notes, and snippets.

View coreycollins's full-sized avatar

Corey Collins coreycollins

  • CompanyCam
  • Lincoln, NE
View GitHub Profile
@coreycollins
coreycollins / spacy_intro.ipynb
Created February 21, 2018 20:10 — forked from aparrish/spacy_intro.ipynb
NLP Concepts with spaCy. Code examples released under CC0 https://creativecommons.org/choose/zero/, other text released under CC BY 4.0 https://creativecommons.org/licenses/by/4.0/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
oauth_client = OAuth::AccessToken.new($qb_oauth_consumer, qb[:token], qb[:secret])
#Create New Job/Customer
job_service = Quickeebooks::Windows::Service::Job.new
job_service.access_token = oauth_client
job_service.realm_id = qb[:realm_id]
qb_job = Quickeebooks::Windows::Model::Job.new
qb_job.name = job.id
qb_job.type_of = 'Organization'
@coreycollins
coreycollins / add_account.rb
Created April 15, 2013 18:51
Navigator Quickbooks Intergration /w Quickeebooks
if qb
oauth_client = OAuth::AccessToken.new($qb_oauth_consumer, qb[:token], qb[:secret])
#Setup Job Service
customer_service = Quickeebooks::Windows::Service::Customer.new
customer_service.access_token = oauth_client
customer_service.realm_id = qb[:realm_id]
#Create New Job/Customer
qb_customer = Quickeebooks::Windows::Model::Customer.new
@coreycollins
coreycollins / autoprovision.rb
Created October 12, 2011 15:15
iTunes Connect Auto Distribution Profile Creator
require 'csv'
require 'watir-webdriver'
require 'fileutils'
require 'net/http'
####### USAGE #######
#
# ruby autoprovison.rb ids.txt
#
#####################