authentic_jobs 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.markdown +46 -0
- data/Rakefile +59 -0
- data/VERSION +1 -0
- data/changelog.markdown +2 -0
- data/examples/search.rb +6 -0
- data/lib/authentic_jobs.rb +73 -0
- data/test/fixtures/categories.json +29 -0
- data/test/fixtures/companies.json +1491 -0
- data/test/fixtures/error.json +1 -0
- data/test/fixtures/locations.json +513 -0
- data/test/fixtures/search.json +69 -0
- data/test/fixtures/types.json +1 -0
- data/test/helper.rb +42 -0
- data/test/test_authentic_jobs.rb +53 -0
- metadata +133 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Wynn Netherland
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.markdown
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Authentic Jobs
|
2
|
+
|
3
|
+
Find your next gig from the console! This is a Ruby wrapper for the [AuthenticJobs.com API](http://www.authenticjobs.com/api/documentation/).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
sudo gem install authentic_jobs
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
### Create a client with your API key
|
12
|
+
|
13
|
+
client = AuthenticJobs.new('OU812') # <-- Get your key at http://www.authenticjobs.com/api/
|
14
|
+
|
15
|
+
### Search for jobs
|
16
|
+
|
17
|
+
jobs = client.search(:location => 'austintxus', :keywords => 'ruby')
|
18
|
+
|
19
|
+
### List all companies with current listings
|
20
|
+
|
21
|
+
companies = client.companies
|
22
|
+
|
23
|
+
### List all job types
|
24
|
+
|
25
|
+
types = client.types
|
26
|
+
|
27
|
+
### List all job categories
|
28
|
+
|
29
|
+
categories = client.categories
|
30
|
+
|
31
|
+
All calls return a [Hashie::Mash](http://github.com/intridea/hashie) and support dot-notation.
|
32
|
+
|
33
|
+
## Note on Patches/Pull Requests
|
34
|
+
|
35
|
+
* Fork the project.
|
36
|
+
* Make your feature addition or bug fix.
|
37
|
+
* Add tests for it. This is important so I don't break it in a
|
38
|
+
future version unintentionally.
|
39
|
+
* Commit, do not mess with rakefile, version, or history.
|
40
|
+
(if you want to have your own version, that is fine but
|
41
|
+
bump version in a commit by itself I can ignore when I pull)
|
42
|
+
* Send me a pull request. Bonus points for topic branches.
|
43
|
+
|
44
|
+
## Copyright
|
45
|
+
|
46
|
+
Copyright (c) 2009 [Wynn Netherland](http://wynnnetherland.com). See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "authentic_jobs"
|
8
|
+
gem.summary = %Q{Ruby wrapper for the Authenic Jobs API}
|
9
|
+
gem.description = %Q{Ruby wrapper for the Authentic Jobs API}
|
10
|
+
gem.email = "wynn.netherland@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/pengwynn/authentic_jobs"
|
12
|
+
gem.authors = ["Wynn Netherland"]
|
13
|
+
|
14
|
+
gem.add_dependency('hashie', '~> 0.1.3')
|
15
|
+
gem.add_dependency('httparty', '~> 0.4.5')
|
16
|
+
|
17
|
+
gem.add_development_dependency('shoulda', '>= 2.10.1')
|
18
|
+
gem.add_development_dependency('jnunemaker-matchy', '0.4.0')
|
19
|
+
gem.add_development_dependency('mocha', '0.9.4')
|
20
|
+
gem.add_development_dependency('fakeweb', '>= 1.2.5')
|
21
|
+
end
|
22
|
+
Jeweler::GemcutterTasks.new
|
23
|
+
rescue LoadError
|
24
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
25
|
+
end
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
Rake::TestTask.new(:test) do |test|
|
29
|
+
test.libs << 'lib' << 'test'
|
30
|
+
test.pattern = 'test/**/test_*.rb'
|
31
|
+
test.verbose = true
|
32
|
+
end
|
33
|
+
|
34
|
+
begin
|
35
|
+
require 'rcov/rcovtask'
|
36
|
+
Rcov::RcovTask.new do |test|
|
37
|
+
test.libs << 'test'
|
38
|
+
test.pattern = 'test/**/test_*.rb'
|
39
|
+
test.verbose = true
|
40
|
+
end
|
41
|
+
rescue LoadError
|
42
|
+
task :rcov do
|
43
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
task :test => :check_dependencies
|
48
|
+
|
49
|
+
task :default => :test
|
50
|
+
|
51
|
+
require 'rake/rdoctask'
|
52
|
+
Rake::RDocTask.new do |rdoc|
|
53
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
54
|
+
|
55
|
+
rdoc.rdoc_dir = 'rdoc'
|
56
|
+
rdoc.title = "authentic_jobs #{version}"
|
57
|
+
rdoc.rdoc_files.include('README*')
|
58
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
59
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/changelog.markdown
ADDED
data/examples/search.rb
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
gem 'hashie', '~> 0.1.3'
|
4
|
+
require 'hashie'
|
5
|
+
|
6
|
+
gem 'httparty', '~> 0.4.5'
|
7
|
+
require 'httparty'
|
8
|
+
|
9
|
+
directory = File.expand_path(File.dirname(__FILE__))
|
10
|
+
|
11
|
+
Hash.send :include, Hashie::HashExtensions
|
12
|
+
|
13
|
+
class AuthenticJobsError < StandardError
|
14
|
+
attr_reader :data
|
15
|
+
|
16
|
+
def initialize(data)
|
17
|
+
@data = data
|
18
|
+
super
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
class AuthenticJobs
|
23
|
+
include HTTParty
|
24
|
+
base_uri 'www.authenticjobs.com/api'
|
25
|
+
format :json
|
26
|
+
|
27
|
+
attr_accessor :api_key
|
28
|
+
|
29
|
+
def initialize(api_key)
|
30
|
+
self.api_key = api_key
|
31
|
+
end
|
32
|
+
|
33
|
+
def companies
|
34
|
+
mashup(self.class.get("/", :query => method_params('aj.jobs.getCompanies'))).companies.company
|
35
|
+
end
|
36
|
+
|
37
|
+
def locations
|
38
|
+
mashup(self.class.get("/", :query => method_params('aj.jobs.getLocations'))).locations.location
|
39
|
+
end
|
40
|
+
|
41
|
+
# category: The id of a job category to limit to. See aj.categories.getList
|
42
|
+
# type: The id of a job type to limit to. See aj.types.getList
|
43
|
+
# sort: Accepted values are: date-posted-desc (the default) and date-posted-asc
|
44
|
+
# company: Free-text matching against company names. Suggested values are the ids from aj.jobs.getCompanies
|
45
|
+
# location: Free-text matching against company location names. Suggested values are the ids from aj.jobs.getLocation
|
46
|
+
# keywords: Keywords to look for in the title or description of the job posting. Separate multiple keywords with commas. Multiple keywords will be treated as an OR
|
47
|
+
# page: The page of listings to return. Defaults to 1.
|
48
|
+
# perpage: The number of listings per page. The default value is 10. The maximum value is 100.
|
49
|
+
def search(options={})
|
50
|
+
mashup(self.class.get("/", :query => method_params('aj.jobs.search', options))).listings.listing
|
51
|
+
end
|
52
|
+
|
53
|
+
def types
|
54
|
+
mashup(self.class.get("/", :query => method_params('aj.types.getList'))).types['type']
|
55
|
+
end
|
56
|
+
|
57
|
+
def categories
|
58
|
+
mashup(self.class.get("/", :query => method_params('aj.categories.getList'))).categories.category
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
private
|
63
|
+
def mashup(response)
|
64
|
+
response = Hashie::Mash.new(response)
|
65
|
+
raise AuthenticJobsError.new("Code #{response.code} -- #{response.desc}") unless response.stat == 'ok'
|
66
|
+
response
|
67
|
+
end
|
68
|
+
|
69
|
+
def method_params(method, params={})
|
70
|
+
{:method => method, :api_key => self.api_key, :format => 'json'}.merge(params)
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"categories": {
|
3
|
+
"category": [{
|
4
|
+
"id": "1",
|
5
|
+
"name": "Design"
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"id": "3",
|
9
|
+
"name": "Interaction Design"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"id": "2",
|
13
|
+
"name": "Development"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"id": "4",
|
17
|
+
"name": "Graphic Design"
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"id": "5",
|
21
|
+
"name": "Mobile"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"id": "6",
|
25
|
+
"name": "Management"
|
26
|
+
}]
|
27
|
+
},
|
28
|
+
"stat": "ok"
|
29
|
+
}
|
@@ -0,0 +1,1491 @@
|
|
1
|
+
{
|
2
|
+
"companies": {
|
3
|
+
"company": [{
|
4
|
+
"id": "aduratechnologiesinc",
|
5
|
+
"name": "Adura Technologies, Inc.",
|
6
|
+
"url": "http:\/\/www.aduratech.com",
|
7
|
+
"location": {
|
8
|
+
"id": "sanfranciscocaus",
|
9
|
+
"name": "Tyler, TX",
|
10
|
+
"city": "San Francisco",
|
11
|
+
"country": "US",
|
12
|
+
"lat": "37.7749",
|
13
|
+
"lng": "-122.419",
|
14
|
+
"state": "CA"
|
15
|
+
}
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"id": "affiniscape",
|
19
|
+
"name": "Affiniscape",
|
20
|
+
"url": "http:\/\/www.affiniscape.com",
|
21
|
+
"location": {
|
22
|
+
"id": "austintxus",
|
23
|
+
"name": "Tyler, TX",
|
24
|
+
"city": "Austin",
|
25
|
+
"country": "US",
|
26
|
+
"lat": "30.2672",
|
27
|
+
"lng": "-97.7431",
|
28
|
+
"state": "TX"
|
29
|
+
}
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"id": "agilehr",
|
33
|
+
"name": "Agile HR",
|
34
|
+
"url": "http:\/\/www.agilehr.co.nz",
|
35
|
+
"location": {
|
36
|
+
"id": "newzealandnz",
|
37
|
+
"name": "Tyler, TX",
|
38
|
+
"city": "New Zealand",
|
39
|
+
"country": "NZ",
|
40
|
+
"lat": "-42",
|
41
|
+
"lng": "174"
|
42
|
+
}
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"id": "americaninstitutesforresearch",
|
46
|
+
"name": "American Institutes for Research",
|
47
|
+
"url": "http:\/\/www.air.org",
|
48
|
+
"location": {
|
49
|
+
"id": "washingtondcus",
|
50
|
+
"name": "Tyler, TX",
|
51
|
+
"city": "Washington",
|
52
|
+
"country": "US",
|
53
|
+
"lat": "38.8951",
|
54
|
+
"lng": "-77.0364",
|
55
|
+
"state": "DC"
|
56
|
+
}
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"id": "amiestreet",
|
60
|
+
"name": "Amie Street",
|
61
|
+
"url": "http:\/\/amiestreet.com",
|
62
|
+
"location": {
|
63
|
+
"id": "newyorknyus",
|
64
|
+
"name": "Tyler, TX",
|
65
|
+
"city": "New York",
|
66
|
+
"country": "US",
|
67
|
+
"lat": "40.7143",
|
68
|
+
"lng": "-74.006",
|
69
|
+
"state": "NY"
|
70
|
+
}
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"id": "amountaintopllc",
|
74
|
+
"name": "A Mountain Top, LLC",
|
75
|
+
"url": "http:\/\/amountaintop.com"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"id": "arc90",
|
79
|
+
"name": "arc90",
|
80
|
+
"url": "http:\/\/arc90.com",
|
81
|
+
"location": {
|
82
|
+
"id": "newyorknyus",
|
83
|
+
"name": "Tyler, TX",
|
84
|
+
"city": "New York",
|
85
|
+
"country": "US",
|
86
|
+
"lat": "40.7143",
|
87
|
+
"lng": "-74.006",
|
88
|
+
"state": "NY"
|
89
|
+
}
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"id": "arsinteractive",
|
93
|
+
"name": "ARS Interactive",
|
94
|
+
"url": "http:\/\/thinkars.com",
|
95
|
+
"location": {
|
96
|
+
"id": "chattanoogatnus",
|
97
|
+
"name": "Tyler, TX",
|
98
|
+
"city": "Chattanooga",
|
99
|
+
"country": "US",
|
100
|
+
"lat": "35.0456",
|
101
|
+
"lng": "-85.3097",
|
102
|
+
"state": "TN"
|
103
|
+
}
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"id": "astrumsolar",
|
107
|
+
"name": "Astrum Solar",
|
108
|
+
"url": "http:\/\/www.astrumsolar.com",
|
109
|
+
"location": {
|
110
|
+
"id": "washingtondcbaltimorecolumbiamd",
|
111
|
+
"name": "Washington DC\/Baltimore (Columbia, MD)"
|
112
|
+
}
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"id": "bazaarvoice",
|
116
|
+
"name": "Bazaarvoice",
|
117
|
+
"url": "http:\/\/bazaarvoice.com",
|
118
|
+
"location": {
|
119
|
+
"id": "austintxus",
|
120
|
+
"name": "Tyler, TX",
|
121
|
+
"city": "Austin",
|
122
|
+
"country": "US",
|
123
|
+
"lat": "30.2672",
|
124
|
+
"lng": "-97.7431",
|
125
|
+
"state": "TX"
|
126
|
+
}
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"id": "beyond",
|
130
|
+
"name": "Beyond",
|
131
|
+
"url": "http:\/\/thisisbeyond.co.uk",
|
132
|
+
"location": {
|
133
|
+
"id": "maidenheadgb",
|
134
|
+
"name": "Tyler, TX",
|
135
|
+
"city": "Maidenhead",
|
136
|
+
"country": "GB",
|
137
|
+
"lat": "51.5228",
|
138
|
+
"lng": "-0.719862"
|
139
|
+
}
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"id": "bigbangtechnologyinc",
|
143
|
+
"name": "Big Bang Technology Inc",
|
144
|
+
"url": "http:\/\/bigbangtechnology.com",
|
145
|
+
"location": {
|
146
|
+
"id": "torontoca",
|
147
|
+
"name": "Tyler, TX",
|
148
|
+
"city": "Toronto",
|
149
|
+
"country": "CA",
|
150
|
+
"lat": "43.7001",
|
151
|
+
"lng": "-79.4163"
|
152
|
+
}
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"id": "blockbuster",
|
156
|
+
"name": "Blockbuster",
|
157
|
+
"url": "http:\/\/www.blockbuster.com",
|
158
|
+
"location": {
|
159
|
+
"id": "knightsinnlosangelescacaus",
|
160
|
+
"name": "Tyler, TX",
|
161
|
+
"city": "Knights Inn Los Angeles Ca",
|
162
|
+
"country": "US",
|
163
|
+
"lat": "34.066",
|
164
|
+
"lng": "-118.254",
|
165
|
+
"state": "CA"
|
166
|
+
}
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"id": "bloomstodayinc",
|
170
|
+
"name": "Blooms Today, Inc.",
|
171
|
+
"url": "http:\/\/bloomstoday.com",
|
172
|
+
"location": {
|
173
|
+
"id": "northernvirginiaregionalparkvaus",
|
174
|
+
"name": "Tyler, TX",
|
175
|
+
"city": "Northern Virginia Regional Park",
|
176
|
+
"country": "US",
|
177
|
+
"lat": "39.0465",
|
178
|
+
"lng": "-77.2997",
|
179
|
+
"state": "VA"
|
180
|
+
}
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"id": "bluenotioninc",
|
184
|
+
"name": "Bluenotion Inc.",
|
185
|
+
"url": "http:\/\/www.bluenotion.com",
|
186
|
+
"location": {
|
187
|
+
"id": "torontoca",
|
188
|
+
"name": "Tyler, TX",
|
189
|
+
"city": "Toronto",
|
190
|
+
"country": "CA",
|
191
|
+
"lat": "43.7001",
|
192
|
+
"lng": "-79.4163"
|
193
|
+
}
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"id": "brighterplanet",
|
197
|
+
"name": "Brighter Planet",
|
198
|
+
"url": "http:\/\/brighterplanet.com",
|
199
|
+
"location": {
|
200
|
+
"id": "middleburyvttelecommuterswelcometoapply",
|
201
|
+
"name": "Middlebury, VT (telecommuters welcome to apply)"
|
202
|
+
}
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"id": "brooklynbotanicgarden",
|
206
|
+
"name": "Brooklyn Botanic Garden",
|
207
|
+
"url": "http:\/\/www.bbg.org",
|
208
|
+
"location": {
|
209
|
+
"id": "brooklynbotanicgardenresearchcenternyus",
|
210
|
+
"name": "Tyler, TX",
|
211
|
+
"city": "Brooklyn Botanic Garden Research Center",
|
212
|
+
"country": "US",
|
213
|
+
"lat": "41.2265",
|
214
|
+
"lng": "-73.7851",
|
215
|
+
"state": "NY"
|
216
|
+
}
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"id": "brunetgarcamulticulturaladvertisingpr",
|
220
|
+
"name": "Brunet-Garc\u00eda Multicultural Advertising & PR",
|
221
|
+
"url": "http:\/\/www.brunetgarcia.com",
|
222
|
+
"location": {
|
223
|
+
"id": "jacksonvilleflus",
|
224
|
+
"name": "Tyler, TX",
|
225
|
+
"city": "Jacksonville",
|
226
|
+
"country": "US",
|
227
|
+
"lat": "30.3322",
|
228
|
+
"lng": "-81.6556",
|
229
|
+
"state": "FL"
|
230
|
+
}
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"id": "butterfly88flipflopdesigncontests",
|
234
|
+
"name": "butterfly88 - Flip-Flop Design Contests",
|
235
|
+
"url": "http:\/\/www.butterfly88.com",
|
236
|
+
"location": {
|
237
|
+
"id": "whereveryougetintothezone",
|
238
|
+
"name": "Wherever you get into the Zone"
|
239
|
+
}
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"id": "channelflipmedia",
|
243
|
+
"name": "ChannelFlip Media",
|
244
|
+
"url": "http:\/\/www.channelflip.com",
|
245
|
+
"location": {
|
246
|
+
"id": "londongb",
|
247
|
+
"name": "Tyler, TX",
|
248
|
+
"city": "London",
|
249
|
+
"country": "GB",
|
250
|
+
"lat": "51.5084",
|
251
|
+
"lng": "-0.125533"
|
252
|
+
}
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"id": "cloroxcreative",
|
256
|
+
"name": "Clorox Creative",
|
257
|
+
"url": "http:\/\/www.clorox.com",
|
258
|
+
"location": {
|
259
|
+
"id": "oaklandcaus",
|
260
|
+
"name": "Tyler, TX",
|
261
|
+
"city": "Oakland",
|
262
|
+
"country": "US",
|
263
|
+
"lat": "37.8044",
|
264
|
+
"lng": "-122.271",
|
265
|
+
"state": "CA"
|
266
|
+
}
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"id": "comcastinteractivemedia",
|
270
|
+
"name": "Comcast Interactive Media",
|
271
|
+
"url": "http:\/\/www.comcast.com",
|
272
|
+
"location": {
|
273
|
+
"id": "philadelphiapaus",
|
274
|
+
"name": "Tyler, TX",
|
275
|
+
"city": "Philadelphia",
|
276
|
+
"country": "US",
|
277
|
+
"lat": "39.9523",
|
278
|
+
"lng": "-75.1638",
|
279
|
+
"state": "PA"
|
280
|
+
}
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"id": "condenastpublicationsfairchildfashiongroup",
|
284
|
+
"name": "Conde Nast Publications\/Fairchild Fashion Group",
|
285
|
+
"url": "http:\/\/www.condenastcareers.com",
|
286
|
+
"location": {
|
287
|
+
"id": "newyorknyus",
|
288
|
+
"name": "Tyler, TX",
|
289
|
+
"city": "New York",
|
290
|
+
"country": "US",
|
291
|
+
"lat": "40.7143",
|
292
|
+
"lng": "-74.006",
|
293
|
+
"state": "NY"
|
294
|
+
}
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"id": "conovertuttlepace",
|
298
|
+
"name": "Conover Tuttle Pace",
|
299
|
+
"url": "http:\/\/ctpboston.com",
|
300
|
+
"location": {
|
301
|
+
"id": "bostonmaus",
|
302
|
+
"name": "Tyler, TX",
|
303
|
+
"city": "Boston",
|
304
|
+
"country": "US",
|
305
|
+
"lat": "42.3584",
|
306
|
+
"lng": "-71.0598",
|
307
|
+
"state": "MA"
|
308
|
+
}
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"id": "cornelluniversity",
|
312
|
+
"name": "Cornell University",
|
313
|
+
"url": "http:\/\/mannlib.cornell.edu",
|
314
|
+
"location": {
|
315
|
+
"id": "ithacanyus",
|
316
|
+
"name": "Tyler, TX",
|
317
|
+
"city": "Ithaca",
|
318
|
+
"country": "US",
|
319
|
+
"lat": "42.4406",
|
320
|
+
"lng": "-76.4966",
|
321
|
+
"state": "NY"
|
322
|
+
}
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"id": "createspacepartoftheamazoncomgroupofcompanies",
|
326
|
+
"name": "CreateSpace, part of the Amazon.com group of companies",
|
327
|
+
"url": "http:\/\/www.createspace.com",
|
328
|
+
"location": {
|
329
|
+
"id": "scottsvalleycaus",
|
330
|
+
"name": "Tyler, TX",
|
331
|
+
"city": "Scotts Valley",
|
332
|
+
"country": "US",
|
333
|
+
"lat": "37.0511",
|
334
|
+
"lng": "-122.015",
|
335
|
+
"state": "CA"
|
336
|
+
}
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"id": "decalgirl",
|
340
|
+
"name": "DecalGirl",
|
341
|
+
"url": "http:\/\/www.decalgirl.com",
|
342
|
+
"location": {
|
343
|
+
"id": "lewesdeus",
|
344
|
+
"name": "Tyler, TX",
|
345
|
+
"city": "Lewes",
|
346
|
+
"country": "US",
|
347
|
+
"lat": "38.7746",
|
348
|
+
"lng": "-75.1394",
|
349
|
+
"state": "DE"
|
350
|
+
}
|
351
|
+
},
|
352
|
+
{
|
353
|
+
"id": "designbyfront",
|
354
|
+
"name": "Design by Front",
|
355
|
+
"url": "http:\/\/www.designbyfront.com",
|
356
|
+
"location": {
|
357
|
+
"id": "belfastgb",
|
358
|
+
"name": "Tyler, TX",
|
359
|
+
"city": "Belfast",
|
360
|
+
"country": "GB",
|
361
|
+
"lat": "54.5833",
|
362
|
+
"lng": "-5.93333"
|
363
|
+
}
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"id": "designerscouch",
|
367
|
+
"name": "DesignersCouch",
|
368
|
+
"url": "http:\/\/designerscouch.org"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"id": "duoconsulting",
|
372
|
+
"name": "Duo Consulting",
|
373
|
+
"url": "http:\/\/www.duoconsulting.com",
|
374
|
+
"location": {
|
375
|
+
"id": "chicagoilus",
|
376
|
+
"name": "Tyler, TX",
|
377
|
+
"city": "Chicago",
|
378
|
+
"country": "US",
|
379
|
+
"lat": "41.85",
|
380
|
+
"lng": "-87.6501",
|
381
|
+
"state": "IL"
|
382
|
+
}
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"id": "eatingwellmediagroup",
|
386
|
+
"name": "EatingWell Media Group",
|
387
|
+
"url": "http:\/\/www.eatingwell.com",
|
388
|
+
"location": {
|
389
|
+
"id": "charlottevtus",
|
390
|
+
"name": "Tyler, TX",
|
391
|
+
"city": "Charlotte",
|
392
|
+
"country": "US",
|
393
|
+
"lat": "44.3098",
|
394
|
+
"lng": "-73.261",
|
395
|
+
"state": "VT"
|
396
|
+
}
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"id": "elikirk",
|
400
|
+
"name": "Eli Kirk",
|
401
|
+
"url": "http:\/\/elikirk.com",
|
402
|
+
"location": {
|
403
|
+
"id": "provoutus",
|
404
|
+
"name": "Tyler, TX",
|
405
|
+
"city": "Provo",
|
406
|
+
"country": "US",
|
407
|
+
"lat": "40.2338",
|
408
|
+
"lng": "-111.659",
|
409
|
+
"state": "UT"
|
410
|
+
}
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"id": "experimentalmediaandperformingartscenterrensselaer",
|
414
|
+
"name": "Experimental Media and Performing Arts Center @ Rensselaer",
|
415
|
+
"url": "http:\/\/www.empac.rpi.edu\/",
|
416
|
+
"location": {
|
417
|
+
"id": "troynyus",
|
418
|
+
"name": "Tyler, TX",
|
419
|
+
"city": "Troy",
|
420
|
+
"country": "US",
|
421
|
+
"lat": "42.7284",
|
422
|
+
"lng": "-73.6918",
|
423
|
+
"state": "NY"
|
424
|
+
}
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"id": "facebook",
|
428
|
+
"name": "Facebook",
|
429
|
+
"url": "http:\/\/www.facebook.com",
|
430
|
+
"location": {
|
431
|
+
"id": "paloaltocaus",
|
432
|
+
"name": "Tyler, TX",
|
433
|
+
"city": "Palo Alto",
|
434
|
+
"country": "US",
|
435
|
+
"lat": "37.4419",
|
436
|
+
"lng": "-122.143",
|
437
|
+
"state": "CA"
|
438
|
+
}
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"id": "familylinkcominc",
|
442
|
+
"name": "FamilyLink.com, Inc.",
|
443
|
+
"url": "http:\/\/corporate.familylink.com\/",
|
444
|
+
"location": {
|
445
|
+
"id": "provoutus",
|
446
|
+
"name": "Tyler, TX",
|
447
|
+
"city": "Provo",
|
448
|
+
"country": "US",
|
449
|
+
"lat": "40.2338",
|
450
|
+
"lng": "-111.659",
|
451
|
+
"state": "UT"
|
452
|
+
}
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"id": "finedesigngroup",
|
456
|
+
"name": "FINE design group",
|
457
|
+
"url": "http:\/\/www.finedesigngroup.com",
|
458
|
+
"location": {
|
459
|
+
"id": "portlandororsanfranciscoca",
|
460
|
+
"name": "Portland, OR or San Francisco, CA"
|
461
|
+
}
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"id": "flavorsme",
|
465
|
+
"name": "Flavors.me",
|
466
|
+
"url": "http:\/\/flavors.me",
|
467
|
+
"location": {
|
468
|
+
"id": "newyorknyorsanfranciscoca",
|
469
|
+
"name": "New York, NY or San Francisco, CA"
|
470
|
+
}
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"id": "folicacom",
|
474
|
+
"name": "Folica.com",
|
475
|
+
"url": "http:\/\/www.folica.com",
|
476
|
+
"location": {
|
477
|
+
"id": "newyorknyus",
|
478
|
+
"name": "Tyler, TX",
|
479
|
+
"city": "New York",
|
480
|
+
"country": "US",
|
481
|
+
"lat": "40.7143",
|
482
|
+
"lng": "-74.006",
|
483
|
+
"state": "NY"
|
484
|
+
}
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"id": "foxnewsnetwork",
|
488
|
+
"name": "Fox News Network",
|
489
|
+
"url": "http:\/\/www.foxnews.com",
|
490
|
+
"location": {
|
491
|
+
"id": "newyorknyus",
|
492
|
+
"name": "Tyler, TX",
|
493
|
+
"city": "New York",
|
494
|
+
"country": "US",
|
495
|
+
"lat": "40.7143",
|
496
|
+
"lng": "-74.006",
|
497
|
+
"state": "NY"
|
498
|
+
}
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"id": "freeassociation",
|
502
|
+
"name": "FreeAssociation",
|
503
|
+
"url": "http:\/\/www.thinkFA.com",
|
504
|
+
"location": {
|
505
|
+
"id": "newyorknyus",
|
506
|
+
"name": "Tyler, TX",
|
507
|
+
"city": "New York",
|
508
|
+
"country": "US",
|
509
|
+
"lat": "40.7143",
|
510
|
+
"lng": "-74.006",
|
511
|
+
"state": "NY"
|
512
|
+
}
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"id": "fryinc",
|
516
|
+
"name": "Fry, Inc.",
|
517
|
+
"url": "http:\/\/www.fry.com",
|
518
|
+
"location": {
|
519
|
+
"id": "newyorknyus",
|
520
|
+
"name": "Tyler, TX",
|
521
|
+
"city": "New York",
|
522
|
+
"country": "US",
|
523
|
+
"lat": "40.7143",
|
524
|
+
"lng": "-74.006",
|
525
|
+
"state": "NY"
|
526
|
+
}
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"id": "garmininternational",
|
530
|
+
"name": "Garmin International",
|
531
|
+
"url": "http:\/\/www.garmin.com\/careers",
|
532
|
+
"location": {
|
533
|
+
"id": "olatheksus",
|
534
|
+
"name": "Tyler, TX",
|
535
|
+
"city": "Olathe",
|
536
|
+
"country": "US",
|
537
|
+
"lat": "38.8814",
|
538
|
+
"lng": "-94.8191",
|
539
|
+
"state": "KS"
|
540
|
+
}
|
541
|
+
},
|
542
|
+
{
|
543
|
+
"id": "gen2mediacorporation",
|
544
|
+
"name": "Gen2Media Corporation",
|
545
|
+
"url": "http:\/\/gen2media.com",
|
546
|
+
"location": {
|
547
|
+
"id": "orlandoflus",
|
548
|
+
"name": "Tyler, TX",
|
549
|
+
"city": "Orlando",
|
550
|
+
"country": "US",
|
551
|
+
"lat": "28.5383",
|
552
|
+
"lng": "-81.3792",
|
553
|
+
"state": "FL"
|
554
|
+
}
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"id": "geodelicsystemsinc",
|
558
|
+
"name": "Geodelic Systems, Inc",
|
559
|
+
"url": "http:\/\/www.geodelic.com",
|
560
|
+
"location": {
|
561
|
+
"id": "santamonicaventura",
|
562
|
+
"name": "Santa Monica, Ventura"
|
563
|
+
}
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"id": "gigjunkie",
|
567
|
+
"name": "GigJunkie",
|
568
|
+
"url": "http:\/\/www.gigjunkie.net",
|
569
|
+
"location": {
|
570
|
+
"id": "londongb",
|
571
|
+
"name": "Tyler, TX",
|
572
|
+
"city": "London",
|
573
|
+
"country": "GB",
|
574
|
+
"lat": "51.5084",
|
575
|
+
"lng": "-0.125533"
|
576
|
+
}
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"id": "good",
|
580
|
+
"name": "GOOD",
|
581
|
+
"url": "http:\/\/www.good.is",
|
582
|
+
"location": {
|
583
|
+
"id": "losangelescaus",
|
584
|
+
"name": "Tyler, TX",
|
585
|
+
"city": "Los Angeles",
|
586
|
+
"country": "US",
|
587
|
+
"lat": "34.0522",
|
588
|
+
"lng": "-118.244",
|
589
|
+
"state": "CA"
|
590
|
+
}
|
591
|
+
},
|
592
|
+
{
|
593
|
+
"id": "hallmarkchannel",
|
594
|
+
"name": "Hallmark Channel",
|
595
|
+
"url": "http:\/\/www.hallmarkchannel.com",
|
596
|
+
"location": {
|
597
|
+
"id": "studiocitycaus",
|
598
|
+
"name": "Tyler, TX",
|
599
|
+
"city": "Studio City",
|
600
|
+
"country": "US",
|
601
|
+
"lat": "34.1486",
|
602
|
+
"lng": "-118.396",
|
603
|
+
"state": "CA"
|
604
|
+
}
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"id": "happycogwest",
|
608
|
+
"name": "Happy Cog West",
|
609
|
+
"url": "http:\/\/www.happycog.com",
|
610
|
+
"location": {
|
611
|
+
"id": "sanfranciscocaus",
|
612
|
+
"name": "Tyler, TX",
|
613
|
+
"city": "San Francisco",
|
614
|
+
"country": "US",
|
615
|
+
"lat": "37.7749",
|
616
|
+
"lng": "-122.419",
|
617
|
+
"state": "CA"
|
618
|
+
}
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"id": "harvest",
|
622
|
+
"name": "Harvest",
|
623
|
+
"url": "http:\/\/www.getharvest.com",
|
624
|
+
"location": {
|
625
|
+
"id": "newyorknyus",
|
626
|
+
"name": "Tyler, TX",
|
627
|
+
"city": "New York",
|
628
|
+
"country": "US",
|
629
|
+
"lat": "40.7143",
|
630
|
+
"lng": "-74.006",
|
631
|
+
"state": "NY"
|
632
|
+
}
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"id": "healthtalker",
|
636
|
+
"name": "HealthTalker",
|
637
|
+
"url": "http:\/\/www.healthtalker.com",
|
638
|
+
"location": {
|
639
|
+
"id": "bostonca",
|
640
|
+
"name": "Tyler, TX",
|
641
|
+
"city": "Boston",
|
642
|
+
"country": "CA",
|
643
|
+
"lat": "42.9834",
|
644
|
+
"lng": "-80.2664"
|
645
|
+
}
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"id": "hoodinyentertainmentgroup",
|
649
|
+
"name": "Hoodiny Entertainment Group",
|
650
|
+
"url": "http:\/\/hoodiny.com",
|
651
|
+
"location": {
|
652
|
+
"id": "miamiflorus",
|
653
|
+
"name": "Miami, FL or U.S"
|
654
|
+
}
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"id": "indielabs",
|
658
|
+
"name": "Indie Labs",
|
659
|
+
"url": "http:\/\/indielabs.com"
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"id": "interactivedatacorporation",
|
663
|
+
"name": "Interactive Data Corporation",
|
664
|
+
"url": "http:\/\/interactivedata.com",
|
665
|
+
"location": {
|
666
|
+
"id": "newyorknyus",
|
667
|
+
"name": "Tyler, TX",
|
668
|
+
"city": "New York",
|
669
|
+
"country": "US",
|
670
|
+
"lat": "40.7143",
|
671
|
+
"lng": "-74.006",
|
672
|
+
"state": "NY"
|
673
|
+
}
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"id": "internationalmonetaryfundimf",
|
677
|
+
"name": "International Monetary Fund (IMF)",
|
678
|
+
"url": "http:\/\/www.imf.org\/jobs",
|
679
|
+
"location": {
|
680
|
+
"id": "washingtondcus",
|
681
|
+
"name": "Tyler, TX",
|
682
|
+
"city": "Washington",
|
683
|
+
"country": "US",
|
684
|
+
"lat": "38.8951",
|
685
|
+
"lng": "-77.0364",
|
686
|
+
"state": "DC"
|
687
|
+
}
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"id": "ipcmedialtd",
|
691
|
+
"name": "IPC Media Ltd.",
|
692
|
+
"url": "http:\/\/www.ipcmedia.com",
|
693
|
+
"location": {
|
694
|
+
"id": "londongb",
|
695
|
+
"name": "Tyler, TX",
|
696
|
+
"city": "London",
|
697
|
+
"country": "GB",
|
698
|
+
"lat": "51.5084",
|
699
|
+
"lng": "-0.125533"
|
700
|
+
}
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"id": "justintv",
|
704
|
+
"name": "Justin.tv",
|
705
|
+
"url": "http:\/\/www.justin.tv",
|
706
|
+
"location": {
|
707
|
+
"id": "sanfranciscocaus",
|
708
|
+
"name": "Tyler, TX",
|
709
|
+
"city": "San Francisco",
|
710
|
+
"country": "US",
|
711
|
+
"lat": "37.7749",
|
712
|
+
"lng": "-122.419",
|
713
|
+
"state": "CA"
|
714
|
+
}
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"id": "jv2",
|
718
|
+
"name": "JV2",
|
719
|
+
"url": "http:\/\/jv2.com",
|
720
|
+
"location": {
|
721
|
+
"id": "anywheresaltlakecity",
|
722
|
+
"name": "Anywhere \/ Salt Lake City"
|
723
|
+
}
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"id": "level2designsinc",
|
727
|
+
"name": "Level 2 Designs Inc.",
|
728
|
+
"url": "http:\/\/www.level2designs.com"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"id": "madinainstitute",
|
732
|
+
"name": "Madina Institute",
|
733
|
+
"url": "http:\/\/www.almadinainstitute.org"
|
734
|
+
},
|
735
|
+
{
|
736
|
+
"id": "magnanicarusodutton",
|
737
|
+
"name": "Magnani Caruso Dutton",
|
738
|
+
"url": "http:\/\/www.mcdpartners.com",
|
739
|
+
"location": {
|
740
|
+
"id": "newyorknyus",
|
741
|
+
"name": "Tyler, TX",
|
742
|
+
"city": "New York",
|
743
|
+
"country": "US",
|
744
|
+
"lat": "40.7143",
|
745
|
+
"lng": "-74.006",
|
746
|
+
"state": "NY"
|
747
|
+
}
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"id": "meaningfulmedia",
|
751
|
+
"name": "Meaningful Media",
|
752
|
+
"url": "http:\/\/meaningfulmedia.org\/",
|
753
|
+
"location": {
|
754
|
+
"id": "losangelescaus",
|
755
|
+
"name": "Tyler, TX",
|
756
|
+
"city": "Los Angeles",
|
757
|
+
"country": "US",
|
758
|
+
"lat": "34.0522",
|
759
|
+
"lng": "-118.244",
|
760
|
+
"state": "CA"
|
761
|
+
}
|
762
|
+
},
|
763
|
+
{
|
764
|
+
"id": "meetupinc",
|
765
|
+
"name": "Meetup, Inc.",
|
766
|
+
"url": "http:\/\/www.meetup.com",
|
767
|
+
"location": {
|
768
|
+
"id": "newyorknyus",
|
769
|
+
"name": "Tyler, TX",
|
770
|
+
"city": "New York",
|
771
|
+
"country": "US",
|
772
|
+
"lat": "40.7143",
|
773
|
+
"lng": "-74.006",
|
774
|
+
"state": "NY"
|
775
|
+
}
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"id": "metalab",
|
779
|
+
"name": "MetaLab",
|
780
|
+
"url": "http:\/\/metalabdesign.com"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"id": "method",
|
784
|
+
"name": "Method",
|
785
|
+
"url": "http:\/\/www.method.com",
|
786
|
+
"location": {
|
787
|
+
"id": "sanfranciscocaus",
|
788
|
+
"name": "Tyler, TX",
|
789
|
+
"city": "San Francisco",
|
790
|
+
"country": "US",
|
791
|
+
"lat": "37.7749",
|
792
|
+
"lng": "-122.419",
|
793
|
+
"state": "CA"
|
794
|
+
}
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"id": "minifeedltd",
|
798
|
+
"name": "Minifeed Ltd.",
|
799
|
+
"url": "http:\/\/www.minifeed.com"
|
800
|
+
},
|
801
|
+
{
|
802
|
+
"id": "ministrycenteredtechnologies",
|
803
|
+
"name": "Ministry Centered Technologies",
|
804
|
+
"url": "http:\/\/www.ministrycentered.com",
|
805
|
+
"location": {
|
806
|
+
"id": "laquintacaus",
|
807
|
+
"name": "Tyler, TX",
|
808
|
+
"city": "La Quinta",
|
809
|
+
"country": "US",
|
810
|
+
"lat": "33.6634",
|
811
|
+
"lng": "-116.31",
|
812
|
+
"state": "CA"
|
813
|
+
}
|
814
|
+
},
|
815
|
+
{
|
816
|
+
"id": "morecabbagellc",
|
817
|
+
"name": "More Cabbage LLC",
|
818
|
+
"url": "http:\/\/morecabbage.com",
|
819
|
+
"location": {
|
820
|
+
"id": "anywhereinusa",
|
821
|
+
"name": "Anywhere in USA"
|
822
|
+
}
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"id": "neogenisys",
|
826
|
+
"name": "Neogenisys",
|
827
|
+
"url": "http:\/\/neogenisys.com",
|
828
|
+
"location": {
|
829
|
+
"id": "chicagoilldowntown",
|
830
|
+
"name": "Chicago, ILL. (downtown)"
|
831
|
+
}
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"id": "neutroninteractive",
|
835
|
+
"name": "Neutron Interactive",
|
836
|
+
"url": "http:\/\/www.neutroninteractive.com",
|
837
|
+
"location": {
|
838
|
+
"id": "saltlakecityutus",
|
839
|
+
"name": "Tyler, TX",
|
840
|
+
"city": "Salt Lake City",
|
841
|
+
"country": "US",
|
842
|
+
"lat": "40.7608",
|
843
|
+
"lng": "-111.891",
|
844
|
+
"state": "UT"
|
845
|
+
}
|
846
|
+
},
|
847
|
+
{
|
848
|
+
"id": "nexonamericainc",
|
849
|
+
"name": "Nexon America Inc.",
|
850
|
+
"url": "http:\/\/www.nexon.net",
|
851
|
+
"location": {
|
852
|
+
"id": "losangelescaus",
|
853
|
+
"name": "Tyler, TX",
|
854
|
+
"city": "Los Angeles",
|
855
|
+
"country": "US",
|
856
|
+
"lat": "34.0522",
|
857
|
+
"lng": "-118.244",
|
858
|
+
"state": "CA"
|
859
|
+
}
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"id": "ondeckcapital",
|
863
|
+
"name": "On Deck Capital",
|
864
|
+
"url": "http:\/\/www.ondeckcapital.com",
|
865
|
+
"location": {
|
866
|
+
"id": "newyorknyus",
|
867
|
+
"name": "Tyler, TX",
|
868
|
+
"city": "New York",
|
869
|
+
"country": "US",
|
870
|
+
"lat": "40.7143",
|
871
|
+
"lng": "-74.006",
|
872
|
+
"state": "NY"
|
873
|
+
}
|
874
|
+
},
|
875
|
+
{
|
876
|
+
"id": "pacificnorthwestcollegeofart",
|
877
|
+
"name": "Pacific Northwest College of Art",
|
878
|
+
"url": "http:\/\/www.pnca.edu",
|
879
|
+
"location": {
|
880
|
+
"id": "portlandorus",
|
881
|
+
"name": "Tyler, TX",
|
882
|
+
"city": "Portland",
|
883
|
+
"country": "US",
|
884
|
+
"lat": "45.5235",
|
885
|
+
"lng": "-122.676",
|
886
|
+
"state": "OR"
|
887
|
+
}
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"id": "paramoreredd",
|
891
|
+
"name": "Paramore|Redd",
|
892
|
+
"url": "http:\/\/paramoreredd.com",
|
893
|
+
"location": {
|
894
|
+
"id": "nashvilletnus",
|
895
|
+
"name": "Tyler, TX",
|
896
|
+
"city": "Nashville",
|
897
|
+
"country": "US",
|
898
|
+
"lat": "36.1659",
|
899
|
+
"lng": "-86.7844",
|
900
|
+
"state": "TN"
|
901
|
+
}
|
902
|
+
},
|
903
|
+
{
|
904
|
+
"id": "patch",
|
905
|
+
"name": "Patch",
|
906
|
+
"url": "http:\/\/www.patch.com",
|
907
|
+
"location": {
|
908
|
+
"id": "newyorknyus",
|
909
|
+
"name": "Tyler, TX",
|
910
|
+
"city": "New York",
|
911
|
+
"country": "US",
|
912
|
+
"lat": "40.7143",
|
913
|
+
"lng": "-74.006",
|
914
|
+
"state": "NY"
|
915
|
+
}
|
916
|
+
},
|
917
|
+
{
|
918
|
+
"id": "penlink",
|
919
|
+
"name": "Pen-Link",
|
920
|
+
"url": "http:\/\/www.penlink.com",
|
921
|
+
"location": {
|
922
|
+
"id": "lincolnneus",
|
923
|
+
"name": "Tyler, TX",
|
924
|
+
"city": "Lincoln",
|
925
|
+
"country": "US",
|
926
|
+
"lat": "40.8",
|
927
|
+
"lng": "-96.667",
|
928
|
+
"state": "NE"
|
929
|
+
}
|
930
|
+
},
|
931
|
+
{
|
932
|
+
"id": "pod1",
|
933
|
+
"name": "Pod1",
|
934
|
+
"url": "http:\/\/pod1.com",
|
935
|
+
"location": {
|
936
|
+
"id": "newyorknyus",
|
937
|
+
"name": "Tyler, TX",
|
938
|
+
"city": "New York",
|
939
|
+
"country": "US",
|
940
|
+
"lat": "40.7143",
|
941
|
+
"lng": "-74.006",
|
942
|
+
"state": "NY"
|
943
|
+
}
|
944
|
+
},
|
945
|
+
{
|
946
|
+
"id": "qwiki",
|
947
|
+
"name": "Qwiki",
|
948
|
+
"url": "http:\/\/qwiki.com",
|
949
|
+
"location": {
|
950
|
+
"id": "mountainviewcaus",
|
951
|
+
"name": "Tyler, TX",
|
952
|
+
"city": "Mountain View",
|
953
|
+
"country": "US",
|
954
|
+
"lat": "37.3861",
|
955
|
+
"lng": "-122.084",
|
956
|
+
"state": "CA"
|
957
|
+
}
|
958
|
+
},
|
959
|
+
{
|
960
|
+
"id": "receiverdesign",
|
961
|
+
"name": "Receiver Design",
|
962
|
+
"url": "http:\/\/receiverdesign.com",
|
963
|
+
"location": {
|
964
|
+
"id": "sanfranciscocaus",
|
965
|
+
"name": "Tyler, TX",
|
966
|
+
"city": "San Francisco",
|
967
|
+
"country": "US",
|
968
|
+
"lat": "37.7749",
|
969
|
+
"lng": "-122.419",
|
970
|
+
"state": "CA"
|
971
|
+
}
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"id": "rentstatus",
|
975
|
+
"name": "RentStatus",
|
976
|
+
"url": "http:\/\/www.rentstatus.com"
|
977
|
+
},
|
978
|
+
{
|
979
|
+
"id": "reputationdefender",
|
980
|
+
"name": "ReputationDefender",
|
981
|
+
"url": "http:\/\/www.reputationdefender.com",
|
982
|
+
"location": {
|
983
|
+
"id": "redwoodcitycaus",
|
984
|
+
"name": "Tyler, TX",
|
985
|
+
"city": "Redwood City",
|
986
|
+
"country": "US",
|
987
|
+
"lat": "37.4852",
|
988
|
+
"lng": "-122.236",
|
989
|
+
"state": "CA"
|
990
|
+
}
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"id": "rjmichaelsinc",
|
994
|
+
"name": "RJ Michaels, Inc.",
|
995
|
+
"url": "http:\/\/www.rjmichaels.com",
|
996
|
+
"location": {
|
997
|
+
"id": "jacksonmius",
|
998
|
+
"name": "Tyler, TX",
|
999
|
+
"city": "Jackson",
|
1000
|
+
"country": "US",
|
1001
|
+
"lat": "42.2459",
|
1002
|
+
"lng": "-84.4013",
|
1003
|
+
"state": "MI"
|
1004
|
+
}
|
1005
|
+
},
|
1006
|
+
{
|
1007
|
+
"id": "salesforcecom",
|
1008
|
+
"name": "Salesforce.com",
|
1009
|
+
"url": "http:\/\/www.salesforce.com",
|
1010
|
+
"location": {
|
1011
|
+
"id": "sanfranciscocaus",
|
1012
|
+
"name": "Tyler, TX",
|
1013
|
+
"city": "San Francisco",
|
1014
|
+
"country": "US",
|
1015
|
+
"lat": "37.7749",
|
1016
|
+
"lng": "-122.419",
|
1017
|
+
"state": "CA"
|
1018
|
+
}
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"id": "scrapblog",
|
1022
|
+
"name": "Scrapblog",
|
1023
|
+
"url": "http:\/\/scrapblog.com",
|
1024
|
+
"location": {
|
1025
|
+
"id": "sanfranciscocaus",
|
1026
|
+
"name": "Tyler, TX",
|
1027
|
+
"city": "San Francisco",
|
1028
|
+
"country": "US",
|
1029
|
+
"lat": "37.7749",
|
1030
|
+
"lng": "-122.419",
|
1031
|
+
"state": "CA"
|
1032
|
+
}
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"id": "scrippsinteractivenewspapersgroups",
|
1036
|
+
"name": "Scripps Interactive Newspapers Groups",
|
1037
|
+
"url": "http:\/\/www.scripps.com",
|
1038
|
+
"location": {
|
1039
|
+
"id": "knoxvilletnus",
|
1040
|
+
"name": "Tyler, TX",
|
1041
|
+
"city": "Knoxville",
|
1042
|
+
"country": "US",
|
1043
|
+
"lat": "35.9606",
|
1044
|
+
"lng": "-83.9207",
|
1045
|
+
"state": "TN"
|
1046
|
+
}
|
1047
|
+
},
|
1048
|
+
{
|
1049
|
+
"id": "seso",
|
1050
|
+
"name": "Seso",
|
1051
|
+
"url": "http:\/\/www.seso.net",
|
1052
|
+
"location": {
|
1053
|
+
"id": "losangelescaus",
|
1054
|
+
"name": "Tyler, TX",
|
1055
|
+
"city": "Los Angeles",
|
1056
|
+
"country": "US",
|
1057
|
+
"lat": "34.0522",
|
1058
|
+
"lng": "-118.244",
|
1059
|
+
"state": "CA"
|
1060
|
+
}
|
1061
|
+
},
|
1062
|
+
{
|
1063
|
+
"id": "sevennetworks",
|
1064
|
+
"name": "Seven Networks",
|
1065
|
+
"url": "http:\/\/www.seven.com",
|
1066
|
+
"location": {
|
1067
|
+
"id": "redwoodcitycaus",
|
1068
|
+
"name": "Tyler, TX",
|
1069
|
+
"city": "Redwood City",
|
1070
|
+
"country": "US",
|
1071
|
+
"lat": "37.4852",
|
1072
|
+
"lng": "-122.236",
|
1073
|
+
"state": "CA"
|
1074
|
+
}
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
"id": "shineboxcreativestudios",
|
1078
|
+
"name": "Shinebox Creative Studios",
|
1079
|
+
"url": "http:\/\/www.theshinebox.com",
|
1080
|
+
"location": {
|
1081
|
+
"id": "minneapolismnus",
|
1082
|
+
"name": "Tyler, TX",
|
1083
|
+
"city": "Minneapolis",
|
1084
|
+
"country": "US",
|
1085
|
+
"lat": "44.98",
|
1086
|
+
"lng": "-93.2638",
|
1087
|
+
"state": "MN"
|
1088
|
+
}
|
1089
|
+
},
|
1090
|
+
{
|
1091
|
+
"id": "showclix",
|
1092
|
+
"name": "ShowClix",
|
1093
|
+
"url": "http:\/\/www.showclix.com",
|
1094
|
+
"location": {
|
1095
|
+
"id": "pittsburghpaus",
|
1096
|
+
"name": "Tyler, TX",
|
1097
|
+
"city": "Pittsburgh",
|
1098
|
+
"country": "US",
|
1099
|
+
"lat": "40.4406",
|
1100
|
+
"lng": "-79.9959",
|
1101
|
+
"state": "PA"
|
1102
|
+
}
|
1103
|
+
},
|
1104
|
+
{
|
1105
|
+
"id": "singlefeed",
|
1106
|
+
"name": "SingleFeed",
|
1107
|
+
"url": "http:\/\/www.singlefeed.com",
|
1108
|
+
"location": {
|
1109
|
+
"id": "sanfranciscocaus",
|
1110
|
+
"name": "Tyler, TX",
|
1111
|
+
"city": "San Francisco",
|
1112
|
+
"country": "US",
|
1113
|
+
"lat": "37.7749",
|
1114
|
+
"lng": "-122.419",
|
1115
|
+
"state": "CA"
|
1116
|
+
}
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"id": "sixapart",
|
1120
|
+
"name": "Six Apart",
|
1121
|
+
"url": "http:\/\/www.sixapart.com"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"id": "smithbrothersagency",
|
1125
|
+
"name": "Smith Brothers Agency",
|
1126
|
+
"url": "http:\/\/www.smithbrosagency.com\/",
|
1127
|
+
"location": {
|
1128
|
+
"id": "pittsburghpaus",
|
1129
|
+
"name": "Tyler, TX",
|
1130
|
+
"city": "Pittsburgh",
|
1131
|
+
"country": "US",
|
1132
|
+
"lat": "40.4406",
|
1133
|
+
"lng": "-79.9959",
|
1134
|
+
"state": "PA"
|
1135
|
+
}
|
1136
|
+
},
|
1137
|
+
{
|
1138
|
+
"id": "socialcast",
|
1139
|
+
"name": "Socialcast",
|
1140
|
+
"url": "http:\/\/www.socialcast.com",
|
1141
|
+
"location": {
|
1142
|
+
"id": "sanfranciscocaus",
|
1143
|
+
"name": "Tyler, TX",
|
1144
|
+
"city": "San Francisco",
|
1145
|
+
"country": "US",
|
1146
|
+
"lat": "37.7749",
|
1147
|
+
"lng": "-122.419",
|
1148
|
+
"state": "CA"
|
1149
|
+
}
|
1150
|
+
},
|
1151
|
+
{
|
1152
|
+
"id": "socialgamescompany",
|
1153
|
+
"name": "Social Games Company",
|
1154
|
+
"url": "http:\/\/insertcompanyurl.com",
|
1155
|
+
"location": {
|
1156
|
+
"id": "londongb",
|
1157
|
+
"name": "Tyler, TX",
|
1158
|
+
"city": "London",
|
1159
|
+
"country": "GB",
|
1160
|
+
"lat": "51.5084",
|
1161
|
+
"lng": "-0.125533"
|
1162
|
+
}
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"id": "socialmediacom",
|
1166
|
+
"name": "SocialMedia.com",
|
1167
|
+
"url": "http:\/\/www.socialmedia.com",
|
1168
|
+
"location": {
|
1169
|
+
"id": "sanfranciscocaus",
|
1170
|
+
"name": "Tyler, TX",
|
1171
|
+
"city": "San Francisco",
|
1172
|
+
"country": "US",
|
1173
|
+
"lat": "37.7749",
|
1174
|
+
"lng": "-122.419",
|
1175
|
+
"state": "CA"
|
1176
|
+
}
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"id": "softwaredeveloper",
|
1180
|
+
"name": "Software Developer",
|
1181
|
+
"url": "http:\/\/www.zsassociates.com",
|
1182
|
+
"location": {
|
1183
|
+
"id": "evanstonilus",
|
1184
|
+
"name": "Tyler, TX",
|
1185
|
+
"city": "Evanston",
|
1186
|
+
"country": "US",
|
1187
|
+
"lat": "42.0411",
|
1188
|
+
"lng": "-87.6901",
|
1189
|
+
"state": "IL"
|
1190
|
+
}
|
1191
|
+
},
|
1192
|
+
{
|
1193
|
+
"id": "southerncaliforniapublicradio",
|
1194
|
+
"name": "Southern California Public Radio",
|
1195
|
+
"url": "http:\/\/www.scpr.org",
|
1196
|
+
"location": {
|
1197
|
+
"id": "losangelescaus",
|
1198
|
+
"name": "Tyler, TX",
|
1199
|
+
"city": "Los Angeles",
|
1200
|
+
"country": "US",
|
1201
|
+
"lat": "34.0522",
|
1202
|
+
"lng": "-118.244",
|
1203
|
+
"state": "CA"
|
1204
|
+
}
|
1205
|
+
},
|
1206
|
+
{
|
1207
|
+
"id": "southernwebgroup",
|
1208
|
+
"name": "Southern Web Group",
|
1209
|
+
"url": "http:\/\/www.southernwebgroup.com"
|
1210
|
+
},
|
1211
|
+
{
|
1212
|
+
"id": "sparkart",
|
1213
|
+
"name": "Sparkart",
|
1214
|
+
"url": "http:\/\/www.sparkart.com",
|
1215
|
+
"location": {
|
1216
|
+
"id": "pacifictimezone",
|
1217
|
+
"name": "Pacific Time Zone"
|
1218
|
+
}
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"id": "sriinternational",
|
1222
|
+
"name": "SRI International",
|
1223
|
+
"url": "http:\/\/www.sri.com",
|
1224
|
+
"location": {
|
1225
|
+
"id": "menloparkcaus",
|
1226
|
+
"name": "Tyler, TX",
|
1227
|
+
"city": "Menlo Park",
|
1228
|
+
"country": "US",
|
1229
|
+
"lat": "37.4538",
|
1230
|
+
"lng": "-122.182",
|
1231
|
+
"state": "CA"
|
1232
|
+
}
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"id": "sugarspunindustries",
|
1236
|
+
"name": "Sugarspun Industries",
|
1237
|
+
"url": "http:\/\/getsugarspun.com",
|
1238
|
+
"location": {
|
1239
|
+
"id": "newyorknyus",
|
1240
|
+
"name": "Tyler, TX",
|
1241
|
+
"city": "New York",
|
1242
|
+
"country": "US",
|
1243
|
+
"lat": "40.7143",
|
1244
|
+
"lng": "-74.006",
|
1245
|
+
"state": "NY"
|
1246
|
+
}
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
"id": "superkix",
|
1250
|
+
"name": "Superkix",
|
1251
|
+
"url": "http:\/\/superkix.com",
|
1252
|
+
"location": {
|
1253
|
+
"id": "newyorknyorsanfranciscoca",
|
1254
|
+
"name": "New York, NY or San Francisco, CA"
|
1255
|
+
}
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"id": "swansonrussell",
|
1259
|
+
"name": "Swanson Russell",
|
1260
|
+
"url": "http:\/\/www.swansonrussell.com",
|
1261
|
+
"location": {
|
1262
|
+
"id": "lincolnneus",
|
1263
|
+
"name": "Tyler, TX",
|
1264
|
+
"city": "Lincoln",
|
1265
|
+
"country": "US",
|
1266
|
+
"lat": "40.8",
|
1267
|
+
"lng": "-96.667",
|
1268
|
+
"state": "NE"
|
1269
|
+
}
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"id": "tastedmenu",
|
1273
|
+
"name": "Tasted Menu",
|
1274
|
+
"url": "http:\/\/www.tastedmenu.com",
|
1275
|
+
"location": {
|
1276
|
+
"id": "bostonmaus",
|
1277
|
+
"name": "Tyler, TX",
|
1278
|
+
"city": "Boston",
|
1279
|
+
"country": "US",
|
1280
|
+
"lat": "42.3584",
|
1281
|
+
"lng": "-71.0598",
|
1282
|
+
"state": "MA"
|
1283
|
+
}
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"id": "thebookreportnetwork",
|
1287
|
+
"name": "The Book Report Network",
|
1288
|
+
"url": "http:\/\/TheBookReportNetwork.com",
|
1289
|
+
"location": {
|
1290
|
+
"id": "newyorknyus",
|
1291
|
+
"name": "Tyler, TX",
|
1292
|
+
"city": "New York",
|
1293
|
+
"country": "US",
|
1294
|
+
"lat": "40.7143",
|
1295
|
+
"lng": "-74.006",
|
1296
|
+
"state": "NY"
|
1297
|
+
}
|
1298
|
+
},
|
1299
|
+
{
|
1300
|
+
"id": "thetexasamuniversitysystem",
|
1301
|
+
"name": "The Texas A&M University System",
|
1302
|
+
"url": "http:\/\/www.tamus.edu\/offices\/communications\/",
|
1303
|
+
"location": {
|
1304
|
+
"id": "collegestationtxus",
|
1305
|
+
"name": "Tyler, TX",
|
1306
|
+
"city": "College Station",
|
1307
|
+
"country": "US",
|
1308
|
+
"lat": "30.628",
|
1309
|
+
"lng": "-96.3344",
|
1310
|
+
"state": "TX"
|
1311
|
+
}
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"id": "theworldbank",
|
1315
|
+
"name": "The World Bank",
|
1316
|
+
"url": "http:\/\/www.worldbank.org",
|
1317
|
+
"location": {
|
1318
|
+
"id": "washingtondcus",
|
1319
|
+
"name": "Tyler, TX",
|
1320
|
+
"city": "Washington",
|
1321
|
+
"country": "US",
|
1322
|
+
"lat": "38.8951",
|
1323
|
+
"lng": "-77.0364",
|
1324
|
+
"state": "DC"
|
1325
|
+
}
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"id": "threespotmedia",
|
1329
|
+
"name": "Threespot Media",
|
1330
|
+
"url": "http:\/\/www.threespot.com\/jobs\/",
|
1331
|
+
"location": {
|
1332
|
+
"id": "washingtondcus",
|
1333
|
+
"name": "Tyler, TX",
|
1334
|
+
"city": "Washington",
|
1335
|
+
"country": "US",
|
1336
|
+
"lat": "38.8951",
|
1337
|
+
"lng": "-77.0364",
|
1338
|
+
"state": "DC"
|
1339
|
+
}
|
1340
|
+
},
|
1341
|
+
{
|
1342
|
+
"id": "tonicvisionltd",
|
1343
|
+
"name": "Tonic Vision Ltd",
|
1344
|
+
"url": "http:\/\/www.tonic.co.uk",
|
1345
|
+
"location": {
|
1346
|
+
"id": "londonse13er",
|
1347
|
+
"name": "London, SE1 3ER"
|
1348
|
+
}
|
1349
|
+
},
|
1350
|
+
{
|
1351
|
+
"id": "trapeze",
|
1352
|
+
"name": "Trapeze",
|
1353
|
+
"url": "http:\/\/www.trapeze.com",
|
1354
|
+
"location": {
|
1355
|
+
"id": "torontoca",
|
1356
|
+
"name": "Tyler, TX",
|
1357
|
+
"city": "Toronto",
|
1358
|
+
"country": "CA",
|
1359
|
+
"lat": "43.7001",
|
1360
|
+
"lng": "-79.4163"
|
1361
|
+
}
|
1362
|
+
},
|
1363
|
+
{
|
1364
|
+
"id": "tutorsource",
|
1365
|
+
"name": "TutorSource",
|
1366
|
+
"url": "http:\/\/tutorsource.com",
|
1367
|
+
"location": {
|
1368
|
+
"id": "santamonicacaus",
|
1369
|
+
"name": "Tyler, TX",
|
1370
|
+
"city": "Santa Monica",
|
1371
|
+
"country": "US",
|
1372
|
+
"lat": "34.0195",
|
1373
|
+
"lng": "-118.491",
|
1374
|
+
"state": "CA"
|
1375
|
+
}
|
1376
|
+
},
|
1377
|
+
{
|
1378
|
+
"id": "utest",
|
1379
|
+
"name": "uTest",
|
1380
|
+
"url": "http:\/\/www.utest.com",
|
1381
|
+
"location": {
|
1382
|
+
"id": "bostonmaus",
|
1383
|
+
"name": "Tyler, TX",
|
1384
|
+
"city": "Boston",
|
1385
|
+
"country": "US",
|
1386
|
+
"lat": "42.3584",
|
1387
|
+
"lng": "-71.0598",
|
1388
|
+
"state": "MA"
|
1389
|
+
}
|
1390
|
+
},
|
1391
|
+
{
|
1392
|
+
"id": "valtira",
|
1393
|
+
"name": "Valtira",
|
1394
|
+
"url": "http:\/\/www.valtira.com",
|
1395
|
+
"location": {
|
1396
|
+
"id": "minneapolismnus",
|
1397
|
+
"name": "Tyler, TX",
|
1398
|
+
"city": "Minneapolis",
|
1399
|
+
"country": "US",
|
1400
|
+
"lat": "44.98",
|
1401
|
+
"lng": "-93.2638",
|
1402
|
+
"state": "MN"
|
1403
|
+
}
|
1404
|
+
},
|
1405
|
+
{
|
1406
|
+
"id": "wallstreetondemand",
|
1407
|
+
"name": "Wall Street On Demand",
|
1408
|
+
"url": "http:\/\/wallst.com",
|
1409
|
+
"location": {
|
1410
|
+
"id": "bouldercous",
|
1411
|
+
"name": "Tyler, TX",
|
1412
|
+
"city": "Boulder",
|
1413
|
+
"country": "US",
|
1414
|
+
"lat": "40.015",
|
1415
|
+
"lng": "-105.271",
|
1416
|
+
"state": "CO"
|
1417
|
+
}
|
1418
|
+
},
|
1419
|
+
{
|
1420
|
+
"id": "webdesignerdepot",
|
1421
|
+
"name": "Webdesigner Depot",
|
1422
|
+
"url": "http:\/\/www.webdesignerdepot.com"
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"id": "webgrapessrl",
|
1426
|
+
"name": "Webgrapes, S.r.l.",
|
1427
|
+
"url": "http:\/\/www.webgrapes.it"
|
1428
|
+
},
|
1429
|
+
{
|
1430
|
+
"id": "webtrends",
|
1431
|
+
"name": "Webtrends",
|
1432
|
+
"url": "http:\/\/www.webtrends.com",
|
1433
|
+
"location": {
|
1434
|
+
"id": "portlandorus",
|
1435
|
+
"name": "Tyler, TX",
|
1436
|
+
"city": "Portland",
|
1437
|
+
"country": "US",
|
1438
|
+
"lat": "45.5235",
|
1439
|
+
"lng": "-122.676",
|
1440
|
+
"state": "OR"
|
1441
|
+
}
|
1442
|
+
},
|
1443
|
+
{
|
1444
|
+
"id": "wellingtonmanagementcompanyllp",
|
1445
|
+
"name": "Wellington Management Company, LLP",
|
1446
|
+
"url": "http:\/\/www.wellington.com",
|
1447
|
+
"location": {
|
1448
|
+
"id": "bostonmaus",
|
1449
|
+
"name": "Tyler, TX",
|
1450
|
+
"city": "Boston",
|
1451
|
+
"country": "US",
|
1452
|
+
"lat": "42.3584",
|
1453
|
+
"lng": "-71.0598",
|
1454
|
+
"state": "MA"
|
1455
|
+
}
|
1456
|
+
},
|
1457
|
+
{
|
1458
|
+
"id": "worryfreelabsinc",
|
1459
|
+
"name": "Worry Free Labs, Inc.",
|
1460
|
+
"url": "http:\/\/worryfreelabs.com"
|
1461
|
+
},
|
1462
|
+
{
|
1463
|
+
"id": "yahoo",
|
1464
|
+
"name": "Yahoo!",
|
1465
|
+
"url": "http:\/\/careers.yahoo.com\/",
|
1466
|
+
"location": {
|
1467
|
+
"id": "sunnyvalecaus",
|
1468
|
+
"name": "Tyler, TX",
|
1469
|
+
"city": "Sunnyvale",
|
1470
|
+
"country": "US",
|
1471
|
+
"lat": "37.3688",
|
1472
|
+
"lng": "-122.036",
|
1473
|
+
"state": "CA"
|
1474
|
+
}
|
1475
|
+
},
|
1476
|
+
{
|
1477
|
+
"id": "zurb",
|
1478
|
+
"name": "ZURB",
|
1479
|
+
"url": "http:\/\/zurb.com",
|
1480
|
+
"location": {
|
1481
|
+
"id": "campbellriverca",
|
1482
|
+
"name": "Tyler, TX",
|
1483
|
+
"city": "Campbell River",
|
1484
|
+
"country": "CA",
|
1485
|
+
"lat": "50.0163",
|
1486
|
+
"lng": "-125.245"
|
1487
|
+
}
|
1488
|
+
}]
|
1489
|
+
},
|
1490
|
+
"stat": "ok"
|
1491
|
+
}
|