-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresumes-json.json
14801 lines (14219 loc) · 658 KB
/
resumes-json.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"resumes":[
{
"additionalInfo":"",
"awards":[
],
"certifications":[
],
"dateCreated":{
"displayDate":"March 31, 2011",
"granularity":"DAY",
"isoDate":"2011-03-31T05:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":"1994",
"endDate":{
"displayDate":"1994",
"granularity":"YEAR",
"isoDate":"1994-01-01T06:00:00Z"
}
},
"degree":"MA",
"field":"history",
"location":"Austin, TX",
"school":"University of Texas at Austin"
},
{
"dateRange":{
"displayDateRange":"1977",
"endDate":{
"displayDate":"1977",
"granularity":"YEAR",
"isoDate":"1977-01-01T06:00:00Z"
}
},
"degree":"BA",
"field":"economics",
"location":"Washington, DC",
"school":"American University"
}
],
"firstName":"Jim",
"groups":[
],
"headline":"Database Administrator",
"lastName":"Lyons",
"links":[
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"1eda474a7af73b6e",
"skills":"",
"summary":"\u2022 MySQL database administration/programming\n\u2022 MongoDB\n\u2022 Perl/PHP/Bash shell script programming\n\u2022 HTML/Javascript/CSS/Ajax/DOM\n\u2022 Maatkit\n\u2022 Linux Red Hat 5 experience",
"url":"/r/Jim-Lyons/1eda474a7af73b6e?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed.com",
"dateRange":{
"displayDateRange":"July 2010 to Present",
"startDate":{
"displayDate":"July 2010",
"granularity":"MONTH",
"isoDate":"2010-07-01T05:00:00Z"
}
},
"description":") Maintain multiple production and development MySQL instances (mostly Percona MySQL 5.1.x) running on Red Hat Linux 5 systems\n) Maintain, develop, and tune multiple MySQL instances running on many servers\n) Manage replication, with multiple replication streams per server\n) Manage MySQL partitioned database and create scripts to monitor partition usage\n) Manage and maintain standard tasks to perform basic database functions such as backups and log maintenance and provide reports\n) Manage and maintain Mongodb No-SQL database\n) Make extensive use of shell scripts, Perl programs, and the \"cron\" facility of Linux to perform above task\n) Devise and execute critical backup procedures for the company's databases\n) Maintain multiple production MySQL instances (both MySQL 4.1 and 5.0) running on Red Hat Linux\n) Maintain multiple test and development MySQL instances\n) Maintain, develop, and tune several dozen databases of between 20 and 60 gigabytes\n) Manage multi-tier replication\n) Update production data from corporate feeds\n) Plan and architect system upgrades and site improvements to increase efficiency\n) Identify and remove single points of failure\n) Coordinate with project managers to provide database support for mission-critical projects\n) Manage and maintain standard tasks to perform basic database functions and provide reports\n) Make extensive use of shell scripts, Perl programs, and the \"cron\" facility of Linux to perform above task\n) Devise and execute critical backup procedures for the company's databases\n",
"location":"Austin, TX",
"title":"Database Administrator"
},
{
"company":"Excel Telecommunications",
"dateRange":{
"displayDateRange":"September 2008 to June 2010",
"endDate":{
"displayDate":"June 2010",
"granularity":"MONTH",
"isoDate":"2010-06-01T05:00:00Z"
},
"startDate":{
"displayDate":"September 2008",
"granularity":"MONTH",
"isoDate":"2008-09-01T05:00:00Z"
}
},
"description":"Primary responsibilities\n\u2022 Maintain multiple production and development MySQL instances (MySQL 5.0) running on Red Hat Linux 5 systems\n\u2022 Maintain, develop, and tune several dozen databases of over 4 Terabytes\n\u2022 Manage replication\n\u2022 Maintain an MSSQL database as administrator as well as a small Oracle database.\n\u2022 Manage and maintain standard tasks to perform basic database functions and provide reports\n\u2022 Make extensive use of shell scripts, Perl programs, and the \"cron\" facility of Linux to perform above task\n\u2022 Devise and execute critical backup procedures for the company's databases\n\u2022 Create, maintain, and enhance office intranet web site for systems and database group to monitor health of system and record system change requests written in PHP using AJAX and DOM technology\n\u2022 Provide timely reports on the current state of the databases",
"location":"Austin, TX",
"title":"Senior Database Administrator "
},
{
"company":"Hoover's, Inc",
"dateRange":{
"displayDateRange":"July 2007 to September 2008",
"endDate":{
"displayDate":"September 2008",
"granularity":"MONTH",
"isoDate":"2008-09-01T05:00:00Z"
},
"startDate":{
"displayDate":"July 2007",
"granularity":"MONTH",
"isoDate":"2007-07-01T05:00:00Z"
}
},
"description":"Primary responsibilities\n\u2022 Maintain multiple production MySQL instances (both MySQL 4.1 and 5.0) running on Red Hat Linux\n\u2022 Maintain multiple test and development MySQL instances\n\u2022 Maintain, develop, and tune several dozen databases of between 20 and 60 gigabytes\n\u2022 Manage multi-tier replication\n\u2022 Update production data from corporate feeds\n\u2022 Plan and architect system upgrades and site improvements to increase efficiency\n\u2022 Identify and remove single points of failure\n\u2022 Coordinate with project managers to provide database support for mission-critical projects\n\u2022 Manage and maintain standard tasks to perform basic database functions and provide reports\n\u2022 Make extensive use of shell scripts, Perl programs, and the \"cron\" facility of Linux to perform above task\n\u2022 Devise and execute critical backup procedures for the company's databases\n\u2022 Create, maintain, and enhance office intranet web site for systems and database group to monitor health of system and record system change requests",
"location":"",
"title":"MySQL Database Administrator"
},
{
"company":"Office of Telecommunications Services",
"dateRange":{
"displayDateRange":"October 2001 to July 2007",
"endDate":{
"displayDate":"July 2007",
"granularity":"MONTH",
"isoDate":"2007-07-01T05:00:00Z"
},
"startDate":{
"displayDate":"October 2001",
"granularity":"MONTH",
"isoDate":"2001-10-01T05:00:00Z"
}
},
"description":"Primary responsibilities\n\u2022 Database administrator and SQL programmer for several MySQL databases\n\u2022 Applications programmer for multiple web-based applications used by both staff and customers\n\u2022 Webmaster and programmer for multiple web sites hosted by OTS\n\u2022 Lead in ensuring that public web sites are accessible under such rules and guidelines as the WCAG 1.0 and Section 508\n\u2022 Programmer (PHP, Perl)\n\u2022 Developer of eb-portal to search/modify/create information concerning customers, contacts, equipment, inventory, staff projects",
"location":"",
"title":"Operating Systems Specialist"
},
{
"company":"IC2 Institute",
"dateRange":{
"displayDateRange":"December 1999 to October 2001",
"endDate":{
"displayDate":"October 2001",
"granularity":"MONTH",
"isoDate":"2001-10-01T05:00:00Z"
},
"startDate":{
"displayDate":"December 1999",
"granularity":"MONTH",
"isoDate":"1999-12-01T06:00:00Z"
}
},
"description":"Primary responsibilities\n\u2022 Oracle 8i DBA\n\u2022 Apache webmaster\n\u2022 Linux system administrator\n\u2022 Oracle SQL, PL/SQL programmer\n\u2022 Perl programmer\nThe EnterTech project was a specially-funded project of the IC2 Institute. The project developed an e-learning application that used an Oracle database to power a table-driven application written in Perl. The GUI made heavy use of Flash. As the DBA I installed and configured several Oracle 8i databases, both the servers and the clients. I used PL/SQL for both triggers and stored procedures. I also modified the database schema and configuration to improve efficiency.\nOn this project I developed: \u2022 a Web-based utility to enable staff administrators to maintain database data\n\u2022 a Web-based utility to enable instructors to maintain class data\n\u2022 a Web-based utility to generate statistical data for project analysis\n\u2022 an install procedure for the entire product as well as the documentation for it\nDuring my tenure at EnterTech I took a half-dozen technical courses in the Oracle DBA track and received Oracle certification as a DBA (an OCP).",
"location":"",
"title":"Senior Network Administrator, EnterTech project"
},
{
"company":"Computation Center",
"dateRange":{
"displayDateRange":"1991 to 1999",
"endDate":{
"displayDate":"1999",
"granularity":"YEAR",
"isoDate":"1999-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1991",
"granularity":"YEAR",
"isoDate":"1991-01-01T06:00:00Z"
}
},
"description":"Primary responsibilities\n\u2022 Oracle DBA\n\u2022 Maintenance of user and accounting data\n\u2022 General programming (C, Perl, FORTRAN, ISPF)\nMajor applications\n\u2022 Large-scale database application to record resource utilization and maintain user directory\n\u2022 ISPF GUI to serve as front-end for IBM's Document Composition Facility\n\u2022 Summary tables and analysis programs for staff's decision support system.",
"location":"",
"title":"Database Administrator"
}
]
},
{
"additionalInfo":"",
"awards":[
],
"certifications":[
],
"city":"Austin, TX",
"dateCreated":{
"displayDate":"June 13, 2012",
"granularity":"DAY",
"isoDate":"2012-06-13T05:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":"2007 to 2007",
"endDate":{
"displayDate":"2007",
"granularity":"YEAR",
"isoDate":"2007-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"2007",
"granularity":"YEAR",
"isoDate":"2007-01-01T06:00:00Z"
}
},
"degree":"MS",
"field":"Sociology",
"location":"San Antonio, TX",
"school":"University of Texas- San Antonio"
},
{
"dateRange":{
"displayDateRange":"2001 to 2005",
"endDate":{
"displayDate":"2005",
"granularity":"YEAR",
"isoDate":"2005-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"2001",
"granularity":"YEAR",
"isoDate":"2001-01-01T06:00:00Z"
}
},
"degree":"BS",
"field":"Rehabilitation Studies",
"location":"Denton, TX",
"school":"University of North Texas"
},
{
"dateRange":{
"displayDateRange":"2001 to 2005",
"endDate":{
"displayDate":"2005",
"granularity":"YEAR",
"isoDate":"2005-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"2001",
"granularity":"YEAR",
"isoDate":"2001-01-01T06:00:00Z"
}
},
"degree":"BA",
"field":"Sociology",
"location":"Denton, TX",
"school":"University of North Texas"
}
],
"firstName":"R",
"groups":[
],
"headline":"",
"lastName":"Ross",
"links":[
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"3a94a20646886f9b",
"skills":"",
"summary":"",
"url":"/r/R-Ross/3a94a20646886f9b?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed.com",
"dateRange":{
"displayDateRange":"July 2012 to Present",
"startDate":{
"displayDate":"July 2012",
"granularity":"MONTH",
"isoDate":"2012-07-01T05:00:00Z"
}
},
"description":"\u2022 Create and execute weekly test cases for testing job search products\n\u2022 Test across various countries and languages for Indeed international sites\n\u2022 Perform regression and functional testing of web and mobile platforms\n\u2022 Write automated Selenium tests to catch site regressions\n\u2022 Utilize JIRA to document testing verification notes and to report bugs and defects",
"location":"Austin, TX",
"title":"Web QA Analyst"
},
{
"company":"HomeAway",
"dateRange":{
"displayDateRange":"August 2007 to July 2012",
"endDate":{
"displayDate":"July 2012",
"granularity":"MONTH",
"isoDate":"2012-07-01T05:00:00Z"
},
"startDate":{
"displayDate":"August 2007",
"granularity":"MONTH",
"isoDate":"2007-08-01T05:00:00Z"
}
},
"description":"\u2022 Provided pre-sales support and systems configuration recommendations for prospective customers\n\u2022 Created daily business workflows for 2 in house developers and team of 14 outsourced developers (SoftServe Inc, Ukraine)\n\u2022 Worked with vendors, business development, and sales teams across the EU, US, and Australia\n\u2022 Project manager for legacy platform end of life migration to new database\n\u2022 Created weekly metrics on project SLAs for global stakeholders\n\nPrevious Role: Customer Support Manager\n\u2022 Sole point of contact for all customer escalations and resolutions via phone and email\n\u2022 Processed all B2B accounting orders for 11 sales account managers including monthly revenue and commission tracking\n\nPrevious Role: Dataload Analyst\n\u2022 Created online advertising ads via property management websites and 3rd party software\n\u2022 Assisted sales account managers with lead generation and prospecting; cold-calling approx 10-15 leads a day and setup call back appointments for account managers\n\u2022 First level of defect and bug escalations to technical support and development team using web based software FogBugz, Bugzilla, and Rally",
"location":"Austin, TX",
"title":"Business Operations Analyst"
},
{
"company":"Bio-Rad Labs",
"dateRange":{
"displayDateRange":"May 2005 to August 2006",
"endDate":{
"displayDate":"August 2006",
"granularity":"MONTH",
"isoDate":"2006-08-01T05:00:00Z"
},
"startDate":{
"displayDate":"May 2005",
"granularity":"MONTH",
"isoDate":"2005-05-01T05:00:00Z"
}
},
"description":"\u2022 Worked with development team to define specific software requirements for each hospital/lab based on their lab instruments\n\u2022 Scheduled customer training sessions via Webex for hospital and laboratory staff members\n\u2022 Trained admin staff on internal products and processes",
"location":"Plano, TX",
"title":"Training Coordinator"
}
]
},
{
"additionalInfo":"",
"awards":[
],
"certifications":[
],
"city":"Austin, TX",
"dateCreated":{
"displayDate":"February 17, 2011",
"granularity":"DAY",
"isoDate":"2011-02-17T06:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":"January 2001 to January 2005",
"endDate":{
"displayDate":"January 2005",
"granularity":"MONTH",
"isoDate":"2005-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"January 2001",
"granularity":"MONTH",
"isoDate":"2001-01-01T06:00:00Z"
}
},
"degree":"B.S.",
"field":"French",
"location":"",
"school":"The Pennsylvania State University - Schreyer Honors College"
}
],
"firstName":"JENNIFER",
"groups":[
],
"headline":"International Advertiser Operations at Indeed.com",
"lastName":"CHEUNG",
"links":[
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"2853e74623d9deb0",
"skills":"",
"summary":"",
"url":"/r/JENNIFER-CHEUNG/2853e74623d9deb0?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed.com",
"dateRange":{
"displayDateRange":"July 2011 to Present",
"startDate":{
"displayDate":"July 2011",
"granularity":"MONTH",
"isoDate":"2011-07-01T05:00:00Z"
}
},
"description":"Identifying existing operational efficiences in the US and applying them to emerging international markets\n\u25c6 Serve as cross-functional liaison to ensure seamless integration of international revenue related initiatives and processes \n\u25c6 Develop and manage international sales processes",
"location":"Austin, TX",
"title":"International Advertiser Operations"
},
{
"company":"Google AdWords",
"dateRange":{
"displayDateRange":"January 2010 to May 2011",
"endDate":{
"displayDate":"May 2011",
"granularity":"MONTH",
"isoDate":"2011-05-01T05:00:00Z"
},
"startDate":{
"displayDate":"January 2010",
"granularity":"MONTH",
"isoDate":"2010-01-01T06:00:00Z"
}
},
"description":"Manage advertiser accounts, budget delivery, optimizations, and proposals for clients such as Siemens, Chevron, FedEx, GE, Accenture, and Shell\n\u25c6\tPresent trainings on AdWords products to client groups of up to 30 members\n\u25c6\tProvide campaign analysis and reporting to ensure clients are satisfied with ROI\n\u25c6\tLeverage market and internal data to provide unique customer insights\n\u25c6\tWork with product, engineering, and operations in order to provide superior customer support\n\u25c6\tReceived six awards in recognition of outstanding performance",
"location":"New York, NY",
"title":"Account Manager"
},
{
"company":"Google",
"dateRange":{
"displayDateRange":"August 2008 to December 2009",
"endDate":{
"displayDate":"December 2009",
"granularity":"MONTH",
"isoDate":"2009-12-01T06:00:00Z"
},
"startDate":{
"displayDate":"August 2008",
"granularity":"MONTH",
"isoDate":"2008-08-01T05:00:00Z"
}
},
"description":"Project managed for six emerging Google businesses, including TV Ads Online through YouTube\n\u25c6\tWorked directly for the business leader on strategy making, agenda setting, and operational streamlining\n\u25c6\tServed as Chief of Staff for Google TV Ads start-up\n\u25c6\tPresented online video player competitive analysis and product research to YouTube product team\n\u25c6\tReceived nine awards in recognition of outstanding performance\n\n\u25c6 IRTS Minority Career Workshop, New York, NY: Young Professionals Panel Speaker (Nov 09)",
"location":"New York, NY",
"title":"Project Manager"
},
{
"company":"The George Balanchine Trust",
"dateRange":{
"displayDateRange":"January 2007 to August 2008",
"endDate":{
"displayDate":"August 2008",
"granularity":"MONTH",
"isoDate":"2008-08-01T05:00:00Z"
},
"startDate":{
"displayDate":"January 2007",
"granularity":"MONTH",
"isoDate":"2007-01-01T06:00:00Z"
}
},
"description":"Managed copyright licensing and brand management, working with over 50 companies nationwide\n\n\u25c6 Dance/USA Spring Council Meeting, Chicago, IL: Scholarship-Winning Attendee (Jun 07)",
"location":"New York, NY",
"title":"Coordinator"
},
{
"company":"Performing Arts",
"dateRange":{
"displayDateRange":"September 2006 to December 2006",
"endDate":{
"displayDate":"December 2006",
"granularity":"MONTH",
"isoDate":"2006-12-01T06:00:00Z"
},
"startDate":{
"displayDate":"September 2006",
"granularity":"MONTH",
"isoDate":"2006-09-01T05:00:00Z"
}
},
"description":"Implemented 12 events, including The 11th Annual Multicultural Children's Book Festival\n\n\u25c6 6th Annual Metro DC Dance Awards, Washington, DC: Assistant Stage Manager (Sept 06)",
"location":"Washington, DC",
"title":"Program Intern"
},
{
"company":"High School",
"dateRange":{
"displayDateRange":"August 2005 to June 2006",
"endDate":{
"displayDate":"June 2006",
"granularity":"MONTH",
"isoDate":"2006-06-01T05:00:00Z"
},
"startDate":{
"displayDate":"August 2005",
"granularity":"MONTH",
"isoDate":"2005-08-01T05:00:00Z"
}
},
"description":"Developed curriculum and taught 20 classes of 40 different students once a week",
"location":"Yogyakarta, ID",
"title":"English Teacher"
},
{
"company":"Masterfoods, and BMW",
"dateRange":{
"displayDateRange":"February 2004 to June 2004",
"endDate":{
"displayDate":"June 2004",
"granularity":"MONTH",
"isoDate":"2004-06-01T05:00:00Z"
},
"startDate":{
"displayDate":"February 2004",
"granularity":"MONTH",
"isoDate":"2004-02-01T06:00:00Z"
}
},
"description":"Planned business summits for clients such as Bacardi-Martini, Masterfoods, and BMW\n\nLanguage and Computer Skills\n\u25c6\tFrench - Fluent; Indonesian - Conversational; Mandarin - Basic\n\u25c6\tGoogle AdWords; Microsoft Office; Mac and PC",
"location":"Paris (75)",
"title":"Production Intern"
}
]
},
{
"additionalInfo":"Interests: music (listening and playing), technology, film, literature, comic books, writing, fencing",
"awards":[
{
"description":"",
"title":"Hoey Award for Creative Writing, National Merit Scholarship, St Stephen's Bishop's Medal, Trilogy Business Unit"
}
],
"certifications":[
],
"city":"Austin, TX",
"dateCreated":{
"displayDate":"June 2, 2011",
"granularity":"DAY",
"isoDate":"2011-06-02T05:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":"1991 to 1995",
"endDate":{
"displayDate":"1995",
"granularity":"YEAR",
"isoDate":"1995-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1991",
"granularity":"YEAR",
"isoDate":"1991-01-01T06:00:00Z"
}
},
"degree":"BS",
"field":"Computer Science",
"location":"Providence, RI",
"school":"Brown University"
},
{
"dateRange":{
"displayDateRange":"1987 to 1991",
"endDate":{
"displayDate":"1991",
"granularity":"YEAR",
"isoDate":"1991-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1987",
"granularity":"YEAR",
"isoDate":"1987-01-01T06:00:00Z"
}
},
"degree":"",
"field":"High School",
"location":"Austin, TX",
"school":"St .Stephen's Episcopal School"
},
{
"dateRange":{
"displayDateRange":""
},
"degree":"",
"field":"",
"location":"",
"school":"Brownwood ISD"
}
],
"firstName":"Jack",
"groups":[
{
"dateRange":{
"displayDateRange":""
},
"description":"",
"title":"W3C P3P 1.1 Working Group (Invited Expert)"
},
{
"dateRange":{
"displayDateRange":""
},
"description":"",
"title":"ACM"
}
],
"headline":"Engineering Director at Indeed.com",
"lastName":"Humphrey",
"links":[
{
"url":"http://engineering.indeed.com/blog/2012/11/engineering-at-indeed/"
},
{
"url":"http://engineering.indeed.com/blog/2012/11/logrepo-enabling-data-driven-decisions/"
},
{
"url":"http://twitter.com/#!/youknowjack"
},
{
"url":"http://www.linkedin.com/in/leejack"
}
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"138d2a89d499b686",
"skills":"Agile development process, managing and mentoring technical staff, web services/application development, Java, JavaScript, C/C++, various SQL and NoSQL databases",
"summary":"I enjoy building and leading high-caliber teams to create software that reaches millions of users. I feel successful when my teams love what they do and our users love what we've built.\n\nI've been building services and applications that provide real value in the world for over 17 years. I have experience forming new teams to implement products/features from the ground up, as well as leading pre-existing teams to improve process and productivity and deliver significant new versions.\n\nI am currently the Engineering Director for Jobseeker Applications at Indeed, working every day on consumer-facing web applications that scale to many millions of users. I have led the Job Search development team since April 2009 and the newer Resume team since its formation in December 2010. Our job search sites worldwide have over 90 million unique visitors who do over 3 billion job searches each month, and millions of jobseekers worldwide have created an Indeed Resume since our launch in March 2011.\n\nPrevious to Indeed, I was a Tech Lead/Manager at Google in the New York and Santa Monica offices, leading AdWords projects. Before that, I led the development of the data acquisition platform for Coremetrics. My previous software development jobs were at Reactivity, Trilogy, and EBT/Inso.",
"url":"/r/Jack-Humphrey/138d2a89d499b686?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed.com",
"dateRange":{
"displayDateRange":"April 2009 to Present",
"startDate":{
"displayDate":"April 2009",
"granularity":"MONTH",
"isoDate":"2009-04-01T05:00:00Z"
}
},
"description":"I lead the Jobseeker Applications teams, including Job Search and Resume.\n\nOther responsibilities include:\n* defining and establishing key lightweight development and release management processes, \n* recruiting new developers,\n* building a robust internship program, and \n* establishing a regular review process for the engineering organization.",
"location":"Austin, TX",
"title":"Engineering Director, Jobseeker Applications"
},
{
"company":"Google",
"dateRange":{
"displayDateRange":"November 2004 to March 2009",
"endDate":{
"displayDate":"March 2009",
"granularity":"MONTH",
"isoDate":"2009-03-01T06:00:00Z"
},
"startDate":{
"displayDate":"November 2004",
"granularity":"MONTH",
"isoDate":"2004-11-01T06:00:00Z"
}
},
"description":"I led project teams developing new features for AdWords advertisers. In addition to my own technical contributions to these projects, I managed engineers of varying skill and experience levels to achieve their goals and help realize project success.",
"location":"",
"title":"Software Engineer and Tech Lead/Manager"
},
{
"company":"Coremetrics",
"dateRange":{
"displayDateRange":"July 2001 to November 2004",
"endDate":{
"displayDate":"November 2004",
"granularity":"MONTH",
"isoDate":"2004-11-01T06:00:00Z"
},
"startDate":{
"displayDate":"July 2001",
"granularity":"MONTH",
"isoDate":"2001-07-01T05:00:00Z"
}
},
"description":"I was responsible for the data acquisition platform for a massive-scale web site analytics data warehouse.",
"location":"",
"title":"Lead Software Developer"
},
{
"company":"Reactivity",
"dateRange":{
"displayDateRange":"2000 to 2001",
"endDate":{
"displayDate":"2001",
"granularity":"YEAR",
"isoDate":"2001-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"2000",
"granularity":"YEAR",
"isoDate":"2000-01-01T06:00:00Z"
}
},
"description":"",
"location":"",
"title":"Senior Technologist & Technical Lead, New Venture Creation"
},
{
"company":"Trilogy Software",
"dateRange":{
"displayDateRange":"1997 to 2000",
"endDate":{
"displayDate":"2000",
"granularity":"YEAR",
"isoDate":"2000-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1997",
"granularity":"YEAR",
"isoDate":"1997-01-01T06:00:00Z"
}
},
"description":"",
"location":"",
"title":"Software Developer / Team Lead"
},
{
"company":"Inso Corporation",
"dateRange":{
"displayDateRange":"1995 to 1997",
"endDate":{
"displayDate":"1997",
"granularity":"YEAR",
"isoDate":"1997-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1995",
"granularity":"YEAR",
"isoDate":"1995-01-01T06:00:00Z"
}
},
"description":"EBT was acquired by Inso in 1996.",
"location":"",
"title":"Software Engineer"
},
{
"company":"Electronic Book Technologies",
"dateRange":{
"displayDateRange":"1995 to 1997",
"endDate":{
"displayDate":"1997",
"granularity":"YEAR",
"isoDate":"1997-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"1995",
"granularity":"YEAR",
"isoDate":"1995-01-01T06:00:00Z"
}
},
"description":"Developed an innovative web content management system called DynaBase.",
"location":"",
"title":"Software Engineer"
}
]
},
{
"additionalInfo":"",
"awards":[
],
"certifications":[
],
"dateCreated":{
"displayDate":"March 15, 2012",
"granularity":"DAY",
"isoDate":"2012-03-15T05:00:00Z"
},
"educations":[
],
"firstName":"",
"groups":[
],
"headline":"",
"lastName":"",
"links":[
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"b8f376bb06c43bf7",
"skills":"",
"summary":"",
"url":"/r/b8f376bb06c43bf7?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed Inc.",
"dateRange":{
"displayDateRange":"April 1997 to Present",
"startDate":{
"displayDate":"April 1997",
"granularity":"MONTH",
"isoDate":"1997-04-01T06:00:00Z"
}
},
"description":"efefe",
"location":"Austin, TX",
"title":"QA"
}
]
},
{
"additionalInfo":"Operating Systems: Mac OS-X, Linux, Windows (if I have to)\nPast Projects:\no Developed internal Django application at Indeed for new-hire recommendations\no Created Django application to record and predict in-office Ping Pong rankings using an Elo ranking algorithm",
"awards":[
],
"certifications":[
],
"city":"Austin, TX",
"dateCreated":{
"displayDate":"August 10, 2011",
"granularity":"DAY",
"isoDate":"2011-08-10T05:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":"September 2008 to Present",
"startDate":{
"displayDate":"September 2008",
"granularity":"MONTH",
"isoDate":"2008-09-01T05:00:00Z"
}
},
"degree":"Bachelor of Business Administration",
"field":"Information Systems and Applied Math",
"location":"Madison, WI",
"school":"University of Wisconsin"
}
],
"firstName":"Zachary",
"groups":[
],
"headline":"SEO Specialist at Indeed",
"lastName":"Cocos",
"links":[
],
"militaryBackground":false,
"militaryExperiences":[
],
"patents":[
],
"publications":[
],
"resumeKey":"9c071dac61ac27b4",
"skills":"",
"summary":"Programming Languages: Python, PHP, R, Java, Visual Basic\nInternet Technologies: Django, HTML, CSS, JavaScript, jQuery, XML, JSON, DOM, Wordpress, Git\nDatabase Technologies: MongoDB, SQL, MySQL, MS-SQL Server",
"url":"/r/Zachary-Cocos/9c071dac61ac27b4?indpubnum=4312925913127155",
"workExperiences":[
{
"company":"Indeed",
"dateRange":{
"displayDateRange":"July 2012 to Present",
"startDate":{
"displayDate":"July 2012",
"granularity":"MONTH",
"isoDate":"2012-07-01T05:00:00Z"
}
},
"description":"",
"location":"Austin, TX",
"title":"SEO Specialist"
},
{
"company":"University of Wisconsin",
"dateRange":{
"displayDateRange":"March 2009 to Present",
"startDate":{
"displayDate":"March 2009",
"granularity":"MONTH",
"isoDate":"2009-03-01T06:00:00Z"
}
},
"description":"\u2022 Teach classes for the University of Wisconsin on various software programs, including the Adobe Creative Suite, Microsoft products, and other web and graphic design programs\n\u2022 Advise students regarding the application of software to their course projects\n\u2022 Organize, edit and publish proprietary software manuals",
"location":"Madison, WI",
"title":"Student Software Trainer"
},
{
"company":"Morgridge Institute for Research",
"dateRange":{
"displayDateRange":"May 2010 to January 2012",
"endDate":{
"displayDate":"January 2012",
"granularity":"MONTH",
"isoDate":"2012-01-01T06:00:00Z"
},
"startDate":{
"displayDate":"May 2010",
"granularity":"MONTH",
"isoDate":"2010-05-01T05:00:00Z"
}
},
"description":"\u2022 Manage 30 desktop and laptop computers ensuring that hardware and software are updated and functional\n\u2022 Solve technical issues of hardware, software, and operating systems that arise from continuous machine use\n\u2022 Gain knowledge in UNIX command line to efficiently and effectively manage multiple machines",
"location":"Madison, WI",
"title":"Bioinformatics Systems Administrator Intern"
},
{
"company":"Indeed.com",
"dateRange":{
"displayDateRange":"May 2011 to August 2011",
"endDate":{
"displayDate":"August 2011",
"granularity":"MONTH",
"isoDate":"2011-08-01T05:00:00Z"
},
"startDate":{
"displayDate":"May 2011",
"granularity":"MONTH",
"isoDate":"2011-05-01T05:00:00Z"
}
},
"description":"\u2022 Developed and implement Python scripts to analyze Indeed and its competitors\n\u2022 Investigated Google/Bing ranking factors and ensured that old and new pages abide properly\n\u2022 Managed SEM campaign for Indeed.co.il",
"location":"Austin, TX",
"title":"SEO/SEM Intern"
},
{
"company":"Skipso.com",
"dateRange":{
"displayDateRange":"August 2010 to February 2011",
"endDate":{
"displayDate":"February 2011",
"granularity":"MONTH",
"isoDate":"2011-02-01T06:00:00Z"
},
"startDate":{
"displayDate":"August 2010",
"granularity":"MONTH",
"isoDate":"2010-08-01T05:00:00Z"
}
},
"description":"\u2022 Developed PHP-based applications through the use of the Symfony PHP framework\n\u2022 Re-factored CSS for website to increase site efficiency \n\u2022 Aid in discussing business strategies for website expansion",
"location":"London",
"title":"Front-end Web Developer"
}
]
},
{
"additionalInfo":"",
"awards":[
],
"certifications":[
],
"city":"Austin, TX",
"dateCreated":{
"displayDate":"August 9, 2012",
"granularity":"DAY",
"isoDate":"2012-08-09T05:00:00Z"
},
"educations":[
{
"dateRange":{
"displayDateRange":""
},
"degree":"B.S",
"field":"Exercise Science",
"location":"",
"school":"Texas State University"
}
],
"firstName":"Paul",
"groups":[
],
"headline":"Talent Acquisition Manager - BuildASign.com",
"lastName":"McDonald",
"links":[
{
"url":"http://www.linkedin.com/in/paulmcdonald"
}
],
"militaryBackground":false,
"militaryExperiences":[