-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
2862 lines (2862 loc) · 142 KB
/
db.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
{
"degrees": [
{
"id": 1,
"degree": "Associate"
},
{
"id": 2,
"degree": "Bachelor's"
},
{
"id": 3,
"degree": "Master's"
},
{
"id": 4,
"degree": "Ph.D."
},
{
"id": 5,
"degree": "Pursuing Degree"
}
],
"spotlights": [
{
"id": 1,
"img": "https://images.unsplash.com/photo-1556075798-4825dfaaf498",
"title": "Cloud Engineering",
"description": "Build fun stuff in the cloud. It's a lot of fun, we promise!"
},
{
"id": 2,
"img": "https://images.unsplash.com/photo-1511376777868-611b54f68947",
"title": "Executive Leadership",
"description": "Be a leader for everyone. Leadership builds character."
}
],
"jobs": [
{
"id": 1,
"title": "Angular Developer",
"organization": "Vue and Me",
"degree": "Master's",
"jobType": "Intern",
"locations": [
"Lisbon"
],
"minimumQualifications": [
"Mesh granular deliverables, engineer enterprise convergence, and synergize B2C initiatives",
"Morph bricks-and-clicks relationships, whiteboard one-to-one experiences, and innovate distributed schemas",
"Drive intuitive deliverables, exploit vertical users, and optimize interactive e-commerce",
"Embrace sticky infrastructures, incubate B2C portals, and drive killer applications"
],
"preferredQualifications": [
"Mesh wireless metrics, syndicate innovative markets, and disintermediate intuitive niches",
"Matrix next-generation vortals, cultivate virtual relationships, and unleash wireless platforms",
"Brand granular roi, transform mission-critical users, and target value-added models",
"Envisioneer b2b web services, aggregate clicks-and-mortar architectures, and target synergistic initiatives"
],
"description": [
"Away someone forget effect wait land.",
"State even create can either. Character almost turn idea born its to. Understand ability another lose. Smile interesting claim difference.",
"Author act increase worry yeah. Positive medical shake include serious check state."
],
"dateAdded": "2021-07-04"
},
{
"id": 2,
"title": "Java Coder",
"organization": "VueTube",
"degree": "Bachelor's",
"jobType": "Part-time",
"locations": [
"Buenos Aires",
"Oslo"
],
"minimumQualifications": [
"Redefine ubiquitous supply-chains, whiteboard 24/365 channels, and repurpose dynamic action-items",
"Brand mission-critical paradigms, engage enterprise technologies, and re-intermediate sticky mindshare",
"Incubate b2c users, repurpose leading-edge convergence, and extend frictionless technologies",
"Orchestrate clicks-and-mortar portals, revolutionize turn-key convergence, and expedite bricks-and-clicks action-items"
],
"preferredQualifications": [
"Synergize real-time infrastructures, matrix e-business e-tailers, and redefine customized action-items",
"Syndicate front-end e-business, optimize granular action-items, and implement best-of-breed technologies",
"Facilitate impactful functionalities, extend holistic users, and maximize 24/7 deliverables"
],
"description": [
"Form wind put day inside. Say stand apply full boy speak. Memory remain room finish phone. Nation movement place.",
"Top person value season. Key best line safe break then. Single music just country.",
"Green as something when. Heavy PM head both rate mouth drug nation."
],
"dateAdded": "2021-06-19"
},
{
"id": 3,
"title": "Svelte Ninja",
"organization": "Vue Can Do It",
"degree": "Ph.D.",
"jobType": "Full-time",
"locations": [
"Yokohama",
"The Hague",
"Stockholm",
"Ottawa"
],
"minimumQualifications": [
"Expedite cross-platform initiatives, empower user-centric models, and revolutionize bleeding-edge e-tailers",
"Incubate bricks-and-clicks supply-chains, empower B2B mindshare, and extend integrated functionalities",
"Expedite rich convergence, embrace interactive web-readiness, and optimize value-added portals"
],
"preferredQualifications": [
"Unleash granular channels, redefine best-of-breed initiatives, and seize efficient ROI",
"Transform revolutionary vortals, enhance cross-platform partnerships, and revolutionize robust convergence",
"Embrace compelling relationships, enable scalable solutions, and whiteboard front-end synergies",
"Brand ubiquitous markets, exploit 24/7 functionalities, and redefine sticky schemas"
],
"description": [
"Page significant democratic. Check pretty toward beat church perform.",
"Know detail cold degree scene popular then. Maybe result close wall town perhaps.",
"Perhaps particularly easy mean black ever professional. Republican physical my effort close admit."
],
"dateAdded": "2021-01-04"
},
{
"id": 4,
"title": "Software Designer",
"organization": "VueTube",
"degree": "Master's",
"jobType": "Part-time",
"locations": [
"Memphis",
"Hong Kong"
],
"minimumQualifications": [
"Expedite global experiences, utilize virtual niches, and syndicate cross-platform niches",
"Harness impactful roi, drive one-to-one architectures, and repurpose synergistic web-readiness",
"Extend e-business action-items, matrix front-end e-business, and drive clicks-and-mortar web-readiness",
"Generate frictionless action-items, engage out-of-the-box functionalities, and utilize real-time paradigms"
],
"preferredQualifications": [
"Drive vertical mindshare, evolve granular technologies, and benchmark web-enabled channels",
"Architect turn-key initiatives, grow frictionless convergence, and maximize one-to-one action-items",
"Mesh efficient systems, target mission-critical ROI, and monetize extensible vortals",
"Benchmark extensible architectures, innovate virtual networks, and incentivize dot-com e-services"
],
"description": [
"Everything always surface prepare level center happen. Nothing out investment crime arm nor event.",
"My whose art simply range garden police nor. Firm series difference help new. Pretty response government big will travel certainly. Stuff ok simple eight.",
"Set race best the during. Mean two yes door effect near."
],
"dateAdded": "2021-04-02"
},
{
"id": 5,
"title": "C++ VP",
"organization": "Point of Vue",
"degree": "Associate",
"jobType": "Temporary",
"locations": [
"Yokohama"
],
"minimumQualifications": [
"Leverage ubiquitous metrics, generate rich deliverables, and target real-time schemas",
"Syndicate web-enabled infrastructures, disintermediate B2B channels, and incentivize back-end content",
"Streamline cross-platform methodologies, repurpose transparent niches, and incentivize real-time platforms",
"Synergize frictionless partnerships, integrate efficient functionalities, and repurpose viral ROI"
],
"preferredQualifications": [
"Transition synergistic interfaces, facilitate world-class info-mediaries, and deliver robust e-business",
"Enhance strategic interfaces, incubate user-centric e-tailers, and strategize web-enabled experiences",
"Maximize scalable e-tailers, productize innovative e-commerce, and cultivate granular mindshare"
],
"description": [
"Individual land myself loss treat long. Large commercial final guess others reason. Beautiful sport including deal billion get teach when. Present democratic much boy budget party letter.",
"Difficult small positive far cover although reveal. Human hour wide line full national success scientist. Within drop investment. Situation threat star red.",
"Thing difficult wear. Key difficult gun despite recently need arrive. Material relationship may result cell remember. Control represent take reality speak."
],
"dateAdded": "2021-01-25"
},
{
"id": 6,
"title": "Knockout Designer",
"organization": "Point of Vue",
"degree": "Associate",
"jobType": "Temporary",
"locations": [
"Glasgow",
"Leipzig",
"Québec"
],
"minimumQualifications": [
"Enable interactive users, empower cutting-edge metrics, and engineer dynamic e-markets",
"Cultivate 24/7 e-commerce, extend magnetic ROI, and empower bleeding-edge web services",
"Synthesize impactful channels, expedite collaborative platforms, and reinvent value-added e-commerce"
],
"preferredQualifications": [
"Enable ubiquitous applications, productize global experiences, and leverage leading-edge networks",
"E-enable killer partnerships, seize turn-key action-items, and innovate synergistic e-tailers",
"Re-intermediate frictionless technologies, integrate innovative architectures, and revolutionize 24/7 convergence"
],
"description": [
"One relationship teach local wide good. Leg green cover meeting.",
"Without team how south peace evidence political. Hair during the. Take them else this thus style stand.",
"Miss control performance agent price technology. Body idea anyone federal."
],
"dateAdded": "2021-05-25"
},
{
"id": 7,
"title": "Full Stack Coder",
"organization": "Vue Can Do It",
"degree": "Master's",
"jobType": "Temporary",
"locations": [
"Essen",
"Detroit",
"Buffalo"
],
"minimumQualifications": [
"Reinvent plug-and-play methodologies, engage impactful relationships, and synergize front-end technologies",
"Transition integrated infrastructures, mesh visionary systems, and implement synergistic synergies",
"Generate clicks-and-mortar solutions, mesh holistic platforms, and productize robust content"
],
"preferredQualifications": [
"Incentivize customized mindshare, generate transparent web-readiness, and visualize bricks-and-clicks platforms",
"Facilitate plug-and-play paradigms, morph vertical convergence, and grow one-to-one solutions",
"Unleash frictionless solutions, reinvent dot-com web-readiness, and scale compelling ROI"
],
"description": [
"Computer early Democrat when like big attorney answer. Draw discover he mean. Him usually character entire international.",
"House turn raise phone become past significant anyone. Practice international line whatever yes once. Write far happy yes.",
"One buy ready bit avoid call reality training."
],
"dateAdded": "2021-06-07"
},
{
"id": 8,
"title": "Angular Developer",
"organization": "Vue and a Half Men",
"degree": "Pursuing Degree",
"jobType": "Part-time",
"locations": [
"Rotterdam"
],
"minimumQualifications": [
"Deliver wireless synergies, generate web-enabled paradigms, and aggregate rich communities",
"Aggregate global info-mediaries, iterate end-to-end mindshare, and incentivize efficient technologies",
"Cultivate holistic interfaces, morph robust deliverables, and reinvent B2B e-business",
"Engage ubiquitous e-markets, visualize value-added initiatives, and architect extensible platforms"
],
"preferredQualifications": [
"Strategize magnetic applications, exploit integrated schemas, and synergize value-added networks",
"Benchmark visionary e-tailers, benchmark intuitive experiences, and unleash intuitive web services",
"Incubate bleeding-edge vortals, innovate rich experiences, and implement global technologies",
"Utilize open-source applications, optimize B2B supply-chains, and orchestrate next-generation e-tailers"
],
"description": [
"Food development if history choose bank. Garden movement determine one.",
"Magazine five few artist. Man bring where power figure ok seem.",
"Team forward adult participant general study professor. Challenge wait maybe service partner. Few coach future no close increase."
],
"dateAdded": "2021-01-06"
},
{
"id": 9,
"title": "Go Specialist",
"organization": "VueTube",
"degree": "Bachelor's",
"jobType": "Full-time",
"locations": [
"Jacksonville",
"Kyoto"
],
"minimumQualifications": [
"Deploy mission-critical web services, revolutionize extensible schemas, and matrix mission-critical infrastructures",
"Embrace cross-platform partnerships, matrix virtual channels, and visualize wireless portals",
"Scale front-end models, transform out-of-the-box niches, and matrix world-class interfaces"
],
"preferredQualifications": [
"Iterate back-end web services, seize one-to-one e-business, and unleash out-of-the-box markets",
"Scale strategic metrics, grow leading-edge portals, and e-enable user-centric systems",
"Monetize revolutionary e-services, cultivate value-added channels, and mesh turn-key bandwidth",
"Re-intermediate granular schemas, streamline user-centric eyeballs, and extend B2C channels"
],
"description": [
"Similar final however increase half. Late quite stop half more democratic heavy give. Section finally cost land rule degree admit.",
"Possible produce same drop admit.",
"Think modern decade standard instead. Experience front teach one maybe. Goal support agree eight."
],
"dateAdded": "2021-01-04"
},
{
"id": 10,
"title": "Software Supervisor",
"organization": "VueTube",
"degree": "Master's",
"jobType": "Temporary",
"locations": [
"Pittsburgh",
"Kansas City"
],
"minimumQualifications": [
"Reinvent collaborative paradigms, envisioneer scalable schemas, and implement value-added e-business",
"Redefine robust technologies, enhance scalable applications, and transition enterprise communities",
"Target b2b e-services, reinvent strategic metrics, and utilize rich channels",
"Facilitate dynamic supply-chains, innovate integrated technologies, and exploit holistic info-mediaries"
],
"preferredQualifications": [
"Extend next-generation bandwidth, maximize user-centric technologies, and revolutionize strategic networks",
"Repurpose b2b infrastructures, productize best-of-breed e-services, and incubate wireless relationships",
"Streamline viral synergies, benchmark leading-edge convergence, and e-enable mission-critical e-markets"
],
"description": [
"Air outside first nothing. Yeah campaign for where deal both leader. Approach individual consumer if author why first.",
"Food serve happen. Individual beautiful sure life. Difficult establish entire near.",
"Computer soldier during whose receive fall rule. Shake administration more better break others political. Even purpose course rise up surface."
],
"dateAdded": "2021-05-10"
},
{
"id": 11,
"title": "UI Coder",
"organization": "Vue and a Half Men",
"degree": "Ph.D.",
"jobType": "Part-time",
"locations": [
"Kuala Lumpur",
"Berlin",
"Albuquerque",
"Nagoya"
],
"minimumQualifications": [
"Harness transparent info-mediaries, empower granular ROI, and enhance scalable solutions",
"Aggregate holistic e-tailers, e-enable leading-edge e-markets, and e-enable dynamic metrics",
"Re-intermediate intuitive models, harness revolutionary eyeballs, and maximize proactive systems",
"Evolve magnetic experiences, productize visionary methodologies, and iterate killer users"
],
"preferredQualifications": [
"Aggregate value-added content, implement wireless portals, and disintermediate global applications",
"Empower interactive systems, syndicate out-of-the-box relationships, and incubate web-enabled partnerships",
"Aggregate b2b users, exploit value-added deliverables, and visualize leading-edge niches"
],
"description": [
"Town wrong happy environment federal soon see. Sign bed summer attack.",
"Road book significant police. Career kitchen officer research Mrs role. Discussion campaign least state.",
"Security unit western it list stage control. Turn begin research sometimes in life. None decide rise fish movie them now."
],
"dateAdded": "2021-01-11"
},
{
"id": 12,
"title": "CSS VP",
"organization": "Vue Can Do It",
"degree": "Ph.D.",
"jobType": "Part-time",
"locations": [
"Tokyo",
"Orlando",
"Milan"
],
"minimumQualifications": [
"Monetize dot-com e-commerce, utilize robust markets, and transform cutting-edge relationships",
"Architect holistic relationships, expedite cross-platform action-items, and syndicate holistic markets",
"Syndicate bricks-and-clicks niches, integrate 24/365 action-items, and empower distributed synergies",
"Seize cross-platform markets, maximize revolutionary infrastructures, and facilitate world-class platforms"
],
"preferredQualifications": [
"Incubate leading-edge platforms, harness transparent applications, and target compelling channels",
"Envisioneer compelling technologies, engage granular bandwidth, and redefine customized channels",
"E-enable enterprise mindshare, unleash rich eyeballs, and envisioneer value-added content"
],
"description": [
"Mr risk bad security. Star ability property.",
"Worry in public leg majority simply. Bit especially goal will life course. Name forward court general never section pick.",
"Thank easy much quickly view participant indeed. Around expert form cut."
],
"dateAdded": "2021-05-16"
},
{
"id": 13,
"title": "Backbone Lead",
"organization": "VueTube",
"degree": "Master's",
"jobType": "Intern",
"locations": [
"Boulder"
],
"minimumQualifications": [
"Innovate magnetic solutions, repurpose cross-media e-commerce, and brand dot-com synergies",
"Deliver plug-and-play eyeballs, maximize front-end architectures, and e-enable best-of-breed technologies",
"Generate open-source networks, syndicate clicks-and-mortar e-markets, and optimize cross-media convergence",
"Extend efficient web-readiness, drive cross-media content, and whiteboard end-to-end channels"
],
"preferredQualifications": [
"Disintermediate cross-platform web services, grow cross-platform functionalities, and re-contextualize ubiquitous e-business",
"Drive next-generation portals, maximize efficient web-readiness, and architect one-to-one infrastructures",
"Revolutionize enterprise paradigms, innovate customized communities, and synergize back-end interfaces",
"Maximize web-enabled bandwidth, strategize one-to-one systems, and envisioneer granular e-markets"
],
"description": [
"Financial song write since ground security week. People provide special push sense create nation large. Hospital travel white join hit security while wall.",
"Lay benefit it lead yes. Company tree yeah test top than news. Up wonder manage six. Assume almost like under.",
"Whose support trade shake. Eat require concern in guess kind. Official nor personal religious imagine number south."
],
"dateAdded": "2021-06-23"
},
{
"id": 14,
"title": "C++ Ninja",
"organization": "Et Vue Brute",
"degree": "Pursuing Degree",
"jobType": "Part-time",
"locations": [
"Medellin",
"Los Angeles",
"Tokyo",
"El Paso"
],
"minimumQualifications": [
"Syndicate mission-critical portals, optimize sticky content, and re-contextualize frictionless architectures",
"Synthesize distributed deliverables, incentivize front-end info-mediaries, and synthesize bricks-and-clicks supply-chains",
"Morph out-of-the-box roi, exploit strategic vortals, and implement rich content",
"Re-intermediate scalable eyeballs, incentivize plug-and-play info-mediaries, and evolve collaborative ROI"
],
"preferredQualifications": [
"Streamline compelling functionalities, incentivize cutting-edge networks, and brand interactive portals",
"Deliver value-added action-items, visualize real-time initiatives, and maximize sticky metrics",
"Harness innovative paradigms, enable compelling e-markets, and exploit sticky experiences"
],
"description": [
"Family from bill sister candidate rate top. Strong official may lay child eye. World public new give put suddenly.",
"Second work eight read crime various issue. Property perhaps truth main.",
"Prevent Democrat against realize teach. Mention land federal enjoy if cover. Expert start give near half design."
],
"dateAdded": "2021-06-12"
},
{
"id": 15,
"title": "UI Specialist",
"organization": "VueTube",
"degree": "Master's",
"jobType": "Temporary",
"locations": [
"Prague",
"Kuala Lumpur",
"Buffalo",
"Liverpool"
],
"minimumQualifications": [
"Monetize impactful methodologies, enable clicks-and-mortar relationships, and grow innovative interfaces",
"Transition rich content, visualize innovative niches, and repurpose magnetic metrics",
"Synergize seamless markets, re-contextualize e-business synergies, and evolve proactive ROI",
"Visualize ubiquitous supply-chains, visualize plug-and-play action-items, and re-intermediate killer systems"
],
"preferredQualifications": [
"Re-contextualize virtual eyeballs, mesh dot-com e-commerce, and iterate cross-media paradigms",
"Incubate vertical eyeballs, aggregate killer models, and drive intuitive models",
"Exploit cross-media eyeballs, synthesize web-enabled convergence, and iterate mission-critical initiatives",
"Transition dot-com models, orchestrate plug-and-play platforms, and unleash cutting-edge metrics"
],
"description": [
"Information list provide know institution each reduce. Party person strong exactly concern only. High beat fall edge collection treat event.",
"Daughter light well. Above final effect technology beat simply yet. Together it meeting require lay property physical. Risk star Mr movie everybody meeting rock.",
"Suddenly indeed run miss attack country. Participant either surface speak Mrs our."
],
"dateAdded": "2021-02-26"
},
{
"id": 16,
"title": "Java Engineer",
"organization": "VueTube",
"degree": "Associate",
"jobType": "Intern",
"locations": [
"Providence",
"St Louis",
"Bangkok",
"Napoli (Naples)"
],
"minimumQualifications": [
"Transform revolutionary functionalities, strategize best-of-breed schemas, and maximize bricks-and-clicks channels",
"Disintermediate b2b web-readiness, expedite magnetic markets, and envisioneer out-of-the-box systems",
"Unleash holistic technologies, incubate frictionless schemas, and morph revolutionary convergence",
"Mesh front-end platforms, seize revolutionary paradigms, and syndicate scalable interfaces"
],
"preferredQualifications": [
"Grow ubiquitous e-commerce, re-contextualize B2B functionalities, and envisioneer end-to-end functionalities",
"Visualize seamless e-services, deploy turn-key markets, and seize global e-business",
"Visualize sticky technologies, enhance viral supply-chains, and morph world-class channels"
],
"description": [
"Often interest particularly quickly. Agree enough authority history allow.",
"Since region station involve. See call thank far.",
"Behind sense west. Set difference green stage police place could. Simple generation high effect exactly gas part."
],
"dateAdded": "2021-01-09"
},
{
"id": 17,
"title": "Backend Developer",
"organization": "Vue Can Do It",
"degree": "Bachelor's",
"jobType": "Intern",
"locations": [
"Phoenix",
"Yokohama"
],
"minimumQualifications": [
"Target rich web services, integrate mission-critical methodologies, and enable holistic e-commerce",
"Engage cross-platform schemas, innovate robust architectures, and monetize front-end networks",
"Incubate one-to-one applications, re-contextualize killer applications, and implement collaborative systems",
"Incubate collaborative functionalities, aggregate holistic e-tailers, and matrix rich experiences"
],
"preferredQualifications": [
"Enhance proactive experiences, leverage bleeding-edge ROI, and implement bleeding-edge portals",
"Exploit strategic solutions, e-enable out-of-the-box deliverables, and iterate bleeding-edge vortals",
"Streamline scalable eyeballs, engineer vertical portals, and grow innovative niches",
"Syndicate 24/7 web services, drive customized info-mediaries, and benchmark compelling ROI"
],
"description": [
"Beautiful world wonder others. Detail realize have whether. Peace expect product drug dark his statement.",
"Operation north back town adult course sort wall. Election official prevent his music.",
"Age appear sister will yourself student though. Political do specific career break. List reflect light expert none."
],
"dateAdded": "2021-06-17"
},
{
"id": 18,
"title": "Meteor Developer",
"organization": "Vue and Me",
"degree": "Associate",
"jobType": "Part-time",
"locations": [
"San Francisco",
"Abu Dhabi",
"Boulder",
"Tokyo"
],
"minimumQualifications": [
"Incubate next-generation models, transition real-time schemas, and maximize bricks-and-clicks supply-chains",
"Repurpose distributed roi, envisioneer viral experiences, and scale user-centric networks",
"Re-contextualize rich architectures, mesh plug-and-play networks, and brand cross-platform content"
],
"preferredQualifications": [
"Cultivate interactive niches, incubate integrated e-markets, and integrate collaborative ROI",
"Brand transparent schemas, whiteboard global systems, and streamline granular action-items",
"Streamline open-source interfaces, enable 24/365 partnerships, and e-enable B2B e-services"
],
"description": [
"Four single term material consider across policy per. Also history good city kind pass.",
"Big care television degree natural. Since sit fall do can.",
"Gas deep plan like end trouble beat. Begin trial pressure political report some analysis."
],
"dateAdded": "2021-06-12"
},
{
"id": 19,
"title": "Ember Lead",
"organization": "VueTube",
"degree": "Pursuing Degree",
"jobType": "Temporary",
"locations": [
"Fort Lauderdale",
"Chicago",
"Bilbao",
"Perth"
],
"minimumQualifications": [
"Benchmark vertical niches, transform B2C e-business, and streamline synergistic web services",
"Embrace customized supply-chains, empower ubiquitous methodologies, and extend sticky communities",
"Cultivate wireless schemas, evolve frictionless systems, and evolve B2C e-business",
"Repurpose bricks-and-clicks channels, unleash out-of-the-box communities, and benchmark viral mindshare"
],
"preferredQualifications": [
"Expedite web-enabled users, orchestrate e-business infrastructures, and scale revolutionary e-tailers",
"Transition front-end eyeballs, benchmark best-of-breed eyeballs, and matrix user-centric models",
"Envisioneer revolutionary vortals, facilitate back-end portals, and deliver cross-media schemas",
"Whiteboard cross-platform niches, target turn-key e-markets, and evolve customized relationships"
],
"description": [
"Option read place how foot threat discussion. Question someone cold. Him prevent professor nearly.",
"Democrat floor kitchen necessary write until. Daughter church then reason of turn performance.",
"Window lead including professor since. Message he already hospital control service. Hair group right suffer on when between politics. Development center until trial."
],
"dateAdded": "2021-01-22"
},
{
"id": 20,
"title": "TypeScript Wizard",
"organization": "Et Vue Brute",
"degree": "Associate",
"jobType": "Intern",
"locations": [
"Milwaukee"
],
"minimumQualifications": [
"Synergize customized web-readiness, cultivate holistic e-business, and innovate wireless technologies",
"Iterate b2c communities, engineer holistic models, and syndicate strategic deliverables",
"Orchestrate efficient e-commerce, engage 24/7 models, and benchmark innovative systems"
],
"preferredQualifications": [
"Brand visionary action-items, visualize scalable schemas, and cultivate value-added models",
"Implement integrated partnerships, architect global systems, and innovate 24/365 mindshare",
"Architect mission-critical e-commerce, expedite one-to-one info-mediaries, and harness user-centric users",
"Drive extensible users, architect proactive channels, and incubate 24/7 relationships"
],
"description": [
"Bag course politics blue official not. Possible and age unit too eat staff product.",
"Gun life open ask walk task reduce. Poor among try garden present.",
"Hospital movie somebody case certainly. Number serve next example oil since. Improve arm top water site personal."
],
"dateAdded": "2021-05-07"
},
{
"id": 21,
"title": "Ruby VP",
"organization": "Et Vue Brute",
"degree": "Ph.D.",
"jobType": "Full-time",
"locations": [
"Riverside"
],
"minimumQualifications": [
"Exploit holistic applications, syndicate web-enabled synergies, and brand dot-com users",
"Exploit collaborative supply-chains, extend end-to-end communities, and iterate user-centric platforms",
"Re-intermediate one-to-one synergies, morph sticky mindshare, and iterate open-source e-tailers"
],
"preferredQualifications": [
"Harness mission-critical niches, target out-of-the-box relationships, and syndicate dynamic deliverables",
"Harness virtual infrastructures, synthesize interactive infrastructures, and generate global supply-chains",
"Synthesize real-time eyeballs, harness rich e-commerce, and incentivize collaborative content"
],
"description": [
"Determine half go medical trouble force assume bit.",
"Turn director speak western tree. Young hit leg product. Newspaper wrong form system hundred east anything him.",
"Challenge effort sign be bar term. Race participant concern tonight only determine political."
],
"dateAdded": "2021-04-27"
},
{
"id": 22,
"title": "CSS Director",
"organization": "VueTube",
"degree": "Bachelor's",
"jobType": "Intern",
"locations": [
"Eindhoven",
"New York"
],
"minimumQualifications": [
"Drive efficient convergence, repurpose front-end infrastructures, and brand transparent e-business",
"Re-contextualize enterprise roi, transition web-enabled functionalities, and drive wireless e-markets",
"Enhance granular e-commerce, orchestrate extensible users, and scale bricks-and-clicks functionalities"
],
"preferredQualifications": [
"Enable innovative e-business, engineer leading-edge channels, and cultivate world-class web-readiness",
"Orchestrate dot-com e-markets, engineer bleeding-edge solutions, and transition plug-and-play deliverables",
"Syndicate holistic initiatives, utilize virtual methodologies, and monetize plug-and-play content"
],
"description": [
"Land leader citizen. Recognize especially say hot understand. Choice rise base concern.",
"Church later now week. His nature everyone million.",
"So prevent purpose add great. Process against arm require look everything star property."
],
"dateAdded": "2021-03-20"
},
{
"id": 23,
"title": "Svelte Manager",
"organization": "Et Vue Brute",
"degree": "Ph.D.",
"jobType": "Full-time",
"locations": [
"San Francisco"
],
"minimumQualifications": [
"Generate efficient initiatives, innovate viral systems, and transform transparent networks",
"Incentivize best-of-breed applications, productize next-generation deliverables, and benchmark killer e-commerce",
"Integrate world-class eyeballs, empower impactful niches, and re-contextualize plug-and-play metrics"
],
"preferredQualifications": [
"Enable value-added systems, extend real-time infrastructures, and benchmark global content",
"Incubate dot-com niches, mesh proactive deliverables, and harness visionary synergies",
"Whiteboard enterprise vortals, envisioneer sticky networks, and exploit back-end web services"
],
"description": [
"Lay thank task value vote black. Billion amount affect everybody. Military grow baby significant upon candidate.",
"All collection ok. Major organization friend purpose quickly though.",
"Past few upon challenge."
],
"dateAdded": "2021-03-13"
},
{
"id": 24,
"title": "CSS Associate",
"organization": "Point of Vue",
"degree": "Master's",
"jobType": "Full-time",
"locations": [
"Beijing"
],
"minimumQualifications": [
"Benchmark one-to-one users, leverage 24/365 mindshare, and aggregate virtual web services",
"Re-contextualize frictionless networks, re-contextualize collaborative info-mediaries, and optimize ubiquitous systems",
"Transform next-generation action-items, leverage efficient markets, and integrate rich schemas",
"Generate 24/7 e-commerce, expedite visionary solutions, and strategize proactive users"
],
"preferredQualifications": [
"Enhance one-to-one action-items, transition granular communities, and aggregate clicks-and-mortar portals",
"Matrix out-of-the-box convergence, whiteboard one-to-one convergence, and streamline holistic systems",
"Maximize integrated experiences, leverage frictionless eyeballs, and revolutionize leading-edge web services"
],
"description": [
"Adult strategy religious matter security thousand thought. Investment government claim case. Station without thousand agency.",
"Right ground range material care study foot.",
"Summer state less despite gas. Feel weight region give treatment. Positive four black national focus. Enough treat write book by."
],
"dateAdded": "2021-04-01"
},
{
"id": 25,
"title": "Frontend Ninja",
"organization": "Vue and a Half Men",
"degree": "Associate",
"jobType": "Temporary",
"locations": [
"Montréal"
],
"minimumQualifications": [
"Morph world-class web services, syndicate turn-key networks, and deliver plug-and-play bandwidth",
"Cultivate bricks-and-clicks e-commerce, e-enable user-centric markets, and exploit global solutions",
"Leverage web-enabled technologies, aggregate innovative vortals, and strategize web-enabled infrastructures"
],
"preferredQualifications": [
"Embrace one-to-one portals, incubate 24/365 platforms, and evolve integrated deliverables",
"Generate clicks-and-mortar architectures, embrace impactful portals, and generate transparent models",
"Synergize integrated synergies, utilize cross-media systems, and empower leading-edge methodologies"
],
"description": [
"Attorney policy stuff discussion role. Skill institution where cut someone she above. On anything parent give want share. Meet scene teacher talk.",
"Take resource group that friend. Beyond piece resource here very church like table. He health happy majority Democrat economy.",
"Significant national game development movie add. Responsibility financial population."
],
"dateAdded": "2021-04-29"
},
{
"id": 26,
"title": "Ember Lead",
"organization": "VueTube",
"degree": "Associate",
"jobType": "Temporary",
"locations": [
"Abu Dhabi",
"Salt Lake City",
"Santiago"
],
"minimumQualifications": [
"Mesh user-centric e-commerce, productize open-source vortals, and architect efficient e-business",
"Integrate collaborative metrics, scale out-of-the-box channels, and synthesize web-enabled functionalities",
"Drive sticky convergence, incentivize visionary deliverables, and iterate B2B methodologies"
],
"preferredQualifications": [
"Integrate intuitive architectures, syndicate distributed info-mediaries, and transform 24/365 action-items",
"Leverage innovative infrastructures, re-contextualize one-to-one bandwidth, and innovate 24/7 users",
"Whiteboard proactive relationships, streamline revolutionary content, and transform sticky relationships",
"Re-intermediate frictionless deliverables, benchmark bleeding-edge channels, and incubate 24/365 vortals"
],
"description": [
"Attorney fast figure brother me where senior. By work close mouth article pretty professor.",
"Claim ok least house once cultural worker. Tend painting suffer bring create.",
"Research near decade power. Factor some bag owner sometimes place win quality. Last foot mother only poor heart."
],
"dateAdded": "2021-06-27"
},
{
"id": 27,
"title": "UI Programmer",
"organization": "Vue Can Do It",
"degree": "Bachelor's",
"jobType": "Temporary",
"locations": [
"Copenhagen"
],
"minimumQualifications": [
"Redefine proactive models, envisioneer turn-key web-readiness, and mesh revolutionary bandwidth",
"Utilize transparent interfaces, orchestrate robust action-items, and transform out-of-the-box experiences",
"Benchmark wireless infrastructures, exploit collaborative infrastructures, and innovate strategic relationships",
"Facilitate robust models, drive integrated bandwidth, and utilize user-centric schemas"
],
"preferredQualifications": [
"Integrate 24/7 e-business, synergize B2B portals, and evolve turn-key synergies",
"Aggregate real-time paradigms, optimize killer e-tailers, and cultivate plug-and-play interfaces",
"Aggregate 24/365 applications, re-intermediate front-end interfaces, and e-enable efficient mindshare"
],
"description": [
"Century thousand page meet send go full. Argue admit should walk social five.",
"Stage team doctor attack house prevent. Produce oil almost professor base. Network attack never represent next animal perhaps either.",
"Nor name ability cause floor simply. Seek improve trade left mind its."
],
"dateAdded": "2021-02-09"
},
{
"id": 28,
"title": "Mobile Programmer",
"organization": "VueTube",
"degree": "Associate",
"jobType": "Intern",
"locations": [
"Taipei"
],
"minimumQualifications": [
"Enhance intuitive experiences, benchmark magnetic markets, and evolve out-of-the-box deliverables",
"Synergize bleeding-edge partnerships, matrix B2B deliverables, and drive revolutionary solutions",
"Deploy one-to-one architectures, utilize holistic e-markets, and engage B2B systems"
],
"preferredQualifications": [
"Benchmark extensible architectures, productize plug-and-play initiatives, and enhance proactive models",
"Enhance virtual niches, streamline bricks-and-clicks communities, and innovate seamless interfaces",
"Engineer world-class architectures, target customized markets, and strategize holistic technologies"
],
"description": [
"Item off drop. Where sense instead phone crime stage write. Design image production hit.",
"Clearly service physical sign dark. Wall boy small meet.",
"Soldier run turn spend. Save move marriage chance seat. After cause partner decade across."
],
"dateAdded": "2021-02-17"
},
{
"id": 29,
"title": "Ember Supervisor",
"organization": "VueTube",
"degree": "Ph.D.",
"jobType": "Full-time",
"locations": [
"Fort Lauderdale",
"Budapest",
"Vancouver"
],
"minimumQualifications": [
"Embrace killer initiatives, syndicate world-class vortals, and enhance enterprise users",
"Generate revolutionary partnerships, disintermediate next-generation e-commerce, and leverage visionary users",
"Disintermediate cross-media solutions, productize mission-critical channels, and disintermediate web-enabled systems"
],
"preferredQualifications": [
"Target sticky portals, transition B2B users, and expedite vertical solutions",
"Architect real-time mindshare, repurpose bleeding-edge metrics, and maximize innovative solutions",
"Orchestrate b2b users, optimize turn-key interfaces, and innovate scalable networks"
],
"description": [
"Southern meeting future require science our author. Car what behavior especially. Board my chair decision call.",
"Indicate raise player discuss thought yet. Nation letter account sing speak drop. Action spend food away position.",
"Rich or however decide. Purpose both past clear face market."
],
"dateAdded": "2021-06-30"
},
{
"id": 30,
"title": "JavaScript Ninja",
"organization": "Vue and Me",
"degree": "Pursuing Degree",
"jobType": "Temporary",
"locations": [
"Austin",
"Prague",
"Bilbao"
],
"minimumQualifications": [
"Enhance cross-platform action-items, transform back-end networks, and deliver holistic deliverables",
"Innovate end-to-end paradigms, synergize dot-com portals, and e-enable transparent e-tailers",
"Harness cross-platform channels, matrix clicks-and-mortar metrics, and expedite B2C initiatives"
],
"preferredQualifications": [
"Re-contextualize e-business architectures, architect plug-and-play e-markets, and incentivize strategic infrastructures",
"Scale next-generation e-business, re-contextualize interactive networks, and engage efficient channels",
"Visualize transparent e-commerce, synergize out-of-the-box action-items, and mesh dot-com applications",
"Architect bleeding-edge action-items, integrate vertical vortals, and enable world-class supply-chains"
],
"description": [
"Value case resource ready evidence meet itself. Training man buy. Skill me day before quickly serious build.",
"Yes girl manager outside road door great. Car window Congress myself.",
"From toward any maintain. Image including those exactly population always election. Behavior do room rate. Kitchen like wear off college half ok."
],
"dateAdded": "2021-05-21"
},
{
"id": 31,
"title": "Angular 2 Specialist",
"organization": "Et Vue Brute",
"degree": "Ph.D.",
"jobType": "Temporary",
"locations": [
"Lisbon",
"Leipzig"
],
"minimumQualifications": [
"Drive extensible partnerships, engineer holistic e-business, and target virtual synergies",
"Productize customized paradigms, empower clicks-and-mortar platforms, and enable 24/7 schemas",
"Integrate best-of-breed e-commerce, innovate intuitive applications, and productize transparent solutions"
],
"preferredQualifications": [
"Enhance plug-and-play info-mediaries, reinvent viral ROI, and utilize cross-media networks",
"Reinvent efficient interfaces, mesh cross-platform schemas, and enable leading-edge relationships",
"Exploit 24/365 portals, monetize transparent communities, and orchestrate cross-platform deliverables"
],
"description": [
"Director stay treatment east position eight fire.",
"Hope address report test travel college consider. Heart author crime door natural sport. Coach energy anyone seven protect should.",
"Class page order. Short writer wait pay best."
],
"dateAdded": "2021-06-15"
},
{
"id": 32,
"title": "Ruby VP",
"organization": "Vue Can Do It",
"degree": "Bachelor's",
"jobType": "Temporary",
"locations": [
"Shenzhen"
],
"minimumQualifications": [
"Drive seamless e-business, expedite enterprise synergies, and maximize frictionless web-readiness",
"E-enable global eyeballs, target granular experiences, and empower dot-com functionalities",
"Cultivate cross-media communities, utilize world-class interfaces, and implement transparent niches",
"Scale global interfaces, leverage impactful vortals, and leverage efficient eyeballs"
],
"preferredQualifications": [
"Incubate holistic functionalities, target transparent partnerships, and enhance seamless infrastructures",
"Brand granular convergence, integrate impactful supply-chains, and benchmark visionary action-items",
"Engineer killer methodologies, productize cutting-edge experiences, and engineer holistic applications",
"Architect open-source networks, unleash B2C systems, and transform vertical functionalities"
],
"description": [
"During letter very give. Follow significant nearly matter size military last. Share others bar page.",
"Service scientist late town particular talk. Down nothing both sign concern important. Manage level cultural daughter.",
"Series smile cold score environmental local. Television toward necessary personal."
],
"dateAdded": "2021-01-04"
},
{
"id": 33,
"title": "jQuery Designer",
"organization": "Vue and a Half Men",
"degree": "Pursuing Degree",
"jobType": "Part-time",
"locations": [
"Cologne",
"Atlanta",
"Milwaukee"
],
"minimumQualifications": [
"Target seamless relationships, orchestrate best-of-breed markets, and syndicate enterprise markets",
"Enhance seamless solutions, evolve dynamic schemas, and mesh virtual communities",
"Unleash magnetic initiatives, synergize bricks-and-clicks web-readiness, and e-enable synergistic systems"
],
"preferredQualifications": [
"Reinvent cross-media markets, enable holistic interfaces, and facilitate granular platforms",
"Whiteboard cross-media channels, re-intermediate visionary channels, and grow efficient methodologies",
"Deploy seamless e-services, orchestrate transparent metrics, and deploy impactful deliverables",
"Repurpose clicks-and-mortar communities, aggregate revolutionary relationships, and aggregate cross-platform architectures"
],
"description": [
"Interest matter popular inside. About bad like heavy through recent cover.",
"Product reveal science radio garden think. Mean record present nearly. Rest win these event society.",
"Better their seven billion standard tree official. Some course key piece race. Suggest quality decide bar."
],
"dateAdded": "2021-05-28"
},
{
"id": 34,
"title": "C++ Manager",
"organization": "Vue Can Do It",
"degree": "Ph.D.",
"jobType": "Part-time",
"locations": [
"Seattle",
"Paris",
"Memphis",
"Louisville"
],
"minimumQualifications": [
"Monetize world-class e-business, integrate B2B schemas, and expedite revolutionary technologies",
"Repurpose end-to-end supply-chains, deploy cutting-edge interfaces, and re-contextualize cutting-edge communities",
"Exploit granular action-items, scale synergistic models, and facilitate strategic deliverables"
],
"preferredQualifications": [
"Expedite sticky deliverables, engage rich markets, and architect innovative web services",
"Integrate clicks-and-mortar portals, benchmark magnetic e-business, and cultivate distributed web-readiness",
"Visualize next-generation web-readiness, deliver wireless relationships, and scale magnetic functionalities",
"Embrace open-source technologies, cultivate leading-edge communities, and scale customized functionalities"
],
"description": [
"Space common apply arrive again defense many. Action last own how candidate.",
"Raise industry TV sister. Model worker which think pass fast sometimes. See try large above.",
"Far owner rate what up heart prepare. Across PM measure surface everybody."
],
"dateAdded": "2021-05-27"
},
{