-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
1329 lines (1329 loc) · 68.3 KB
/
data.json
File metadata and controls
1329 lines (1329 loc) · 68.3 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
{
"data": [
{
"post_id": "urn:li:activity:7125712768967524352",
"post_url": "https://www.linkedin.com/pulse/hiring-alert-new-job-opportunities-zqqnf",
"comments": 86,
"reactions": 30,
"reaction_type": [
{
"type": "LIKE",
"count": "29"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "\ud83c\udf1f HIRING ALERT! New Job Opportunities with Leading Top MNCs \ud83c\udf1f Are you on the lookout for your dream job? Look no...",
"publisher": "Recruitment Hub",
"publisher_url": "https://www.linkedin.com/company/recruitment-hub-staffing-recruiting/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125600830509989888",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125600830509989888?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125600830509989888%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 188,
"reactions": 450,
"reaction_type": [
{
"type": "LIKE",
"count": "444"
},
{
"type": "EMPATHY",
"count": "4"
},
{
"type": "ENTERTAINMENT",
"count": "2"
}
],
"hashtag": null,
"media": null,
"text": "!! Hiring Hiring Hiring. Position- HR Executive Location- UAE Salary package- 12000AED Qualification - Graduation / Freshers Hit like and comments so we can review your profile.",
"publisher": "Hiring Future",
"publisher_url": "https://www.linkedin.com/company/hiring-future/",
"shared": 10
},
{
"post_id": "urn:li:activity:7125670485203243009",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125670485203243009?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125670485203243009%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 85,
"reactions": 242,
"reaction_type": [
{
"type": "LIKE",
"count": "231"
},
{
"type": "ENTERTAINMENT",
"count": "11"
}
],
"hashtag": null,
"media": null,
"text": "!! Hiring Hiring Hiring. Position- HR Executive Location- UAE Salary package- 12000AED Qualification - Graduation / Freshers Hit like and comments so we can review your profile",
"publisher": "Neha JADHAV",
"publisher_url": "https://www.linkedin.com/in/ACoAADRNmCgBDLttzTmrcChAyB8NfLJWsNBxPjk?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADRNmCgBDLttzTmrcChAyB8NfLJWsNBxPjk",
"shared": 2
},
{
"post_id": "urn:li:activity:7125601501959380992",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125601501959380992?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125601501959380992%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 46,
"reactions": 128,
"reaction_type": [
{
"type": "LIKE",
"count": "128"
}
],
"hashtag": null,
"media": null,
"text": "!! Hiring Hiring Hiring. Position- HR Executive Location- Qatar Salary Package- 12000 Qualification - Graduation / Freshers Hit like and comments so we can review your profile.",
"publisher": "Qatar Jobs",
"publisher_url": "https://www.linkedin.com/company/alljobsatoneplace/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125729875344171008",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125729875344171008?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125729875344171008%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 2,
"reaction_type": [
{
"type": "LIKE",
"count": "2"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring for Reputed Hotels and Resort 1.Post: General Manager Salary: Nrs100000 Experience: 5/6 year\u2019s in similar positions Location: Manigram 2.Post: Hotel Operations...",
"publisher": "Diwash khanal",
"publisher_url": "https://www.linkedin.com/in/ACoAAC-KacUBUbTdJgsm4NwqcZceSXpX2Pz5Jw8?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAC-KacUBUbTdJgsm4NwqcZceSXpX2Pz5Jw8",
"shared": 0
},
{
"post_id": "urn:li:activity:7125729524461228032",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125729524461228032?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125729524461228032%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 2,
"reaction_type": [
{
"type": "LIKE",
"count": "2"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring #SeniorDevOpsEngineer stationed in #Nepal. At Hitachi Energy our purpose is advancing a sustainable...",
"publisher": "Ankita Shrestha",
"publisher_url": "https://www.linkedin.com/in/ACoAABtYWsMBDR-q3mYHWykmZk7OwheOG6WCGng?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAABtYWsMBDR-q3mYHWykmZk7OwheOG6WCGng",
"shared": 0
},
{
"post_id": "urn:li:activity:7125654579622330368",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125654579622330368?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125654579622330368%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 1,
"reactions": 3,
"reaction_type": [
{
"type": "LIKE",
"count": "3"
}
],
"hashtag": null,
"media": null,
"text": "We are actively #hiring! Know anyone who might be interested?",
"publisher": "PRABESH WAGLE",
"publisher_url": "https://www.linkedin.com/in/ACoAACTJun4BXNId_zijxlqsPJzX3YZlajVm5Ps?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACTJun4BXNId_zijxlqsPJzX3YZlajVm5Ps",
"shared": 0
},
{
"post_id": "urn:li:activity:7125582777298628608",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125582777298628608?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125582777298628608%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 61,
"reactions": 99,
"reaction_type": [
{
"type": "LIKE",
"count": "98"
},
{
"type": "EMPATHY",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "URGENT HIRING!!! High Salary Are you looking for new opportunities in Denmark? We are providing PR visa with free job assistance Great salary package + Tips + Performance bonus...",
"publisher": "Richard Mensah",
"publisher_url": "https://www.linkedin.com/in/ACoAAEMokVQBZi1_nwawn1Qfyx1pdbW7BB9YwU4?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAEMokVQBZi1_nwawn1Qfyx1pdbW7BB9YwU4",
"shared": 0
},
{
"post_id": "urn:li:activity:7125623233961152513",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125623233961152513?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125623233961152513%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 105,
"reactions": 215,
"reaction_type": [
{
"type": "LIKE",
"count": "214"
},
{
"type": "EMPATHY",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "Immediate Hiring for the below-listed positions for a Multinational company. HR Manager HR Executive Recruitment Coordinator Sales/Marketing Executives Accountants (senior &junior...",
"publisher": "Qatar Jobs",
"publisher_url": "https://www.linkedin.com/company/alljobsatoneplace/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125589591566213121",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125589591566213121?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125589591566213121%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 132,
"reactions": 142,
"reaction_type": [
{
"type": "LIKE",
"count": "142"
}
],
"hashtag": null,
"media": null,
"text": "Internship program for Clinical SAS We are hiring Interns Job Title: Interns Department: Clinical SAS Location: Hyderabad (On- Location) Key Skills: \u00b7 Base and Advanced...",
"publisher": "Srinivas A",
"publisher_url": "https://www.linkedin.com/in/ACoAADt4aJUB5S89NX8YXSskSS5fg9J9sA705os?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADt4aJUB5S89NX8YXSskSS5fg9J9sA705os",
"shared": 13
},
{
"post_id": "urn:li:activity:7125719692572250113",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125719692572250113?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125719692572250113%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 3,
"reaction_type": [
{
"type": "LIKE",
"count": "3"
}
],
"hashtag": null,
"media": null,
"text": "Hey HRs, Elevate Your Hiring Game. \ud83c\udf1fCheck out these tips \ud83d\udc47 #RecruitmentTips #HiringStrategies #hr #hrexecutive...",
"publisher": "MantraCare",
"publisher_url": "https://www.linkedin.com/company/mantra-care/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125730286977376256",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125730286977376256?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125730286977376256%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 7,
"reaction_type": [
{
"type": "LIKE",
"count": "7"
}
],
"hashtag": null,
"media": null,
"text": "Urgent Hiring\u2026!! We are looking for Salesforce Engineering Manager for one of our prestigious client in Fintech Domain (MNC) Position : Salesforce Engineering Manager Experience...",
"publisher": "Srishti Bisht",
"publisher_url": "https://www.linkedin.com/in/ACoAADgf1esB9KYs2HRneHJFw-tyL7s1Y-8n-7w?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADgf1esB9KYs2HRneHJFw-tyL7s1Y-8n-7w",
"shared": 0
},
{
"post_id": "urn:li:activity:7125594223113838592",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125594223113838592?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125594223113838592%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 67,
"reactions": 477,
"reaction_type": [
{
"type": "LIKE",
"count": "325"
},
{
"type": "PRAISE",
"count": "116"
},
{
"type": "EMPATHY",
"count": "28"
},
{
"type": "APPRECIATION",
"count": "8"
}
],
"hashtag": null,
"media": null,
"text": "...on retainer and are looking to take on more business. Gahlsdorf Talent has a wide range of Recruiters in our network to take on multiple searches of all kinds. We are also former...",
"publisher": "Ben Gahlsdorf",
"publisher_url": "https://www.linkedin.com/in/ACoAAAFp2xYBX_BK8jP2Qxkylw3GrMbEwltjUcY?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAFp2xYBX_BK8jP2Qxkylw3GrMbEwltjUcY",
"shared": 3
},
{
"post_id": "urn:li:activity:7125681368319016961",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125681368319016961?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125681368319016961%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 281,
"reactions": 76,
"reaction_type": [
{
"type": "LIKE",
"count": "76"
}
],
"hashtag": null,
"media": null,
"text": "We are Hiring HR Executive & Assistant Supervisor . Position: HR Executive & Assistant Supervisor. Location: Permanent Work from home Income: 25K-40k + benefits . Part Time...",
"publisher": "Work From Home/Fresher Jobs - Remote Work",
"publisher_url": "https://www.linkedin.com/company/daily-jobs-vacancy-for-internship-fresher-and-experience-jobs/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125704481182261250",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125704481182261250?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125704481182261250%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 61,
"reactions": 165,
"reaction_type": [
{
"type": "LIKE",
"count": "161"
},
{
"type": "EMPATHY",
"count": "2"
},
{
"type": "PRAISE",
"count": "1"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "We (Metastart) are urgently hiring immediate joiners! \u2022 Full Stack JAVASCRIPT Developer \u2022 Work Experience: 6-12 months. \u2022 Skills: JavaScript, ReactJS, NodeJS, MongoDB We are a...",
"publisher": "Srishti Gupta",
"publisher_url": "https://www.linkedin.com/in/ACoAADBNZ2cBSOL3BA6UgWoAcQH40gS3B90-8Tc?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADBNZ2cBSOL3BA6UgWoAcQH40gS3B90-8Tc",
"shared": 4
},
{
"post_id": "urn:li:activity:7125731953533698048",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125731953533698048?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125731953533698048%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 3,
"reactions": 4,
"reaction_type": [
{
"type": "LIKE",
"count": "4"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring! - A junior accountant for T3 Group with min 3 years post qualification experience - A Business Development executive for T3 Group - 8k + commission - Baristas...",
"publisher": "Thomas Rebollini FCA",
"publisher_url": "https://www.linkedin.com/in/ACoAAAGHqvgB9GHZZBlNQkOzmSy1bExT_VBWcnk?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAGHqvgB9GHZZBlNQkOzmSy1bExT_VBWcnk",
"shared": 1
},
{
"post_id": "urn:li:activity:7125725087151906816",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125725087151906816?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125725087151906816%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are still #hiring! Know anyone who might be interested?",
"publisher": "Tarapati B.C",
"publisher_url": "https://www.linkedin.com/in/ACoAACR_AOcBmAx_Fg745O0mIvq81XNPFAATOVQ?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACR_AOcBmAx_Fg745O0mIvq81XNPFAATOVQ",
"shared": 0
},
{
"post_id": "urn:li:activity:7125721176861028352",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125721176861028352?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125721176861028352%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 1,
"reactions": 1,
"reaction_type": [
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "We are #hiring. Join our team as an Associate CSOC Analyst, Tier 1, and kickstart your career in cybersecurity...",
"publisher": "Sarottum Shrestha",
"publisher_url": "https://www.linkedin.com/in/ACoAADQM8igB8Hm1Kjem0j_YjYLqHzGv3_u34_Q?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADQM8igB8Hm1Kjem0j_YjYLqHzGv3_u34_Q",
"shared": 0
},
{
"post_id": "urn:li:activity:7125732368358780929",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125732368358780929?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125732368358780929%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 4,
"reactions": 21,
"reaction_type": [
{
"type": "LIKE",
"count": "18"
},
{
"type": "INTEREST",
"count": "2"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "...advice. The best way to find a great role is not by applying to 100s of jobs and hoping that one of them sticks. The best way to find a great role is to pursue targeted jobs that are...",
"publisher": "Arjun Prakash",
"publisher_url": "https://www.linkedin.com/in/ACoAAAPmNqQB9KsrJMYKmVvyIP1wgDQBsOij6H4?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAPmNqQB9KsrJMYKmVvyIP1wgDQBsOij6H4",
"shared": 0
},
{
"post_id": "urn:li:activity:7125694431990566912",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125694431990566912?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125694431990566912%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 3,
"reaction_type": [
{
"type": "LIKE",
"count": "3"
}
],
"hashtag": null,
"media": null,
"text": "We are still #hiring! Know anyone who might be interested?",
"publisher": "Pratik Pradhan",
"publisher_url": "https://www.linkedin.com/in/ACoAACWKb8cB9nYdzcNfruclVj5cnR5Y16MYDZg?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACWKb8cB9nYdzcNfruclVj5cnR5Y16MYDZg",
"shared": 0
},
{
"post_id": "urn:li:activity:7125712102417195008",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125712102417195008?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125712102417195008%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 2,
"reactions": 18,
"reaction_type": [
{
"type": "LIKE",
"count": "18"
}
],
"hashtag": null,
"media": null,
"text": "Hiring we are looking Quadient Developers, who can join with in 15 days. Exp required :- 4 to 8 years Please reach out to me on Mittalankit2011@gmail.com",
"publisher": "ankit mittal",
"publisher_url": "https://www.linkedin.com/in/ACoAAAzGfg8B5uWPZq9hAYhjxxTWj6pobHvS3jc?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAzGfg8B5uWPZq9hAYhjxxTWj6pobHvS3jc",
"shared": 0
},
{
"post_id": "urn:li:activity:7125693004257898496",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125693004257898496?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125693004257898496%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 6,
"reactions": 27,
"reaction_type": [
{
"type": "LIKE",
"count": "27"
}
],
"hashtag": null,
"media": null,
"text": "Inviting candidates for a walk-in interview for OSD Manufacturing plant at Ahmedabad.\n\nTo apply, visit https://bit.ly/3shcJWg\n\n#Zydus #ZydusLifesciences #OSDManufacturing #Manufacturing#Recruitment #Careers",
"publisher": "Zydus Group",
"publisher_url": "https://www.linkedin.com/company/zyduslife/",
"shared": 3
},
{
"post_id": "urn:li:activity:7125735176407502848",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125735176407502848?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125735176407502848%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 6,
"reactions": 7,
"reaction_type": [
{
"type": "LIKE",
"count": "6"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "Hello Linkies, We are hiring for multiple Position: \ud83c\udf87PHP Yii Developer (1to 8 Years) \ud83c\udf87Business Analyst(Product based) (3 Years) \ud83c\udf87Blockchain Developer(Hyperledger Fabric) (2...",
"publisher": "Kamini Chauhan",
"publisher_url": "https://www.linkedin.com/in/ACoAAA9FQt0BFQ9In6iQNw-Ikl_GMBNs9Ydo8zE?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAA9FQt0BFQ9In6iQNw-Ikl_GMBNs9Ydo8zE",
"shared": 0
},
{
"post_id": "urn:li:activity:7125735990723272704",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125735990723272704?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125735990723272704%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "...the opportunity, as Leverify is hiring! Here are the links to apply 1. Procurement Executive https://lnkd.in/ezXAiAfk 2. Supplier...",
"publisher": "Leverify",
"publisher_url": "https://www.linkedin.com/company/leverifyllc/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125726451135299584",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125726451135299584?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125726451135299584%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "As Received #iiinspection We are hiring NDT Level III for Qatar Shall hold valid ASNT NDT Level III certification in UT, RT, MT, PT methods \u2022 Must having good experience...",
"publisher": "INTEGRITY INTERNATIONAL INSPECTION",
"publisher_url": "https://www.linkedin.com/company/iiinspection/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125627074244923392",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125627074244923392?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125627074244923392%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 6,
"reaction_type": [
{
"type": "LIKE",
"count": "5"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring! #pickperry #lovewhatyoudo #economicdevelopment",
"publisher": "Erin Emerson",
"publisher_url": "https://www.linkedin.com/in/ACoAABHLBuUBN--d8sma3D3tgOSCTTydjEpphYw?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAABHLBuUBN--d8sma3D3tgOSCTTydjEpphYw",
"shared": 3
},
{
"post_id": "urn:li:activity:7125651983343996928",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125651983343996928?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125651983343996928%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 15,
"reactions": 23,
"reaction_type": [
{
"type": "LIKE",
"count": "23"
}
],
"hashtag": null,
"media": null,
"text": "Starting a New Project in UAE Can You Join Us? We are Hiring All Positions. What is your positions?",
"publisher": "Ajith Soman",
"publisher_url": "https://www.linkedin.com/in/ACoAADh57o8BuhFl-Owi713A3xTL80PvudUg_QA?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADh57o8BuhFl-Owi713A3xTL80PvudUg_QA",
"shared": 0
},
{
"post_id": "urn:li:activity:7125719231186280448",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125719231186280448?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125719231186280448%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 1,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are still #hiring! Know anyone who might be interested? Policy Research Institute - PRI (\u0928\u0940\u0924\u093f \u0905\u0928\u0941\u0938\u0928\u094d\u0927\u093e\u0928 \u092a\u094d\u0930\u0924\u093f\u0937\u094d\u0920\u093e\u0928...",
"publisher": "Rajendra Senchurey",
"publisher_url": "https://www.linkedin.com/in/ACoAAAC3YXMBET6is9r_gcEjkwH92PZvCfbwz84?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAC3YXMBET6is9r_gcEjkwH92PZvCfbwz84",
"shared": 0
},
{
"post_id": "urn:li:activity:7125731346383011840",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125731346383011840?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125731346383011840%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 1,
"reaction_type": [
{
"type": "LIKE",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring... Job Title: Sr. Accounts Officer/HOD Company: Renowned Educational Institute Location: Bahal, Bhiwani (Haryana) Salary: 6 lac to 10 lac pa Email CV...",
"publisher": "ICONIC Personnel Services",
"publisher_url": "https://www.linkedin.com/company/iconic-personnel-services/",
"shared": 2
},
{
"post_id": "urn:li:activity:7125732421584510977",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125732421584510977?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125732421584510977%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring! Are you looking to take your construction career to the next level? Shield Foundation Repair is rapidly growing and needs to add a Field Projects Manager to our...",
"publisher": "Shield Foundation Repair",
"publisher_url": "https://www.linkedin.com/company/shield-foundation-repair/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125717582552150016",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125717582552150016?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125717582552150016%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 7,
"reactions": 3,
"reaction_type": [
{
"type": "LIKE",
"count": "3"
}
],
"hashtag": null,
"media": null,
"text": "We are looking for the following candidates for a multinational pharmaceutical company. You must have a valid international passport. sales manager purchasing Manager Account...",
"publisher": "John Samuel",
"publisher_url": "https://www.linkedin.com/in/ACoAAEepCosBOUWa3dpJCY7JeOIimM9MbM6H194?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAEepCosBOUWa3dpJCY7JeOIimM9MbM6H194",
"shared": 0
},
{
"post_id": "urn:li:activity:7125728849547411456",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125728849547411456?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125728849547411456%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 6,
"reaction_type": [
{
"type": "LIKE",
"count": "6"
}
],
"hashtag": null,
"media": null,
"text": "Hello #linkdinfamily We are hiring for Requirement: full-stack developer for Android app development , should be able to code in Java, React, Node.js, and MySQL, and should...",
"publisher": "Mistry Divya",
"publisher_url": "https://www.linkedin.com/in/ACoAADuB4OgBYXAB0DYJRSgr3p6bzCmkmATm6yM?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADuB4OgBYXAB0DYJRSgr3p6bzCmkmATm6yM",
"shared": 0
},
{
"post_id": "urn:li:activity:7125732798631456768",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125732798631456768?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125732798631456768%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 1,
"reaction_type": [
{
"type": "LIKE",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "*Walk-in Interviews* We are Hiring Property Consultant & Team Leader *Only Commission* Location: Dubai Candidates with Real Estate Experience in Primary & Secondary Market...",
"publisher": "New Heights Real Estate LLC",
"publisher_url": "https://www.linkedin.com/company/new-heights-real-estate-llc/",
"shared": 2
},
{
"post_id": "urn:li:activity:7125730612220411904",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125730612220411904?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125730612220411904%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring for Reputed Hotels and Resort 1.Post: General Manager Salary: Nrs100000 Experience: 5/6 year\u2019s in similar positions Location: Manigram 2.Post: Hotel Operations...",
"publisher": "Himalayan HR solution and Job Bank",
"publisher_url": "https://www.linkedin.com/company/himalayan-hr-solution-and-job-bank/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125727149885378561",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125727149885378561?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125727149885378561%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 13,
"reaction_type": [
{
"type": "LIKE",
"count": "13"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring a Network Engineer with Meraki experience in Abu Dhabi. Email resume to abdulm@alphadxb.com",
"publisher": "Bayhass Jarrah",
"publisher_url": "https://www.linkedin.com/in/ACoAACQl_w4BSE4MgLb2MQ6oeNZMq56pFn_dh1M?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACQl_w4BSE4MgLb2MQ6oeNZMq56pFn_dh1M",
"shared": 1
},
{
"post_id": "urn:li:activity:7125728826059296768",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125728826059296768?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125728826059296768%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 2,
"reaction_type": [
{
"type": "LIKE",
"count": "2"
}
],
"hashtag": null,
"media": null,
"text": "Hiring Alert! We are hiring Commvault professionals to join our expanding team in India. Responsibilities: 5-8 Years of technical engineering & administration experience...",
"publisher": "Aspire Automation",
"publisher_url": "https://www.linkedin.com/company/aspireautomation/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125732823692361728",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125732823692361728?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125732823692361728%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are Hiring Kindly go through the below post and apply for the same",
"publisher": "URJA CONSULTING ENGINEERS",
"publisher_url": "https://www.linkedin.com/company/urja-consulting-engineers/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125670357117616128",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125670357117616128?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125670357117616128%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 3,
"reactions": 41,
"reaction_type": [
{
"type": "LIKE",
"count": "41"
}
],
"hashtag": null,
"media": null,
"text": "Inviting candidates for a walk-in interview at Vaccine Technology Centre, Ahmedabad.\n\nTo apply, visit https://bit.ly/45XQRgz\n\n#Zydus #ZydusLifesciences #VaccineTechnologyCentre #Vaccine #Technology #Recruitment #Careers",
"publisher": "Zydus Group",
"publisher_url": "https://www.linkedin.com/company/zyduslife/",
"shared": 8
},
{
"post_id": "urn:li:activity:7125735137555734529",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125735137555734529?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125735137555734529%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 3,
"reactions": 3,
"reaction_type": [
{
"type": "LIKE",
"count": "3"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring \ud83d\udce3 Urgent Opening for Overseas Counselor/sr counsellor/manager/destination manager Destination Knowledge : Canada/UK/Australia/USA/Nz/USA/ Ireland/Germany/Europe...",
"publisher": "rajat garg",
"publisher_url": "https://www.linkedin.com/in/ACoAACteHqABKKGOGCQWpHrZOgAgJOqJb-DKcew?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACteHqABKKGOGCQWpHrZOgAgJOqJb-DKcew",
"shared": 0
},
{
"post_id": "urn:li:activity:7125655255396052992",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125655255396052992?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125655255396052992%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 50,
"reactions": 39,
"reaction_type": [
{
"type": "LIKE",
"count": "39"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring for 7 positions: 1 Driver - AED 4,000 2 Assistant Teachers - AED 3,500 each 3 School Receptionist - AED 3,000 4 Day Care Staff - AED 3,000 5 School Bus Conductor...",
"publisher": "Emilia Varosyan",
"publisher_url": "https://www.linkedin.com/in/ACoAAC7ZHKgBzi1Ww2lDwXBLzv-AVQUZIPvKVWY?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAC7ZHKgBzi1Ww2lDwXBLzv-AVQUZIPvKVWY",
"shared": 0
},
{
"post_id": "urn:li:activity:7125716437171601408",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125716437171601408?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125716437171601408%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 1,
"reaction_type": [
{
"type": "LIKE",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "Karan Kumar is hiring: We are looking for : Team Leader- Production [Assemble Line] Experience - Min 7 to 8 years Designation - Team Leader Area of Experience - Production...",
"publisher": "Phoenix HR Solutions and Consulting",
"publisher_url": "https://www.linkedin.com/company/phoenix-hr-solutions-and-consulting/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125727206978273281",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125727206978273281?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125727206978273281%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring!! Greetings from Hamro Jobs!! #Designation: Business Development Officer #Industry: Software Development Company #Education: BBA/BBS or IT is plus #Experience: Min...",
"publisher": "Sudip Kerung",
"publisher_url": "https://www.linkedin.com/in/ACoAADscZl0BuphRmrBhkH-IZyMzL5YT6KRPsiI?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAADscZl0BuphRmrBhkH-IZyMzL5YT6KRPsiI",
"shared": 0
},
{
"post_id": "urn:li:activity:7125694480891994112",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125694480891994112?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125694480891994112%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 10,
"reaction_type": [
{
"type": "LIKE",
"count": "10"
}
],
"hashtag": null,
"media": null,
"text": "My team is hiring. We are seeking the right candidate to join and make an impact within a great team at a great...",
"publisher": "Chad B.",
"publisher_url": "https://www.linkedin.com/in/ACoAAAALmMMBI3xzlmWH1hAKituLpf2cjSZlUgw?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAALmMMBI3xzlmWH1hAKituLpf2cjSZlUgw",
"shared": 2
},
{
"post_id": "urn:li:activity:7125714837979955200",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125714837979955200?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125714837979955200%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "URGENT HIRING We are looking for a Rubber Industry in Gurgaon 1)Executive to the Director (EA) - Female - 35k to 40k ctc 2)Customer Care Executive - Female - 15k to 18kpm Industry...",
"publisher": "Naukritube",
"publisher_url": "https://www.linkedin.com/company/naukritube/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125604360314585088",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125604360314585088?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125604360314585088%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring, If you know anyone that might be interested , see our post.",
"publisher": "Wilshire Webb Staunton Beattie",
"publisher_url": "https://www.linkedin.com/company/wilshire-webb-staunton-beattie/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125707484039626752",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125707484039626752?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125707484039626752%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 8,
"reaction_type": [
{
"type": "LIKE",
"count": "7"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "New urgent hiring! We are seeking for many talent candidates to fulfil the following vacancies: 1. Marketing Manager (1pax) 2. Sale logistic manager (1pax) 3...",
"publisher": "Vatey Hor",
"publisher_url": "https://www.linkedin.com/in/ACoAACgzV4UBof4suav-AAuk_GzkYTAgxU__Ctg?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAACgzV4UBof4suav-AAuk_GzkYTAgxU__Ctg",
"shared": 0
},
{
"post_id": "urn:li:activity:7125599442589626368",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125599442589626368?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125599442589626368%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring !!! IT Manager Presales Sales Account Manager Please send CV at info@gnet.sa",
"publisher": "Gnet Saudi",
"publisher_url": "https://www.linkedin.com/company/gnet-isp/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125697623465807873",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125697623465807873?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125697623465807873%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 0,
"reaction_type": [],
"hashtag": null,
"media": null,
"text": "We are hiring Charge Poster Specialist.... 1. OBGYN experience is a must. 2. Should have experience in Atena or Greenway PrimeSuite. #hiring #chargePoster #obgyn experience",
"publisher": "EXPRIMUNT MEDICALBILLING PVT LTD",
"publisher_url": "https://www.linkedin.com/company/exprimunt-medicalbilling-pvt-ltd/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125630520201236480",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125630520201236480?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125630520201236480%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 8,
"reaction_type": [
{
"type": "LIKE",
"count": "8"
}
],
"hashtag": null,
"media": null,
"text": "We continue hiring - join us! We are hiring for PubSec BDR Manager based out of the D.C. Area! \ud83d\ude80",
"publisher": "Giselle Peck",
"publisher_url": "https://www.linkedin.com/in/ACoAAAJJrioBXPbYwOB5nSOXEgIwRDrgmmPw61I?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAJJrioBXPbYwOB5nSOXEgIwRDrgmmPw61I",
"shared": 0
},
{
"post_id": "urn:li:activity:7125681397721182208",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125681397721182208?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125681397721182208%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 32,
"reactions": 17,
"reaction_type": [
{
"type": "LIKE",
"count": "16"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "We are Hiring HR Executive & Assistant Supervisor . Position: HR Executive & Assistant Supervisor. Location: Permanent Work from home Income: 25K-40k + benefits . Part Time...",
"publisher": "Fresher Jobs",
"publisher_url": "https://www.linkedin.com/company/talentsjobs/",
"shared": 0
},
{
"post_id": "urn:li:activity:7125663576844832769",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125663576844832769?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125663576844832769%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 60,
"reactions": 115,
"reaction_type": [
{
"type": "LIKE",
"count": "112"
},
{
"type": "PRAISE",
"count": "2"
},
{
"type": "APPRECIATION",
"count": "1"
}
],
"hashtag": null,
"media": null,
"text": "Hi Linkedin, Greetings from Gree Indonesia! \ud83d\udce2 Currently we are hiring \"\ud835\udddb\ud835\udde5 \ud835\uddd4\ud835\uddf1\ud835\uddfa\ud835\uddf6\ud835\uddfb\" Work Location: - Surabaya - Makassar If you are interested, kindly to respond...",
"publisher": "Angelika Luciana",
"publisher_url": "https://www.linkedin.com/in/ACoAAB5o-tkBbnPmE5tD8Mi0y4C7GKRDN4yN6nA?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAB5o-tkBbnPmE5tD8Mi0y4C7GKRDN4yN6nA",
"shared": 1
},
{
"post_id": "urn:li:activity:7125731953533698048",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125731953533698048?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125731953533698048%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 4,
"reactions": 4,
"reaction_type": [
{
"type": "LIKE",
"count": "4"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring! - A junior accountant for T3 Group with min 3 years post qualification experience - A Business Development executive for T3 Group - 8k + commission - Baristas...",
"publisher": "Thomas Rebollini FCA",
"publisher_url": "https://www.linkedin.com/in/ACoAAAGHqvgB9GHZZBlNQkOzmSy1bExT_VBWcnk?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAGHqvgB9GHZZBlNQkOzmSy1bExT_VBWcnk",
"shared": 1
},
{
"post_id": "urn:li:activity:7125593396215177216",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125593396215177216?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125593396215177216%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 8,
"reactions": 22,
"reaction_type": [
{
"type": "LIKE",
"count": "22"
}
],
"hashtag": null,
"media": null,
"text": "We are hiring 1 FSO senior technician( desktop support role ) in Dubai. Let me know if anyone fits the requirements. #dubaicareers #dubaijobs",
"publisher": "Merlin Daniel - MVD",
"publisher_url": "https://www.linkedin.com/in/ACoAAAObPkABTz_0yDl23sU_a6fGu3nGKtZ1i6k?miniProfileUrn=urn%3Ali%3Afs_miniProfile%3AACoAAAObPkABTz_0yDl23sU_a6fGu3nGKtZ1i6k",
"shared": 0
},
{
"post_id": "urn:li:activity:7125674144637009920",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125674144637009920?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125674144637009920%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 220,
"reactions": 77,
"reaction_type": [
{
"type": "LIKE",
"count": "77"
}
],
"hashtag": null,
"media": null,
"text": "We Are Looking for Entry Level & Freshers candidate , College students & Experience - November - 2023 Starting Salary Up to 2 LPA TO 12 LPA. #APPLY HERE :- bit.ly/3JVuWhC...",
"publisher": "Work From Home/Fresher Jobs - Remote Work",
"publisher_url": "https://www.linkedin.com/company/daily-jobs-vacancy-for-internship-fresher-and-experience-jobs/",
"shared": 1
},
{
"post_id": "urn:li:activity:7125676375151120384",
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7125676375151120384?updateEntityUrn=urn%3Ali%3Afs_updateV2%3A%28urn%3Ali%3Aactivity%3A7125676375151120384%2CFEED_DETAIL%2CEMPTY%2CDEFAULT%2Cfalse%29",
"comments": 0,
"reactions": 3,
"reaction_type": [