-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlassdoor.json
More file actions
1120 lines (1120 loc) · 40.4 KB
/
Glassdoor.json
File metadata and controls
1120 lines (1120 loc) · 40.4 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
[{
"review_id": 98959681,
"summary": "Product Owner Consultant",
"pros": "Good life / work balance. Friendly employees. Directors are close to employees, no barrier.",
"cons": "The salary could be higher.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": null,
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 5,
"rating_work_life_balance": 5,
"review_date_time": "2025-07-26T06:30:26.497",
"is_current_job": true,
"length_of_employment": 4,
"job_title": "Product Owner",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 98527532,
"summary": "Great company to learn and grow",
"pros": "Benefits\nTeams\nLocation \nProject exposure",
"cons": "So far, no cons for me",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2025-07-07T15:45:58.673",
"is_current_job": true,
"length_of_employment": 0,
"job_title": "Senior Consultant",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 98092967,
"summary": "The company changed a lot",
"pros": "Remote 100% if we want\nHealthcare",
"cons": "Recurrent Change of management\nLay off several Times during the year",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "NO_OPINION",
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 3,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 3,
"rating_work_life_balance": 4,
"review_date_time": "2025-06-17T05:29:13.147",
"is_current_job": true,
"length_of_employment": 9,
"job_title": "PCO",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 98368954,
"summary": "Great work env",
"pros": "Great work env \nclients with updated tech stacks\nprojets diversity",
"cons": "no annual raise, no bonuses\"",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2025-06-30T06:53:59.737",
"is_current_job": true,
"length_of_employment": 2,
"job_title": "Data Engineer",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 98015718,
"summary": "Good Oppurtunity",
"pros": "Talan has multiple good clients",
"cons": "Onboarding was done on day-one at client office.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "NO_OPINION",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2025-06-12T18:32:24.960",
"is_current_job": true,
"length_of_employment": 2,
"job_title": "Middleware Administrator",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 97950893,
"summary": "mid company",
"pros": "- good culture\n- nice people\n- good salary",
"cons": "- only one contractor in poland\n- not clear career path (how to get raise/promotion)",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 1,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 4,
"rating_work_life_balance": 5,
"review_date_time": "2025-06-10T08:51:21.663",
"is_current_job": true,
"length_of_employment": 1,
"job_title": "Software Engineer",
"location": "Warsaw, Masovia",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 97631173,
"summary": "Une Esn à fuire",
"pros": "Rien, management toxique absolument rien à dire",
"cons": "Je vous conseille de rester à votre travail et ne pas le quitter pour rejoindre cette Esn misérable. \nIl vous embauche, pour ensuite faire une rupture de votre contrat parce qu’ils n’ont pas de missions à vous proposer. \nIls recrutent en masse et ils ont pleins de personnes qui dont déjà en intercontrat. \nIls n’ont pas de missions, ild te disent qu’ils dont multisectorielles (lol) ils n’ont que le secteur bancaire …\nEt si jamais comme par hasard, il y a une mission qui apparait, il faut que tu sois pistonner pour que le commercial accepte de te positionner. Si t’es nouveau c’est mort pour toi. Evitez evitez evitez.",
"advice": "Rien ne va, management toxique il faut tout raser",
"rating_overall": 1,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "DISAPPROVE",
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 1,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 1,
"rating_diversity_and_inclusion": 1,
"rating_senior_leadership": 1,
"rating_work_life_balance": 1,
"review_date_time": "2025-05-27T10:44:54.123",
"is_current_job": true,
"length_of_employment": 1,
"job_title": "Fullstack Java Developer",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": true,
"featured": false
},
{
"review_id": 97797478,
"summary": "Innovative Company with a Strong Tech Culture",
"pros": "- Projets innovants\n-Ambiance de travail agréable",
"cons": "- Manque d'activités sociales\n- Opportunités d'évolution limitées",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "NO_OPINION",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 3,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 3,
"rating_senior_leadership": 3,
"rating_work_life_balance": 3,
"review_date_time": "2025-06-03T13:34:21.747",
"is_current_job": true,
"length_of_employment": 4,
"job_title": "Devops Engineer",
"location": "Tunis, AR",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 97099707,
"summary": "Greate place to work",
"pros": "Grate place to work in Tunisia",
"cons": "Nothing to add, it's a good place",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2025-05-03T13:02:44.787",
"is_current_job": true,
"length_of_employment": 0,
"job_title": "Project Manager",
"location": "Tunis, AR",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 97006706,
"summary": "I really like the exeprience in the mean time",
"pros": "very professionnel and give us good opportunitie to work with senior",
"cons": "low communication , no alert",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2025-04-29T03:54:55.980",
"is_current_job": true,
"length_of_employment": 6,
"job_title": "Software developper",
"location": "Tunis, AR",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 96461834,
"summary": "Talan",
"pros": "good salarie\nHealth insurance advantage",
"cons": "no organization in code developpement , i do all by myself .\nno appreciation for efforts.\nunlogical and unrespectful clients\nnot for a long term commitment\nholiday is hard to get",
"advice": "every project needs a team not a single person to develop and test and deploy , and learn appreciations and respect seniorty it is not good to pay a junior more or the same salary for a medior or a junior",
"rating_overall": 3,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": null,
"rating_career_opportunities": 1,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 3,
"rating_senior_leadership": 1,
"rating_work_life_balance": 2,
"review_date_time": "2025-04-06T08:25:56.473",
"is_current_job": false,
"length_of_employment": 6,
"job_title": ".NET Developer",
"location": "Ariana",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 98147854,
"summary": "Review",
"pros": "Nothing to mention please skip",
"cons": "Nothing to mention please skipa",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 2,
"rating_compensation_and_benefits": 2,
"rating_culture_and_values": 2,
"rating_diversity_and_inclusion": 2,
"rating_senior_leadership": 2,
"rating_work_life_balance": 2,
"review_date_time": "2025-06-19T05:45:55.797",
"is_current_job": true,
"length_of_employment": 0,
"job_title": "Software Engineer",
"location": "Tunis, AR",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 96327207,
"summary": "Excellent place to work",
"pros": "Strong community, flat structure, great culture.",
"cons": "Not really many cons to working here.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2025-04-01T08:46:56.783",
"is_current_job": true,
"length_of_employment": 4,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 96273697,
"summary": "Company First, Employees Second: A Workplace Built on Priorities",
"pros": "Timely pay, standard perks like socials & private insurance.",
"cons": "Below-market salary, basic insurance, and no bonuses.",
"advice": "Value employees more",
"rating_overall": 2,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": null,
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 2,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 2,
"rating_work_life_balance": 3,
"review_date_time": "2025-03-30T10:29:31.800",
"is_current_job": false,
"length_of_employment": 4,
"job_title": "Software Developer",
"location": "London, England",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 95489593,
"summary": "great company",
"pros": "good environment and good work/life balance",
"cons": "none that i can think of",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 5,
"rating_work_life_balance": 5,
"review_date_time": "2025-03-03T04:50:38.240",
"is_current_job": true,
"length_of_employment": 6,
"job_title": "Software Eginner",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 93973729,
"summary": "Good place to start working in Canada",
"pros": "Friendly and human management\nGood working teams, social events, mission opportunities",
"cons": "Nothing to say in my case",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2024-12-30T12:51:38.097",
"is_current_job": false,
"length_of_employment": 2,
"job_title": "Senior Java Developer",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 86360099,
"summary": "Great place to work",
"pros": "A good place to work",
"cons": "Not a good fit for only English speakers",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 4,
"rating_work_life_balance": 5,
"review_date_time": "2024-04-16T05:59:38.967",
"is_current_job": true,
"length_of_employment": 2,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 83594952,
"summary": "nice enviroment",
"pros": "Agile, depending on the client and if you need to be on client or in the company, is a nice company to work in.",
"cons": "integration with the corporate culture is confusing and difficult and scaling the company is difficult.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "NO_OPINION",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 3,
"rating_work_life_balance": 5,
"review_date_time": "2024-01-22T05:17:56.073",
"is_current_job": true,
"length_of_employment": 0,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 83268188,
"summary": "Mala gestión de personas y te dejan a la deriva",
"pros": "Las primeras entrevistas de cierta forma te muestran con que clientes haces match.",
"cons": "Prometen movilizarte hacia España con clientes que son anticuados y que optan a hacer micro gerenciamiento por lo que te piden prácticamente estar todo el tiempo conectado aunque no estés haciendo nada.\nNo son capaces de apoyarte con el cliente por lo que simplemente te dejan a la deriva.",
"advice": null,
"rating_overall": 1,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": null,
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 2,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 2,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 1,
"rating_work_life_balance": 1,
"review_date_time": "2024-01-11T08:20:29.637",
"is_current_job": false,
"length_of_employment": 1,
"job_title": "Devops Engineer",
"location": "Panguipulli",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 84100823,
"summary": "Need constant improvement ",
"pros": "Nice location and office space",
"cons": "Hostile work environment, no help for growth",
"advice": null,
"rating_overall": 2,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "NO_OPINION",
"rating_business_outlook": "NEUTRAL",
"rating_career_opportunities": 1,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 2,
"rating_diversity_and_inclusion": 3,
"rating_senior_leadership": 1,
"rating_work_life_balance": 3,
"review_date_time": "2024-02-06T04:33:53.020",
"is_current_job": false,
"length_of_employment": 1,
"job_title": "CRM Consultant",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 84253129,
"summary": "Good Company",
"pros": "Good work conditions and professionalism.",
"cons": "Sometimes working with old technologies",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": null,
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2024-02-10T08:16:27.917",
"is_current_job": true,
"length_of_employment": 6,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85005635,
"summary": "pros & cons to work in international company",
"pros": "Global Presence\nProfessional Development\nInnovative Projects",
"cons": "Work-Life Balance\nJob Insecurity\nHigh Expectations",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-03-05T01:49:32.563",
"is_current_job": true,
"length_of_employment": 0,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85305913,
"summary": "Low pay.",
"pros": "Good ambiance, decent offices, good managers.",
"cons": "Missions mildly interesting, low pay.",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 3,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 4,
"rating_work_life_balance": 5,
"review_date_time": "2024-03-13T16:13:25.467",
"is_current_job": false,
"length_of_employment": 1,
"job_title": "Consultant",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 83780059,
"summary": "Fair but no increase",
"pros": "Good learning support and development",
"cons": "Not much of directions for new projects",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-01-27T01:02:32.897",
"is_current_job": false,
"length_of_employment": 0,
"job_title": "Consultant",
"location": "London, England",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 86236894,
"summary": "Good overall",
"pros": "Excellent time flexibility, respectful team",
"cons": "Integration and sense of belonging within a team can be lacking",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-04-11T15:57:44.170",
"is_current_job": true,
"length_of_employment": 1,
"job_title": "Business Analyst",
"location": "Monastir",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 93951654,
"summary": "revue",
"pros": "best place to work 2024",
"cons": "there is no downsides in talan",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 5,
"rating_work_life_balance": 5,
"review_date_time": "2024-12-29T09:48:33.310",
"is_current_job": true,
"length_of_employment": 1,
"job_title": "Consultant",
"location": "Bārdaw",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85221947,
"summary": ".",
"pros": "free water\nCozy chairs\nparking space",
"cons": "No bus \nNo free food\nNo happy coworkers",
"advice": "People usually leave after one year because of toxicity",
"rating_overall": 3,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 3,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 1,
"rating_diversity_and_inclusion": 1,
"rating_senior_leadership": 1,
"rating_work_life_balance": 1,
"review_date_time": "2024-03-11T15:14:56.507",
"is_current_job": false,
"length_of_employment": 1,
"job_title": "Data Engineer",
"location": "Monastir",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85392323,
"summary": "First experience",
"pros": "hybrid work, \nsalary increase,\nprofessional projects",
"cons": "lack of events,\ncan't change project easily",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 4,
"rating_compensation_and_benefits": 4,
"rating_culture_and_values": 4,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 4,
"rating_work_life_balance": 4,
"review_date_time": "2024-03-16T07:04:31.393",
"is_current_job": true,
"length_of_employment": 0,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85297217,
"summary": "Not great",
"pros": "Smart office package as part of the salary",
"cons": "Distant and cold management that don’t take care of their employees.",
"advice": null,
"rating_overall": 2,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 2,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 1,
"rating_diversity_and_inclusion": 4,
"rating_senior_leadership": 1,
"rating_work_life_balance": 3,
"review_date_time": "2024-03-13T11:48:49.230",
"is_current_job": false,
"length_of_employment": 0,
"job_title": "QA Automation Engineer",
"location": "Madrid",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 86211051,
"summary": "Heavy workload and very volatile",
"pros": "helps get your feet in",
"cons": "the workload is unmanagable and the company can easily fire you for being on bench when they have no clients to put you on; even though thats their fault?",
"advice": null,
"rating_overall": 3,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-04-11T01:24:23.873",
"is_current_job": true,
"length_of_employment": 2,
"job_title": "Power Platform Consultant",
"location": "London, England",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 3,
"has_employer_response": false,
"featured": false
},
{
"review_id": 84134323,
"summary": "Good",
"pros": "Remote job (But living in the city where the company is located)\nVisa sponsorship",
"cons": "The salary is not that big.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 3,
"rating_culture_and_values": 3,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 3,
"rating_work_life_balance": 5,
"review_date_time": "2024-02-06T21:40:13.407",
"is_current_job": false,
"length_of_employment": 1,
"job_title": "Senior Front End Developer",
"location": "Madrid",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85260679,
"summary": "bad management",
"pros": "high responsability on certain missions",
"cons": "bad management and bad salaries",
"advice": null,
"rating_overall": 1,
"rating_recommend_to_friend": "NEGATIVE",
"rating_ceo": "DISAPPROVE",
"rating_business_outlook": "NEGATIVE",
"rating_career_opportunities": 1,
"rating_compensation_and_benefits": 1,
"rating_culture_and_values": 1,
"rating_diversity_and_inclusion": 3,
"rating_senior_leadership": 1,
"rating_work_life_balance": 3,
"review_date_time": "2024-03-12T14:01:22.997",
"is_current_job": false,
"length_of_employment": 4,
"job_title": "Senior Consultant",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 84440527,
"summary": "Excellent professional growth",
"pros": "Managing day-to-day operations across three branches\nOverseeing a dedicated team\nSpearheading importation and exportation logistics\nBudget planning\nSuppliers negociate\nHigh standards of customer service and technical excellence\nelectrical and automation engineering, collaborated on cross-functional teams, and ensured compliance with stringent regulatory standards",
"cons": "Work load sometimes too much",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": null,
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 5,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 5,
"rating_work_life_balance": 4,
"review_date_time": "2024-02-16T06:20:30.690",
"is_current_job": false,
"length_of_employment": 0,
"job_title": null,
"location": null,
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 93671507,
"summary": "Great company",
"pros": "Interesting projects, good place to work.",
"cons": "Salary is not very competitive",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": "POSITIVE",
"rating_ceo": "APPROVE",
"rating_business_outlook": "POSITIVE",
"rating_career_opportunities": 5,
"rating_compensation_and_benefits": 5,
"rating_culture_and_values": 5,
"rating_diversity_and_inclusion": 5,
"rating_senior_leadership": 5,
"rating_work_life_balance": 5,
"review_date_time": "2024-12-14T16:23:21.560",
"is_current_job": true,
"length_of_employment": 2,
"job_title": "Consultant BI",
"location": "Montreal, QC",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 1,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85256107,
"summary": "Good place to work",
"pros": "Flexible work and good place to work",
"cons": "Nothing for now to mention",
"advice": null,
"rating_overall": 5,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-03-12T11:51:11.070",
"is_current_job": true,
"length_of_employment": 0,
"job_title": "Data Scientist",
"location": "Paris",
"employer_id": 485967,
"employer_short_name": "Talan",
"employer_logo_url": "https://media.glassdoor.com/sql/485967/talan-squareLogo-1732550287502.png",
"count_helpful": 0,
"has_employer_response": false,
"featured": false
},
{
"review_id": 85006567,
"summary": "cool",
"pros": "The employer’s work environment is refreshingly cool and enjoyable",
"cons": "Unfortunately, the level of coolness might not be consistently maintained across all aspects of the job.",
"advice": null,
"rating_overall": 4,
"rating_recommend_to_friend": null,
"rating_ceo": null,
"rating_business_outlook": null,
"rating_career_opportunities": 0,
"rating_compensation_and_benefits": 0,
"rating_culture_and_values": 0,
"rating_diversity_and_inclusion": 0,
"rating_senior_leadership": 0,
"rating_work_life_balance": 0,
"review_date_time": "2024-03-05T02:27:05.340",
"is_current_job": true,
"length_of_employment": 2,
"job_title": "Data Engineer",