forked from wuhaifengdhu/MonsterCrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposition_profile_skills.txt
1513 lines (1513 loc) · 21.8 KB
/
position_profile_skills.txt
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
differential equations
electrophysiology
devops
system design
aviation
content management
cognitive neuroscience
matlab
quantum computing
teaching
data entry
geology
etl tools
health informatics
categorical data analysis
embedded c
surface chemistry
molecular dynamics
unity3d
cross-functional team leadership
risk assessment
database management
engineering management
financial services
cms
numerical analysis
unsupervised learning
statistical mechanics
actuarial science
process improvement
virtualization
user experience design
panda
statistical signal processing
asic
time management
mac os
environmental science
random forests
agile project management
transportation planning
information technology
glm
economics
sql database design
credit
web mining
military
sas enterprise miner
computer architecture
classification
population genetics
healthcare information technology hit
julia
unix
experimentation
derivatives
dna
army
regression models
risk management
campaign management
structural equation modeling
web design
cheminformatics
jmp
drug design
process automation
computational linguistics
energy efficiency
word
eclipse
root
scripting
dynamical systems
portfolio management
revenue analysis
educational technology
portfolio optimization
contract negotiation
sharepoint
sas enterprise guide
business planning
text classification
final cut pro
data security
oracle e-business suite
copy editing
fluid mechanics
retail
sparql
bootstrap
e-commerce
algorithms
network security
intellectual property
rt-pcr
rnaseq
capital markets
google docs
counterterrorism
r programming
writing
statistical software
voip
chromatography
survey design
technical documentation
business transformation
cloudera
pharmaceutical industry
biomaterials
requirements gathering
cartography
computer forensics
computational chemistry
trading
relational databases
direct marketing
particle physics
dsp
rf
database marketing
medicine
spatial databases
cancer research
data scientist
sensors
cell culture
mvc
stochastic optimization
microsoft azure
proteomics
operational planning
property & casualty insurance
neo4j
process simulation
basic html
microfabrication
investment banking
netbeans
social media measurement
struts
organic synthesis
idl programming
lifesciences
dimensional modeling
operating systems
text mining
it strategy
japanese
strategic thinking
it service management
performance improvement
solar energy
financial analysis
ampl
kalman filtering
fixed income
supply chain optimization
drug delivery
photolithography
plasma physics
business intelligence
angularjs
market basket analysis
customer segmentation strategy
control systems design
user experience
firmware
marketing automation
social media marketing
project coordination
dna sequencing
natural language processing
ptc creo
performance measurement
bigquery
metrics
pentaho
business process re-engineering
nonprofits
geographic information science
technology transfer
tissue culture
dod
os x
laboratory skills
supply chain
strategic planning
visual studio
creative problem solving
d3
technical communication
healthcare management
critical thinking
web marketing
graph theory
cryptography
structural engineering
sharepoint designer
event planning
collaborative filtering
digital strategy
program evaluation
drug development
psychophysics
microscopy
j2ee web services
sequence analysis
architecture
emr
high availability
mergers
academic tutoring
active directory
testing
analytics
statistical computing
corporate development
r&d
biomechanics
visualization
customer service
html5
modeling
decision analysis
quantitative research
security clearance
technical analysis
press releases
customer support
internet things
data integration
negotiation
statistical modeling
shell scripting
protein purification
systems design
fourier analysis
telecommunications
pricing optimization
nonlinear dynamics
opencv
deep learning
environmental impact assessment
dreamweaver
numpy
analysis services
international business
personnel selection
ich-gcp
bayesian network
lean six sigma
program development
optimization algorithms
dashboard
product management
advertising research
r studio
ip
employee training
database administration
signal processing
ic
computer graphics
online advertising
logistics management
medical devices
bloomberg
hipaa
digital image processing
performance metrics
presto
market data
image analysis
options
materials
netezza
obiee
people skills
investments
information security management
web applications
solaris
biostatistics
performance tuning
psychometrics
system identification
product strategy
distributed systems
field work
vertica
agile
software project management
fortran
evolutionary computation
oracle sql
strategic communications
user research
salesforce.com
outcomes research
mobile marketing
social networking
scikit-learn
securities
online marketing
managed care
windows 7
security
rstudio
centos
text analytics
gel electrophoresis
health policy
social sciences
flow cytometry
sociology
cognitive psychology
data migration
uml
monetization
product development
vhdl
marketing
microfluidics
science communication
open source
manufacturing
investment strategies
postgresql
gis analysis
joomla
product innovation
soa
consulting
intelligence analysis
dashboards
haskell
environmental policy
git
gis
abaqus
sustainable development
combinatorics
wordpress
astrophysics
music
fpga
econometric modeling
wireless
job analysis
human factors
network engineering
data architecture
electrical engineering
organizational effectiveness
powershell
higher education
health insurance
theoretical physics
simulations
accounting
economic research
excel
sybase
computer science
sap2000
jenkins
social media analytics
toad
customer retention
sql
neuroscience
disaster recovery
cloud computing
business strategy
exploratory data analysis
apache storm
chaid
interest rate derivatives
web 2.0
technical leadership
flask
java enterprise edition
scientific visualization
drug discovery
clinical decision support
cloudera impala
biopharmaceuticals
erp
object recognition
support vector machine svm
solver
civil engineering
real estate
pmp
global health
speech processing
microarray analysis
data-driven decision making
it management
pmo
hdfs
ssis
creative writing
professional services
transportation
geostatistics
french
water
apache
software development
special education
vb.net
thin films
semiconductor device
environmental consulting
healthcare analytics
test driven development
account management
microsoft access
perl
crowdsourcing
visio
data management
neurophysiology
cplex
business process
b testing
geophysics
industrial organization
data processing
sap bi
functional programming
machine learning
reverse engineering
hidden markov models
cluster analysis
sap bw
display advertising
web content
spc
random forest
business modeling
simulink
pyspark
technical recruiting
computer vision
adobe creative suite
social psychology
wireless sensor networks
html 5
unstructured data
computational biology
sustainability
political science
data wrangling
data
commodity
object oriented design
cosmology
arena simulation software
catastrophe modeling
tutoring
sd
ppc
oncology
sql server reporting services ssrs
data warehouse architecture
soc
quality control
heat transfer
credit risk
arduino
process engineering
product marketing
control theory
digital media
coaching
microstrategy
policy
survey research
finance
sap r 3
user interface design
qualitative & quantitative research methodologies
analytical skills
innovation management
cognition
logistic regression
renewable energy
linear programming
feature extraction
c++
air force
mahout
computer hardware
hibernate
embedded software
theory
cissp
cart
business analytics
ajax
jdbc
entrepreneurship
marketing mix modeling
training
programming
business objects
website development
ansys
customer insight
proofreading
spanish
mathematical modeling
nmr spectroscopy
image processing
fmri
enterprise architecture
multivariable calculus
content strategy
scanning electron microscopy
mems
semantics
lucene
organizational leadership
r
start-ups
ant
western blotting
sas
sap
cassandra
pcb design
comsol
microcontrollers
wcf
apache hive
erdas imagine
competitive intelligence
greenplum
protein chemistry
latex
design patterns
system testing
sql server
embedded systems
microsoft word
mri
nlp
sas certified base programmer
survival analysis
german
nonlinear optimization
email marketing
health economics
biometrics
geography
xml
web scraping
android development
audio engineering
fda
data modeling
stata
risk analysis
computational physics
systems biology
amazon web services aws
amazon ec2
postgis
statistical tools
community organizing
google api
quality improvement
economic development
lean startup
quantitative finance
corporate finance
programming languages
outsourcing
big data analytics
structural bioinformatics
mandarin
regulatory affairs
jboss application server
electronic trading
social network analysis
combinatorial optimization
data structures
transcad
spark
inventory management
data visualization
solidworks
genomics
probability theory
optimal control
forecasting
cancer
characterization
robotics
grants
data warehousing
data mining
web crawling
qlikview
university teaching
statistical data analysis
powerpivot
visual analytics
molecular biology
qlikview development
spotfire
sales operations
ruby
hedis
college teaching
network optimization
decision modeling
go-to-market strategy
editorial
application development
ios development
cluster
cobol
program management
servlets
structural biology
microarray
html
reliability engineering
root cause analysis
pro engineer
in vivo
wpf
awesomeness
consumer behaviour
environmental engineering
applied probability
digital marketing
assembly language
nosql
performance testing
volunteer management
rest
sap erp
sales presentations
digital analytics
change management
autocad
bayesian statistics
d3.js
subversion
omniture
salesforce.com administration
prezi
data science
windows server
bayesian inference
information visualization
military experience
vacuum
client presentation
mathematics education
pharmacovigilance
customer experience
mathematical biology
statistical inference
b2b marketing
imagej
venture capital
financial markets
public relations
information retrieval
software design
mass spectrometry
military operations
market risk
genetics
redis
equity research
mathcad
metabolomics
nmr
microsoft crm
nvivo
leadership
biomedical engineering
rdbms
organic chemistry
spss
medicare
cuda
cyber-security
outlook
fundraising
communication
stochastic calculus
due diligence
mathematical physics
transportation engineering
ehr
opengl
strategic consulting
emacs
data munging
growth hacking
graphical models
apis
knowledge representation
chemical engineering
computer security
fraud
illustrator
sap netweaver
ontologies
amazon redshift
requirements analysis
sales
objective-c
ssrs
photography
unit testing
laboratory
politics
quickbooks
hospitals
biochemistry
mathematica
storage
equity derivatives
database development
mathematics
ggplot
cascading style sheets css
fluid dynamics
sap implementation
parallel programming
wifi
stochastic modeling
interaction design
qualitative research
chinese
hedge funds
design experiments
association rules
microsoft sql server
agile methodologies
solar cells
materials science
mpi
government contracting
mergers & acquisitions
infectious diseases
employee engagement
bioconductor
lisp
mapreduce
common lisp
lecturing
systems analysis
information design
batch processing
academic writing
statistical consulting
powder x-ray diffraction
microbiology
large-scale data analysis
segmentation
machine vision
written & oral presentation skills
b2b
arena
search
computational neuroscience
advertising
google adwords
qualtrics
semiconductors
political campaigns
vim
graphic design
vis
mobile advertising
esri
web analytics
structured products
j2ee
petroleum
governance
quantum mechanics
requirements management
grant writing
genetic algorithms
qpcr
science
junit
mobile applications
budgets
customer acquisition
visual basic
factor analysis
equities
sql server management studio
statistical arbitrage
machining
algorithm development
asset allocation
css
algebra
biophysics
partial differential equations
bioinformatics
extract transform load etl
metrology
a
github
remote sensing
documentation
django
mutual funds
nltk
photoshop
healthcare industry
data acquisition
strategic partnerships
radar
panel data analysis
evolutionary biology
anomaly detection
pcr
monte carlo simulation
supply chain management
user interface
fraud detection
pca
project engineering
scipy
staff development
business development
bayesian method
communication skills
knowledge management
energy
decision support
ms excel pivot tables
environmental awareness
personalization
insurance
collaborative problem solving
quantum chemistry
psychology
research
dimensionality reduction
sdlc
business requirements
microeconomics
asp
algorithm design
automation
bash
hedging
drupal
mobile devices
clinical data management
cdma
rapid prototyping
probability
recruiting
transcriptomics
marketing strategy
c++ stl
financial reporting
t-sql
maple
interviews
trading systems
weblogic
gpu
scheme
gps
credit derivatives
apache spark
instructional design
translation
apache kafka
business intelligence tools
quantitative analytics
stl
disease management
solution architecture
fluorescence microscopy
discrete mathematics
game theory
debugging
ni labview
early-stage startups
3d printing
social entrepreneurship
confocal microscopy
amazon web services
data center
predictive modeling
complex systems
test planning
numerical linear algebra
jsp
windows
convex optimization
excel vba
linear regression
h2o
theano
physics
molecular cloning
international relations
operations management
node.js
spring mvc
vulnerability assessment
network science
geomatics
cell
sql db2
business process management
big data
asset management
geospatial intelligence
development economics
risk analytics
physical chemistry
jquery
recommender systems
immunoassays
talent management
data collection
oracle sql developer
finite element analysis
laser physics
blogging
spss modeler
mac os x
geospatial modeling
banking
hplc
traffic engineering
crm
intelligence
eviews
proposal writing
defense
seo
sem
arm
direct mail
organization skills
xslt
javascript
alteryx
scalability
molecular genetics
mentoring
minitab
water quality
solr
c
customer analytics
rna isolation
research design
attribution modeling
reinforcement learning
linux
simulation modeling
java
publishing
functional genomics
strategy
commodity markets
mixed model
tensorflow
asset managment
pl
dashboarding
customer satisfaction
business analysis
amazon mechanical turk
gas
foreign languages
fuzzy logic
decision trees
experimental physics
optimization
originlab
lingo
trend analysis
avro
operational excellence