-
Notifications
You must be signed in to change notification settings - Fork 1
/
messages5.html
10258 lines (6409 loc) · 369 KB
/
messages5.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Exported Data</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="css/style.css" rel="stylesheet"/>
<script src="js/script.js" type="text/javascript">
</script>
</head>
<body onload="CheckLocation();">
<div class="page_wrap">
<div class="page_header">
<div class="content">
<div class="text bold">
Premium/House Tutors Assignments
</div>
</div>
</div>
<div class="page_body chat_page">
<div class="history">
<a class="pagination block_link" href="messages4.html">
Previous messages
</a>
<div class="message service" id="message-272">
<div class="body details">
25 September 2019
</div>
</div>
<div class="message default clearfix" id="message4707">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="25.09.2019 21:27:01">
21:27
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
<strong>To all MUSIC tutors: </strong><br><br>To stay updated with only our music assignments, please head on over to <a href="https://t.me/PremiumTutorsMusic">https://t.me/PremiumTutorsMusic</a> to stay updated with our latest assignments! (For music only) 🎵
</div>
</div>
</div>
<div class="message default clearfix" id="message4708">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="25.09.2019 21:34:24">
21:34
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 4 Pure Physics @ Cashew<br><br>Details of assignment<br>Location: The Skywoods, 9 Dairy Farm Heights, Singapore 677670<br>Duration: 1 x 2 hours/week<br>Timings: Weekday Evenings, Weekends<br>Fees: $30 - $40/hour (Undergraduates)<br>$40 - $50/hour (Full Time Tutor)<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a Girl in SCGS. Commission based on one lesson<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S4JO117P
</div>
</div>
</div>
<div class="message default clearfix" id="message4709">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="25.09.2019 21:38:41">
21:38
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 4 Combined Humanties (SS/Literature) @ Cashew<br><br>Details of assignment<br>Location: The Skywoods, 9 Dairy Farm Heights, Singapore 677670<br>Duration: 1 x 2 hours/week<br>Timings: Weekday Evenings, Weekends<br>Fees: $30 - $40/hour (Undergraduates)<br>$40 - $50/hour (Full Time Tutor)<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a Girl in SCGS. Commission based on one lesson<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S4JO117L
</div>
</div>
</div>
<div class="message service" id="message-273">
<div class="body details">
26 September 2019
</div>
</div>
<div class="message default clearfix" id="message4711">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 13:47:54">
13:47
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 5 English, Maths and Science @ Boon Keng<br><br>Details of assignment <br>Location: Tenteram Peak, 116B Jalan Tenteram, Singapore 322116<br>Duration: 2 x 1.5 hours/week<br>Timings: Weekends after 3pm<br>Fees: $30 -$35/hour<br><br>Tutors Requirements: Male preferred. Graduate tutors may apply. <br>Remarks: <br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P5RE291
</div>
</div>
</div>
<div class="message default clearfix" id="message4712">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 13:57:35">
13:57
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 1 Maths @ Bishan<br><br>Details of assignment<br>Location: 155 Bishan Street 13, Singapore 570155<br>Duration: 2 x 2 hours/week<br>Timings: Weekday After 4pm, Weekends<br>Fees: $25 - $30/hour <br><br>Tutors Requirements: Female only. Undergraduates and above may apply.<br>Remarks: Student is a Girl in CHIJ. Lessons to start asap, as soon as today.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S1PR118M
</div>
</div>
</div>
<div class="message default clearfix" id="message4713">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 13:58:36">
13:58
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 1 Science @ Bishan<br><br>Details of assignment<br>Location: 155 Bishan Street 13, Singapore 570155<br>Duration: 2 x 2 hours/week<br>Timings: Weekday After 4pm, Weekends<br>Fees: $25 - $30/hour<br><br>Tutors Requirements: Female only. Undergraduates and above may apply.<br>Remarks: Student is a Girl in CHIJ. Lessons to start asap, as soon as today.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S1PR118S
</div>
</div>
</div>
<div class="message default clearfix" id="message4714">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 14:03:05">
14:03
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Tuition Centre/Homestay Admin @ Kembangan<br><br>Details of assignment<br>Location: Neptune Court, 5 Marine Vista, Singapore 449029<br>Duration: 3 days a week, minimum 4 hours per shift<br>Timings: Weekdays 3pm to 8pm<br>Fees: $10/hour<br><br>Tutors Requirements: A Level Students and above may apply.<br>Remarks: Candidate is to help with tasks such as Data Entry, Paperwork, filing etc and help teaching team when required. An interview will be required. Commission will be total hours for first 2 weeks.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: TCAL119
</div>
</div>
</div>
<div class="message default clearfix" id="message4716">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 14:46:14">
14:46
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Grade 7 Piano @ Boon Lay<br><br>Details of assignment<br>Location: 684B Jurong West Street 64, Singapore 642684<br>Duration: 1 x 1 hour/week<br>Timings: Weekdays after 5pm<br>Fees: $55 - $65/hour<br><br>Tutors Requirements:<br>Remarks: Student is a 12 year old girl who just passed grade 6 exams<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: G7HI121
</div>
</div>
</div>
<div class="message default clearfix" id="message4717">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 14:48:11">
14:48
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Beginner Piano @ Clementi<br><br>Details of assignment<br>Location: 349 Clementi Avenue 2, Singapore 120349<br>Duration: 1 x 45 mins/week<br>Timings: Monday to Thursday 5pm to 6pm<br>Fees: $40 - $45/hour<br><br>Tutors Requirements:<br>Remarks: Student is a 6 year girl.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: BPNG122
</div>
</div>
</div>
<div class="message default clearfix" id="message4718">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 14:49:42">
14:49
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 4 and Primary 5 English & Math @ Khatib<br><br>Details of assignment<br>Location: Chong Pang Green, 709 Yishun Avenue 5, Singapore 760709<br>Duration: 1 x 3 hours/week (1.5 hour per child)<br>Timings: Tuesday/Thursday after 2pm<br>Fees: $20 - $30/hour<br><br>Tutors Requirements: Female Only. Undergraduates and above may apply.<br>Remarks: Students are a boy and girl from SJI and Marymount Primary<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P5OS055
</div>
</div>
</div>
<div class="message default clearfix" id="message4719">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 15:17:39">
15:17
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 1 Higher Chinese @ Buona Vista<br><br>Details of assignment<br>Location: Holland Gardens, 15 Moonbeam Walk, Singapore 277228<br>Duration: 2 x 1.5 hours/week<br>Timings: Weekdays Night, Weekends<br>Fees: $35 - $45/hour (Full Time Tutor )<br>$50 - $60/hour (MOE-trained)<br><br>Tutors Requirements: Female Only. Full Time Tutors and above may apply.<br>Remarks: Student is a boy from River Valley High. Tutor to indicate which schools students are from.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S1UM200
</div>
</div>
</div>
<div class="message default clearfix" id="message4720">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 15:23:09">
15:23
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 3 (2020) English @ Kent Ridge<br><br>Details of assignment<br>Location: Dover Heights, 12 Dover Close East, Singapore 130012<br>Duration: 1 x 1.5 hours/week<br>Timings: Weekdays after 6pm<br>Fees: $30 - $40/hour (Full Time Tutors)<br>$50 - $60/hour (MOE-Trained)<br><br>Tutors Requirements: Female Only. Full Time Tutors and above may apply.<br>Remarks: Student is a Girl in Queenstown Primary School<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P3KA201
</div>
</div>
</div>
<div class="message default clearfix" id="message4721">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 15:39:45">
15:39
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Tuition Centre/Homestay Admin @ Lakeside<br><br>Details of assignment<br>Location: Parc Vista, 454 Corporation Road, Singapore 649812<br>Duration: 3 days a week, minimum 4 hours per shift<br>Timings: Weekdays 3pm to 8pm<br>Fees: $10/hour<br><br>Tutors Requirements: A Level Students and above may apply.<br>Remarks: Candidate is to help with tasks such as Data Entry, Paperwork, filing etc and help teaching team when required. An interview will be required. Commission will be total hours for first 2 weeks.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: TCAL120
</div>
</div>
</div>
<div class="message default clearfix" id="message4722">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 17:41:07">
17:41
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
IGCSE Grade 9 English @ Promenade<br><br>Details of assignment<br>Location: South Beach Tower, 26 Beach Road, Singapore 189768<br>Duration: 2 x 2 hours/week<br>Timings: Weekdays 5pm<br>Fees: $40/hour<br><br>Tutors Requirements: Graduate Tutors Only.<br>Remarks: 1-1 lessons held at small classroom (tution centre). Rate will increase by $5 - $10/hour of number of students increase. Commission will be based on 4 lessons.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: G9MO267E
</div>
</div>
</div>
<div class="message default clearfix" id="message4723">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 18:14:55">
18:14
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 5 English @ Tiong Bahru<br><br>Details of assignment<br>Location: Clarence Ville, 131 Clarence Lane, Singapore 140131<br>Duration: 1 x 2 hours/week<br>Timings: Weekend 9am, Tuesday 4pm onwards<br>Fees: $30/hour-$40/hour<br><br>Tutors Requirements: Female Only. Full Time Tutors and above may apply.<br>Remarks: Student is a girl in Alexandra Primary School.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P5PE202
</div>
</div>
</div>
<div class="message default clearfix" id="message4724">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 18:19:20">
18:19
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 2 Science @ Tiong Bahru<br><br>Details of assignment<br>Location: 22 Jalan Membina, Singapore 166022<br>Duration: 1 x 2 hours/week<br>Timings: Monday after 5pm<br>Fees: $30/hour-$35/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a boy in Outram Secondary School<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S2FR203
</div>
</div>
</div>
<div class="message default clearfix" id="message4725">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 19:22:52">
19:22
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Grade 5 Music Theory @ Buangkok<br><br>Details of assignment<br>Location: Anchorvale Grove, 319C Anchorvale Drive, Singapore 543319<br>Duration: 1 x 1 hour/week<br>Timings: Weekday afternoon<br>Fees: $45/hour-$55/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a 8 years old Girl. Taking Music Theory Exams next year.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: MUVI204
</div>
</div>
</div>
<div class="message default clearfix" id="message4726">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 19:26:19">
19:26
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 2 English @ Buangkok<br><br>Details of assignment<br>Location: Anchorvale Grove, 319C Anchorvale Drive, Singapore 543319<br>Duration: 1 x 1.5 hours/week<br>Timings: Weekday Afternoon<br>Fees: $30/hour-$40/hour<br><br>Tutors Requirements: Full Time Tutors and above may apply.<br>Remarks: Tutor to provide own materials. Student is a girl in Anchor Green Primary School<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P2VI205
</div>
</div>
</div>
<div class="message default clearfix" id="message4727">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 23:10:03">
23:10
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 1 Geography @ Hougang<br><br>Details of assignment<br>Location: Hougang Spring, 689 Hougang Street 61, Singapore 530689<br>Duration: 2 x 1.5 hours/week<br>Timings: Weekend anytime, Friday after 5pm<br>Fees: $30/hour-$35/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a Boy in Montford Secondary<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S1AE206
</div>
</div>
</div>
<div class="message default clearfix" id="message4728">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 23:21:12">
23:21
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
<strong>To all MUSIC tutors: </strong><br><br>To stay updated with only our music assignments, please head on over to <a href="https://t.me/PremiumTutorsMusic">https://t.me/PremiumTutorsMusic</a> to stay updated with our latest assignments! (For music only) 🎵
</div>
</div>
</div>
<div class="message default clearfix" id="message4729">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="26.09.2019 23:48:52">
23:48
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Primary 4 (2020) English Maths Science Chinese @ Boon Lay<br><br>Details of assignment<br>Location: Boon Lay Grove, 183 Boon Lay Avenue, Singapore 640183<br>Duration: 2 x 1.5hours/week<br>Timings: Weekends 2pm, Weekdays 7pm<br>Fees: $20/hour-$25/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a boy in Corporation Primary School. Tutor to be strict. Lessons will start in December. Tutor is to teach all 4 subjects.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: P4CH207
</div>
</div>
</div>
<div class="message service" id="message-274">
<div class="body details">
27 September 2019
</div>
</div>
<div class="message default clearfix" id="message4730">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 04:14:36">
04:14
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 2 Science @ Somerset<br><br>Details of assignment<br>Location: The Tomlinson, 20 Cuscaden Road, Singapore 249726<br>Duration: 1 x 2 hours/week<br>Timings: Saturday after 12pm<br>Fees: $40-$50/hour (Full Time Tutors)<br>$50 - $70/hour (MOE-Trained)<br><br>Tutors Requirements: Full Time Tutors and above may apply.<br>Remarks: Student is a boy. He has dyslexia, tutor must be patient. Student is from ACS Barker Secondary.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S2NG016
</div>
</div>
</div>
<div class="message default clearfix" id="message4731">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 04:16:52">
04:16
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 1 English @ Bishan<br><br>Details of assignment<br>Location: 155 Bishan Street 13, Singapore 570155<br>Duration: 1 x 2 hours/week<br>Timings: Weekday After 4pm, Weekends<br>Fees: $25 - $30/hour (Undergraduates)<br><br>Tutors Requirements: Female only. Undergraduates and above may apply.<br>Remarks: Student is a Girl in CHIJ. Lessons to start asap, as soon as today.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S1PR118E
</div>
</div>
</div>
<div class="message default clearfix" id="message4732">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 10:21:39">
10:21
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
JC1 H1 Math @ Toa Payoh<br><br>Details of assignment<br>Location: Toa Payoh Towers, 146 Lorong 2 Toa Payoh, Singapore 310146<br>Duration: 1 x 1.5hours/week<br>Timings: Wednesday and Friday 11am<br>Fees: $40 - $50/hour (Undergraduates)<br>$50 - $60/hour (Full-Time Tutor)<br><br>Tutors Requirements: Female Tutors Only. Undergraduates and above may apply.<br>Remarks: Student is a girl in CJC<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: J1CE029
</div>
</div>
</div>
<div class="message default clearfix" id="message4733">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 10:25:27">
10:25
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
JC1 H2 Economics @ Toa Payoh<br><br>Details of assignment<br>Location: Toa Payoh Towers, 146 Lorong 2 Toa Payoh, Singapore 310146<br>Duration: 1 x 1.5hours/week<br>Timings: Wednesday and Friday 11am<br>Fees: $40 - $50/hour (Undergraduates)<br>$50 - $60/hour (Full-Time Tutor)<br><br>Tutors Requirements: Female Tutors Only. Undergraduates and above may apply.<br>Remarks: Student is a girl in CJC<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: J1CE030
</div>
</div>
</div>
<div class="message default clearfix" id="message4734">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 12:39:40">
12:39
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
JC1 H2 Physics @ Choa Chu Kang<br><br>Details of assignment<br>Location: 620 Choa Chu Kang Street 62, Singapore 680620<br>Duration: 1 x 2 hours/week<br>Timings: Sunday Morning<br>Fees: $40 - $50/hour (Undergrad), $50 - $60/hour (Full- time)<br><br>Tutors Requirements: Undergrad tutors and above may apply.<br>Remarks: Student (girl) is in AJC. Same tutor to teach both subjects.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: J1LE287P
</div>
</div>
</div>
<div class="message default clearfix" id="message4735">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 15:13:33">
15:13
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Sec 4 English @ Ang Mo Kio<br><br>Details of assignment<br>Location: Ang Mo Kio 31, 348 Ang Mo Kio Avenue 3, Singapore 560348<br>Duration: once or twice a week, 2 hours/week<br>Timings: Weekdays after 5pm, weekends<br>Fees: $30/hour<br><br>Tutors Requirements: Female Only. Undergraduates and above may apply.<br>Remarks: Student is female. Commission based on one lesson only.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: S4AL208
</div>
</div>
</div>
<div class="message default clearfix" id="message4736">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 15:44:32">
15:44
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
Grade 5 Piano @ Somerset<br><br>Details of assignment<br>Location: Aspen Heights, 261 River Valley Road, Singapore 238307<br>Duration: 1 x 1 hour/week<br>Timings: Monday’s 4.30pm to 6.30pm, Saturday anytime, Sunday afternoon<br>Fees: $50/hour-$60/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Student is a 13 year old boy, just completed grade 4 ABRSM exams. Lessons to be conducted at tutor's house.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a><br><br>Code: MG5PNI208
</div>
</div>
</div>
<div class="message default clearfix" id="message4737">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">
P
</div>
</div>
</div>
<div class="body">
<div class="pull_right date details" title="27.09.2019 16:00:04">
16:00
</div>
<div class="from_name">
Premium/House Tutors Assignments
</div>
<div class="text">
P1 English @ Ang Mo Kio<br><br>Details of assignment<br>Location: The Panorama, 8 Ang Mo Kio Avenue 2, Singapore 567695<br>Duration: 2 x 1 hours/week<br>Timings: Weekdays 8pm<br>Fees: $20/hour<br><br>Tutors Requirements: Undergraduates and above may apply.<br>Remarks: Tutor is to help student with Oral & Listening.<br><br>Interested applicants, please apply via <br><a href="https://forms.gle/KhPULcKSQGrNrPWo6">https://forms.gle/KhPULcKSQGrNrPWo6</a> or message <a href="https://t.me/PTapplications">@PTapplications</a> <br><br>Code: HP1VI072
</div>
</div>
</div>
<div class="message default clearfix" id="message4738">
<div class="pull_left userpic_wrap">
<div class="userpic userpic1" style="width: 42px; height: 42px">
<div class="initials" style="line-height: 42px">