hiringthing_api 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ lib/dev_load.rb
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
@@ -0,0 +1,8 @@
1
+ The MIT License (MIT)
2
+ Copyright (c) 2012 HiringThing, LLC.
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,127 @@
1
+ ### HiringThing API gem
2
+
3
+ This gem allows you to access your [HiringThing](http://www.hiringthing.com) account via the HiringThing [API](http://www.hiringthing.com/api/index.html).
4
+
5
+ This is the READ_ONLY version. For write access, please contact [support@hiringthing.com](mailto:support@hiringthing.com)
6
+
7
+ ### Installation
8
+ This is a rubygem based on ActiveResource, and designed for Ruby 1.9.3 and greater. Install with this command:
9
+
10
+ ``` bash
11
+ $ gem install hiringthing_api
12
+ ```
13
+
14
+ ### Configuration
15
+
16
+ For ruby projects, require the gem:
17
+
18
+ ``` ruby
19
+ require 'hiringthing_api'
20
+ ```
21
+
22
+ In rails, you can include in your Gemfile:
23
+
24
+ ``` ruby
25
+ gem 'hiringthing_api'
26
+ ```
27
+
28
+ Once you've obtained an api_key and password from your HiringThing account, you can set up the gem as follows:
29
+
30
+ ``` ruby
31
+ HiringThing.configure do |h|
32
+ h.api_key = "key"
33
+ h.api_password = "pass"
34
+ h.subdomain = "yoururl" # from http://yoururl.hiringthing.com
35
+ end
36
+ ```
37
+
38
+ If you're using Rails, this should go in a new file called RAILS_ROOT/config/initializers/hiringthing.rb.
39
+
40
+ Be sure that your api is enabled in the "Account Details" section of your HiringThing account.
41
+
42
+ ### Usage
43
+
44
+ ``` ruby
45
+ # get all your jobs
46
+ myjobs = HiringThing::Jobs.all
47
+
48
+ # get a specific job
49
+ myjob = HiringThing::Jobs.find(111)
50
+
51
+ # get active jobs
52
+ myjobs = HiringThing::Jobs.active
53
+
54
+ # get hidden jobs
55
+ myjobs = HiringThing::Jobs.hidden
56
+
57
+ # get archived jobs
58
+ myjobs = HiringThing::Jobs.archived
59
+
60
+ # access applications on a specific job
61
+ myjob = HiringThing::Jobs.find(111)
62
+ myjob.applications.all
63
+
64
+ # get all applications with no rating for this job
65
+ myjob.applications.unrated
66
+
67
+ # get all applications with a rating for this job
68
+ myjob.applications.rated
69
+
70
+ # get all archived applications for this job
71
+ myjob.applications.archived
72
+
73
+ # get a specific application
74
+ myjob = HiringThing::Applications.find(111)
75
+
76
+ # get all applications
77
+ myapplications = HiringThing::Applications.all
78
+
79
+ # get all applications with a rating
80
+ myapplications = HiringThing::Applications.rated
81
+
82
+ # get all applications with no rating
83
+ myapplications = HiringThing::Applications.unrated
84
+
85
+ # get all archived applications
86
+ myapplications = HiringThing::Applications.archived
87
+ ```
88
+
89
+ Application objects have the following attributes:
90
+
91
+ ``` ruby
92
+ # Application objects
93
+
94
+ myapplication.id # app id
95
+ myapplication.job # job title
96
+ myapplication.job_id
97
+ myapplication.status
98
+ myapplication.first_name
99
+ myapplication.last_name
100
+ myapplication.phone
101
+ myapplication.email
102
+ myapplication.rating
103
+ myapplication.applied_at
104
+ myapplication.source # where the applicant came from
105
+ myapplication.archived # 1 for archived, 0 for active
106
+ ```
107
+
108
+ Job objects have these attributes:
109
+
110
+ ``` ruby
111
+ # Job objects
112
+
113
+ myjob.id # job id
114
+ myjob.company # company name
115
+ myjob.job_code
116
+ myjob.title
117
+ myjob.abstract
118
+ myjob.description
119
+ myjob.city
120
+ myjob.state
121
+ myjob.country
122
+ myjob.archived # 1 for archived, 0 for active
123
+ myjob.url # short url
124
+ myjob.created_at
125
+ ```
126
+
127
+ [More documentation](http://www.hiringthing.com/api/index.html) is available on the [HiringThing website](http://www.hiringthing.com).
Binary file
@@ -0,0 +1,15 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'hiringthing_api'
3
+ s.version = '1.0.0'
4
+ s.date = '2012-08-08'
5
+ s.summary = "HiringThing API access gem"
6
+ s.description = "Allows easy access to the HiringThing API"
7
+ s.authors = ["Joshua Siler"]
8
+ s.email = 'support@hiringthing.com'
9
+ s.files = `git ls-files`.split("\n")
10
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
11
+ s.require_paths = %w[lib]
12
+ s.homepage = 'http://www.hiringthing.com'
13
+ s.required_ruby_version = '>= 1.9.3'
14
+ s.add_runtime_dependency('activeresource', '>= 2.3.5')
15
+ end
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'active_resource'
3
+
4
+ module HiringThing
5
+ require 'hiringthing_api/config.rb'
6
+ require 'hiringthing_api/resources/resource.rb'
7
+ require 'hiringthing_api/resources/jobs.rb'
8
+ require 'hiringthing_api/resources/applications.rb'
9
+ end
@@ -0,0 +1,17 @@
1
+ module HiringThing
2
+ class << self
3
+ attr_accessor :subdomain, :api_key, :api_password, :site, :timeout, :dev_target
4
+
5
+ def configure
6
+ yield self
7
+
8
+ Resource.user = api_key
9
+ Resource.password = api_password
10
+ Resource.timeout = timeout unless (timeout.blank?)
11
+
12
+ self.site ||= (dev_target || "https://#{subdomain}.hiringthing.com/remote/")
13
+
14
+ Resource.site = site
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ module HiringThing
2
+ class Applications < Resource
3
+
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ module HiringThing
2
+ class Jobs < Resource
3
+
4
+ class Applications < Resource
5
+ self.prefix = "/remote/jobs/:job_id/"
6
+ end
7
+
8
+ def applications(params = {})
9
+ # get my applications
10
+ params.merge!({:job_id => self.id})
11
+ Applications.prefix = "/remote/jobs/#{ self.id.to_s }/"
12
+ Applications
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,17 @@
1
+ module HiringThing
2
+ class Resource < ActiveResource::Base
3
+ self.format = :json
4
+
5
+ def self.element_name
6
+ name.split(/::/).last.underscore
7
+ end
8
+
9
+ def self.method_missing(method, *args, &block)
10
+ if(["active", "hidden", "archived", "rated","unrated"].include?(method.to_s))
11
+ self.find(:all, :from => method.to_sym)
12
+ else
13
+ super
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,38 @@
1
+ require 'spec_helper'
2
+
3
+ describe HiringThing::Jobs do
4
+
5
+ it "finds all applications" do
6
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/applications.json", :body => File.open("./spec/json/applications.json").read)
7
+ apps = HiringThing::Applications.all
8
+ apps.count.should == 28
9
+ apps[0].email.should == "14275@hiringthing.com"
10
+ apps[0].job_id.should == 294
11
+ end
12
+
13
+ it "finds archived applications" do
14
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/applications/archived.json", :body => File.open("./spec/json/archived.json").read)
15
+ apps = HiringThing::Applications.archived
16
+ apps.count.should == 10
17
+ apps[0].email.should == "14291@hiringthing.com"
18
+ apps[0].job_id.should == 294
19
+ end
20
+
21
+ it "finds rated applications" do
22
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/applications/rated.json", :body => File.open("./spec/json/rated.json").read)
23
+ apps = HiringThing::Applications.rated
24
+ apps.count.should == 3
25
+ apps[0].email.should == "14336@hiringthing.com"
26
+ apps[0].job_id.should == 294
27
+ end
28
+
29
+ it "finds unrated applications" do
30
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/applications/unrated.json", :body => File.open("./spec/json/unrated.json").read)
31
+ apps = HiringThing::Applications.unrated
32
+ apps.count.should == 15
33
+ apps[0].email.should == "14275@hiringthing.com"
34
+ apps[0].job_id.should == 294
35
+ end
36
+
37
+
38
+ end
@@ -0,0 +1,45 @@
1
+ require 'spec_helper'
2
+
3
+ describe HiringThing::Jobs do
4
+
5
+ it "finds all jobs" do
6
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs.json", :body => File.open("./spec/json/all_jobs.json").read)
7
+ jobs = HiringThing::Jobs.all
8
+ jobs.count.should == 5
9
+ jobs[0].title.should == "Account Executive"
10
+ jobs[1].id.should == 339
11
+ end
12
+
13
+ it "finds hidden jobs" do
14
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs/hidden.json", :body => File.open("./spec/json/hidden_jobs.json").read)
15
+ jobs = HiringThing::Jobs.hidden
16
+ jobs.count.should == 2
17
+ jobs[0].title.should == "Account Executive"
18
+ jobs[1].id.should == 357
19
+ end
20
+
21
+ it "finds archived jobs" do
22
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs/archived.json", :body => File.open("./spec/json/archived_jobs.json").read)
23
+ jobs = HiringThing::Jobs.archived
24
+ jobs.count.should == 1
25
+ jobs[0].title.should == "Web Developer"
26
+ jobs[0].id.should == 339
27
+ end
28
+
29
+ it "finds active jobs" do
30
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs/active.json", :body => File.open("./spec/json/active_jobs.json").read)
31
+ jobs = HiringThing::Jobs.active
32
+ jobs.count.should == 4
33
+ end
34
+
35
+ it "finds applications for a job" do
36
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs/339.json", :body => File.open("./spec/json/job_339.json").read)
37
+ job = HiringThing::Jobs.find(339)
38
+ job.title.should == "Web Developer"
39
+ FakeWeb.register_uri(:get, "https://key:pass@example.hiringthing.com/remote/jobs/339/applications.json", :body => File.open("./spec/json/job_339_applications.json").read)
40
+ applications = job.applications.all
41
+ applications.count.should == 4
42
+ applications[0].email.should == "15861@hiringthing.com"
43
+ end
44
+
45
+ end
@@ -0,0 +1 @@
1
+ [{"id":294,"company":"Gagdet Co.","job_code":"1121","title":"Account Executive","abstract":"Gadget Co. was established in 1987, and remains one of the largest international widget manufacturers. We have solid career opportunities, and are looking for quality employees that will share in our success.","description":"The Sales Associate will develop sales programs, implement strategies, set targets and prepare an annual budget. This position will report to the Sales Director. In addition, the Sales Associate will provide information about the products and services of the company to it's clients in order to increase the sales of the company, and provide support in developing long-term relationships with the clients. Some other duties of a sales associate are assisting in the development and execution of sales programs, and supporting the technical team by providing the details of requirements of the customers.\r\n\r\nSome of the duties and responsibilities of a sales associate are:\r\n\r\n * Should have full knowledge of customers and product.\r\n\r\n * Keeping the focus on customers planning the sales strategies and setting targets.\r\n\r\n * Directing and coordinating the marketing team with valuable information about the customers and product.\r\n\r\n* Making the product visible in the market through publications, events and networking relations.\r\n\r\n * Providing the management with research inputs, creative solutions and ideas. Developing sales plans and reporting the details of its implementation to the management.\r\n\r\n * Participating in events, trade fairs, campaigns and conferences relating to the product or industry.\r\n\r\n * Estimating customers on quotes quickly and accurately.\r\n\r\n * Providing with leads for follow-up to the senior executives of company.\r\n\r\n * Renew the existing accounts of customers with required details of service or pricing.\r\n\r\n * Working with current clients in finding opportunities for new customers that may have a need for our products\r\n\r\n * Maintain customer database for associated mailings, development, and marketing outreach opportunities\r\n\r\n * Prepare renewal contracts and quotes for existing clients.\r\n\r\n * Working on special projects with the team or as a part of team.\r\n\r\n * Collecting feedback from clients to access possible improvements to existing products and also the need for new products.\r\n\r\n* Provide the management with sales quotes.\r\n\r\nSome additional skills required of the applicant are the ability to function within a team environment or independently, having the ability to determine prospective customers, should be a self-starter, possess good organizational and management skills, have customer service experience, ability to understand the client\u2019s business needs and address their problems, possess good communication skills, both oral and written, and the ability to develop and maintain good relationships with clients.\r\n\r\nEducational qualifications required for the post are a bachelor\u2019s degree in Sales and Marketing or related field, and sound knowledge of business organization's needs and activities, as well as 1-2 years of experience in sales related field.\r\n\r\n","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/OOGSA0J","created_at":"2012-04-02T16:01:44-07:00"},{"id":349,"company":"Gagdet Co.","job_code":"1185","title":"Senior Copywriter","abstract":"Responsible for planning, processing and performing all jobs in an efficient manner with no assistan...","description":"Responsible for planning, processing and performing all jobs in an efficient manner with no assistance from the supervisor\r\n\r\nWorking closely with upper management.\r\n\r\nDesign and develop programming systems making specific determinations about system performance.\r\n\r\nResponding promptly and professionally to bug reports.\r\n\r\nReview and repair legacy code.\r\n\r\nExpected to conduct system analysis and development, with limited support from professional staff, to keep our systems current with changing technologies.\r\n\r\nAnalyze, design, coordinate and supervise the development of software systems to form a basis for the solution of information processing problems.\r\n\r\nAnalyze system specifications and translate system requirements to task specifications for junior programmers.\r\n\r\nResponsible for analysis of current programs including performance, diagnosis and troubleshooting of problem programs, and designing solutions to problematic programming.\r\n\r\nResponsible for developing new programs and proofing the program to develop needed changes to assure production of a quality product.\r\n\r\nResponsible for development of new programs, analyzes current programs and processes, and making recommendations which yield a more cost effective product.\r\n\r\nWrites, edits, and debugs new computer programs for assigned projects, including necessary records and desired output.\r\n\r\nTests new programs to ensure that logic and syntax are correct, and that program results are accurate; assists lower-level programmers with programming assignments.\r\n\r\nDocument code consistently throughout the development process by listing a description of the program, special instructions, and any changes made in database tables on procedural, modular and database level.\r\n\r\nResponsible for reading, understanding, and utilizing all part and assembly prints, forms, spreadsheets, bills of material, specification sheets, and technical references.\r\n\r\nResponsible for utilizing tools and equipment involved in performance of essential functions of programming including measuring instruments.\r\n\r\nSearch, summarize and keep the team abreast of strategic information from all sources\r\n\r\nMaintain client databases\r\n\r\nCapable of writing proposals or papers.\r\n\r\nMaking presentations to customer or client audiences or professional peers.\r\n\r\nMaintain positive client interactions.\r\n\r\nStrong and effective inter-personal and communication skills and the ability to interact professionally with a diverse group of clients and staff.\r\n\r\nResponsible for communicating with engineers and manufacturer's technical support staff regarding programming needs and performance.\r\n\r\nProvide general administrative support to the organization\r\n\r\nProvide feedback to analysis/training staff about performance considerations / usability issues concerning software specifications and implementation.\r\n\r\nResearch and recommend software tools to management.\r\n\r\nProvide assistance to testers and support personnel as needed to determine system problems.\r\n\r\nReview, to the extent possible, changes in code and the environment that will affect system performance.\r\n\r\nProvide recommendations to management concerning issues of programmer productivity and software development management.\r\n\r\nAdditional skills and/or areas of expertise:\r\n\r\nAbility to solve problems quickly and completely.\r\n\r\nAbility to identify tasks which require automation and automate them.\r\n\r\nA solid understanding of networking/distributed computing environment concepts.\r\n\r\nSolid understanding the principles of routing, client/server programming.\r\n\r\nPossess excellent communication skills, with an emphasis on verbal and written communication.\r\n\r\nAbility to multi-task and stay organized in a dynamic work environment.\r\n\r\nPossess a positive attitude.\r\n\r\nAbility to \"think outside the box\".\r\n\r\nConsult with the Lead Programmer and the Technical Manager regarding professional skill development.\r\n\r\nPrepare reports and analyses setting forth progress, adverse trends and appropriate recommendations or conclusions.\r\n\r\nParticipate in development of long range planning for new projects and facilities.\r\n\r\nExperience and ability to teach or instruct co-workers.\r\n\r\nProviding advice, training and technical support for various projects.\r\n\r\nWorking closely with management team in evaluating current systems and making decisions on future development.\r\n\r\nPossess extremely advanced technical skills.\r\n\r\nAs new technologies emerge and impact our systems, expected to learn these technologies very quickly and resolve any problems involved in integrating new technologies with our systems.\r\n\r\nExpert knowledge of computer languages.\r\n\r\nExpert knowledge of data structures.\r\n\r\nExpert knowledge of computer logic and flow-charting.\r\n\r\nExpert knowledge of computer program design methods and techniques.\r\n\r\nExpert knowledge of all database vendor versions.\r\n\r\nExpert knowledge of all compiler versions.\r\n\r\nAbility to learn new programming languages quickly.\r\n\r\nGood knowledge of mathematical and statistical principles and formulas.\r\n\r\nAssists the Programmer Analysts in designing programs and databases.\r\n\r\nAbility to write, edit, and debug computer programs to achieve desired output.\r\n\r\nAbility to work productively in a team.\r\n\r\nExpert knowledge of maintaining and debugging live software systems.\r\n\r\nExpert knowledge of writing program documentation.\r\n\r\nIn-depth technical knowledge of the current hardware.\r\n\r\nExpert knowledge of used operating systems.\r\n\r\nExpert knowledge of standard development tools.\r\n\r\nExpert knowledge of networking technologies from the programmers prospective.\r\n\r\nAbility to determine whether a particular problem is caused by hardware, operating systems software, application programs, or network failures.\r\n\r\nGood knowledge of security and encryption.\r\n\r\nUpdates and modifies computer programs to improve efficiency.\r\n\r\nPerforms work of high difficulty in designing, writing, editing, modifying, and debugging computer programs.\r\n\r\nDefine functional specifications of the system for the appropriate hardware.\r\n\r\nExpert knowledge of component writing.\r\n\r\nDemonstrated ability to use standard computing tools: Word processor, spreadsheet, browser, email, and file compression software.\r\n\r\nOverall knowledge of the computing environment at large, e.g. typical uses and user populations of operating systems, communications protocols, hardware platforms, etc.\r\n\r\nPerform other related duties incidental to the work described herein in support of the company.\r\n\r\n ","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/QRTNIOH","created_at":"2012-05-07T10:21:25-07:00"},{"id":357,"company":"Gagdet Co.","job_code":"","title":"c++ programmers","abstract":"this is a collection pool of c++ programmers for future consideration","description":"this is a collection pool of c++ programmers for future consideration","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/4DB18BM","created_at":"2012-05-14T15:20:14-07:00"},{"id":661,"company":"Gagdet Co.","job_code":"","title":"Account Executive","abstract":"Responsible to profitably grow sales to achieve yearly sales goals by maintaining and increasing opportunities with existing core customers and prospecting new accounts.","description":"Job Duties &amp; Responsibilities\r\n\r\nManage sales volume in local territory with existing customers while prospecting successfully to expand local customer base; able to properly assess the needs of and qualify each prospect and provide customers with the high quality service they expect.\r\n\r\nMeet or exceed sales objectives through effective partnerships with property managers, REIT\u2019s and apartment owners by promoting and selling floor covering products and installation using professional sales techniques and product services.\r\n\r\nDevelop and sustain sales relationships with key decision makers and influencers within an organization.\r\n\r\nDevelop and implement sales business plans to expand business presence within assigned territory. Share market and competitor information with all applicable channels within the organization; establish relationships and working partnerships internally.\r\n\r\nResearch, develop and acquire account opportunities within targeted local market.\r\n\r\nProblem solving and trouble shooting while effectively managing long term customer relationships and managing company risk.\r\n\r\nParticipate in local and national trade associations and conferences.\r\n\r\nJob Qualifications\r\n\r\nTypically requires BS/BA in business or related discipline. Ability to increase profitable new business with existing customers. 2-5 years of experience with consultative/solution based business-to-business selling.\r\n\r\nExperience selling into the multi-family industry helpful, but not required.\r\n\r\nRequires increasing independence; receives guidance mainly on complex or unusual problems or issues with periodic review of output by sales manager or direct \u201ccustomers\u201d of the process.\r\n\r\nAbility to analyze situations and bring successful resolution to complex and/or cross department problems and to reach sound decisions under conditions of uncertainty.\r\n\r\nComputer savvy with experience using Salesforce or another CRM program.","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/B3HWPIQ","created_at":"2012-07-27T19:23:04-07:00"}]
@@ -0,0 +1 @@
1
+ [{"jobs":{"abstract":"Gadget Co. was established in 1987, and remains one of the largest international widget manufacturers. We have solid career opportunities, and are looking for quality employees that will share in our success.","archived":0,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-04-02T16:01:44-07:00","description":"The Sales Associate will develop sales programs, implement strategies, set targets and prepare an annual budget. This position will report to the Sales Director. In addition, the Sales Associate will provide information about the products and services of the company to it's clients in order to increase the sales of the company, and provide support in developing long-term relationships with the clients. Some other duties of a sales associate are assisting in the development and execution of sales programs, and supporting the technical team by providing the details of requirements of the customers.\r\n\r\nSome of the duties and responsibilities of a sales associate are:\r\n\r\n * Should have full knowledge of customers and product.\r\n\r\n * Keeping the focus on customers planning the sales strategies and setting targets.\r\n\r\n * Directing and coordinating the marketing team with valuable information about the customers and product.\r\n\r\n* Making the product visible in the market through publications, events and networking relations.\r\n\r\n * Providing the management with research inputs, creative solutions and ideas. Developing sales plans and reporting the details of its implementation to the management.\r\n\r\n * Participating in events, trade fairs, campaigns and conferences relating to the product or industry.\r\n\r\n * Estimating customers on quotes quickly and accurately.\r\n\r\n * Providing with leads for follow-up to the senior executives of company.\r\n\r\n * Renew the existing accounts of customers with required details of service or pricing.\r\n\r\n * Working with current clients in finding opportunities for new customers that may have a need for our products\r\n\r\n * Maintain customer database for associated mailings, development, and marketing outreach opportunities\r\n\r\n * Prepare renewal contracts and quotes for existing clients.\r\n\r\n * Working on special projects with the team or as a part of team.\r\n\r\n * Collecting feedback from clients to access possible improvements to existing products and also the need for new products.\r\n\r\n* Provide the management with sales quotes.\r\n\r\nSome additional skills required of the applicant are the ability to function within a team environment or independently, having the ability to determine prospective customers, should be a self-starter, possess good organizational and management skills, have customer service experience, ability to understand the client\u2019s business needs and address their problems, possess good communication skills, both oral and written, and the ability to develop and maintain good relationships with clients.\r\n\r\nEducational qualifications required for the post are a bachelor\u2019s degree in Sales and Marketing or related field, and sound knowledge of business organization's needs and activities, as well as 1-2 years of experience in sales related field.\r\n\r\n","id":294,"job_code":"1121","state":"OR","title":"Account Executive","url":"http://ht-jobs.net/OOGSA0J"}},{"jobs":{"abstract":"Looking for qualified web developers to take our business to the next level","archived":1,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-04-30T13:03:07-07:00","description":"Web developers will work with the business and editorial departments to constantly improve our website and newspaper. The job is a combination of different web disciplines: part development, part operations, and part design. The ideal candidate will have a wide range of web skills, but does not need to be a master of all.\r\n\r\nDevelopers will be responsible for limited scope web design and development serving both our internal operations and external sites. Development projects will focus on identifying and solving specific problems. For projects of a larger scope, developers will work with outside vendors to do the development and design work. Developer will also be responsible for applying patches on the software level of the web stack and troubleshooting problems on the site. Developers must also have an eagerness to learn about new technologies and share that knowledge with the rest of the staff.\r\n\r\n* Reports to Director of Technology\r\n\r\nDuties &amp; Responsibilities:\r\n\r\n* Identify and meet technology needs of editorial and business operations.\r\n* Build, or work with outside firms to build websites and web-based tools.\r\n* Work with outside hosting providers and developers to implement website upgrades.\r\n* Monitor web operations and respond to problems, some of which occur outside of regular business hours.\r\n* Share knowledge of internet techniques and technologies with our staff.\r\n* Train and support our staff on the best ways to utilize our internal tools.\r\n* Work with an external help desk that handles desktop hardware and software.\r\n* Additional duties as assigned.\r\n\r\nRequired Qualifications &amp; Skills:\r\n\r\n* Excellent written and verbal communication skills.\r\n* Ability to work independently.\r\n* Familiarity with web APIs and development frameworks.\r\n* Well-rounded knowledge of web serving and desktop computing needs.\r\n* Experience developing web applications in: PHP, Python, PERL, Ruby, Django, Rails, .net or similar environment.\r\n* Experience with Movable Type.\r\n* Experience with HTML, CSS and user interface design.\r\n* Familiarity with using version control systems.\r\n* Journalism or advertising experience also a plus.","id":339,"job_code":"4324","state":"OR","title":"Web Developer","url":"http://ht-jobs.net/04Q3WFA"}},{"jobs":{"abstract":"Responsible for planning, processing and performing all jobs in an efficient manner with no assistan...","archived":0,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-05-07T10:21:25-07:00","description":"Responsible for planning, processing and performing all jobs in an efficient manner with no assistance from the supervisor\r\n\r\nWorking closely with upper management.\r\n\r\nDesign and develop programming systems making specific determinations about system performance.\r\n\r\nResponding promptly and professionally to bug reports.\r\n\r\nReview and repair legacy code.\r\n\r\nExpected to conduct system analysis and development, with limited support from professional staff, to keep our systems current with changing technologies.\r\n\r\nAnalyze, design, coordinate and supervise the development of software systems to form a basis for the solution of information processing problems.\r\n\r\nAnalyze system specifications and translate system requirements to task specifications for junior programmers.\r\n\r\nResponsible for analysis of current programs including performance, diagnosis and troubleshooting of problem programs, and designing solutions to problematic programming.\r\n\r\nResponsible for developing new programs and proofing the program to develop needed changes to assure production of a quality product.\r\n\r\nResponsible for development of new programs, analyzes current programs and processes, and making recommendations which yield a more cost effective product.\r\n\r\nWrites, edits, and debugs new computer programs for assigned projects, including necessary records and desired output.\r\n\r\nTests new programs to ensure that logic and syntax are correct, and that program results are accurate; assists lower-level programmers with programming assignments.\r\n\r\nDocument code consistently throughout the development process by listing a description of the program, special instructions, and any changes made in database tables on procedural, modular and database level.\r\n\r\nResponsible for reading, understanding, and utilizing all part and assembly prints, forms, spreadsheets, bills of material, specification sheets, and technical references.\r\n\r\nResponsible for utilizing tools and equipment involved in performance of essential functions of programming including measuring instruments.\r\n\r\nSearch, summarize and keep the team abreast of strategic information from all sources\r\n\r\nMaintain client databases\r\n\r\nCapable of writing proposals or papers.\r\n\r\nMaking presentations to customer or client audiences or professional peers.\r\n\r\nMaintain positive client interactions.\r\n\r\nStrong and effective inter-personal and communication skills and the ability to interact professionally with a diverse group of clients and staff.\r\n\r\nResponsible for communicating with engineers and manufacturer's technical support staff regarding programming needs and performance.\r\n\r\nProvide general administrative support to the organization\r\n\r\nProvide feedback to analysis/training staff about performance considerations / usability issues concerning software specifications and implementation.\r\n\r\nResearch and recommend software tools to management.\r\n\r\nProvide assistance to testers and support personnel as needed to determine system problems.\r\n\r\nReview, to the extent possible, changes in code and the environment that will affect system performance.\r\n\r\nProvide recommendations to management concerning issues of programmer productivity and software development management.\r\n\r\nAdditional skills and/or areas of expertise:\r\n\r\nAbility to solve problems quickly and completely.\r\n\r\nAbility to identify tasks which require automation and automate them.\r\n\r\nA solid understanding of networking/distributed computing environment concepts.\r\n\r\nSolid understanding the principles of routing, client/server programming.\r\n\r\nPossess excellent communication skills, with an emphasis on verbal and written communication.\r\n\r\nAbility to multi-task and stay organized in a dynamic work environment.\r\n\r\nPossess a positive attitude.\r\n\r\nAbility to \"think outside the box\".\r\n\r\nConsult with the Lead Programmer and the Technical Manager regarding professional skill development.\r\n\r\nPrepare reports and analyses setting forth progress, adverse trends and appropriate recommendations or conclusions.\r\n\r\nParticipate in development of long range planning for new projects and facilities.\r\n\r\nExperience and ability to teach or instruct co-workers.\r\n\r\nProviding advice, training and technical support for various projects.\r\n\r\nWorking closely with management team in evaluating current systems and making decisions on future development.\r\n\r\nPossess extremely advanced technical skills.\r\n\r\nAs new technologies emerge and impact our systems, expected to learn these technologies very quickly and resolve any problems involved in integrating new technologies with our systems.\r\n\r\nExpert knowledge of computer languages.\r\n\r\nExpert knowledge of data structures.\r\n\r\nExpert knowledge of computer logic and flow-charting.\r\n\r\nExpert knowledge of computer program design methods and techniques.\r\n\r\nExpert knowledge of all database vendor versions.\r\n\r\nExpert knowledge of all compiler versions.\r\n\r\nAbility to learn new programming languages quickly.\r\n\r\nGood knowledge of mathematical and statistical principles and formulas.\r\n\r\nAssists the Programmer Analysts in designing programs and databases.\r\n\r\nAbility to write, edit, and debug computer programs to achieve desired output.\r\n\r\nAbility to work productively in a team.\r\n\r\nExpert knowledge of maintaining and debugging live software systems.\r\n\r\nExpert knowledge of writing program documentation.\r\n\r\nIn-depth technical knowledge of the current hardware.\r\n\r\nExpert knowledge of used operating systems.\r\n\r\nExpert knowledge of standard development tools.\r\n\r\nExpert knowledge of networking technologies from the programmers prospective.\r\n\r\nAbility to determine whether a particular problem is caused by hardware, operating systems software, application programs, or network failures.\r\n\r\nGood knowledge of security and encryption.\r\n\r\nUpdates and modifies computer programs to improve efficiency.\r\n\r\nPerforms work of high difficulty in designing, writing, editing, modifying, and debugging computer programs.\r\n\r\nDefine functional specifications of the system for the appropriate hardware.\r\n\r\nExpert knowledge of component writing.\r\n\r\nDemonstrated ability to use standard computing tools: Word processor, spreadsheet, browser, email, and file compression software.\r\n\r\nOverall knowledge of the computing environment at large, e.g. typical uses and user populations of operating systems, communications protocols, hardware platforms, etc.\r\n\r\nPerform other related duties incidental to the work described herein in support of the company.\r\n\r\n ","id":349,"job_code":"1185","state":"OR","title":"Senior Copywriter","url":"http://ht-jobs.net/QRTNIOH"}},{"jobs":{"abstract":"this is a collection pool of c++ programmers for future consideration","archived":0,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-05-14T15:20:14-07:00","description":"this is a collection pool of c++ programmers for future consideration","id":357,"job_code":"","state":"OR","title":"c++ programmers","url":"http://ht-jobs.net/4DB18BM"}},{"jobs":{"abstract":"Responsible to profitably grow sales to achieve yearly sales goals by maintaining and increasing opportunities with existing core customers and prospecting new accounts.","archived":0,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-07-27T19:23:04-07:00","description":"Job Duties &amp; Responsibilities\r\n\r\nManage sales volume in local territory with existing customers while prospecting successfully to expand local customer base; able to properly assess the needs of and qualify each prospect and provide customers with the high quality service they expect.\r\n\r\nMeet or exceed sales objectives through effective partnerships with property managers, REIT\u2019s and apartment owners by promoting and selling floor covering products and installation using professional sales techniques and product services.\r\n\r\nDevelop and sustain sales relationships with key decision makers and influencers within an organization.\r\n\r\nDevelop and implement sales business plans to expand business presence within assigned territory. Share market and competitor information with all applicable channels within the organization; establish relationships and working partnerships internally.\r\n\r\nResearch, develop and acquire account opportunities within targeted local market.\r\n\r\nProblem solving and trouble shooting while effectively managing long term customer relationships and managing company risk.\r\n\r\nParticipate in local and national trade associations and conferences.\r\n\r\nJob Qualifications\r\n\r\nTypically requires BS/BA in business or related discipline. Ability to increase profitable new business with existing customers. 2-5 years of experience with consultative/solution based business-to-business selling.\r\n\r\nExperience selling into the multi-family industry helpful, but not required.\r\n\r\nRequires increasing independence; receives guidance mainly on complex or unusual problems or issues with periodic review of output by sales manager or direct \u201ccustomers\u201d of the process.\r\n\r\nAbility to analyze situations and bring successful resolution to complex and/or cross department problems and to reach sound decisions under conditions of uncertainty.\r\n\r\nComputer savvy with experience using Salesforce or another CRM program.","id":661,"job_code":"","state":"OR","title":"Account Executive","url":"http://ht-jobs.net/B3HWPIQ"}}]
@@ -0,0 +1 @@
1
+ [{"applications":{"applied_at":"2012-04-09T11:43:30-07:00","archived":0,"email":"14275@hiringthing.com","first_name":"Eric","id":15768,"job":"Account Executive","job_id":294,"last_name":"Semon","phone":"5555555555","rating":null,"source":"Craigslist","status":"Under consideration"}},{"applications":{"applied_at":"2012-04-09T16:01:15-07:00","archived":1,"email":"14291@hiringthing.com","first_name":"Joshua","id":15780,"job":"Account Executive","job_id":294,"last_name":"Siler","phone":"5555555555","rating":null,"source":"","status":null}},{"applications":{"applied_at":"2012-04-09T16:02:27-07:00","archived":1,"email":"14292@hiringthing.com","first_name":"Joshua","id":15781,"job":"Account Executive","job_id":294,"last_name":"Siler","phone":"5555555555","rating":null,"source":"","status":null}},{"applications":{"applied_at":"2012-04-09T16:05:37-07:00","archived":1,"email":"14293@hiringthing.com","first_name":"Joshua","id":15782,"job":"Account Executive","job_id":294,"last_name":"Siler","phone":"5555555555","rating":null,"source":"","status":null}},{"applications":{"applied_at":"2012-04-09T16:09:09-07:00","archived":0,"email":"14295@hiringthing.com","first_name":"John","id":15784,"job":"Account Executive","job_id":294,"last_name":"Smith","phone":"5555555555","rating":null,"source":"Craigslist","status":null}},{"applications":{"applied_at":"2012-04-09T16:13:04-07:00","archived":0,"email":"14296@hiringthing.com","first_name":"Charles","id":15785,"job":"Account Executive","job_id":294,"last_name":"Hornbeck III","phone":"5555555555","rating":null,"source":"Friend/Colleague","status":"Schedule phone interview"}},{"applications":{"applied_at":"2012-04-10T12:49:29-07:00","archived":0,"email":"14335@hiringthing.com","first_name":"Julie","id":15812,"job":"Account Executive","job_id":294,"last_name":"Wisdom","phone":"5555555555","rating":null,"source":"Friend/Colleague","status":"Phone interview completed"}},{"applications":{"applied_at":"2012-04-10T13:06:11-07:00","archived":0,"email":"14336@hiringthing.com","first_name":"Carmel","id":15813,"job":"Account Executive","job_id":294,"last_name":"Siler","phone":"5555555555","rating":2,"source":"Recruiter","status":"Schedule phone interview"}},{"applications":{"applied_at":"2012-04-10T15:04:25-07:00","archived":0,"email":"14356@hiringthing.com","first_name":"Tyler","id":15831,"job":"Account Executive","job_id":294,"last_name":"King","phone":"5555555555","rating":2,"source":"Other Website","status":"Schedule face-to-face interview"}},{"applications":{"applied_at":"2012-05-07T18:11:55-07:00","archived":0,"email":"15526@hiringthing.com","first_name":"Eric","id":16842,"job":"Account Executive","job_id":294,"last_name":"Semon","phone":"5555555555","rating":3,"source":"","status":"Schedule face-to-face interview"}},{"applications":{"applied_at":"2012-05-14T16:47:17-07:00","archived":0,"email":"15861@hiringthing.com","first_name":"Justin","id":17133,"job":"Web Developer","job_id":339,"last_name":"Wright","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-14T17:35:52-07:00","archived":1,"email":"15872@hiringthing.com","first_name":"Carly","id":17142,"job":"Account Executive","job_id":294,"last_name":"Daggett","phone":"5555555555","rating":null,"source":"CareerBuilder","status":null}},{"applications":{"applied_at":"2012-05-14T22:32:46-07:00","archived":0,"email":"15914@hiringthing.com","first_name":"Vu","id":17181,"job":"Senior Copywriter","job_id":349,"last_name":"Tran","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T09:08:27-07:00","archived":0,"email":"15997@hiringthing.com","first_name":"Shantharam","id":17259,"job":"Senior Copywriter","job_id":349,"last_name":"Balasubramanian","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T09:16:07-07:00","archived":1,"email":"15999@hiringthing.com","first_name":"Peter","id":17261,"job":"Account Executive","job_id":294,"last_name":"Talbott","phone":"5555555555","rating":null,"source":"Other Website","status":"Schedule phone interview"}},{"applications":{"applied_at":"2012-05-15T09:17:50-07:00","archived":0,"email":"16001@hiringthing.com","first_name":"Jace","id":17263,"job":"Web Developer","job_id":339,"last_name":"Poirier-Pinto","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T10:29:06-07:00","archived":0,"email":"16030@hiringthing.com","first_name":"Shantharam","id":17291,"job":"c++ programmers","job_id":357,"last_name":"Balasubramanian","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T11:09:36-07:00","archived":1,"email":"16062@hiringthing.com","first_name":"Troy","id":17322,"job":"Account Executive","job_id":294,"last_name":"Carter","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T11:20:40-07:00","archived":0,"email":"16065@hiringthing.com","first_name":"Vu","id":17325,"job":"c++ programmers","job_id":357,"last_name":"Tran","phone":"5555555555","rating":null,"source":"Other Website","status":"Schedule phone interview"}},{"applications":{"applied_at":"2012-05-19T16:27:46-07:00","archived":0,"email":"17408@hiringthing.com","first_name":"Eric","id":18584,"job":"Web Developer","job_id":339,"last_name":"Azinger","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-06-15T10:27:45-07:00","archived":0,"email":"19131@hiringthing.com","first_name":"Joshua","id":20075,"job":"Senior Copywriter","job_id":349,"last_name":"Siler","phone":"5555555555","rating":null,"source":"","status":null}},{"applications":{"applied_at":"2012-06-15T10:36:36-07:00","archived":0,"email":"19133@hiringthing.com","first_name":"Seth","id":20076,"job":"Web Developer","job_id":339,"last_name":"MacPherson","phone":"5555555555","rating":null,"source":"Monster.com","status":null}},{"applications":{"applied_at":"2012-06-15T10:42:46-07:00","archived":0,"email":"19135@hiringthing.com","first_name":"Seth","id":20077,"job":"Senior Copywriter","job_id":349,"last_name":"MacPherson","phone":"5555555555","rating":null,"source":"Craigslist","status":null}},{"applications":{"applied_at":"2012-06-18T16:18:09-07:00","archived":1,"email":"19268@hiringthing.com","first_name":"Peter","id":20186,"job":"Account Executive","job_id":294,"last_name":"Hook","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-06-18T16:40:57-07:00","archived":1,"email":"19273@hiringthing.com","first_name":"Captain","id":20191,"job":"Account Executive","job_id":294,"last_name":"Hammer","phone":"5555555555","rating":null,"source":"Other Website","status":"Phone interview completed"}},{"applications":{"applied_at":"2012-07-03T07:31:45-07:00","archived":1,"email":"20150@hiringthing.com","first_name":"Sam","id":20921,"job":"Account Executive","job_id":294,"last_name":"Iyam","phone":"5555555555","rating":null,"source":"Monster.com","status":null}},{"applications":{"applied_at":"2012-07-03T11:09:13-07:00","archived":0,"email":"20173@hiringthing.com","first_name":"Jack","id":20939,"job":"c++ programmers","job_id":357,"last_name":"Sprat","phone":"5555555555","rating":null,"source":"","status":"Moved"}},{"applications":{"applied_at":"2012-07-06T16:20:28-07:00","archived":1,"email":"20338@hiringthing.com","first_name":"Jack","id":21084,"job":"Account Executive","job_id":294,"last_name":"Alope","phone":"5555555555","rating":null,"source":"","status":null}}]
@@ -0,0 +1 @@
1
+ [{"id":15780,"job":"Account Executive","job_id":294,"status":null,"first_name":"Joshua","last_name":"Siler","phone":"5555555555","email":"14291@hiringthing.com","rating":null,"applied_at":"2012-04-09T16:01:15-07:00","source":"","archived":1},{"id":15781,"job":"Account Executive","job_id":294,"status":null,"first_name":"Joshua","last_name":"Siler","phone":"5555555555","email":"14292@hiringthing.com","rating":null,"applied_at":"2012-04-09T16:02:27-07:00","source":"","archived":1},{"id":15782,"job":"Account Executive","job_id":294,"status":null,"first_name":"Joshua","last_name":"Siler","phone":"5555555555","email":"14293@hiringthing.com","rating":null,"applied_at":"2012-04-09T16:05:37-07:00","source":"","archived":1},{"id":17142,"job":"Account Executive","job_id":294,"status":null,"first_name":"Carly","last_name":"Daggett","phone":"5555555555","email":"15872@hiringthing.com","rating":null,"applied_at":"2012-05-14T17:35:52-07:00","source":"CareerBuilder","archived":1},{"id":17261,"job":"Account Executive","job_id":294,"status":"Schedule phone interview","first_name":"Peter","last_name":"Talbott","phone":"5555555555","email":"15999@hiringthing.com","rating":null,"applied_at":"2012-05-15T09:16:07-07:00","source":"Other Website","archived":1},{"id":17322,"job":"Account Executive","job_id":294,"status":null,"first_name":"Troy","last_name":"Carter","phone":"5555555555","email":"16062@hiringthing.com","rating":null,"applied_at":"2012-05-15T11:09:36-07:00","source":"Other Website","archived":1},{"id":20186,"job":"Account Executive","job_id":294,"status":null,"first_name":"Peter","last_name":"Hook","phone":"5555555555","email":"19268@hiringthing.com","rating":null,"applied_at":"2012-06-18T16:18:09-07:00","source":"Other Website","archived":1},{"id":20191,"job":"Account Executive","job_id":294,"status":"Phone interview completed","first_name":"Captain","last_name":"Hammer","phone":"5555555555","email":"19273@hiringthing.com","rating":null,"applied_at":"2012-06-18T16:40:57-07:00","source":"Other Website","archived":1},{"id":20921,"job":"Account Executive","job_id":294,"status":null,"first_name":"Sam","last_name":"Iyam","phone":"5555555555","email":"20150@hiringthing.com","rating":null,"applied_at":"2012-07-03T07:31:45-07:00","source":"Monster.com","archived":1},{"id":21084,"job":"Account Executive","job_id":294,"status":null,"first_name":"Jack","last_name":"Alope","phone":"5555555555","email":"20338@hiringthing.com","rating":null,"applied_at":"2012-07-06T16:20:28-07:00","source":"","archived":1}]
@@ -0,0 +1 @@
1
+ [{"id":339,"company":"Gagdet Co.","job_code":"4324","title":"Web Developer","abstract":"Looking for qualified web developers to take our business to the next level","description":"Web developers will work with the business and editorial departments to constantly improve our website and newspaper. The job is a combination of different web disciplines: part development, part operations, and part design. The ideal candidate will have a wide range of web skills, but does not need to be a master of all.\r\n\r\nDevelopers will be responsible for limited scope web design and development serving both our internal operations and external sites. Development projects will focus on identifying and solving specific problems. For projects of a larger scope, developers will work with outside vendors to do the development and design work. Developer will also be responsible for applying patches on the software level of the web stack and troubleshooting problems on the site. Developers must also have an eagerness to learn about new technologies and share that knowledge with the rest of the staff.\r\n\r\n* Reports to Director of Technology\r\n\r\nDuties &amp; Responsibilities:\r\n\r\n* Identify and meet technology needs of editorial and business operations.\r\n* Build, or work with outside firms to build websites and web-based tools.\r\n* Work with outside hosting providers and developers to implement website upgrades.\r\n* Monitor web operations and respond to problems, some of which occur outside of regular business hours.\r\n* Share knowledge of internet techniques and technologies with our staff.\r\n* Train and support our staff on the best ways to utilize our internal tools.\r\n* Work with an external help desk that handles desktop hardware and software.\r\n* Additional duties as assigned.\r\n\r\nRequired Qualifications &amp; Skills:\r\n\r\n* Excellent written and verbal communication skills.\r\n* Ability to work independently.\r\n* Familiarity with web APIs and development frameworks.\r\n* Well-rounded knowledge of web serving and desktop computing needs.\r\n* Experience developing web applications in: PHP, Python, PERL, Ruby, Django, Rails, .net or similar environment.\r\n* Experience with Movable Type.\r\n* Experience with HTML, CSS and user interface design.\r\n* Familiarity with using version control systems.\r\n* Journalism or advertising experience also a plus.","city":"Portland","state":"OR","country":"United States","archived":1,"url":"http://ht-jobs.net/04Q3WFA","created_at":"2012-04-30T13:03:07-07:00"}]
@@ -0,0 +1 @@
1
+ [{"id":294,"company":"Gagdet Co.","job_code":"1121","title":"Account Executive","abstract":"Gadget Co. was established in 1987, and remains one of the largest international widget manufacturers. We have solid career opportunities, and are looking for quality employees that will share in our success.","description":"The Sales Associate will develop sales programs, implement strategies, set targets and prepare an annual budget. This position will report to the Sales Director. In addition, the Sales Associate will provide information about the products and services of the company to it's clients in order to increase the sales of the company, and provide support in developing long-term relationships with the clients. Some other duties of a sales associate are assisting in the development and execution of sales programs, and supporting the technical team by providing the details of requirements of the customers.\r\n\r\nSome of the duties and responsibilities of a sales associate are:\r\n\r\n * Should have full knowledge of customers and product.\r\n\r\n * Keeping the focus on customers planning the sales strategies and setting targets.\r\n\r\n * Directing and coordinating the marketing team with valuable information about the customers and product.\r\n\r\n* Making the product visible in the market through publications, events and networking relations.\r\n\r\n * Providing the management with research inputs, creative solutions and ideas. Developing sales plans and reporting the details of its implementation to the management.\r\n\r\n * Participating in events, trade fairs, campaigns and conferences relating to the product or industry.\r\n\r\n * Estimating customers on quotes quickly and accurately.\r\n\r\n * Providing with leads for follow-up to the senior executives of company.\r\n\r\n * Renew the existing accounts of customers with required details of service or pricing.\r\n\r\n * Working with current clients in finding opportunities for new customers that may have a need for our products\r\n\r\n * Maintain customer database for associated mailings, development, and marketing outreach opportunities\r\n\r\n * Prepare renewal contracts and quotes for existing clients.\r\n\r\n * Working on special projects with the team or as a part of team.\r\n\r\n * Collecting feedback from clients to access possible improvements to existing products and also the need for new products.\r\n\r\n* Provide the management with sales quotes.\r\n\r\nSome additional skills required of the applicant are the ability to function within a team environment or independently, having the ability to determine prospective customers, should be a self-starter, possess good organizational and management skills, have customer service experience, ability to understand the client\u2019s business needs and address their problems, possess good communication skills, both oral and written, and the ability to develop and maintain good relationships with clients.\r\n\r\nEducational qualifications required for the post are a bachelor\u2019s degree in Sales and Marketing or related field, and sound knowledge of business organization's needs and activities, as well as 1-2 years of experience in sales related field.\r\n\r\n","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/OOGSA0J","created_at":"2012-04-02T16:01:44-07:00"},{"id":357,"company":"Gagdet Co.","job_code":"","title":"c++ programmers","abstract":"this is a collection pool of c++ programmers for future consideration","description":"this is a collection pool of c++ programmers for future consideration","city":"Portland","state":"OR","country":"United States","archived":0,"url":"http://ht-jobs.net/4DB18BM","created_at":"2012-05-14T15:20:14-07:00"}]
@@ -0,0 +1 @@
1
+ {"jobs":{"abstract":"Looking for qualified web developers to take our business to the next level","archived":1,"city":"Portland","company":"Gagdet Co.","country":"United States","created_at":"2012-04-30T13:03:07-07:00","description":"Web developers will work with the business and editorial departments to constantly improve our website and newspaper. The job is a combination of different web disciplines: part development, part operations, and part design. The ideal candidate will have a wide range of web skills, but does not need to be a master of all.\r\n\r\nDevelopers will be responsible for limited scope web design and development serving both our internal operations and external sites. Development projects will focus on identifying and solving specific problems. For projects of a larger scope, developers will work with outside vendors to do the development and design work. Developer will also be responsible for applying patches on the software level of the web stack and troubleshooting problems on the site. Developers must also have an eagerness to learn about new technologies and share that knowledge with the rest of the staff.\r\n\r\n* Reports to Director of Technology\r\n\r\nDuties &amp; Responsibilities:\r\n\r\n* Identify and meet technology needs of editorial and business operations.\r\n* Build, or work with outside firms to build websites and web-based tools.\r\n* Work with outside hosting providers and developers to implement website upgrades.\r\n* Monitor web operations and respond to problems, some of which occur outside of regular business hours.\r\n* Share knowledge of internet techniques and technologies with our staff.\r\n* Train and support our staff on the best ways to utilize our internal tools.\r\n* Work with an external help desk that handles desktop hardware and software.\r\n* Additional duties as assigned.\r\n\r\nRequired Qualifications &amp; Skills:\r\n\r\n* Excellent written and verbal communication skills.\r\n* Ability to work independently.\r\n* Familiarity with web APIs and development frameworks.\r\n* Well-rounded knowledge of web serving and desktop computing needs.\r\n* Experience developing web applications in: PHP, Python, PERL, Ruby, Django, Rails, .net or similar environment.\r\n* Experience with Movable Type.\r\n* Experience with HTML, CSS and user interface design.\r\n* Familiarity with using version control systems.\r\n* Journalism or advertising experience also a plus.","id":339,"job_code":"4324","state":"OR","title":"Web Developer","url":"http://ht-jobs.net/04Q3WFA"}}
@@ -0,0 +1 @@
1
+ [{"applications":{"applied_at":"2012-05-14T16:47:17-07:00","archived":0,"email":"15861@hiringthing.com","first_name":"Justin","id":17133,"job":"Web Developer","job_id":339,"last_name":"Wright","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-15T09:17:50-07:00","archived":0,"email":"16001@hiringthing.com","first_name":"Jace","id":17263,"job":"Web Developer","job_id":339,"last_name":"Poirier-Pinto","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-05-19T16:27:46-07:00","archived":0,"email":"17408@hiringthing.com","first_name":"Eric","id":18584,"job":"Web Developer","job_id":339,"last_name":"Azinger","phone":"5555555555","rating":null,"source":"Other Website","status":null}},{"applications":{"applied_at":"2012-06-15T10:36:36-07:00","archived":0,"email":"19133@hiringthing.com","first_name":"Seth","id":20076,"job":"Web Developer","job_id":339,"last_name":"MacPherson","phone":"5555555555","rating":null,"source":"Monster.com","status":null}}]
@@ -0,0 +1 @@
1
+ [{"id":15813,"job":"Account Executive","job_id":294,"status":"Schedule phone interview","first_name":"Carmel","last_name":"Siler","phone":"5555555555","email":"14336@hiringthing.com","rating":2,"applied_at":"2012-04-10T13:06:11-07:00","source":"Recruiter","archived":0},{"id":15831,"job":"Account Executive","job_id":294,"status":"Schedule face-to-face interview","first_name":"Tyler","last_name":"King","phone":"5555555555","email":"14356@hiringthing.com","rating":2,"applied_at":"2012-04-10T15:04:25-07:00","source":"Other Website","archived":0},{"id":16842,"job":"Account Executive","job_id":294,"status":"Schedule face-to-face interview","first_name":"Eric","last_name":"Semon","phone":"5555555555","email":"15526@hiringthing.com","rating":3,"applied_at":"2012-05-07T18:11:55-07:00","source":"","archived":0}]
@@ -0,0 +1 @@
1
+ [{"id":15768,"job":"Account Executive","job_id":294,"status":"Under consideration","first_name":"Eric","last_name":"Semon","phone":"5555555555","email":"14275@hiringthing.com","rating":null,"applied_at":"2012-04-09T11:43:30-07:00","source":"Craigslist","archived":0},{"id":15784,"job":"Account Executive","job_id":294,"status":null,"first_name":"John","last_name":"Smith","phone":"5555555555","email":"14295@hiringthing.com","rating":null,"applied_at":"2012-04-09T16:09:09-07:00","source":"Craigslist","archived":0},{"id":15785,"job":"Account Executive","job_id":294,"status":"Schedule phone interview","first_name":"Charles","last_name":"Hornbeck III","phone":"5555555555","email":"14296@hiringthing.com","rating":null,"applied_at":"2012-04-09T16:13:04-07:00","source":"Friend/Colleague","archived":0},{"id":15812,"job":"Account Executive","job_id":294,"status":"Phone interview completed","first_name":"Julie","last_name":"Wisdom","phone":"5555555555","email":"14335@hiringthing.com","rating":null,"applied_at":"2012-04-10T12:49:29-07:00","source":"Friend/Colleague","archived":0},{"id":17133,"job":"Web Developer","job_id":339,"status":null,"first_name":"Justin","last_name":"Wright","phone":"5555555555","email":"15861@hiringthing.com","rating":null,"applied_at":"2012-05-14T16:47:17-07:00","source":"Other Website","archived":0},{"id":17181,"job":"Senior Copywriter","job_id":349,"status":null,"first_name":"Vu","last_name":"Tran","phone":"5555555555","email":"15914@hiringthing.com","rating":null,"applied_at":"2012-05-14T22:32:46-07:00","source":"Other Website","archived":0},{"id":17259,"job":"Senior Copywriter","job_id":349,"status":null,"first_name":"Shantharam","last_name":"Balasubramanian","phone":"5555555555","email":"15997@hiringthing.com","rating":null,"applied_at":"2012-05-15T09:08:27-07:00","source":"Other Website","archived":0},{"id":17263,"job":"Web Developer","job_id":339,"status":null,"first_name":"Jace","last_name":"Poirier-Pinto","phone":"5555555555","email":"16001@hiringthing.com","rating":null,"applied_at":"2012-05-15T09:17:50-07:00","source":"Other Website","archived":0},{"id":17291,"job":"c++ programmers","job_id":357,"status":null,"first_name":"Shantharam","last_name":"Balasubramanian","phone":"5555555555","email":"16030@hiringthing.com","rating":null,"applied_at":"2012-05-15T10:29:06-07:00","source":"Other Website","archived":0},{"id":17325,"job":"c++ programmers","job_id":357,"status":"Schedule phone interview","first_name":"Vu","last_name":"Tran","phone":"5555555555","email":"16065@hiringthing.com","rating":null,"applied_at":"2012-05-15T11:20:40-07:00","source":"Other Website","archived":0},{"id":18584,"job":"Web Developer","job_id":339,"status":null,"first_name":"Eric","last_name":"Azinger","phone":"5555555555","email":"17408@hiringthing.com","rating":null,"applied_at":"2012-05-19T16:27:46-07:00","source":"Other Website","archived":0},{"id":20075,"job":"Senior Copywriter","job_id":349,"status":null,"first_name":"Joshua","last_name":"Siler","phone":"5555555555","email":"19131@hiringthing.com","rating":null,"applied_at":"2012-06-15T10:27:45-07:00","source":"","archived":0},{"id":20076,"job":"Web Developer","job_id":339,"status":null,"first_name":"Seth","last_name":"MacPherson","phone":"5555555555","email":"19133@hiringthing.com","rating":null,"applied_at":"2012-06-15T10:36:36-07:00","source":"Monster.com","archived":0},{"id":20077,"job":"Senior Copywriter","job_id":349,"status":null,"first_name":"Seth","last_name":"MacPherson","phone":"5555555555","email":"19135@hiringthing.com","rating":null,"applied_at":"2012-06-15T10:42:46-07:00","source":"Craigslist","archived":0},{"id":20939,"job":"c++ programmers","job_id":357,"status":"Moved","first_name":"Jack","last_name":"Sprat","phone":"5555555555","email":"20173@hiringthing.com","rating":null,"applied_at":"2012-07-03T11:09:13-07:00","source":"","archived":0}]
@@ -0,0 +1,29 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # Require this file using `require "spec_helper"` to ensure that it is only
4
+ # loaded once.
5
+ #
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ require 'rubygems'
8
+ require 'fakeweb'
9
+ require 'hiringthing_api'
10
+
11
+ HiringThing.configure do |h|
12
+ h.api_key = "key"
13
+ h.api_password = "pass"
14
+ h.subdomain = "example"
15
+ end
16
+
17
+ FakeWeb.allow_net_connect = false
18
+
19
+ RSpec.configure do |config|
20
+ config.treat_symbols_as_metadata_keys_with_true_values = true
21
+ config.run_all_when_everything_filtered = true
22
+ config.filter_run :focus
23
+
24
+ # Run specs in random order to surface order dependencies. If you find an
25
+ # order dependency and want to debug it, you can fix the order by providing
26
+ # the seed, which is printed after each run.
27
+ # --seed 1234
28
+ config.order = 'random'
29
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hiringthing_api
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 0
10
+ version: 1.0.0
11
+ platform: ruby
12
+ authors:
13
+ - Joshua Siler
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-08-08 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: activeresource
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 9
29
+ segments:
30
+ - 2
31
+ - 3
32
+ - 5
33
+ version: 2.3.5
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ description: Allows easy access to the HiringThing API
37
+ email: support@hiringthing.com
38
+ executables: []
39
+
40
+ extensions: []
41
+
42
+ extra_rdoc_files: []
43
+
44
+ files:
45
+ - .gitignore
46
+ - .rspec
47
+ - LICENSE.txt
48
+ - README.md
49
+ - hiringthing_api-0.0.2.gem
50
+ - hiringthing_api.gemspec
51
+ - lib/hiringthing_api.rb
52
+ - lib/hiringthing_api/config.rb
53
+ - lib/hiringthing_api/resources/applications.rb
54
+ - lib/hiringthing_api/resources/jobs.rb
55
+ - lib/hiringthing_api/resources/resource.rb
56
+ - spec/applications_spec.rb
57
+ - spec/jobs_spec.rb
58
+ - spec/json/active_jobs.json
59
+ - spec/json/all_jobs.json
60
+ - spec/json/applications.json
61
+ - spec/json/archived.json
62
+ - spec/json/archived_jobs.json
63
+ - spec/json/hidden_jobs.json
64
+ - spec/json/job_339.json
65
+ - spec/json/job_339_applications.json
66
+ - spec/json/rated.json
67
+ - spec/json/unrated.json
68
+ - spec/spec_helper.rb
69
+ homepage: http://www.hiringthing.com
70
+ licenses: []
71
+
72
+ post_install_message:
73
+ rdoc_options: []
74
+
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ none: false
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ hash: 53
83
+ segments:
84
+ - 1
85
+ - 9
86
+ - 3
87
+ version: 1.9.3
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ hash: 3
94
+ segments:
95
+ - 0
96
+ version: "0"
97
+ requirements: []
98
+
99
+ rubyforge_project:
100
+ rubygems_version: 1.8.10
101
+ signing_key:
102
+ specification_version: 3
103
+ summary: HiringThing API access gem
104
+ test_files: []
105
+