-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp2.html
More file actions
4766 lines (4754 loc) · 521 KB
/
temp2.html
File metadata and controls
4766 lines (4754 loc) · 521 KB
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
<div class="_0b79746b ae7d7411 d84ec6d4 _86267d26 a9f4e175 f2e50b10 _3ba56f5e _373a9835 a9f4e175"
style="--_18b51965: 40%; --_7382e590: 40%; --d03a3494: 40%;">
<div class="_9b405eab _90271df7 c883223a a9f4e175">
<div class="_706812ef e0d8fa23 c7c399a2 cfdced21 _3f886b38 _896d82fe _4c9d7885 efa0e67b _373a9835 _742aced0 _0ca28d28 _0bc43754"
data-testid="lazy-column" data-component-type="LazyColumn" componentkey="SearchResultsMainContent">
<div class="_68d50ccf" data-display-contents="true"
style="--061fbb85: var(--_65ba032a); --2b498095: var(--_65ba032a);">
<div class="fdaae7b7 _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--061fbb85, var(--_51bcbc42)); background-color: var(--2b498095);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"g5R2PkcUl8U3YXAJOx6vUA==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_2ee7be32 _29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="4aae3d42-99b9-43ba-bcad-65ba2898513f">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="4aae3d42-99b9-43ba-bcad-65ba2898513f">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4D0BAQG-wcPwcMZYSw/company-logo_100_100/B4DZucK82pIAAQ-/0/1767851677330/gac_group_logo?e=1773878400&v=beta&t=tEkY6PAEvcEvXtMmPvc1P73gEGMIV1Ns4VkdrLpd9eg"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Senior Software Developer (Verified
job)</span><span aria-hidden="true">Senior Software
Developer<span class="f312eb18"> </span><span
class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
GAC</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"g5R2PkcUl8U3YXAJOx6vUA==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,52,50,52,51,53,48,54,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,131,194,148,118,62,71,92,117,48,48,49,52,194,151,195,133,55,97,112,92,116,59,92,117,48,48,49,69,194,175,80,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="a486e2ff-499c-4a3e-8489-5576b102d931"
aria-label="Dismiss Senior Software Developer job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"g5R2PkcUl8U3YXAJOx6vUA==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,52,50,52,51,53,48,54,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,131,194,148,118,62,71,92,117,48,48,49,52,194,151,195,133,55,97,112,92,116,59,92,117,48,48,49,69,194,175,80,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<figure
class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 _2ac29064 e4565ee7 _6b10050c"
aria-label="" data-view-name="image"><svg
xmlns="http://www.w3.org/2000/svg" id="company-accent-4"
aria-hidden="true" viewBox="0 0 128 128" data-token-id="358"
class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800" role="img"
fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4E0BAQEm61LvFDQ0Gg/company-logo_100_100/B4EZaIZV7PGQAQ-/0/1746045069009/indpendent_contractor_logo?e=1773878400&v=beta&t=pdBkd_CfN9AUqovfMSr5P3fHP6KMK8nYhprV1ka4ZTM"
data-loaded="true"></figure>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
2 company alumni work here</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 7:55 PM</span><span
aria-hidden="true">1 hour ago</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--3d61360a: var(--_65ba032a); --6f8a13b9: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--3d61360a, var(--_51bcbc42)); background-color: var(--6f8a13b9);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"M8RN0OeRugsvezCCdeYwfg==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="30541e61-2004-4f78-96de-8311fd390207">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="30541e61-2004-4f78-96de-8311fd390207">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/C4D0BAQGzKTBKVA4rtQ/company-logo_100_100/company-logo_100_100/0/1663684221112/salt_logo?e=1773878400&v=beta&t=_Qtc9n2qBY9X-LZYr34mS36iwZDa129qMEih88NK-Jc"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Senior AI Engineer (Verified
job)</span><span aria-hidden="true">Senior AI Engineer<span
class="f312eb18"> </span><span
class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
Salt</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai, United Arab Emirates (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"M8RN0OeRugsvezCCdeYwfg==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,55,51,55,51,52,49,52,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,51,195,132,77,195,144,195,167,194,145,194,186,92,117,48,48,48,66,47,123,48,194,130,117,195,166,48,126,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="565952a9-77fb-46f4-9f19-cc66c5f7d19b"
aria-label="Dismiss Senior AI Engineer job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"M8RN0OeRugsvezCCdeYwfg==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,55,51,55,51,52,49,52,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,51,195,132,77,195,144,195,167,194,145,194,186,92,117,48,48,48,66,47,123,48,194,130,117,195,166,48,126,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<svg xmlns="http://www.w3.org/2000/svg" id="responsive-medium"
fill="currentColor" aria-hidden="true" data-supported-dps="24x24"
viewBox="0 0 24 24" data-token-id="127" width="24" height="24"
class="d8683185 e703f7f8 _98a65d76" role="img" aria-label=""
style="width: 24px; min-width: 24px; height: 24px; min-height: 24px;">
<path
d="M20.77 10H18.7a7 7 0 0 1 .3 2 7 7 0 1 1-7-7l-2 3h2.37L15 4l-2.63-4H10l2 3a9 9 0 1 0 9 9 8.8 8.8 0 0 0-.23-2">
</path>
<path d="M9.41 10.59 8 12l4 4 7.52-10H17l-5.2 7z"></path>
</svg>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
Actively reviewing applicants</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 2:28 PM</span><span
aria-hidden="true">7 hours ago</span></p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg" id="linkedin-bug-small"
fill="currentColor" aria-hidden="true"
data-supported-dps="16x16" viewBox="0 0 16 16"
data-token-id="459" width="16" height="16"
class="_34bccb46 _1dc42d7d _83d77f6b" role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="M15 2v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M5 6H3v7h2zm.25-2A1.25 1.25 0 1 0 4 5.25 1.25 1.25 0 0 0 5.25 4M13 9.29c0-2.2-.73-3.49-2.86-3.49A2.71 2.71 0 0 0 7.89 7V6H6v7h2V9.73a1.73 1.73 0 0 1 1.54-1.92h.12C10.82 7.8 11 8.94 11 9.73V13h2z">
</path>
</svg></span><span class="f312eb18"> </span>Easy Apply</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--aeabe6c0: var(--_65ba032a); --229af34c: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--aeabe6c0, var(--_51bcbc42)); background-color: var(--229af34c);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"3T+3uzl99TgwuJ3PWFqKyg==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="158a41aa-4a1e-41bd-bd06-1d0eea9ec4ed">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="158a41aa-4a1e-41bd-bd06-1d0eea9ec4ed">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/C560BAQGyRCCG4SGtTw/company-logo_100_100/company-logo_100_100/0/1630660776591/antonoil_international_logo?e=1773878400&v=beta&t=jBuPXOz1z2XC20jGYIHbuG1inuPq-KPQR9J3-08R4TA"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Anton Early Career 2026 - IT (Verified
job)</span><span aria-hidden="true">Anton Early Career 2026
- IT<span class="f312eb18"> </span><span
class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
Antonoil</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai, United Arab Emirates (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"3T+3uzl99TgwuJ3PWFqKyg==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,54,54,55,50,52,53,51,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,195,157,63,194,183,194,187,57,125,195,181,56,48,194,184,194,157,195,143,88,90,194,138,195,138,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="e2f732ff-6d57-43e4-bc51-e78ca5a1533f"
aria-label="Dismiss Anton Early Career 2026 - IT job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"3T+3uzl99TgwuJ3PWFqKyg==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,54,54,55,50,52,53,51,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,195,157,63,194,183,194,187,57,125,195,181,56,48,194,184,194,157,195,143,88,90,194,138,195,138,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<svg xmlns="http://www.w3.org/2000/svg" id="responsive-medium"
fill="currentColor" aria-hidden="true" data-supported-dps="24x24"
viewBox="0 0 24 24" data-token-id="127" width="24" height="24"
class="d8683185 e703f7f8 _98a65d76" role="img" aria-label=""
style="width: 24px; min-width: 24px; height: 24px; min-height: 24px;">
<path
d="M20.77 10H18.7a7 7 0 0 1 .3 2 7 7 0 1 1-7-7l-2 3h2.37L15 4l-2.63-4H10l2 3a9 9 0 1 0 9 9 8.8 8.8 0 0 0-.23-2">
</path>
<path d="M9.41 10.59 8 12l4 4 7.52-10H17l-5.2 7z"></path>
</svg>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
Actively reviewing applicants</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 6:56 AM</span><span
aria-hidden="true">14 hours ago</span></p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg" id="linkedin-bug-small"
fill="currentColor" aria-hidden="true"
data-supported-dps="16x16" viewBox="0 0 16 16"
data-token-id="459" width="16" height="16"
class="_34bccb46 _1dc42d7d _83d77f6b" role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="M15 2v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M5 6H3v7h2zm.25-2A1.25 1.25 0 1 0 4 5.25 1.25 1.25 0 0 0 5.25 4M13 9.29c0-2.2-.73-3.49-2.86-3.49A2.71 2.71 0 0 0 7.89 7V6H6v7h2V9.73a1.73 1.73 0 0 1 1.54-1.92h.12C10.82 7.8 11 8.94 11 9.73V13h2z">
</path>
</svg></span><span class="f312eb18"> </span>Easy Apply</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--18d7b3a4: var(--_65ba032a); --5210adf4: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--18d7b3a4, var(--_51bcbc42)); background-color: var(--5210adf4);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"MaEQGkIvh5AJUG9QXA38Mw==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="9e2b3d26-7462-4b96-893e-fc165f7f5ad8">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="9e2b3d26-7462-4b96-893e-fc165f7f5ad8">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4E0BAQFqdm1TZ-RZKQ/company-logo_100_100/B4EZgOay6gHEAY-/0/1752588562343/amazon_web_services_logo?e=1773878400&v=beta&t=0HkBBBqM3XVjfcI8IA3uzVvQCyumLsnw2_58O4Q7IMk"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Sr. Network Dev Engineer, AWS Backbone
(Verified job)</span><span aria-hidden="true">Sr. Network
Dev Engineer, AWS Backbone<span class="f312eb18">
</span><span class="b604d382 _1dc42d7d"
aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
Amazon Web Services (AWS)</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"MaEQGkIvh5AJUG9QXA38Mw==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,57,50,56,54,52,50,50,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,49,194,161,92,117,48,48,49,48,92,117,48,48,49,65,66,47,194,135,194,144,92,116,80,111,80,92,92,92,114,195,188,51,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="c59f30b0-cd80-41eb-baf4-8b86a797b957"
aria-label="Dismiss Sr. Network Dev Engineer, AWS Backbone job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"MaEQGkIvh5AJUG9QXA38Mw==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,57,50,56,54,52,50,50,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,49,194,161,92,117,48,48,49,48,92,117,48,48,49,65,66,47,194,135,194,144,92,116,80,111,80,92,92,92,114,195,188,51,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<figure
class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 _2ac29064 e4565ee7 _6b10050c"
aria-label="" data-view-name="image"><svg
xmlns="http://www.w3.org/2000/svg" id="company-accent-4"
aria-hidden="true" viewBox="0 0 128 128" data-token-id="358"
class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800" role="img"
fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4E0BAQEm61LvFDQ0Gg/company-logo_100_100/B4EZaIZV7PGQAQ-/0/1746045069009/indpendent_contractor_logo?e=1773878400&v=beta&t=pdBkd_CfN9AUqovfMSr5P3fHP6KMK8nYhprV1ka4ZTM"
data-loaded="true"></figure>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
122 company alumni work here</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 6:56 PM</span><span
aria-hidden="true">2 hours ago</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--a4ee54d0: var(--_65ba032a); --33596218: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--a4ee54d0, var(--_51bcbc42)); background-color: var(--33596218);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"XN5IManmlx3Xg3dWQjnt3A==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="2bd20e76-0a01-4aa5-a28d-17164e01e66a">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="2bd20e76-0a01-4aa5-a28d-17164e01e66a">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4D0BAQHl-cSnWPrX_A/company-logo_100_100/B4DZjvjBocIYAU-/0/1756365593610/valuelabs_logo?e=1773878400&v=beta&t=mADVuMs3_7ZUWYRnwcU4etaDKTIG7eQbtNd9y2CEVxw"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Playwright automation + Node.js
(Verified job)</span><span aria-hidden="true">Playwright
automation + Node.js<span class="f312eb18"> </span><span
class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
ValueLabs</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai, United Arab Emirates (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"XN5IManmlx3Xg3dWQjnt3A==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,56,56,50,51,51,54,49,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,92,92,195,158,72,49,194,169,195,166,194,151,92,117,48,48,49,68,195,151,194,131,119,86,66,57,195,173,195,156,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="89dd9fff-5af9-4be5-a7b1-181a8dd2c70a"
aria-label="Dismiss Playwright automation + Node.js job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"XN5IManmlx3Xg3dWQjnt3A==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,56,56,50,51,51,54,49,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,92,92,195,158,72,49,194,169,195,166,194,151,92,117,48,48,49,68,195,151,194,131,119,86,66,57,195,173,195,156,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<svg xmlns="http://www.w3.org/2000/svg" id="responsive-medium"
fill="currentColor" aria-hidden="true" data-supported-dps="24x24"
viewBox="0 0 24 24" data-token-id="127" width="24" height="24"
class="d8683185 e703f7f8 _98a65d76" role="img" aria-label=""
style="width: 24px; min-width: 24px; height: 24px; min-height: 24px;">
<path
d="M20.77 10H18.7a7 7 0 0 1 .3 2 7 7 0 1 1-7-7l-2 3h2.37L15 4l-2.63-4H10l2 3a9 9 0 1 0 9 9 8.8 8.8 0 0 0-.23-2">
</path>
<path d="M9.41 10.59 8 12l4 4 7.52-10H17l-5.2 7z"></path>
</svg>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
Actively reviewing applicants</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 4:52 PM</span><span
aria-hidden="true">4 hours ago</span></p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg" id="linkedin-bug-small"
fill="currentColor" aria-hidden="true"
data-supported-dps="16x16" viewBox="0 0 16 16"
data-token-id="459" width="16" height="16"
class="_34bccb46 _1dc42d7d _83d77f6b" role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="M15 2v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M5 6H3v7h2zm.25-2A1.25 1.25 0 1 0 4 5.25 1.25 1.25 0 0 0 5.25 4M13 9.29c0-2.2-.73-3.49-2.86-3.49A2.71 2.71 0 0 0 7.89 7V6H6v7h2V9.73a1.73 1.73 0 0 1 1.54-1.92h.12C10.82 7.8 11 8.94 11 9.73V13h2z">
</path>
</svg></span><span class="f312eb18"> </span>Easy Apply</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--3bba5fac: var(--_65ba032a); --e8ad1e20: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--3bba5fac, var(--_51bcbc42)); background-color: var(--e8ad1e20);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"og/jc/OC91ewKme+GAAvUA==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="71bd6b2d-0b5b-4668-8083-548b1cf6de54">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="71bd6b2d-0b5b-4668-8083-548b1cf6de54">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/C4E0BAQHHTDzCI8nIGA/company-logo_100_100/company-logo_100_100/0/1656670440335/coders_connect_logo?e=1773878400&v=beta&t=wL_y8OWBQoyyowqv6EBjkpGKjXAHQfLBS4eczCpT3CU"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
Back End Developer</p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
Coders Connect</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai, United Arab Emirates (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"og/jc/OC91ewKme+GAAvUA==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,57,55,56,56,50,57,54,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,162,92,117,48,48,48,70,195,163,115,195,179,194,130,195,183,87,194,176,42,103,194,190,92,117,48,48,49,56,92,117,48,48,48,48,47,80,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="d617b5ad-e4a5-4a78-a705-a77d3936477f"
aria-label="Dismiss Back End Developer job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"og/jc/OC91ewKme+GAAvUA==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,57,55,56,56,50,57,54,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,162,92,117,48,48,48,70,195,163,115,195,179,194,130,195,183,87,194,176,42,103,194,190,92,117,48,48,49,56,92,117,48,48,48,48,47,80,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<svg xmlns="http://www.w3.org/2000/svg" id="responsive-medium"
fill="currentColor" aria-hidden="true" data-supported-dps="24x24"
viewBox="0 0 24 24" data-token-id="127" width="24" height="24"
class="d8683185 e703f7f8 _98a65d76" role="img" aria-label=""
style="width: 24px; min-width: 24px; height: 24px; min-height: 24px;">
<path
d="M20.77 10H18.7a7 7 0 0 1 .3 2 7 7 0 1 1-7-7l-2 3h2.37L15 4l-2.63-4H10l2 3a9 9 0 1 0 9 9 8.8 8.8 0 0 0-.23-2">
</path>
<path d="M9.41 10.59 8 12l4 4 7.52-10H17l-5.2 7z"></path>
</svg>
<div
class="dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<p
class="_63b652d7 _814e4997 _4944ef50 dbcec296 _95e198dc a9f4e175 _9f4de84a _2f137206">
Actively reviewing applicants</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd _98a65d76 _4e72e692">
Be an early applicant</p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="_48b902c5">Posted on March 2, 2026, 1:36 PM</span><span
aria-hidden="true">8 hours ago</span></p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
· </p>
<p
class="_63b652d7 _814e4997 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
<span class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg" id="linkedin-bug-small"
fill="currentColor" aria-hidden="true"
data-supported-dps="16x16" viewBox="0 0 16 16"
data-token-id="459" width="16" height="16"
class="_34bccb46 _1dc42d7d _83d77f6b" role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="M15 2v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1M5 6H3v7h2zm.25-2A1.25 1.25 0 1 0 4 5.25 1.25 1.25 0 0 0 5.25 4M13 9.29c0-2.2-.73-3.49-2.86-3.49A2.71 2.71 0 0 0 7.89 7V6H6v7h2V9.73a1.73 1.73 0 0 1 1.54-1.92h.12C10.82 7.8 11 8.94 11 9.73V13h2z">
</path>
</svg></span><span class="f312eb18"> </span>Easy Apply</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr role="presentation"
class="_054a9db1 _3b4679cc _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f216aacb f9ee8f90 cc0e4c31 _3692d5d4">
<div class="_68d50ccf" data-display-contents="true"
style="--3f9487cc: var(--_65ba032a); --27effd70: var(--_65ba032a);">
<div class="fdaae7b7 _3135b33a _5417f57b _1ec65ba5 _2f137206 efa0e67b _0ca28d28"
style="border-color: var(--3f9487cc, var(--_51bcbc42)); background-color: var(--27effd70);">
<div class="_68d50ccf" data-view-name="job-search-job-card"
data-view-tracking-scope="[{"contentTrackingId":"qqh2qEgNuFKDkrdGnEbMGQ==","topicName":"FlagshipSearchServedEvent","transporterKeys":["default"]}]"
data-display-contents="true">
<div role="button" tabindex="0"
class="_29537324 efa0e67b _725a8500 e6426fa6 d6e3603b f80dd6e2 _53e03bb3 c6983d55 be04b64b _2f4c55f2 _5d149fcd f2741651 e54352d2 c7c399a2"
componentkey="28d3029c-6bb2-4edf-99f1-84d1122114c9">
<div class="_706812ef fb53a729 _06bd3fb9 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _08d1e6dc"
componentkey="28d3029c-6bb2-4edf-99f1-84d1122114c9">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 e24e4ff8 _790f1c20">
<figure class="_1a4628ce _6ccc060b c3548abc efe0e4bb a9f4e175 ee720af7 _91ab686e"
aria-label="" data-view-name="image"><svg xmlns="http://www.w3.org/2000/svg"
id="company-accent-4" aria-hidden="true" viewBox="0 0 128 128"
data-token-id="358" class="b0d24b06 e0fbacb7 c883223a da7470b7 _1ca7f800"
role="img" fetchPriority="low" aria-label=""
preserveAspectRatio="xMidYMid slice">
<g display="var(--svgDisplayLight)">
<path fill="#e7e2dc" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
<g display="var(--svgDisplayDark)">
<path fill="#38434f" d="M0 0h128v128H0z"></path>
<path fill="#9db3c8" d="M48 16h64v112H48z"></path>
<path fill="#788fa5" d="M16 80h32v48H16z"></path>
<path fill="#56687a" d="M48 80h32v48H48z"></path>
</g>
</svg><img class="b0d24b06 e0fbacb7 c883223a da7470b7 _981d651f"
fetchpriority="low" alt=""
src="https://media.licdn.com/dms/image/v2/D4D0BAQHl-cSnWPrX_A/company-logo_100_100/B4DZjvjBocIYAU-/0/1756365593610/valuelabs_logo?e=1773878400&v=beta&t=mADVuMs3_7ZUWYRnwcU4etaDKTIG7eQbtNd9y2CEVxw"
data-loaded="true"></figure>
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div class="c7c399a2 _202ac356 _8e416340 _64eed529 _46de7929 _790f1c20">
<div
class="_706812ef fb53a729 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<div
class="_706812ef c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _896d82fe">
<p
class="_63b652d7 d7d19f29 dbbb88d8 c4c770c4 c7a0ef6f _3f61d253 d9bf5bdd b4a42177 _4e72e692">
<span class="_48b902c5">Devops +Big data hadoop engineer
(Verified job)</span><span aria-hidden="true">Devops +Big
data hadoop engineer<span class="f312eb18"> </span><span
class="b604d382 _1dc42d7d" aria-hidden="true"><svg
xmlns="http://www.w3.org/2000/svg"
id="verified-small" fill="currentColor"
aria-hidden="true" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="304" width="16"
height="16" class="_2cb708a7 _1dc42d7d _83d77f6b"
role="img"
style="width: 16px; min-width: 16px; height: 16px; min-height: 16px;">
<path
d="m8 15-.86-.29C3.24 13.41 1 10.62 1 7V2.49L8 0l7 2.49V7c0 3.62-2.23 6.41-6.13 7.71zM3 3.9V7c0 3.53 2.6 5.09 4.78 5.82l.23.08.23-.08C10.01 12.23 13 10.71 13 7V3.9L8 2.11zM9.43 5 7.01 8.02l-1.1-1.1L4.5 8.34l2.67 2.67 4.83-6H9.43z">
</path>
</svg></span></span></p>
<div
class="_8e0e8e05 c7c399a2 _202ac356 _8e416340 _6fb81542 e24e4ff8 _896d82fe">
<p
class="_63b652d7 _07889afd dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd _52c83701 _4e72e692">
ValueLabs</p>
</div>
<p
class="_63b652d7 _07889afd _8e0e8e05 dbbb88d8 c4c770c4 _5ad5d58f _3f61d253 d9bf5bdd f24203c3 _4e72e692">
Dubai, United Arab Emirates (On-site)</p>
</div>
</div>
<div class="c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _08d1e6dc">
<div class="_68d50ccf"
data-view-tracking-scope="[{"contentTrackingId":"qqh2qEgNuFKDkrdGnEbMGQ==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,50,56,51,48,54,49,52,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,170,194,168,118,194,168,72,92,114,194,184,82,194,131,194,146,194,183,70,194,156,70,195,140,92,117,48,48,49,57,34,125,125]}},"transporterKeys":["default"]}]"
data-display-contents="true"><button
class="_17563ed1 f276fd26 _5d149fcd _2e6f1a84 f2741651 _3f61d253 _52d3c371 _44e18b41 _0755df26 _0ad6fea6 _655ffe61 fa04ee38 _0bc43754"
type="button"
componentkey="6aa3391e-fa61-4443-ac9a-ba9528afbd91"
aria-label="Dismiss Devops +Big data hadoop engineer job"
data-view-name="dismiss-job"
data-view-tracking-scope="[{"contentTrackingId":"qqh2qEgNuFKDkrdGnEbMGQ==","topicName":"JobImpressionEventV2","breadcrumb":{"$type":"proto.sdui.tracking.TrackingBreadcrumb","breadcrumbType":"JOB_ACTION","content":{"type":"Buffer","data":[123,34,97,99,116,105,111,110,84,121,112,101,34,58,34,82,69,77,79,86,69,34,44,34,114,101,102,101,114,101,110,99,101,73,100,34,58,34,34,44,34,106,111,98,80,111,115,116,105,110,103,34,58,123,34,111,98,106,101,99,116,85,114,110,34,58,34,117,114,110,58,108,105,58,102,115,95,110,111,114,109,97,108,105,122,101,100,95,106,111,98,80,111,115,116,105,110,103,58,52,51,55,50,56,51,48,54,49,52,34,44,34,116,114,97,99,107,105,110,103,73,100,34,58,34,194,170,194,168,118,194,168,72,92,114,194,184,82,194,131,194,146,194,183,70,194,156,70,195,140,92,117,48,48,49,57,34,125,125]}},"transporterKeys":["default"]}]"><span
class="_3c5e86e0 _28a1891e fb53a729 fa04ee38 _5d149fcd _2e6f1a84 _655ffe61 _57cddce6 e8731c4e _3f61d253 _52d3c371 _64edecf8 aeace5fb _5a39234d e4da49b6 _100f3fa9 e8ae0736 a1a8a0d8 _2d09f1f6 _91edd850 ba5b7cd6"><svg
xmlns="http://www.w3.org/2000/svg" id="close-small"
fill="currentColor" data-supported-dps="16x16"
viewBox="0 0 16 16" data-token-id="206" width="16"
height="16"
class="d8683185 e703f7f8 d84adeb9 _1932a5a0 d818ddc2 _254dd03f"
role="img" aria-label="" aria-hidden="true">
<path
d="M14 3.41 9.41 8 14 12.59 12.59 14 8 9.41 3.41 14 2 12.59 6.59 8 2 3.41 3.41 2 8 6.59 12.59 2z">
</path>
</svg></span></button></div>
</div>
</div>
<div
class="_706812ef _812a9622 c7c399a2 cfdced21 _8e416340 _6fb81542 _46de7929 _57cddce6 efa0e67b">
<div
class="_8e0e8e05 _86e22a6f c7c399a2 _202ac356 _8e416340 fa04ee38 _46de7929 _57cddce6">
<svg xmlns="http://www.w3.org/2000/svg" id="responsive-medium"
fill="currentColor" aria-hidden="true" data-supported-dps="24x24"
viewBox="0 0 24 24" data-token-id="127" width="24" height="24"