-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
7014 lines (7014 loc) · 288 KB
/
data.json
File metadata and controls
7014 lines (7014 loc) · 288 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": [
[
{
"userId": "tutorID1",
"firstName": "Jumoke",
"lastName": "Benson",
"gender": "female",
"photo": "http://res.cloudinary.com/tuteria/image/upload/v1510931421/profile_pics/neizg4691lidnczc36nx.jpg",
"level": "premium",
"delivery": ["inperson"],
"successScore": 89,
"distance": 32,
"rating": 4.6,
"ratingCount": 46,
"isBackgroundChecked": true,
"videoURL": "http://www.videoURL",
"image_url": "https://www.eatright.org/-/media/homefoodsafety/foursteps/cook/cookingwithkid.jpg?h=450&w=600&la=en&hash=4C3E2619B8361095885036C3CDD0878C1CA5BC91",
"lessonsTaught": 174,
"newTutorDiscount": "",
"isNewTutor": false,
"country": "Nigeria",
"state": "Lagos",
"region": "Ajah",
"vicinity": "Sangotedo",
"specialNeedExpertise": [],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Nigerian", "Montessori", "British", "American"],
"classesTaught": ["JSS 1", "JSS 2", "JSS 3", "SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": [],
"education": [
{
"school": "University of Port Harcourt",
"country": "Nigeria",
"course": "Linguistics and Communication",
"grade": "First Class",
"degree": "B.A",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
}
],
"workHistory": [
{
"company": "Akintola Williams Deloitte",
"role": "Consultant",
"startYear": "2015",
"endYear": "2015",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 7500,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 100,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "Graduate of Linguistics and Communication Studies. Expert Practitioner",
"description": "My first student came to me because he heard me speaking in the corridor at my workplace. He wasn't sure what he needed but he surely knew he wanted to improve his German. He wanted to be able to speak up in class and also excel in his studies when he finally moves abroad. \n\nI learnt how to speak German in Germany. I understand that it is harder if you are outside of the country and of course everyday life circumstances comes in between.\n\nI would like to bridge that gap for you. If you are already experienced with the German Language we will only speak German. If you are a fresher I am glad to switch in between. Whatever works best for you to become better in the Language.\n\nI enjoy conversing. Talking about your everyday life and why you are learning German because at the end of the day all this is necessary to describe your experiences to others speaking the language.",
"related": ["Literacy & Numeracy", "Literature"]
},
"subjectList": [
"Primary Math",
"Creative Writing",
"Physics",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": [
"Creative Writing",
"Literacy & Numeracy",
"Handwriting"
],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba", "Phonics"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 12,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID2",
"firstName": "Fadiji",
"lastName": "Benson",
"gender": "female",
"photo": "http://res.cloudinary.com/tuteria/image/upload/v1488001816/x5dpbnsyajleii7zay67.jpg",
"level": "premium",
"delivery": ["inperson", "online"],
"successScore": 90,
"distance": 15,
"rating": 4.7,
"ratingCount": 18,
"isBackgroundChecked": true,
"image_url": "https://aderinola.files.wordpress.com/2016/05/13119983_10153417958910940_4647455020160191911_o.jpg",
"videoURL": "",
"lessonsTaught": 13,
"newTutorDiscount": "",
"isNewTutor": false,
"country": "Nigeria",
"state": "Lagos",
"region": "Ilupeju",
"vicinity": "Anthony",
"specialNeedExpertise": [
"ADHD",
"Dyslexia",
"Asthma",
"Speech Disorder"
],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["British", "American"],
"classesTaught": ["Primary 1", "Primary 2", "Primary 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": [
"Day Waterman",
"Turkish",
"Loyola",
"Atlantic Hall"
],
"education": [
{
"school": "University of Port Harcourt",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc.",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Manchester University",
"country": "United Kingdom",
"course": "PetroChemical Engineering",
"grade": "First Class",
"degree": "M.Sc.",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2016",
"isVerified": false
}
],
"workHistory": [
{
"company": "HillCrest Schools",
"role": "Art & Nursery Teacher",
"startYear": "2015",
"endYear": "2018",
"isCurrent": true,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Corona Schools, Gbagada",
"role": "Primary Mathematics Teacher",
"startYear": "2008",
"endYear": "2002",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Chrisland Group of Schools",
"role": "Primary 4 Class Teacher",
"startYear": "2015",
"endYear": "2017",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 7000,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 0,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "Learn how to speak fluent Yoruba from an expert educator",
"description": "Ede yoruba se pataki, o se koko (Yoruba is very important), opolopo eniyan ni o feran lati maa so ede yoruba (so many people really want to speak Yoruba), sugbon ti wo ko gbo ede yii daradara (but they don't understand the language). \n\nFun apeere bi (for example), ikinni ni ede yoruba (Greetings in Yoruba). E kaaro sa/ma, (Good morning sir/ma), alifabeeti ede yoruba (Yoruba Alphabet) a, b, d (A, B, D, There's no letter C, Q, V, X, Z in Yoruba), iseda oro ede yoruba (Yoruba word formation) gbolohun kekeke ede yoruba (Simple yoruba sentences) ibeere ati idahun ni ede yoruba (Question and answers in Yoruba Language), Oonka ede yoruba (Numbers in Yoruba), Oro ati idakeji (Words and Opposite), ati bebelo(etc.) \n\nO dara lati le so ede Yoruba (It's good to know how to speak Yoruba), O si rorun pupo lati gbo, ko si ni ra, rara. (It's easy to learn). E se pupopupo. (Thank you so much). Emi ni iyaaafin T.A Fadiji. (I am Mrs. T.A. Fadiji).\n\nThe best teacher in yoruba for the past ten years, and have trained. \n\nPS: I hope you were able to make out the sentences correctly. If you had a hard time, don't worry. After our first few lessons, you'll be able to speak and understand Yoruba. Thank you.",
"related": ["Literacy & Numeracy", "Primary English", "Handwriting"]
},
"subjectList": [
"Literacy & Numeracy",
"Phonics",
"Handwriting",
"Creative Writing",
"Physics",
"Primary Math",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": ["Creative Writing", "Phonics", "Handwriting"],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba", "French"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 42,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
},
{
"photo_url": "",
"firstName": "Sandra",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Phonics"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-03-01T18:18:10",
"no_of_lessons": 18,
"rating": 4,
"region": "Ikeja",
"state": "Lagos",
"country": "Nigeria",
"response": ""
},
{
"photo_url": "",
"firstName": "Halima",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-04-01T18:18:10",
"no_of_lessons": 20,
"rating": 4,
"region": "Mushin",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID3",
"firstName": "Elizabeth",
"lastName": "Benson",
"gender": "female",
"photo": "http://res.cloudinary.com/tuteria/image/upload/v1551352264/lv6tqhoofenv0imoooqp.jpg",
"level": "new",
"delivery": ["inperson", "online"],
"successScore": 90,
"distance": 35,
"rating": 4.6,
"ratingCount": 14,
"isBackgroundChecked": true,
"image_url": "",
"videoURL": "",
"lessonsTaught": 50,
"newTutorDiscount": "",
"isNewTutor": false,
"country": "Nigeria",
"state": "Lagos",
"region": "Ogudu",
"vicinity": "GRA",
"specialNeedExpertise": ["Dyslexia", "ADHD", "Asperger"],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Montessori", "British", "American"],
"classesTaught": ["SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": ["Corona", "Dowen"],
"education": [
{
"school": "University of Lagos, Akoka",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Lagos Business School",
"country": "Nigeria",
"course": "Theoretical Physics",
"grade": null,
"degree": "M.Sc",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2014",
"isVerified": false
}
],
"workHistory": [
{
"company": "Exxon Mobil",
"role": "Onsite Support Engineering Intern",
"startYear": "2011",
"endYear": "2011",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Akintola Williams Deloitte",
"role": "Associate IT Risk Consultant",
"startYear": "2015",
"endYear": "2016",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 4500,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 80,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "I love teaching maths and simplifying hard questions for my students",
"description": "Mathematics is the science of numbers; it deals with the logic of shape, quantity, and arrangement. Further maths is a step further into math with several advanced courses. For example, general math has courses like A.P and G.P( in series and sequences) but further math goes ahead to treat convergence problems.\n\nIn times past, I have taught students in both junior and senior secondary classes who have struggled with understanding mathematics and they have gone on to write their JSSCE, WAEC and/or NECO and have passed.\n\nMy style of teaching includes establishing foundation topics in math before going further to further math questions or problems.\n\nI encourage every student to read through his/her notes and the topic to be discussed before each class, come to class with writing materials and a calculator, turn off every distraction including phones and participate in class well as show respect for the class.\n\nA well lighted and airy space, table(s) and chair(s), and a whiteboard maker will help make the class comfortable and condusive for learning.",
"related": [
"Primary Math",
"Primary English",
"Primary Science",
"Physics",
"Literature"
]
},
"subjectList": [
"Literacy & Numeracy",
"Phonics",
"Handwriting",
"Creative Writing",
"Physics",
"Primary Math",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": [
"Creative Writing",
"Literacy & Numeracy",
"Handwriting"
],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 12,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID4",
"firstName": "Chimela",
"lastName": "Benson",
"gender": "male",
"photo": "https://randomuser.me/api/portraits/men/91.jpg",
"level": "rising",
"delivery": ["inperson", "online"],
"successScore": 90,
"distance": 40,
"rating": 4.6,
"ratingCount": 14,
"isBackgroundChecked": true,
"image_url": "",
"videoURL": "",
"lessonsTaught": 50,
"newTutorDiscount": "",
"isNewTutor": false,
"country": "Nigeria",
"state": "Lagos",
"region": "Lekki",
"vicinity": "Ikota Estate",
"specialNeedExpertise": ["Dyslexia", "ADHD", "Asperger"],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Montessori", "British", "American"],
"classesTaught": ["SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": ["Corona", "Dowen"],
"education": [
{
"school": "University of Lagos, Akoka",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Lagos Business School",
"country": "Nigeria",
"course": "Theoretical Physics",
"grade": null,
"degree": "M.Sc",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2014",
"isVerified": false
}
],
"workHistory": [
{
"company": "Exxon Mobil",
"role": "Onsite Support Engineering Intern",
"startYear": "2011",
"endYear": "2011",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Akintola Williams Deloitte",
"role": "Associate IT Risk Consultant",
"startYear": "2015",
"endYear": "2016",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 3500,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 80,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "Making your ward mathematically smart: JUST REACH OUT NOW!!!!!",
"description": "I am an experienced teacher of mathematics and have been grooming students to love/appreciate numbers, making them learn maths and other numeric skills passionately. I teach by first of all making students to understand that mathematics is the simplest subject because it deals with facts and has a pattern, which could be logic oriented, formula or our common day to day examples of numbers, items and countable transactions. With this, they are always relaxed and secondly I understand the problem areas in the subject so I know the exact weak areas children face and I hit it squarely by throwing questions in those areas, giving assignments and responding to that by a way of assessment.\n\nIn fact, NewHall Internaational School Chevron, Lekki, where I teach, organizes after class periods for some average pupils, my participation in that class has been having a positive multiplier effect as my pupils/students record tremendous improvements which far outweighs past numeric abilities.\n\nFinally, I teach by connecting the known with what is not yet known to the students, this enables them to understand better any explanation. Also as a Montessori/IGCSE trained teacher I adopt numerous teaching methods that befits different learning categories. This has been giving me the desired results expected.",
"related": [
"Primary Math",
"Primary English",
"Primary Science",
"Physics",
"Literature"
]
},
"subjectList": [
"Literacy & Numeracy",
"Phonics",
"Handwriting",
"Creative Writing",
"Physics",
"Primary Math",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": [
"Creative Writing",
"Literacy & Numeracy",
"Handwriting"
],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 12,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID5",
"firstName": "Dayo",
"lastName": "Benson",
"gender": "male",
"photo": "http://res.cloudinary.com/tuteria/image/upload/v1505975502/profile_pics/wwzaguocpas5q3cld44y.jpg",
"level": "new",
"delivery": ["inperson", "online"],
"successScore": 90,
"distance": 40,
"rating": 4.6,
"ratingCount": 14,
"isBackgroundChecked": true,
"image_url": "",
"videoURL": "",
"lessonsTaught": 50,
"newTutorDiscount": "",
"isNewTutor": false,
"country": "Nigeria",
"state": "Lagos",
"region": "Ikoyi",
"vicinity": "Osborne",
"specialNeedExpertise": ["Dyslexia", "ADHD", "Asperger"],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Montessori", "British", "American"],
"classesTaught": ["SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": ["Corona", "Dowen"],
"education": [
{
"school": "University of Lagos, Akoka",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Lagos Business School",
"country": "Nigeria",
"course": "Theoretical Physics",
"grade": null,
"degree": "M.Sc",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2014",
"isVerified": false
}
],
"workHistory": [
{
"company": "Exxon Mobil",
"role": "Onsite Support Engineering Intern",
"startYear": "2011",
"endYear": "2011",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Akintola Williams Deloitte",
"role": "Associate IT Risk Consultant",
"startYear": "2015",
"endYear": "2016",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 6000,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 80,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "If what you need is a Fix-It-Tutor, then You need not look any further",
"description": "Dear Client,\n\nThank you for visiting my profile. Here are a few reasons why I'm the best available hand for your ward:\n\n1. General Mathematics teaches more than mere calculations, but equally, help students to develop analytical minds. If this is not gotten right at this level, a not so smart adult may result. Hence, it is important that an experienced and patient Tutor who will deploy an illustrative mode of teaching, to ensure that it is not only understood but enjoyed by the student. Having taught this for at least 3years at basic school level(primary and secondary), I believe I'm more than qualify to deliver.\n\n2. Not only have I taught for 3years, but I have also been able to achieve impressive results with my students. One of such is the Mosunmola who moved from hating Mathematics to loving it, and eventually had an A in Junior WAEC, after her parents had given up on her poor run of form in the subject.\n\n3. My relationship with my students goes beyond a pen and notepad. I do ensure that I become their friends, this makes me approachable, so they can easily inquire of me when they are having difficulty understanding what they are being taught. I deploy illustrative analogies to aid the learning process of my pupils and make the atmosphere less tense and friendly.",
"related": [
"Primary Math",
"Primary English",
"Primary Science",
"Physics",
"Literature"
]
},
"subjectList": [
"Literacy & Numeracy",
"Phonics",
"Handwriting",
"Creative Writing",
"Physics",
"Primary Math",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": [
"Creative Writing",
"Literacy & Numeracy",
"Handwriting"
],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 12,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID6",
"firstName": "Chiamaka",
"lastName": "Benson",
"gender": "female",
"photo": "https://uinames.com/api/photos/female/7.jpg",
"level": "new",
"delivery": ["inperson", "online"],
"successScore": 0,
"distance": 12,
"rating": 0,
"ratingCount": 0,
"isBackgroundChecked": true,
"image_url": "",
"videoURL": "",
"lessonsTaught": 0,
"newTutorDiscount": 20,
"isNewTutor": true,
"country": "Nigeria",
"state": "Lagos",
"region": "Victoria Island",
"vicinity": "Adeola Odeku",
"specialNeedExpertise": ["Dyslexia", "ADHD", "Asperger"],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Montessori", "British", "American"],
"classesTaught": ["SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": [],
"education": [
{
"school": "University of Lagos, Akoka",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Lagos Business School",
"country": "Nigeria",
"course": "Theoretical Physics",
"grade": null,
"degree": "M.Sc",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2014",
"isVerified": false
}
],
"workHistory": [
{
"company": "Exxon Mobil",
"role": "Onsite Support Engineering Intern",
"startYear": "2011",
"endYear": "2011",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Akintola Williams Deloitte",
"role": "Associate IT Risk Consultant",
"startYear": "2015",
"endYear": "2016",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {
"hourlyRate": 3500,
"hourlyDiscount": 25,
"discountForExtraStudents": 10,
"passRate": 80,
"name": "Primary Mathematics",
"shortName": "Primary Math",
"profileURL": "",
"isCertified": false,
"headline": "Maths has methods, formulars & constants, you will understand them well",
"description": "I teach Mathematics well with passion. I will help you take control of the subject and you will fall in love with Mathematics, you can be sure of excellence in your grade. I had A1 in my WAEC in distinctions in other exams after that level.\n\nMajor challenges are usually solving word problems, that we will tackle to the roots. You will also understand methods of graphs, statistics and constructions as it relates to maths.\n\nFinally, solving quadratic equations and trigonometry will be much easy and approachable for you. Mathematics is easy once you are ready... I am ready to teach you.",
"related": [
"Primary Math",
"Primary English",
"Primary Science",
"Physics",
"Literature"
]
},
"subjectList": [
"Literacy & Numeracy",
"Phonics",
"Handwriting",
"Creative Writing",
"Physics",
"Primary Math",
"Primary English"
],
"testimonials": [
{
"photo_url": "https://a0.muscache.com/im/pictures/204c0ee3-b977-4195-b0a4-83e06f87e9df.jpg",
"firstName": "Adenekan",
"lastName": "Samuel",
"userId": "ID12354",
"subjectsBooked": [
"Creative Writing",
"Literacy & Numeracy",
"Handwriting"
],
"review": "I like Fadiji very much, my son loves her too. She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-06T18:18:10",
"no_of_lessons": 52,
"rating": 5,
"region": "Surulere",
"state": "Lagos",
"country": "Nigeria",
"response": {
"comment": "Thanks so much! Lessons were superb!",
"date": "2019-05-08T18:18:10"
}
},
{
"photo_url": "",
"firstName": "Jubril",
"lastName": "Anani",
"userId": "ID12654",
"subjectsBooked": ["Yoruba"],
"review": "Very stimulating lectures! She explained concepts very well and we were very glad to have selected her as our tutor. We'll continue lessons when school resumes",
"reviewDate": "2019-05-01T18:18:10",
"no_of_lessons": 12,
"rating": 4,
"region": "Ikoyi",
"state": "Lagos",
"country": "Nigeria",
"response": ""
}
],
"reviewPoints": [
{ "Teaching method": 4.2 },
{
"Communication": 4.75
},
{ "Patience": 4.8 },
{ "Punctuality": 5.0 },
{ "Improved outcome": 4.5 },
{ "Committment": 4.5 }
]
},
{
"userId": "tutorID7",
"firstName": "Esther",
"lastName": "Benson",
"gender": "female",
"photo": "http://res.cloudinary.com/tuteria/image/upload/v1509542381/profile_pics/xbf2jpxqkci5ft2jdfr1.jpg",
"level": "new",
"delivery": ["inperson", "online"],
"successScore": 85,
"distance": 15,
"rating": 4.5,
"ratingCount": 90,
"isBackgroundChecked": true,
"image_url": "",
"videoURL": "",
"lessonsTaught": 17,
"newTutorDiscount": 0,
"isNewTutor": true,
"country": "Nigeria",
"state": "Lagos",
"region": "Surulere",
"vicinity": "Bode Thomas",
"specialNeedExpertise": ["Dyslexia", "ADHD", "Asperger"],
"examsExperience": ["WAEC", "BECE", "Checkpoints"],
"curriculum": ["Montessori", "British", "American"],
"classesTaught": ["SSS 1", "SSS 2", "SSS 3"],
"levelsTaught": ["Beginner", "Intermediate", "Advanced"],
"entranceSchools": ["Corona", "Dowen"],
"education": [
{
"school": "University of Lagos, Akoka",
"country": "Nigeria",
"course": "Chemical Engineering",
"grade": "First Class",
"degree": "B.Sc",
"abbrev": "M.Sc",
"startYear": "2007",
"endYear": "2013",
"isVerified": false
},
{
"school": "Lagos Business School",
"country": "Nigeria",
"course": "Theoretical Physics",
"grade": null,
"degree": "M.Sc",
"abbrev": "M.Sc",
"startYear": "2014",
"endYear": "2014",
"isVerified": false
}
],
"workHistory": [
{
"company": "Exxon Mobil",
"role": "Onsite Support Engineering Intern",
"startYear": "2011",
"endYear": "2011",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
},
{
"company": "Akintola Williams Deloitte",
"role": "Associate IT Risk Consultant",
"startYear": "2015",
"endYear": "2016",
"isCurrent": false,
"isTeachingRole": false,
"showOnProfile": true,
"isVerified": false
}
],
"subject": {