-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.csv
We can't make this file beautiful and searchable because it's too large.
4316 lines (4316 loc) · 759 KB
/
new.csv
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
Erica,Sung,[email protected],2000336,Student,2019-02-01 00:00:00,2019-02-02 14:32:27,,Boys and Girls Club: Northtown Branch,,,need,3.50
Jordan,Cain,[email protected],1654908,Student,2019-02-02 00:00:00,2019-02-02 18:20:22,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Worked in pairs to complete 5 tax returns.,need,4.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-05 00:00:00,2019-02-04 15:12:07,Dummy Course,Dummy need,,,need,5.00
Gunnar,Swannack,[email protected],1665810,Student,2019-02-02 00:00:00,2019-02-04 20:35:05,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,5.36
Benjamin,Weeks,[email protected],1667347,Student,2019-02-01 00:00:00,2019-02-04 20:35:07,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Helped prepare tax returns,need,2.50
Benjamin,Weeks,[email protected],1667347,Student,2019-02-02 00:00:00,2019-02-04 20:36:00,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-04 00:00:00,2019-02-05 00:21:38,(SP 19) SO-475 Sociology Practicum ,Fulcrum/Grips Practicum ,,,need,2.50
Daniel,Geiter,[email protected],1522294,Student,2019-02-06 00:00:00,2019-02-05 12:40:13,Dummy Course,Dummy need,,,need,3.00
Tiffany,Yamase,[email protected],0938480,Student,2019-02-04 00:00:00,2019-02-05 14:24:39,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,Met with other interns to come up with a game plan,need,1.50
Jesenia,Albert,[email protected],1982086,StudentAlumniFaculty/StaffCommunity MemberParent of Student,2019-02-05 00:00:00,2019-02-05 15:53:52,,,Faith Bible Church,First day starting internship. Assigned a project to summarize counseling resources/articles,individual,4.50
Faith,Martin,[email protected],1692445,Student,2019-02-01 00:00:00,2019-02-05 22:48:52,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,Parks and Recreational Therapy,Iceskating and Hockey game Parks and Rec,need,5.50
Faith,Martin,[email protected],1692445,Student,2019-02-03 00:00:00,2019-02-05 22:49:45,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,Parks and Recreational Therapy,Swimming,need,1.00
Faith,Martin,[email protected],1692445,Student,2019-02-04 00:00:00,2019-02-05 22:51:07,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,Parks and Recreational Therapy,Ice Skating ,need,1.50
Faith,Martin,[email protected],1692445,Student,2019-02-05 00:00:00,2019-02-05 22:52:11,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,Parks and Recreational Therapy,Cooking Class,need,3.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-04 00:00:00,2019-02-05 23:47:45,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,"First day on a day shift, I was trained with a lead house parent.",need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-05 00:00:00,2019-02-05 23:48:58,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,I did a training shift on grave. Since this is a 24 hours facility I had an opportunity to learn about how the facility works at this time.,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-01 00:00:00,2019-02-06 15:54:00,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-04 00:00:00,2019-02-06 15:54:30,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-06 00:00:00,2019-02-06 15:55:24,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,5.00
Jacob,Hubbard,[email protected],1552226,Student,2019-02-05 00:00:00,2019-02-06 15:56:57,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Began first day of Voluntary Tax Returns,need,2.50
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-05 00:00:00,2019-02-06 16:02:57,(SP 19) SO-475 Sociology Practicum ,Guild School Practicum ,,,need,2.00
Abigail,Nye,[email protected],1554687,Student,2019-02-01 00:00:00,2019-02-06 16:40:35,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Abigail,Nye,[email protected],1554687,Student,2019-02-04 00:00:00,2019-02-06 16:41:09,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.50
Jessica,Schmautz,[email protected],2005846,Student,2019-02-04 00:00:00,2019-02-06 16:41:13,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.50
Abigail,Nye,[email protected],1554687,Student,2019-02-06 00:00:00,2019-02-06 16:41:31,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,2.50
Madison,Dammarell,[email protected],1551391,Student,2019-02-04 00:00:00,2019-02-06 16:46:34,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,Observed and interacted with children in a small group and classroom setting,need,3.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-07 00:00:00,2019-02-06 16:47:45,(SP 19) PY-402 Senior Practicum ,Youth for Christ: West Central with PY 402,,,need,5.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-01 00:00:00,2019-02-06 16:48:13,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,Kitchen and tables,need,5.00
Anna,Kelly,[email protected],2024021,Student,2019-02-04 00:00:00,2019-02-06 16:48:18,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,"First day- shadowed intake, talked to providers, listened in to proceedings. ",need,4.00
Marissa,Kirk,[email protected],2181176,Student,2019-02-04 00:00:00,2019-02-06 16:49:05,(SP 19) PY-402 Senior Practicum ,Avalon with PY 402,,,need,2.00
Marissa,Kirk,[email protected],2181176,Student,2019-02-05 00:00:00,2019-02-06 16:50:44,(SP 19) PY-402 Senior Practicum ,Avalon with PY 402,,,need,1.50
Mason,Elms,[email protected],1555416,Student,2019-02-01 00:00:00,2019-02-06 16:52:15,,ParaSport Spokane,,Banquet Setup,need,4.00
Nikkita,Dehle,[email protected],1404106,Student,2019-02-01 00:00:00,2019-02-06 16:52:51,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,Meeting with Becca and Landon,need,0.50
Nikkita,Dehle,[email protected],1404106,Student,2019-02-04 00:00:00,2019-02-06 17:00:37,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.83
Nikkita,Dehle,[email protected],1404106,Student,2019-02-05 00:00:00,2019-02-06 17:02:45,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Karis,Lovell,[email protected],2206496,Student,2019-02-05 00:00:00,2019-02-07 14:48:47,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,5.00
Karis,Lovell,[email protected],2206496,Student,2019-02-07 00:00:00,2019-02-07 14:49:05,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-07 00:00:00,2019-02-07 15:09:39,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-08 00:00:00,2019-02-07 15:12:52,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-07 00:00:00,2019-02-07 17:19:20,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-08 00:00:00,2019-02-07 17:31:31,(SP 19) CS-472,Work with Whitworth Sociology,,,need,4.00
Melanie,Elston,[email protected],1650077,Student,2019-02-06 00:00:00,2019-02-07 19:10:24,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-07 00:00:00,2019-02-07 21:46:54,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,Served food in kitchen. Buffy is out sick :(,need,2.00
Sorayya,Mohammadi,[email protected],2214045,Student,2019-02-07 00:00:00,2019-02-08 12:20:43,,Field Placement ,,,need,3.00
Faith,Martin,[email protected],1692445,Student,2019-02-07 00:00:00,2019-02-08 13:14:29,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Crafts,need,2.50
Faith,Martin,[email protected],1692445,Student,2019-02-08 00:00:00,2019-02-08 13:16:30,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,iceskating,need,2.00
Faith,Martin,[email protected],1692445,Student,2019-02-08 00:00:00,2019-02-08 13:17:49,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Dance,need,3.50
Jacob,Hubbard,[email protected],1552226,Student,2019-02-07 00:00:00,2019-02-08 14:25:41,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Tax Returns at Spokane Community Center,need,2.66
Jacob,Hubbard,[email protected],1552226,Student,2019-02-08 00:00:00,2019-02-08 14:26:18,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Voluntary Tax Returns,need,2.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-06 00:00:00,2019-02-08 14:27:41,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Last training shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-08 00:00:00,2019-02-08 14:28:32,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,I took and passed my post test. ,need,1.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-13 00:00:00,2019-02-08 14:29:54,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,CHP Swing Shiftt,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-14 00:00:00,2019-02-08 14:30:52,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,CHP Day Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-20 00:00:00,2019-02-08 14:31:31,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,CHP Swing Shift,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-08 00:00:00,2019-02-08 14:48:14,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-08 00:00:00,2019-02-08 14:48:53,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-09 00:00:00,2019-02-08 14:49:22,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,4.00
Rhiana,Everest,[email protected],1551209,Student,2019-02-04 00:00:00,2019-02-08 15:26:36,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,,need,1.67
Becca,Patterson,[email protected],2002849,Student,2019-02-04 00:00:00,2019-02-08 16:14:12,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,information session,need,4.00
Becca,Patterson,[email protected],2002849,Student,2019-02-08 00:00:00,2019-02-08 16:15:11,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,Making check in calls,need,3.00
Morgan,Howe,[email protected],1551270,Student,2019-02-01 00:00:00,2019-02-09 09:34:36,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-02-02 00:00:00,2019-02-09 09:34:56,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,6.00
Morgan,Howe,[email protected],1551270,Student,2019-02-05 00:00:00,2019-02-09 09:35:16,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,2.50
Morgan,Howe,[email protected],1551270,Student,2019-02-06 00:00:00,2019-02-09 09:38:41,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.00
Morgan,Howe,[email protected],1551270,Student,2019-02-07 00:00:00,2019-02-09 09:39:30,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.50
Morgan,Howe,[email protected],1551270,Student,2019-02-08 00:00:00,2019-02-09 09:39:51,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-02-09 00:00:00,2019-02-09 09:40:14,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,6.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-08 00:00:00,2019-02-09 12:37:31,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Worked in kitchen for breakfast, tables for lunch",need,5.50
Marissa,Kirk,[email protected],2181176,Student,2019-02-06 00:00:00,2019-02-09 14:57:05,(SP 19) PY-402 Senior Practicum ,Avalon with PY 402,,,need,1.75
Marissa,Kirk,[email protected],2181176,Student,2019-02-07 00:00:00,2019-02-09 14:59:04,(SP 19) PY-402 Senior Practicum ,Avalon with PY 402,,,need,1.50
Marissa,Kirk,[email protected],2181176,Student,2019-02-08 00:00:00,2019-02-09 15:00:00,(SP 19) PY-402 Senior Practicum ,Avalon with PY 402,,,need,2.75
Kelsey,Hormel,[email protected],1648596,Student,2019-02-06 00:00:00,2019-02-09 19:28:04,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,7.00
Kelsey,Hormel,[email protected],1648596,Student,2019-02-08 00:00:00,2019-02-09 19:28:26,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,3.00
Mason,Elms,[email protected],1555416,Student,2019-02-08 00:00:00,2019-02-10 15:40:58,,ParaSport Spokane,,,need,5.00
Gunnar,Swannack,[email protected],1665810,Student,2019-02-09 00:00:00,2019-02-10 15:52:35,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,5.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-01 00:00:00,2019-02-10 22:27:38,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-04 00:00:00,2019-02-10 22:27:58,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-05 00:00:00,2019-02-10 22:28:12,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-07 00:00:00,2019-02-10 22:28:42,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,1.50
Sharon,Wilkes,[email protected],1377531,Student,2019-02-08 00:00:00,2019-02-10 22:29:01,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,1.50
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-07 00:00:00,2019-02-11 03:15:26,Small Business Development Center ,SBDC Hours ,,,need,0.75
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-09 00:00:00,2019-02-11 03:15:45,Small Business Development Center ,SBDC Hours ,,,need,1.00
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-10 00:00:00,2019-02-11 03:16:39,Small Business Development Center ,SBDC Hours ,,,need,0.75
Alysha,Terrell,[email protected],1554859,Student,2019-02-01 00:00:00,2019-02-11 10:33:31,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-04 00:00:00,2019-02-11 10:33:56,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-06 00:00:00,2019-02-11 10:34:50,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,2.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-10 00:00:00,2019-02-11 11:19:11,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,Training,need,2.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-11 00:00:00,2019-02-11 11:20:04,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,Orientation,need,0.50
Alysha,Terrell,[email protected],1554859,Student,2019-02-08 00:00:00,2019-02-11 11:45:06,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-11 00:00:00,2019-02-11 11:45:32,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-08 00:00:00,2019-02-11 11:50:13,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Hannah,Boyd,[email protected],1550924,Student,2019-02-04 00:00:00,2019-02-11 14:08:01,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,practicum,need,4.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-05 00:00:00,2019-02-11 14:08:29,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,practicum,need,4.00
Shelby,Spear,[email protected],1554172,Student,2019-02-04 00:00:00,2019-02-11 14:08:30,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-06 00:00:00,2019-02-11 14:08:57,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,4.00
Shelby,Spear,[email protected],1554172,Student,2019-02-06 00:00:00,2019-02-11 14:09:26,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-06 00:00:00,2019-02-11 14:09:42,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,practicum,need,4.00
Hannah,Boyd,[email protected],1550924,Student,2019-02-07 00:00:00,2019-02-11 14:10:35,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,lesson prep/practicum,need,5.00
Shelby,Spear,[email protected],1554172,Student,2019-02-08 00:00:00,2019-02-11 14:11:34,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Shelby,Spear,[email protected],1554172,Student,2019-02-11 00:00:00,2019-02-11 14:12:15,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Hailey,Swearingen,[email protected],1551957,Student,2019-02-08 00:00:00,2019-02-11 15:26:08,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,House visit,need,4.25
Hailey,Swearingen,[email protected],1551957,Student,2019-02-04 00:00:00,2019-02-11 15:26:40,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,"Home visit, therapy session",need,4.50
Hailey,Swearingen,[email protected],1551957,Student,2019-02-11 00:00:00,2019-02-11 15:27:08,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,"Filing, staff meeting",need,6.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-05 00:00:00,2019-02-11 15:44:27,,Spark Central with PY 402,,,need,3.50
Skyler,Boehnke,[email protected],1550497,Student,2019-02-07 00:00:00,2019-02-11 15:44:54,,Spark Central with PY 402,,,need,2.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-08 00:00:00,2019-02-11 15:45:15,,Spark Central with PY 402,,,need,2.00
Rhiana,Everest,[email protected],1551209,Student,2019-02-11 00:00:00,2019-02-11 16:34:32,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,"Concept mapping and organization, basic research",need,4.50
Krystal,Roberts,[email protected],1973541,Student,2019-02-11 00:00:00,2019-02-11 17:32:34,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.00
Kelsey,Hormel,[email protected],1648596,Student,2019-02-11 00:00:00,2019-02-11 19:47:23,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,6.00
Melanie,Elston,[email protected],1650077,Student,2019-02-11 00:00:00,2019-02-11 20:20:39,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.00
Kaitlyn,Halsted,[email protected],1551574,Student,2019-02-04 00:00:00,2019-02-11 21:03:38,(SP 19) SO-475 Sociology Practicum ,Educare Practicum SO-475,,,need,4.00
Kaitlyn,Halsted,[email protected],1551574,Student,2019-02-08 00:00:00,2019-02-11 21:04:02,(SP 19) SO-475 Sociology Practicum ,Educare Practicum SO-475,,,need,4.00
Kaitlyn,Halsted,[email protected],1551574,Student,2019-02-11 00:00:00,2019-02-11 21:04:20,(SP 19) SO-475 Sociology Practicum ,Educare Practicum SO-475,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-11 00:00:00,2019-02-11 22:02:38,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-11 00:00:00,2019-02-11 22:53:44,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.50
Faith,Martin,[email protected],1692445,Student,2019-02-11 00:00:00,2019-02-11 22:57:36,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,iceskating,need,1.50
Rebecca,Budai,[email protected],1554327,Student,2019-02-06 00:00:00,2019-02-12 13:01:26,MU 157-457: Piano Performance,Rockwood Piano Peformances,,,need,1.00
Karis,Lovell,[email protected],2206496,Student,2019-02-12 00:00:00,2019-02-12 15:49:58,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.60
Vanessa,Ivy,[email protected],1551285,Student,2019-02-12 00:00:00,2019-02-12 17:00:52,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Wiped tables, then in kitchen for lunch serving desert",need,4.50
Jesenia,Albert,[email protected],1982086,StudentAlumniFaculty/StaffCommunity MemberParent of Student,2019-02-07 00:00:00,2019-02-12 17:45:52,,,Faith Bible Church ,Continued on my summary project,individual,4.50
Jesenia,Albert,[email protected],1982086,StudentAlumniFaculty/StaffCommunity MemberParent of Student,2019-02-12 00:00:00,2019-02-12 17:46:52,,,Faith Bible Church,"worked from home, continued on the project",individual,5.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-13 00:00:00,2019-02-13 11:16:53,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,2.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-14 00:00:00,2019-02-13 11:34:36,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.00
Andrea,Sorensen,[email protected],2190238,Student,2019-02-07 00:00:00,2019-02-13 11:36:56,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Shadle Park High School; Stacia Cammarano,need,2.00
Katrina,King,[email protected],1686290,Student,2019-02-06 00:00:00,2019-02-13 11:59:25,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-08 00:00:00,2019-02-13 11:59:59,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-11 00:00:00,2019-02-13 12:00:50,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.50
Katrina,King,[email protected],1686290,Student,2019-02-13 00:00:00,2019-02-13 12:01:54,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,2.00
Taylor,White,[email protected],1686427,Student,2019-02-13 00:00:00,2019-02-13 13:42:49,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,Assisted Horatius with class prep.,need,2.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-01 00:00:00,2019-02-13 14:59:46,(SP 19) SO-475 Sociology Practicum ,Leadership Practicum SO-475,,,need,4.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-05 00:00:00,2019-02-13 15:00:12,(SP 19) SO-475 Sociology Practicum ,Leadership Practicum SO-475,,,need,5.00
Tiffany,Yamase,[email protected],0938480,Student,2019-02-05 00:00:00,2019-02-13 15:04:05,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,,need,3.00
Shelby,Spear,[email protected],1554172,Student,2019-02-13 00:00:00,2019-02-13 15:07:55,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Jessica,Schmautz,[email protected],2005846,Student,2019-02-10 00:00:00,2019-02-13 15:33:01,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,10.00
Justess,Neihart,[email protected],2004052,Student,2019-02-04 00:00:00,2019-02-13 15:43:44,Community Service Specialists,World Relief Community Service Specialist,,Orientation,need,2.00
Justess,Neihart,[email protected],2004052,Student,2019-02-06 00:00:00,2019-02-13 15:44:39,Community Service Specialists,World Relief Community Service Specialist,,Office Work,need,4.00
Justess,Neihart,[email protected],2004052,Student,2019-02-08 00:00:00,2019-02-13 15:45:16,Community Service Specialists,World Relief Community Service Specialist,,Office Work,need,3.00
Justess,Neihart,[email protected],2004052,Student,2019-02-13 00:00:00,2019-02-13 15:45:44,Community Service Specialists,World Relief Community Service Specialist,,Data Entry,need,4.00
Morgan,Howe,[email protected],1551270,Student,2019-02-12 00:00:00,2019-02-13 15:54:07,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,1.50
Morgan,Howe,[email protected],1551270,Student,2019-02-13 00:00:00,2019-02-13 15:54:55,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.25
Anna,Kelly,[email protected],2024021,Student,2019-02-11 00:00:00,2019-02-13 15:59:29,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,,need,3.50
Rhiana,Everest,[email protected],1551209,Student,2019-02-13 00:00:00,2019-02-13 16:01:52,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,Research,need,4.00
Nikkita,Dehle,[email protected],1404106,Student,2019-02-07 00:00:00,2019-02-13 16:11:07,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Nikkita,Dehle,[email protected],1404106,Student,2019-02-08 00:00:00,2019-02-13 16:15:32,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,1.58
Justess,Neihart,[email protected],2004052,Student,2019-02-26 00:00:00,2019-02-13 16:23:30,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,4.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-14 00:00:00,2019-02-13 16:32:05,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.00
Nikkita,Dehle,[email protected],1404106,Student,2019-02-11 00:00:00,2019-02-13 16:56:23,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.83
Madyson,Gabriel,[email protected],1552596,Student,2019-02-01 00:00:00,2019-02-13 17:40:26,,Spokane Police Department with PY 402,,Strangulation Eval Data Entry & Analysis,need,4.50
Madyson,Gabriel,[email protected],1552596,Student,2019-02-04 00:00:00,2019-02-13 17:41:02,,Spokane Police Department with PY 402,,DV Victim Panel,need,1.50
Madyson,Gabriel,[email protected],1552596,Student,2019-02-05 00:00:00,2019-02-13 17:41:38,,Spokane Police Department with PY 402,,Strangulation Eval Data Analysis,need,3.00
Madyson,Gabriel,[email protected],1552596,Student,2019-02-07 00:00:00,2019-02-13 17:42:13,,Spokane Police Department with PY 402,,Strangulation Eval Data Analysis,need,3.00
Madyson,Gabriel,[email protected],1552596,Student,2019-02-13 00:00:00,2019-02-13 17:42:43,,Spokane Police Department with PY 402,,Jail DV interviews ,need,3.00
Melanie,Elston,[email protected],1650077,Student,2019-02-13 00:00:00,2019-02-13 19:10:21,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.70
Hannah,Boyd,[email protected],1550924,Student,2019-02-13 00:00:00,2019-02-13 19:11:23,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,psych practicum,need,3.50
Kelsey,Hormel,[email protected],1648596,Student,2019-02-13 00:00:00,2019-02-13 20:19:22,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,6.50
Nadia,Sarfraz,[email protected],1771582,Student,2019-02-15 00:00:00,2019-02-13 22:30:04,(18-19) GE330 - CEA ,RISE - CEAs,,,need,39.65
McKenzie,Dulmes,[email protected],1550492,Student,2019-02-13 00:00:00,2019-02-13 23:18:20,(SP 19) HS-315 Nutrition ,Dinner Table West Central Episcopal Mission (Spring 19),,"WE served a meal in a family style setting and I got the chance to learn more about this organization, it was amazing getting to talk to everyone!",need,3.00
Nikkita,Dehle,[email protected],1404106,Student,2019-02-14 00:00:00,2019-02-14 13:11:46,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Taylor,White,[email protected],1686427,Student,2019-02-05 00:00:00,2019-02-14 15:37:18,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,3.00
Taylor,White,[email protected],1686427,Student,2019-02-07 00:00:00,2019-02-14 15:37:30,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,1.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-05 00:00:00,2019-02-14 15:37:51,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,3.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-07 00:00:00,2019-02-14 15:38:43,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,1.00
Taylor,White,[email protected],1686427,Student,2019-02-14 00:00:00,2019-02-14 15:41:16,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,4.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-16 00:00:00,2019-02-14 16:55:29,Dummy Course,Dummy need,,,need,5.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-21 00:00:00,2019-02-14 16:55:50,Dummy Course,Dummy need,,,need,4.00
Madyson,Gabriel,[email protected],1552596,Student,2019-02-14 00:00:00,2019-02-14 17:53:06,,Spokane Police Department with PY 402,,DV Coalition meeting ,need,3.00
Daniel,Geiter,[email protected],1522294,Student,2019-02-15 00:00:00,2019-02-14 18:16:12,Dummy Course,Dummy need,,,need,4.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-14 00:00:00,2019-02-14 18:30:22,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,4.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-14 00:00:00,2019-02-14 19:29:55,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,3.00
Nathan,Beine,[email protected],2209240,Student,2019-02-07 00:00:00,2019-02-14 19:32:59,,,Audubon elementary ,Helped out at lunch bunch program ,individual,1.00
Nathan,Beine,[email protected],2209240,Student,2019-02-14 00:00:00,2019-02-14 19:34:20,,,Audubon elementary ,Helped out in the music classroom with learning basic rhythms and ukulele chords ,individual,1.15
Julia,Abbott,[email protected],1553308,Student,2019-02-12 00:00:00,2019-02-14 22:11:27,(SP 19) CS-472,Work with Rogers High School,,Learning HTML and CSS in preparation of undertaking client project. These will be languages that I will most likely need to complete the project.,need,1.50
Tamara,Tokarz,[email protected],1552634,Student,2019-02-14 00:00:00,2019-02-14 23:55:50,(SP 19) SO-475 Sociology Practicum ,Fulcrum/Grips Practicum ,,,need,1.00
Krystal,Roberts,[email protected],1973541,Student,2019-02-14 00:00:00,2019-02-15 00:54:03,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.50
Sarah,Weers,[email protected],1553331,Student,2019-02-10 00:00:00,2019-02-15 09:08:58,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-15 00:00:00,2019-02-15 09:10:05,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-15 00:00:00,2019-02-15 09:10:28,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-05 00:00:00,2019-02-15 10:55:58,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-06 00:00:00,2019-02-15 10:56:11,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-07 00:00:00,2019-02-15 10:56:20,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-08 00:00:00,2019-02-15 10:56:33,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-11 00:00:00,2019-02-15 10:56:44,Community Service Specialists,WCCC Community Service Specialist ,,,need,4.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-13 00:00:00,2019-02-15 10:56:57,Community Service Specialists,WCCC Community Service Specialist ,,,need,5.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-14 00:00:00,2019-02-15 10:57:11,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-15 00:00:00,2019-02-15 10:57:22,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Nicholas,Neely,[email protected],1557228,Student,2019-02-15 00:00:00,2019-02-15 11:11:38,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,9.67
Faith,Lopez-Flores,[email protected],1557574,Student,2019-02-15 00:00:00,2019-02-15 11:25:22,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,40.00
Katrina,King,[email protected],1686290,Student,2019-02-15 00:00:00,2019-02-15 11:40:05,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,2.50
Chloe,Zimmerman,[email protected],2209522,Student,2019-02-14 00:00:00,2019-02-15 13:00:06,(18-19) GE330 - CEA ,Meals on Wheels -CEA ,,"I did two Meals on Wheels routs (rout #39), submitted a volunteer application (what is basically a background check form) to M.O.W., had an office hour in the Dornsife Center, and attended a Managers Meeting. ",need,7.84
Hannah,Boyd,[email protected],1550924,Student,2019-02-15 00:00:00,2019-02-15 13:40:02,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,lesson planning whoo,need,0.50
Denisse,Guerrero,[email protected],1681365,Student,2019-02-15 00:00:00,2019-02-15 13:42:03,(18-19) GE330 - CEA ,TTM - CEAs,,,need,6.00
Anesu,Mujenge,[email protected],1965418,Student,2019-02-15 00:00:00,2019-02-15 14:04:26,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,9.80
Nicholas,Hughes,[email protected],1534862,Student,2019-02-13 00:00:00,2019-02-15 14:31:31,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,8am-12pm job shadowing,need,4.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-15 00:00:00,2019-02-15 14:32:12,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,8am-12pm job shadowing,need,4.00
Christina ,Parslow,[email protected],2002668,Student,2019-02-15 00:00:00,2019-02-15 15:12:07,(18-19) GE330 - CEA ,TTM - CEAs,,,need,7.08
Becca,Patterson,[email protected],2002849,Student,2019-02-10 00:00:00,2019-02-15 15:23:28,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-02-11 00:00:00,2019-02-15 15:23:46,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,4.00
Becca,Patterson,[email protected],2002849,Student,2019-02-15 00:00:00,2019-02-15 15:24:17,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Rhiana,Everest,[email protected],1551209,Student,2019-02-15 00:00:00,2019-02-15 15:47:59,(18-19) GE330 - CEA ,Impact Trips - CEAs,,,need,12.01
Justess,Neihart,[email protected],2004052,Student,2019-02-15 00:00:00,2019-02-15 15:53:54,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,3.50
Rachel,Reynolds,[email protected],1551279,Student,2019-02-01 00:00:00,2019-02-15 16:02:19,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,3.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-05 00:00:00,2019-02-15 16:02:51,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-08 00:00:00,2019-02-15 16:03:11,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-15 00:00:00,2019-02-15 16:03:34,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Meghan,Trainer,[email protected],1696901,Student,2019-02-14 00:00:00,2019-02-15 16:12:23,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Kelsey,Hormel,[email protected],1648596,Student,2019-02-15 00:00:00,2019-02-15 16:48:37,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Megan,Haveman,[email protected],2002670,Student,2019-02-15 00:00:00,2019-02-15 17:48:55,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,8.10
Chelsea,Sapp,[email protected],1985832,Student,2019-02-01 00:00:00,2019-02-15 18:03:15,(18-19) GE330 - CEA ,Meals on Wheels -CEA ,,,need,14.25
Madyson,Gabriel,[email protected],1552596,Student,2019-02-15 00:00:00,2019-02-15 18:13:49,,Spokane Police Department with PY 402,,Strangulation Data analyses and research,need,3.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-14 00:00:00,2019-02-15 19:09:03,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,,need,2.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-15 00:00:00,2019-02-15 19:09:56,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Tables, Took a trip to cup of cool water",need,5.50
Kyle,Shepard,[email protected],2037433,Student,2019-02-15 00:00:00,2019-02-15 20:29:48,(18-19) GE330 - CEA ,RISE - CEAs,,,need,14.25
Sierra,Westervelt,[email protected],1552518,Student,2019-02-20 00:00:00,2019-02-15 23:14:25,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Day Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-21 00:00:00,2019-02-15 23:15:02,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Day Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-27 00:00:00,2019-02-15 23:15:54,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Swing Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-02-28 00:00:00,2019-02-15 23:16:31,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Day Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-03-06 00:00:00,2019-02-15 23:17:07,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Swing Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-03-07 00:00:00,2019-02-15 23:17:36,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Day Shift,need,8.00
Sierra,Westervelt,[email protected],1552518,Student,2019-03-13 00:00:00,2019-02-15 23:18:27,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,Swing Shift,need,8.00
Aja,Schmick,[email protected],1703168,Student,2019-02-15 00:00:00,2019-02-16 01:18:55,(18-19) GE330 - CEA ,RISE - CEAs,,,need,8.00
Jacob,Dunning,[email protected],1769226,Student,2019-02-07 00:00:00,2019-02-16 13:01:03,Small Business Development Center ,SBDC Hours ,,,need,2.00
Jacob,Dunning,[email protected],1769226,Student,2019-02-12 00:00:00,2019-02-16 13:03:58,Small Business Development Center ,SBDC Hours ,,,need,0.50
Brianna,McLean,[email protected],2026090,Student,2019-02-15 00:00:00,2019-02-16 13:27:43,(18-19) GE330 - CEA ,RISE - CEAs,,,need,27.25
Angela,Brasher,[email protected],1989381,Student,2019-02-02 00:00:00,2019-02-16 13:50:59,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Volunteered doing taxes,need,7.57
Angela,Brasher,[email protected],1989381,Student,2019-02-08 00:00:00,2019-02-16 13:51:38,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Volunteered doing taxes,need,2.00
Angela,Brasher,[email protected],1989381,Student,2019-02-09 00:00:00,2019-02-16 13:52:06,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Volunteered doing taxes,need,7.53
Angela,Brasher,[email protected],1989381,Student,2019-02-15 00:00:00,2019-02-16 13:52:30,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Volunteered doing taxes,need,3.00
Micah,Huie,[email protected],1651975,Student,2019-02-02 00:00:00,2019-02-16 17:03:13,(18-19) GE330 - CEA ,RISE - CEAs,,,need,12.50
Kristen,Elliott,[email protected],1551843,Student,2019-02-17 00:00:00,2019-02-16 18:59:52,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,5.41
Daniel,Roberts,[email protected],1760396,StudentCommunity Member,2019-02-16 00:00:00,2019-02-17 00:03:37,(18-19) GE330 - CEA ,RISE - CEAs,,,need,22.50
Michaela,Scheer,[email protected],1694351,Student,2019-02-17 00:00:00,2019-02-17 13:37:02,(18-19) GE330 - CEA ,Impact Trips - CEAs,,,need,5.92
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-13 00:00:00,2019-02-17 13:49:46,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.50
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-15 00:00:00,2019-02-17 13:50:04,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.50
Jacob,Dunning,[email protected],1769226,Student,2019-02-16 00:00:00,2019-02-17 15:25:51,Small Business Development Center ,SBDC Hours ,,,need,2.00
Gunnar,Swannack,[email protected],1665810,Student,2019-02-16 00:00:00,2019-02-17 16:34:08,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,5.10
Melissa,Osorio,[email protected],1550816,Student,2019-02-15 00:00:00,2019-02-17 18:40:59,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,10.00
Justice,Russell,[email protected],1556178,Student,2019-02-04 00:00:00,2019-02-17 19:07:02,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,4.00
Justice,Russell,[email protected],1556178,Student,2019-02-04 00:00:00,2019-02-17 19:07:38,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,2.00
Justice,Russell,[email protected],1556178,Student,2019-02-08 00:00:00,2019-02-17 19:08:12,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,3.00
Justice,Russell,[email protected],1556178,Student,2019-02-08 00:00:00,2019-02-17 19:08:25,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,2.00
Justice,Russell,[email protected],1556178,Student,2019-02-11 00:00:00,2019-02-17 19:08:48,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,3.00
Justice,Russell,[email protected],1556178,Student,2019-02-11 00:00:00,2019-02-17 19:09:05,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,3.00
Justice,Russell,[email protected],1556178,Student,2019-02-15 00:00:00,2019-02-17 19:09:36,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,3.00
Justice,Russell,[email protected],1556178,Student,2019-02-15 00:00:00,2019-02-17 19:09:50,(SP 19) PY-402 Senior Practicum ,WA TRUST- Human Resources with PY 402,,,need,2.50
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-16 00:00:00,2019-02-18 01:48:55,Small Business Development Center ,SBDC Hours ,,,need,2.50
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-17 00:00:00,2019-02-18 01:49:17,Small Business Development Center ,SBDC Hours ,,,need,1.75
Madison,Oliver,[email protected],1655247,Student,2019-02-15 00:00:00,2019-02-18 11:06:58,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,14.75
Katrina,King,[email protected],1686290,Student,2019-02-18 00:00:00,2019-02-18 11:32:17,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.50
Alysha,Terrell,[email protected],1554859,Student,2019-02-15 00:00:00,2019-02-18 12:34:01,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-18 00:00:00,2019-02-18 12:34:18,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-09 00:00:00,2019-02-18 12:49:22,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,,need,3.45
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-12 00:00:00,2019-02-18 12:49:46,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,,need,1.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-14 00:00:00,2019-02-18 12:50:14,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,,need,2.30
Mason,Elms,[email protected],1555416,Student,2019-02-15 00:00:00,2019-02-18 13:47:19,,ParaSport Spokane,,,need,16.00
Mason,Elms,[email protected],1555416,Student,2019-02-16 00:00:00,2019-02-18 13:47:36,,ParaSport Spokane,,,need,16.00
Mason,Elms,[email protected],1555416,Student,2019-02-17 00:00:00,2019-02-18 13:47:56,,ParaSport Spokane,,,need,16.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-18 00:00:00,2019-02-18 14:22:13,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,3.50
Anna,Kelly,[email protected],2024021,Student,2019-02-18 00:00:00,2019-02-18 15:08:20,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,"Begun data tracking for CC participants, slower day due to weather conditions many providers couldn't get to court. ",need,6.00
Faith,Martin,[email protected],1692445,Student,2019-02-15 00:00:00,2019-02-18 15:23:02,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Ice skating at the ribbon,need,1.50
Faith,Martin,[email protected],1692445,Student,2019-02-16 00:00:00,2019-02-18 15:23:48,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,EWU BBall game,need,5.50
Faith,Martin,[email protected],1692445,Student,2019-02-14 00:00:00,2019-02-18 15:24:19,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Crafts,need,2.00
Faith,Martin,[email protected],1692445,Student,2019-02-17 00:00:00,2019-02-18 15:24:44,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Swimming,need,1.00
Faith,Martin,[email protected],1692445,Student,2019-02-18 00:00:00,2019-02-18 15:25:31,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Iceskating ,need,1.50
Shelby,Spear,[email protected],1554172,Student,2019-02-15 00:00:00,2019-02-18 15:57:56,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Shelby,Spear,[email protected],1554172,Student,2019-02-18 00:00:00,2019-02-18 15:58:18,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Rhiana,Everest,[email protected],1551209,Student,2019-02-18 00:00:00,2019-02-18 16:00:43,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,Research,need,4.25
Nikkita,Dehle,[email protected],1404106,Student,2019-02-15 00:00:00,2019-02-18 17:36:52,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,1.58
Nikkita,Dehle,[email protected],1404106,Student,2019-02-18 00:00:00,2019-02-18 17:37:43,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,4.00
Hailey,Swearingen,[email protected],1551957,Student,2019-02-18 00:00:00,2019-02-18 17:58:34,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,Called apartment complexes for a client to see if they take section 8 housingVarious filing,need,4.00
Hailey,Swearingen,[email protected],1551957,Student,2019-02-15 00:00:00,2019-02-18 17:59:05,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,,need,4.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-15 00:00:00,2019-02-18 20:59:12,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,,need,1.55
Miranda,Harsin,[email protected],1535223,Student,2019-02-14 00:00:00,2019-02-18 21:53:06,,RISE Tutor and Mentor,,,need,1.00
Sarah,Weers,[email protected],1553331,Student,2019-02-18 00:00:00,2019-02-18 23:07:45,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-18 00:00:00,2019-02-18 23:08:11,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-02-18 00:00:00,2019-02-19 02:43:41,Small Business Development Center ,SBDC Hours ,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-11 00:00:00,2019-02-19 09:55:08,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-12 00:00:00,2019-02-19 09:55:25,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-13 00:00:00,2019-02-19 09:55:38,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-14 00:00:00,2019-02-19 09:55:51,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sarah,Weers,[email protected],1553331,Student,2019-02-22 00:00:00,2019-02-19 10:55:30,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-22 00:00:00,2019-02-19 10:55:58,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sorayya,Mohammadi,[email protected],2214045,Student,2019-02-19 00:00:00,2019-02-19 12:42:48,,Field Placement ,,,need,1.50
Kaitlyn,Halsted,[email protected],1551574,Student,2019-02-15 00:00:00,2019-02-19 13:36:04,(SP 19) SO-475 Sociology Practicum ,Educare Practicum SO-475,,,need,4.00
Kaitlyn,Halsted,[email protected],1551574,Student,2019-02-18 00:00:00,2019-02-19 13:36:20,(SP 19) SO-475 Sociology Practicum ,Educare Practicum SO-475,,,need,4.00
Hayden,Wheeler-Lindboe,[email protected],1556190,Student,2019-02-15 00:00:00,2019-02-19 16:46:52,(SP 19) HS-315 Nutrition ,Meals on Wheels Driver,,"I did a ride-along with a more senior volunteer to learn the rules, route, and etiquette for interacting with this special part of the population.",need,2.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-14 00:00:00,2019-02-19 17:42:54,(SP 19) SO-475 Sociology Practicum ,Guild School Practicum ,,,need,2.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-15 00:00:00,2019-02-19 17:43:08,(SP 19) SO-475 Sociology Practicum ,Leadership Practicum SO-475,,,need,5.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-19 00:00:00,2019-02-19 17:43:20,(SP 19) SO-475 Sociology Practicum ,Guild School Practicum ,,,need,2.00
Krystal,Roberts,[email protected],1973541,Student,2019-02-19 00:00:00,2019-02-19 17:58:58,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.75
Tiffany,Yamase,[email protected],0938480,Student,2019-02-18 00:00:00,2019-02-19 18:07:43,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,Training with Josh,need,2.50
Heidi,Mickelsen,[email protected],1519231,Student,2019-02-19 00:00:00,2019-02-19 18:39:28,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.12
Hannah,Boyd,[email protected],1550924,Student,2019-02-19 00:00:00,2019-02-19 19:01:03,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,practicum ,need,3.00
Niccole,Donaldson,[email protected],2193586,Student,2019-02-19 00:00:00,2019-02-19 21:30:04,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,5.00
Taylor,White,[email protected],1686427,Student,2019-02-19 00:00:00,2019-02-20 01:03:45,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,Learned to make confirmation calls. Sat in on supervision.,need,5.00
Emmi,Stauffacher,[email protected],2209987,Student,2019-02-15 00:00:00,2019-02-20 11:13:59,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,100th day of school! Made firework paintings and fruit loop necklaces.,need,2.00
Emmi,Stauffacher,[email protected],2209987,Student,2019-02-19 00:00:00,2019-02-20 11:14:31,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Katrina,King,[email protected],1686290,Student,2019-02-20 00:00:00,2019-02-20 12:03:03,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,2.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-02-20 00:00:00,2019-02-20 13:45:50,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Explored Teaching for 2 hours. Understand prep period and world history course. ,need,2.00
Taylor,White,[email protected],1686427,Student,2019-02-20 00:00:00,2019-02-20 14:12:30,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,5.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-20 00:00:00,2019-02-20 14:40:22,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-19 00:00:00,2019-02-20 14:51:05,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Rachel,Werner,[email protected],1551293,Student,2019-02-05 00:00:00,2019-02-20 15:02:59,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,Attended Orientation,need,1.00
Rachel,Werner,[email protected],1551293,Student,2019-02-07 00:00:00,2019-02-20 15:06:44,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,Attended Group and finished mandatory reporting training.,need,2.00
Rachel,Werner,[email protected],1551293,Student,2019-02-08 00:00:00,2019-02-20 15:08:40,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,Got trained and helped out in the residential area.,need,3.00
Rachel,Werner,[email protected],1551293,Student,2019-02-14 00:00:00,2019-02-20 15:10:33,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,Attended group and had supervisor meeting.,need,1.75
Rachel,Werner,[email protected],1551293,Student,2019-02-15 00:00:00,2019-02-20 15:11:48,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I helped in the residential area and stayed late helping with one of the boys with math.,need,3.50
Rachel,Werner,[email protected],1551293,Student,2019-02-19 00:00:00,2019-02-20 15:15:07,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I helped at the front desk and then with the crisis community response team.,need,5.50
Melanie,Elston,[email protected],1650077,Student,2019-02-20 00:00:00,2019-02-20 15:16:57,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-19 00:00:00,2019-02-20 15:49:59,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.50
Rachel,Reynolds,[email protected],1551279,Student,2019-02-19 00:00:00,2019-02-20 15:55:07,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-19 00:00:00,2019-02-20 15:58:08,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,5.00
Abigail,Nye,[email protected],1554687,Student,2019-02-08 00:00:00,2019-02-20 16:06:21,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,3.00
Morgan,Howe,[email protected],1551270,Student,2019-02-14 00:00:00,2019-02-20 16:06:31,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.25
Morgan,Howe,[email protected],1551270,Student,2019-02-15 00:00:00,2019-02-20 16:06:51,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.00
Abigail,Nye,[email protected],1554687,Student,2019-02-11 00:00:00,2019-02-20 16:07:01,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,2.50
Morgan,Howe,[email protected],1551270,Student,2019-02-16 00:00:00,2019-02-20 16:07:09,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,7.00
Morgan,Howe,[email protected],1551270,Student,2019-02-18 00:00:00,2019-02-20 16:07:31,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,6.00
Abigail,Nye,[email protected],1554687,Student,2019-02-20 00:00:00,2019-02-20 16:07:33,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,2.50
Morgan,Howe,[email protected],1551270,Student,2019-02-19 00:00:00,2019-02-20 16:08:02,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,2.50
Rhiana,Everest,[email protected],1551209,Student,2019-02-20 00:00:00,2019-02-20 16:27:42,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,Finishing preliminary research,need,3.10
Rhiana,Everest,[email protected],1551209,Student,2019-02-01 00:00:00,2019-02-20 16:28:52,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,Reviewing organization materials,need,1.17
Caitlyn,Sylva,[email protected],2193436,Student,2019-02-20 00:00:00,2019-02-20 16:29:00,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.50
Dylan,Crump,[email protected],2011217,StudentCommunity Member,2019-02-15 00:00:00,2019-02-20 18:50:33,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,18.42
Hannah,Boyd,[email protected],1550924,Student,2019-02-20 00:00:00,2019-02-20 19:09:50,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,practicum: student teaching this day :D,need,4.50
Vanessa,Ivy,[email protected],1551285,Student,2019-02-19 00:00:00,2019-02-20 23:12:27,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Tables, Gibson helped me out",need,2.00
Hailey,Swearingen,[email protected],1551957,Student,2019-02-22 00:00:00,2019-02-21 11:39:25,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,Home visits with Kalyn,need,3.00
Annie,Clark,[email protected],1851551,Student,2019-02-19 00:00:00,2019-02-21 14:28:31,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Annie,Clark,[email protected],1851551,Student,2019-02-21 00:00:00,2019-02-21 14:28:45,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Michael,Gamlem III,[email protected],1551552,Student,2019-02-19 00:00:00,2019-02-21 14:53:36,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.50
Michael,Gamlem III,[email protected],1551552,Student,2019-02-20 00:00:00,2019-02-21 14:54:06,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.00
Megan,Dudley,[email protected],1368048,Student,2019-02-20 00:00:00,2019-02-21 15:08:26,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,7.00
Jordan,Cain,[email protected],1654908,Student,2019-02-16 00:00:00,2019-02-21 15:11:05,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,6.75
Anna,Kelly,[email protected],2024021,Student,2019-02-19 00:00:00,2019-02-21 16:31:24,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Anna,Kelly,[email protected],2024021,Student,2019-02-21 00:00:00,2019-02-21 16:31:40,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-02-21 00:00:00,2019-02-21 16:34:56,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Visited Mead High School during World History and a co-taught class of US History.,need,2.00
Nathan,Beine,[email protected],2209240,Student,2019-02-21 00:00:00,2019-02-21 17:18:26,,,Audubon elementary ,Helped in the music class ,individual,1.15
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-18 00:00:00,2019-02-21 17:28:50,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,grant research- own ,need,1.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-20 00:00:00,2019-02-21 17:29:27,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,grant research- Astor office ,need,1.30
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-21 00:00:00,2019-02-21 17:29:49,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,grant research- Astor office ,need,2.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-21 00:00:00,2019-02-21 17:37:05,(SP 19) SO-475 Sociology Practicum ,Fulcrum/Grips Practicum ,,Truancy Board,need,2.50
Tiffany,Yamase,[email protected],0938480,Student,2019-02-21 00:00:00,2019-02-21 18:56:54,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,Truancy,need,2.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-21 00:00:00,2019-02-21 19:27:08,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,4.00
Madyson,Gabriel,[email protected],1552596,Student,2019-02-20 00:00:00,2019-02-21 19:33:18,,Spokane Police Department with PY 402,,"Strangulation evals, powerpoint creation",need,2.50
Madyson,Gabriel,[email protected],1552596,Student,2019-02-21 00:00:00,2019-02-21 19:34:30,,Spokane Police Department with PY 402,,"Powerpoint creation, making LAP copies ",need,4.75
Niccole,Donaldson,[email protected],2193586,Student,2019-02-20 00:00:00,2019-02-21 22:12:33,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.25
Elizabeth,Haley,[email protected],0945004,Student,2019-02-20 00:00:00,2019-02-21 23:15:28,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,"Met my mentor and her class, assisted with classroom activities, completed mentor interview",need,3.00
Krystal,Roberts,[email protected],1973541,Student,2019-02-21 00:00:00,2019-02-22 00:31:45,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Vanessa,Kaufman,[email protected],2200686,Student,2019-02-20 00:00:00,2019-02-22 10:09:35,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,"Arrive 12:30, end 3:15",need,2.75
Tamara,Tokarz,[email protected],1552634,Student,2019-02-04 00:00:00,2019-02-22 11:33:18,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.75
Tamara,Tokarz,[email protected],1552634,Student,2019-02-04 00:00:00,2019-02-22 11:33:19,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.75
Tamara,Tokarz,[email protected],1552634,Student,2019-02-05 00:00:00,2019-02-22 11:33:36,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-07 00:00:00,2019-02-22 11:33:46,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-08 00:00:00,2019-02-22 11:33:58,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,3.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-09 00:00:00,2019-02-22 11:34:13,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.75
Tamara,Tokarz,[email protected],1552634,Student,2019-02-11 00:00:00,2019-02-22 11:34:27,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.75
Alysha,Terrell,[email protected],1554859,Student,2019-02-22 00:00:00,2019-02-22 12:51:28,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-20 00:00:00,2019-02-22 12:51:45,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,2.00
Kolbie,Langill,[email protected],1555048,Student,2019-02-20 00:00:00,2019-02-22 13:31:23,TH 384: The Bible and Outsiders,RISE Tutor and Mentor,,,need,3.50
Andrea,Sorensen,[email protected],2190238,Student,2019-02-22 00:00:00,2019-02-22 13:45:02,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.50
Anna,Kelly,[email protected],2024021,Student,2019-02-22 00:00:00,2019-02-22 17:25:35,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,Data entry with new dockets ,need,3.50
Krystal,Roberts,[email protected],1973541,Student,2019-02-22 00:00:00,2019-02-22 17:59:48,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.25
Rachel,Werner,[email protected],1551293,Student,2019-02-21 00:00:00,2019-02-22 18:10:02,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I attended a group and met with the supervisor.,need,1.50
Rachel,Werner,[email protected],1551293,Student,2019-02-22 00:00:00,2019-02-22 18:11:18,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I was in the residential unit.,need,3.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-04 00:00:00,2019-02-22 19:22:50,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,2.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-06 00:00:00,2019-02-22 19:24:42,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,2.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-07 00:00:00,2019-02-22 19:25:05,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-08 00:00:00,2019-02-22 19:25:40,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,5.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-11 00:00:00,2019-02-22 19:26:18,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,5.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-13 00:00:00,2019-02-22 19:26:40,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-20 00:00:00,2019-02-22 19:27:19,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-21 00:00:00,2019-02-22 19:27:39,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-22 00:00:00,2019-02-22 19:27:58,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,5.00
Heidi,Mickelsen,[email protected],1519231,Student,2019-02-21 00:00:00,2019-02-22 23:00:42,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.12
Froukje,Lakerveld,[email protected],2192636,Student,2019-02-09 00:00:00,2019-02-23 00:56:57,,En Christo Weekly Volunteers,,,need,4.50
Katrina,King,[email protected],1686290,Student,2019-02-23 00:00:00,2019-02-23 11:56:29,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Abigail,Nye,[email protected],1554687,Student,2019-02-22 00:00:00,2019-02-23 13:35:24,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.25
Angela,Brasher,[email protected],1989381,Student,2019-02-16 00:00:00,2019-02-23 16:39:08,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.63
Angela,Brasher,[email protected],1989381,Student,2019-02-22 00:00:00,2019-02-23 16:40:09,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.60
Madyson,Gabriel,[email protected],1552596,Student,2019-02-22 00:00:00,2019-02-23 16:54:12,,Spokane Police Department with PY 402,,Attended a special court hearing and did some powerpoint edits. ,need,2.00
Froukje,Lakerveld,[email protected],2192636,Student,2019-02-23 00:00:00,2019-02-24 00:55:40,,En Christo Weekly Volunteers,,,need,4.00
Angela,Brasher,[email protected],1989381,Student,2019-02-23 00:00:00,2019-02-24 04:07:12,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.58
Samantha,Cone,[email protected],2190264,Student,2019-02-20 00:00:00,2019-02-24 13:21:44,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,The first observation of Annalisa Roger's Spanish classroom,need,1.00
Caitlyn,Sylva,[email protected],2193436,Student,2019-02-22 00:00:00,2019-02-24 14:04:16,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,7.00
Emma,Torkelson,[email protected],2210289,Student,2019-02-23 00:00:00,2019-02-24 15:02:54,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,En Christo Weekly Volunteers,,,need,4.00
Nadia,Sarfraz,[email protected],1771582,Student,2019-02-14 00:00:00,2019-02-24 18:04:22,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,RISE Tutor and Mentor,,,need,1.00
Jacob,Hubbard,[email protected],1552226,Student,2019-02-14 00:00:00,2019-02-24 19:33:40,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.33
Jacob,Hubbard,[email protected],1552226,Student,2019-02-15 00:00:00,2019-02-24 19:34:22,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,2.50
Jacob,Hubbard,[email protected],1552226,Student,2019-02-19 00:00:00,2019-02-24 19:34:54,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,2.50
Jacob,Hubbard,[email protected],1552226,Student,2019-02-21 00:00:00,2019-02-24 19:35:29,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-22 00:00:00,2019-02-24 19:54:10,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.50
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-21 00:00:00,2019-02-24 19:54:51,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-11 00:00:00,2019-02-24 19:55:36,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-13 00:00:00,2019-02-24 19:56:12,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Aidan,Walsh,[email protected],2200771,Student,2019-02-20 00:00:00,2019-02-24 21:08:17,,Boys and Girls Club: Mead Clubhouse Volunteers,,,need,1.00
Mikayla,Schneider,[email protected],1551837,Student,2019-02-05 00:00:00,2019-02-24 23:46:03,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Mikayla,Schneider,[email protected],1551837,Student,2019-02-09 00:00:00,2019-02-24 23:46:25,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.00
Mikayla,Schneider,[email protected],1551837,Student,2019-02-16 00:00:00,2019-02-24 23:46:45,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.00
Mikayla,Schneider,[email protected],1551837,Student,2019-02-19 00:00:00,2019-02-24 23:47:12,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Katrina,King,[email protected],1686290,Student,2019-02-25 00:00:00,2019-02-25 11:41:20,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.50
Megan,Miles,[email protected],1553009,Student,2019-02-25 00:00:00,2019-02-25 12:17:13,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.25
Megan,Miles,[email protected],1553009,Student,2019-02-05 00:00:00,2019-02-25 12:18:17,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.83
Megan,Miles,[email protected],1553009,Student,2019-02-07 00:00:00,2019-02-25 12:19:03,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.50
Megan,Miles,[email protected],1553009,Student,2019-02-08 00:00:00,2019-02-25 12:19:42,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Megan,Miles,[email protected],1553009,Student,2019-02-14 00:00:00,2019-02-25 12:20:13,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Megan,Miles,[email protected],1553009,Student,2019-02-15 00:00:00,2019-02-25 12:21:15,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Megan,Miles,[email protected],1553009,Student,2019-02-16 00:00:00,2019-02-25 12:21:33,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,3.00
Megan,Miles,[email protected],1553009,Student,2019-02-20 00:00:00,2019-02-25 12:22:05,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.50
Megan,Miles,[email protected],1553009,Student,2019-02-22 00:00:00,2019-02-25 12:22:39,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.25
Megan,Miles,[email protected],1553009,Student,2019-02-24 00:00:00,2019-02-25 12:23:23,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.75
Justess,Neihart,[email protected],2004052,Student,2019-02-20 00:00:00,2019-02-25 14:29:29,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,4.00
Justess,Neihart,[email protected],2004052,Student,2019-02-25 00:00:00,2019-02-25 14:55:47,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,3.50
Shelby,Spear,[email protected],1554172,Student,2019-02-20 00:00:00,2019-02-25 15:03:44,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Shelby,Spear,[email protected],1554172,Student,2019-02-22 00:00:00,2019-02-25 15:04:06,,UGM Anna Ogden Hall with PY 402,,,need,4.00
Shelby,Spear,[email protected],1554172,Student,2019-02-25 00:00:00,2019-02-25 15:04:25,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Krystal,Roberts,[email protected],1973541,Student,2019-02-25 00:00:00,2019-02-25 16:28:11,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.00
Nikkita,Dehle,[email protected],1404106,Student,2019-02-19 00:00:00,2019-02-25 17:14:30,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Nikkita,Dehle,[email protected],1404106,Student,2019-02-21 00:00:00,2019-02-25 17:15:19,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Nikkita,Dehle,[email protected],1404106,Student,2019-02-22 00:00:00,2019-02-25 17:15:46,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,1.58
Nikkita,Dehle,[email protected],1404106,Student,2019-02-25 00:00:00,2019-02-25 17:16:29,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,4.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-02-07 00:00:00,2019-02-25 17:27:20,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,2.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-02-11 00:00:00,2019-02-25 17:28:25,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,2.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-02-18 00:00:00,2019-02-25 17:30:30,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,4.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-02-20 00:00:00,2019-02-25 17:32:34,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,4.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-02-25 00:00:00,2019-02-25 17:33:13,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,4.00
Rhiana,Everest,[email protected],1551209,Student,2019-02-25 00:00:00,2019-02-25 19:29:21,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,"creating a contact database, meeting prep, meeting w/ supervisor",need,5.25
Genevieve,Brindle,[email protected],1681407,Student,2019-02-22 00:00:00,2019-02-25 20:03:22,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-22 00:00:00,2019-02-25 20:14:39,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Nicholas,Hughes,[email protected],1534862,Student,2019-02-25 00:00:00,2019-02-25 20:15:00,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Hailey,Swearingen,[email protected],1551957,Student,2019-02-25 00:00:00,2019-02-25 20:24:31,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,,need,5.00
Hannah,Boyd,[email protected],1550924,Student,2019-02-25 00:00:00,2019-02-25 20:52:26,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,4.00
Anna,Kelly,[email protected],2024021,Student,2019-02-25 00:00:00,2019-02-26 01:57:46,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,,need,1.00
Alec,Grebe,[email protected],1539790,Alumni,2019-02-12 00:00:00,2019-02-26 03:50:55,,,Union Gospel Mission,We served meals for recovering addicts in a program and others who are homeless. ,individual,1.50
Melanie,Elston,[email protected],1650077,Student,2019-02-25 00:00:00,2019-02-26 06:18:28,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-22 00:00:00,2019-02-26 08:31:12,(SP 19) SO-475 Sociology Practicum ,Leadership Practicum SO-475,,,need,5.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-25 00:00:00,2019-02-26 08:31:29,(SP 19) SO-475 Sociology Practicum ,Leadership Practicum SO-475,,,need,5.00
Hayden,Wheeler-Lindboe,[email protected],1556190,Student,2019-02-22 00:00:00,2019-02-26 11:21:55,(SP 19) HS-315 Nutrition ,Meals on Wheels Driver,,I delivered meals to elderly people along a given route.,need,1.50
Kelsey,Hormel,[email protected],1648596,Student,2019-02-20 00:00:00,2019-02-26 11:27:21,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,8.00
Kelsey,Hormel,[email protected],1648596,Student,2019-02-22 00:00:00,2019-02-26 11:27:59,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,3.50
Tiffany,Yamase,[email protected],0938480,Student,2019-02-25 00:00:00,2019-02-26 11:43:58,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,Training with Lynn,need,3.00
Sarah,Weers,[email protected],1553331,Student,2019-02-11 00:00:00,2019-02-26 11:53:10,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,First Aid/CPR,need,2.50
Sarah,Weers,[email protected],1553331,Student,2019-02-24 00:00:00,2019-02-26 11:54:02,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-24 00:00:00,2019-02-26 11:54:18,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,4.00
Sarah,Weers,[email protected],1553331,Student,2019-02-25 00:00:00,2019-02-26 11:55:07,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-02-25 00:00:00,2019-02-26 11:55:47,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,4.00
Jordan,Cain,[email protected],1654908,Student,2019-02-23 00:00:00,2019-02-26 12:02:32,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Annie,Clark,[email protected],1851551,Student,2019-02-26 00:00:00,2019-02-26 13:02:28,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Anna,Kelly,[email protected],2024021,Student,2019-02-26 00:00:00,2019-02-26 13:26:35,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-22 00:00:00,2019-02-26 14:19:32,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-26 00:00:00,2019-02-26 14:19:55,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Heidi,Mickelsen,[email protected],1519231,Student,2019-02-26 00:00:00,2019-02-26 14:52:52,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.12
Tiffany,Yamase,[email protected],0938480,Student,2019-02-26 00:00:00,2019-02-26 15:01:27,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,,need,2.50
Christopher,Costello,[email protected],2215716,Student,2019-02-26 00:00:00,2019-02-26 15:45:36,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Observed Summit learning experience at Shaw,need,2.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-26 00:00:00,2019-02-26 16:09:16,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Tables, tickets",need,2.00
Paola,Haley,[email protected],1683020,Student,2019-02-22 00:00:00,2019-02-26 16:24:34,,Field Placement (SP 19) ,,,need,1.75
Megan,Dudley,[email protected],1368048,Student,2019-02-25 00:00:00,2019-02-26 16:24:59,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,5.00
Meghan,Trainer,[email protected],1696901,Student,2019-02-21 00:00:00,2019-02-26 16:39:13,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Meghan,Trainer,[email protected],1696901,Student,2019-02-26 00:00:00,2019-02-26 16:39:28,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Meghan,Trainer,[email protected],1696901,Student,2019-02-19 00:00:00,2019-02-26 16:39:52,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Paola,Haley,[email protected],1683020,Student,2019-02-25 00:00:00,2019-02-26 18:26:02,,Field Placement (SP 19) ,,,need,2.75
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-19 00:00:00,2019-02-26 18:36:39,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-21 00:00:00,2019-02-26 18:37:08,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.00
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-26 00:00:00,2019-02-26 18:37:52,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.00
Samantha,Cone,[email protected],2190264,Student,2019-02-25 00:00:00,2019-02-26 21:45:54,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-26 00:00:00,2019-02-26 22:35:24,(SP 19) SO-475 Sociology Practicum ,Fulcrum/Grips Practicum ,,,need,2.50
Svetlana,Yuryev,[email protected],1993707,Student,2019-02-26 00:00:00,2019-02-26 23:19:12,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,Serve those in need at St. Margaret's Shelter,St. Margaret's Shelter,File work,need,2.00
Krystal,Roberts,[email protected],1973541,Student,2019-02-26 00:00:00,2019-02-27 00:13:20,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.50
Mason,Elms,[email protected],1555416,Student,2019-02-23 00:00:00,2019-02-27 00:39:27,,ParaSport Spokane,,,need,4.00
Faith,Martin,[email protected],1692445,Student,2019-02-21 00:00:00,2019-02-27 01:14:56,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Crafts,need,3.50
Faith,Martin,[email protected],1692445,Student,2019-02-22 00:00:00,2019-02-27 01:15:22,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,iceskating,need,1.50
Faith,Martin,[email protected],1692445,Student,2019-02-24 00:00:00,2019-02-27 01:16:16,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,WaterPark,need,6.00
Sorayya,Mohammadi,[email protected],2214045,Student,2019-02-22 00:00:00,2019-02-27 01:22:14,,Field Placement ,,,need,1.00
Sorayya,Mohammadi,[email protected],2214045,Student,2019-02-26 00:00:00,2019-02-27 01:22:42,,Field Placement ,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-25 00:00:00,2019-02-27 11:52:21,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-02-27 00:00:00,2019-02-27 11:52:36,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,2.00
Katrina,King,[email protected],1686290,Student,2019-02-27 00:00:00,2019-02-27 11:58:16,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,2.00
Nicholas,Neely,[email protected],1557228,Student,2019-02-27 00:00:00,2019-02-27 12:18:07,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,27.09
Kelsey,Hormel,[email protected],1648596,Student,2019-02-27 00:00:00,2019-02-27 12:37:23,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Taylor,White,[email protected],1686427,Student,2019-02-26 00:00:00,2019-02-27 13:24:47,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,5.50
Taylor,White,[email protected],1686427,Student,2019-02-27 00:00:00,2019-02-27 13:25:17,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,4.50
Mary,Gerhardstein,[email protected],0929686,Student,2019-02-26 00:00:00,2019-02-27 13:52:15,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Explored teaching from 11:30-1:30,need,2.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-02-27 00:00:00,2019-02-27 13:52:43,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Explored teaching from 8am-10am,need,2.00
Thomas,Dale,[email protected],1552376,Student,2019-02-21 00:00:00,2019-02-27 14:13:47,CS-200 Computer Science Outreach,Shadle Park High School CS,,,need,1.50
Thomas,Dale,[email protected],1552376,Student,2019-02-23 00:00:00,2019-02-27 14:15:31,(SP 19) CS-472,Work NW Christian,,,need,6.00
Meghan,Kunz,[email protected],2195164,Student,2019-02-21 00:00:00,2019-02-27 14:57:29,,,North Central High School,,individual,1.00
Meghan,Kunz,[email protected],2195164,Student,2019-02-26 00:00:00,2019-02-27 14:58:00,,,North Central High School,,individual,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-21 00:00:00,2019-02-27 15:46:06,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-22 00:00:00,2019-02-27 15:46:25,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-25 00:00:00,2019-02-27 15:47:05,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-26 00:00:00,2019-02-27 15:47:28,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-11 00:00:00,2019-02-27 16:07:56,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-14 00:00:00,2019-02-27 16:08:12,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-24 00:00:00,2019-02-27 16:09:09,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,10.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-25 00:00:00,2019-02-27 16:09:24,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Karis,Lovell,[email protected],2206496,Student,2019-02-14 00:00:00,2019-02-27 16:25:58,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Karis,Lovell,[email protected],2206496,Student,2019-02-19 00:00:00,2019-02-27 16:26:33,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,5.00
Karis,Lovell,[email protected],2206496,Student,2019-02-21 00:00:00,2019-02-27 16:27:02,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Karis,Lovell,[email protected],2206496,Student,2019-02-26 00:00:00,2019-02-27 16:27:24,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,5.00
Rhiana,Everest,[email protected],1551209,Student,2019-02-27 00:00:00,2019-02-27 17:00:50,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,"research, drafting emails",need,3.50
Samantha,Cone,[email protected],2190264,Student,2019-02-27 00:00:00,2019-02-27 18:43:40,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Caitlyn,Dudley,[email protected],2030112,Student,2019-02-19 00:00:00,2019-02-27 21:33:45,,,,,individual,1.50
Caitlyn,Dudley,[email protected],2030112,Student,2019-02-20 00:00:00,2019-02-27 21:34:06,,,,,individual,1.50
Caitlyn,Dudley,[email protected],2030112,Student,2019-02-25 00:00:00,2019-02-27 21:34:58,,,,,individual,1.50
Caitlyn,Dudley,[email protected],2030112,Student,2019-02-26 00:00:00,2019-02-27 21:35:50,,,,,individual,1.50
Caitlyn,Dudley,[email protected],2030112,Student,2019-02-27 00:00:00,2019-02-27 21:36:14,,,,,individual,1.50
Niccole,Donaldson,[email protected],2193586,Student,2019-02-26 00:00:00,2019-02-27 21:47:08,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,5.00
Emmi,Stauffacher,[email protected],2209987,Student,2019-02-26 00:00:00,2019-02-27 22:27:59,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,Read with children individually. Passed around stuffed animal and took turns telling the class how we were feeling today. ,need,2.60
Nadia,Sarfraz,[email protected],1771582,Student,2019-02-28 00:00:00,2019-02-28 01:04:30,(18-19) GE330 - CEA ,RISE - CEAs,,,need,40.00
Faith,Lopez-Flores,[email protected],1557574,Student,2019-02-28 00:00:00,2019-02-28 10:33:58,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,48.33
Abigail,Nye,[email protected],1554687,Student,2019-02-25 00:00:00,2019-02-28 11:22:03,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.25
Abigail,Nye,[email protected],1554687,Student,2019-02-27 00:00:00,2019-02-28 11:22:31,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.50
Anna,Kelly,[email protected],2024021,Student,2019-02-28 00:00:00,2019-02-28 12:33:58,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Annie,Clark,[email protected],1851551,Student,2019-02-28 00:00:00,2019-02-28 13:00:33,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Kendy,Urzua Valadez,[email protected],2209503,Student,2019-02-21 00:00:00,2019-02-28 13:23:28,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.00
Denisse,Guerrero,[email protected],1681365,Student,2019-02-28 00:00:00,2019-02-28 13:27:14,(18-19) GE330 - CEA ,TTM - CEAs,,,need,11.25
Kendy,Urzua Valadez,[email protected],2209503,Student,2019-02-26 00:00:00,2019-02-28 13:32:59,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,0.75
Isreal,Sungalu,[email protected],1552101,Student,2019-02-21 00:00:00,2019-02-28 13:42:36,,,Electronic Monitoring Juvenile Court ,I help and assist the duties that involve juveniles that are placed on electronic monitoring as per the courts order to satisfy their probation agreements ,individual,6.50
Isreal,Sungalu,[email protected],1552101,Student,2019-02-28 00:00:00,2019-02-28 13:43:19,,,Electronic Monitoring Juvenile Court ,,individual,8.00
Christina ,Parslow,[email protected],2002668,Student,2019-02-28 00:00:00,2019-02-28 13:47:14,(18-19) GE330 - CEA ,TTM - CEAs,,,need,11.25
Sorayya,Mohammadi,[email protected],2214045,Student,2019-02-28 00:00:00,2019-02-28 14:06:38,,Field Placement ,,,need,2.00
Vanessa,Ivy,[email protected],1551285,Student,2019-02-28 00:00:00,2019-02-28 14:43:40,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Served donuts, filled up coffee cups for Dale",need,2.00
Hannah,Boyd,[email protected],1550924,Student,2019-02-27 00:00:00,2019-02-28 14:55:06,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,5.50
Skyler,Boehnke,[email protected],1550497,Student,2019-02-14 00:00:00,2019-02-28 14:58:43,,Spark Central with PY 402,,,need,2.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-15 00:00:00,2019-02-28 14:59:33,,Spark Central with PY 402,,,need,2.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-19 00:00:00,2019-02-28 14:59:54,,Spark Central with PY 402,,,need,4.50
Skyler,Boehnke,[email protected],1550497,Student,2019-02-21 00:00:00,2019-02-28 15:00:32,,Spark Central with PY 402,,,need,2.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-22 00:00:00,2019-02-28 15:01:01,,Spark Central with PY 402,,,need,3.50
Skyler,Boehnke,[email protected],1550497,Student,2019-02-26 00:00:00,2019-02-28 15:01:24,,Spark Central with PY 402,,,need,6.00
Skyler,Boehnke,[email protected],1550497,Student,2019-02-28 00:00:00,2019-02-28 15:01:49,,Spark Central with PY 402,,,need,2.00
Alaina,Stockdill,[email protected],2198590,Student,2019-02-28 00:00:00,2019-02-28 15:03:15,,RISE Tutor and Mentor,,,need,1.00
Andrea,Sorensen,[email protected],2190238,Student,2019-02-28 00:00:00,2019-02-28 15:05:44,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Katrina,King,[email protected],1686290,Student,2019-02-28 00:00:00,2019-02-28 15:34:41,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Brian,Hann,[email protected],0787769,Student,2019-02-14 00:00:00,2019-02-28 15:39:09,(18-19) GE330 - CEA ,RISE - CEAs,,Emails/Mentoring/Tutoring/Meetings/Training,need,7.30
Aidan,Walsh,[email protected],2200771,Student,2019-02-26 00:00:00,2019-02-28 15:43:51,,Boys and Girls Club: Mead Clubhouse Volunteers,,,need,1.00
Brian,Hann,[email protected],0787769,Student,2019-02-28 00:00:00,2019-02-28 15:47:49,(18-19) GE330 - CEA ,RISE - CEAs,,Tutoring/Mentoring/Emails/Meetings/Training,need,15.32
Mason,Caird,[email protected],2192794,Student,2019-02-28 00:00:00,2019-02-28 16:39:30,,RISE Tutor and Mentor,,Went to Audubon elementary school today to assist in the music department. Lots of Energy and learning!,need,1.00
Hannah,Barre,[email protected],1553990,Student,2019-02-06 00:00:00,2019-02-28 17:36:25,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,northeast community center,need,2.50
Hannah,Barre,[email protected],1553990,Student,2019-02-07 00:00:00,2019-02-28 17:37:09,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,spokane public library location,need,1.75
Hannah,Barre,[email protected],1553990,Student,2019-02-09 00:00:00,2019-02-28 17:37:34,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,United Way location,need,4.00
Hannah,Barre,[email protected],1553990,Student,2019-02-13 00:00:00,2019-02-28 17:38:10,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Northeast Community Center,need,2.75
Hannah,Barre,[email protected],1553990,Student,2019-02-14 00:00:00,2019-02-28 17:38:44,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Spokane Public Library,need,2.50
Hannah,Barre,[email protected],1553990,Student,2019-02-16 00:00:00,2019-02-28 17:39:07,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,United Way Location,need,4.25
Hannah,Barre,[email protected],1553990,Student,2019-02-20 00:00:00,2019-02-28 17:40:09,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,northeast community center,need,2.75
Andrew,Hutson,[email protected],1410352,Student,2019-02-28 00:00:00,2019-02-28 17:40:32,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.33
Hannah,Barre,[email protected],1553990,Student,2019-02-21 00:00:00,2019-02-28 17:40:54,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Spokane public library,need,2.50
Hannah,Barre,[email protected],1553990,Student,2019-02-23 00:00:00,2019-02-28 17:41:18,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Untied Way,need,4.00
Hannah,Barre,[email protected],1553990,Student,2019-02-28 00:00:00,2019-02-28 17:41:45,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Spokane public library,need,2.50
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-22 00:00:00,2019-02-28 17:44:55,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,calls ,need,1.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-25 00:00:00,2019-02-28 17:45:30,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,calls,need,1.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-27 00:00:00,2019-02-28 17:45:47,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,grant research ,need,1.50
Alba,Cruz Lopez,[email protected],1914826,Student,2019-02-28 00:00:00,2019-02-28 17:46:31,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,grant research and calls ,need,3.00
Alba,Cruz Lopez,[email protected],1914826,Student,2019-03-01 00:00:00,2019-02-28 17:47:52,(SP 19) PY-402 Senior Practicum ,Spokane C.O.P.S Policing Service with PY 402,,calls- abby's office ,need,3.50
Chloe,Zimmerman,[email protected],2209522,Student,2019-02-28 00:00:00,2019-02-28 18:05:54,(18-19) GE330 - CEA ,Meals on Wheels -CEA ,,"I drove rout number 39 (two times) for Meals on Wheels, as well as recruited students volunteers and emailed with teachers about discussing volunteer opportunities in the classroom. ",need,7.00
Aja,Schmick,[email protected],1703168,Student,2019-02-28 00:00:00,2019-02-28 18:24:36,(18-19) GE330 - CEA ,RISE - CEAs,,,need,17.50
Hannah,Boyd,[email protected],1550924,Student,2019-02-28 00:00:00,2019-02-28 19:03:07,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,3.50
Becca,Patterson,[email protected],2002849,Student,2019-02-17 00:00:00,2019-02-28 19:20:35,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-02-18 00:00:00,2019-02-28 19:21:21,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,4.00
Becca,Patterson,[email protected],2002849,Student,2019-02-22 00:00:00,2019-02-28 19:22:39,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-02-24 00:00:00,2019-02-28 19:23:07,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-02-25 00:00:00,2019-02-28 19:23:30,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,4.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-25 00:00:00,2019-02-28 19:51:14,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,6.00
Isabella,Fleener,[email protected],1553343,Student,2019-02-28 00:00:00,2019-02-28 19:52:03,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,4.00
Anujin,Munkhbat,[email protected],1769100,Student,2019-02-26 00:00:00,2019-02-28 20:27:10,(SP 19) CS-472,"Work with the School of Ed, WIM",,First official meeting with the clients,need,2.00
Rachel,Werner,[email protected],1551293,Student,2019-02-26 00:00:00,2019-02-28 20:27:33,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I observed in the school and observed the community response team.,need,5.50
Anujin,Munkhbat,[email protected],1769100,Student,2019-02-28 00:00:00,2019-02-28 20:28:10,(SP 19) CS-472,"Work with the School of Ed, WIM",,,need,4.00
Rachel,Werner,[email protected],1551293,Student,2019-02-28 00:00:00,2019-02-28 20:28:15,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I observed the mindfulness group and met with my supervisor. ,need,1.50
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-02-28 00:00:00,2019-02-28 21:06:57,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,4.00
Krystal,Roberts,[email protected],1973541,Student,2019-02-28 00:00:00,2019-02-28 22:26:50,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.50
Rhiana,Everest,[email protected],1551209,Student,2019-02-28 00:00:00,2019-02-28 22:44:55,(18-19) GE330 - CEA ,Impact Trips - CEAs,,,need,13.92
Dylan,Crump,[email protected],2011217,StudentCommunity Member,2019-02-28 00:00:00,2019-02-28 23:25:08,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,45.34
Micah,Huie,[email protected],1651975,Student,2019-02-20 00:00:00,2019-02-28 23:49:57,(18-19) GE330 - CEA ,RISE - CEAs,,,need,22.50
McKenzie,Dulmes,[email protected],1550492,Student,2019-02-27 00:00:00,2019-02-28 23:55:21,(SP 19) HS-315 Nutrition ,Dinner Table West Central Episcopal Mission (Spring 19),,,need,3.00
Kristen,Elliott,[email protected],1551843,Student,2019-02-28 00:00:00,2019-03-01 00:28:28,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,18.67
Anesu,Mujenge,[email protected],1965418,Student,2019-02-28 00:00:00,2019-03-01 00:32:09,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,29.50
Kyle,Shepard,[email protected],2037433,Student,2019-02-28 00:00:00,2019-03-01 00:32:27,(18-19) GE330 - CEA ,RISE - CEAs,,,need,13.00
Rebecca,Devereaux,[email protected],2180999,Student,2019-02-27 00:00:00,2019-03-01 00:35:44,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Met with Paul Hill and discussed future observations.,need,1.00
Brianna,McLean,[email protected],2026090,Student,2019-02-28 00:00:00,2019-03-01 01:28:40,(18-19) GE330 - CEA ,RISE - CEAs,,,need,21.25
Katrina,King,[email protected],1686290,Student,2019-03-01 00:00:00,2019-03-01 11:36:54,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,2.50
Mirabel,Ibe,[email protected],1826040,Student,2019-02-15 00:00:00,2019-03-01 11:50:01,(18-19) GE330 - CEA ,RISE - CEAs,,,need,17.19
Tyler,Rohrman,[email protected],0908896,Student,2019-02-20 00:00:00,2019-03-01 12:14:47,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Was present during the Twilight program in the Summit branch of On Track Academy. Got to see students learn about the history of photography and how it is relevant today.,need,1.50
Tyler,Rohrman,[email protected],0908896,Student,2019-02-27 00:00:00,2019-03-01 12:16:26,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Met more teachers on the On Track Team. Went over a student's profile to show their process of how they address individual needs.,need,1.00
Mirabel,Ibe,[email protected],1826040,Student,2019-02-28 00:00:00,2019-03-01 12:39:54,(18-19) GE330 - CEA ,RISE - CEAs,,,need,30.62
Alysha,Terrell,[email protected],1554859,Student,2019-03-01 00:00:00,2019-03-01 12:53:58,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Daniel,Roberts,[email protected],1760396,StudentCommunity Member,2019-03-01 00:00:00,2019-03-01 13:03:43,(18-19) GE330 - CEA ,RISE - CEAs,,,need,25.51
Megan,Haveman,[email protected],2002670,Student,2019-02-28 00:00:00,2019-03-01 13:09:44,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,19.35
Melissa,Osorio,[email protected],1550816,Student,2019-02-28 00:00:00,2019-03-01 13:13:06,(18-19) GE330 - CEA ,BELIEF - CEAs,,,need,31.75
Kolbie,Langill,[email protected],1555048,Student,2019-02-27 00:00:00,2019-03-01 13:40:21,TH 384: The Bible and Outsiders,RISE Tutor and Mentor,,,need,3.50
Madison,Oliver,[email protected],1655247,Student,2019-02-28 00:00:00,2019-03-01 14:15:09,(18-19) GE330 - CEA ,Specialist - CEAs,,,need,19.92
Malia,Cross,[email protected],1557514,Student,2019-02-04 00:00:00,2019-03-01 14:22:09,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Introduction to Discovery. Started reading on a case #1,need,4.00
Malia,Cross,[email protected],1557514,Student,2019-02-08 00:00:00,2019-03-01 14:23:48,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Went to the jail to get jail clearance. Worked with discovery and started case #2. Cont working on Case #1 as well,need,4.00
Malia,Cross,[email protected],1557514,Student,2019-02-11 00:00:00,2019-03-01 14:24:10,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Worked on case #1 and finished reading case #2. Started on case #3. Learned how to use Accurient and worked with that for a while.,need,5.00
Madyson,Gabriel,[email protected],1552596,Student,2019-02-27 00:00:00,2019-03-01 14:25:04,,Spokane Police Department with PY 402,,Jail visit + graphic design for several projects + LAP copying,need,3.50
Madyson,Gabriel,[email protected],1552596,Student,2019-03-01 00:00:00,2019-03-01 14:25:33,,Spokane Police Department with PY 402,,The Bystander Moment-Jackson Katz viewing ,need,1.00
Malia,Cross,[email protected],1557514,Student,2019-02-22 00:00:00,2019-03-01 14:26:27,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Worked on case #3. Go to make a house call and go give client some of their things. Fax request for medical records for some of our clients. Cont to work on case #3,need,5.25
Malia,Cross,[email protected],1557514,Student,2019-02-25 00:00:00,2019-03-01 14:27:30,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Cont working on case #3. Went to court for an initial appearance. Completed a computer security awareness training. Started working on case #4,need,5.00
Malia,Cross,[email protected],1557514,Student,2019-03-01 00:00:00,2019-03-01 14:30:17,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Started working on case #4. Got to watch surveillance footage from the event. Went to the jail to interview a client for a different case (unknown). Got new information on case #3- read the new information and listened to interviews from witnesses. ,need,5.00
Ashlie,Loring,[email protected],1717224,Student,2019-03-01 00:00:00,2019-03-01 15:37:44,(18-19) GE330 - CEA ,RISE - CEAs,,,need,25.17
Paola,Haley,[email protected],1683020,Student,2019-02-27 00:00:00,2019-03-01 15:40:24,,Field Placement (SP 19) ,,,need,1.75
Paola,Haley,[email protected],1683020,Student,2019-03-01 00:00:00,2019-03-01 15:40:43,,Field Placement (SP 19) ,,,need,2.75
Jeff,Louissaint,[email protected],1554465,Student,2019-02-22 00:00:00,2019-03-01 16:03:10,,Martin Hall Juvenile Detention Center with SO 475,,,need,8.00
Jeff,Louissaint,[email protected],1554465,Student,2019-03-01 00:00:00,2019-03-01 16:03:45,,Martin Hall Juvenile Detention Center with SO 475,,,need,8.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-02-26 00:00:00,2019-03-01 16:04:51,(SP 19) SO-475 Sociology Practicum ,Guild School Practicum ,,,need,2.00
Lajhaya,Lewis-Harrell,[email protected],1551665,Student,2019-03-28 00:00:00,2019-03-01 16:05:09,(SP 19) SO-475 Sociology Practicum ,Guild School Practicum ,,,need,2.00
Kendy,Urzua Valadez,[email protected],2209503,Student,2019-03-01 00:00:00,2019-03-01 16:19:13,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.00
Tamara,Tokarz,[email protected],1552634,Student,2019-02-15 00:00:00,2019-03-01 16:25:12,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,3.50
Tamara,Tokarz,[email protected],1552634,Student,2019-02-22 00:00:00,2019-03-01 16:26:59,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.50
Tamara,Tokarz,[email protected],1552634,Student,2019-03-01 00:00:00,2019-03-01 16:47:07,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.50
Andrew,Wiebers,[email protected],1640335,Student,2019-02-28 00:00:00,2019-03-01 16:51:29,,RISE Tutor and Mentor,,,need,1.00
Karis,Lovell,[email protected],2206496,Student,2019-02-28 00:00:00,2019-03-01 17:09:57,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Chelsea,Sapp,[email protected],1985832,Student,2019-02-28 00:00:00,2019-03-01 18:00:08,(18-19) GE330 - CEA ,Meals on Wheels -CEA ,,,need,25.00
Vanessa,Ivy,[email protected],1551285,Student,2019-03-01 00:00:00,2019-03-01 18:00:26,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Tables, family with 11 kids came in today! Andy prayed for me",need,5.50
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-03-01 00:00:00,2019-03-01 18:18:54,Small Business Development Center ,SBDC Hours ,,,need,2.00
Rachel,Werner,[email protected],1551293,Student,2019-03-01 00:00:00,2019-03-01 18:38:27,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,"I was in the residential units with the boys, connecting with them.",need,3.00
Sarah,Hudson,[email protected],2193858,Student,2019-02-22 00:00:00,2019-03-01 18:55:01,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Sarah,Hudson,[email protected],2193858,Student,2019-02-27 00:00:00,2019-03-01 18:56:27,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.50
Sarah,Hudson,[email protected],2193858,Student,2019-03-01 00:00:00,2019-03-01 18:56:57,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Michaela,Scheer,[email protected],1694351,Student,2019-03-01 00:00:00,2019-03-01 19:50:38,(18-19) GE330 - CEA ,Impact Trips - CEAs,,,need,14.67
Samuel,Saldarriaga Alvarez,[email protected],1826110,Student,2019-03-01 00:00:00,2019-03-01 23:01:15,,RISE Tutor and Mentor,,,need,3.50
Rebecca,Devereaux,[email protected],2180999,Student,2019-03-01 00:00:00,2019-03-01 23:16:12,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Anujin,Munkhbat,[email protected],1769100,Student,2019-03-01 00:00:00,2019-03-02 02:49:51,(SP 19) CS-472,"Work with the School of Ed, WIM",,,need,4.50
Kelsey,Hormel,[email protected],1648596,Student,2019-03-01 00:00:00,2019-03-02 11:49:08,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,3.00
Kaitlyn,Caprye,[email protected],2198512,Student,2019-02-28 00:00:00,2019-03-02 12:27:45,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Met with mentor ,need,1.00
Nadia,Sarfraz,[email protected],1771582,Student,2019-03-01 00:00:00,2019-03-02 12:31:45,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,RISE Tutor and Mentor,,,need,3.50
Tiffany,Yamase,[email protected],0938480,Student,2019-02-27 00:00:00,2019-03-02 17:38:19,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,DHHS truancy,need,3.50
Tiffany,Yamase,[email protected],0938480,Student,2019-02-28 00:00:00,2019-03-02 17:38:51,(SP 19) PY-402 Senior Practicum ,Fulcrum/Grips Practicum ,,West Valley Truancy,need,2.50
Anna,Kelly,[email protected],2024021,Student,2019-03-01 00:00:00,2019-03-03 10:06:07,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,2.00
Anna,Kelly,[email protected],2024021,Student,2019-03-02 00:00:00,2019-03-03 10:06:25,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,4.00
Anna,Kelly,[email protected],2024021,Student,2019-03-03 00:00:00,2019-03-03 10:06:47,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,6.00
Hayden,Wheeler-Lindboe,[email protected],1556190,Student,2019-03-01 00:00:00,2019-03-03 13:15:10,(SP 19) HS-315 Nutrition ,Meals on Wheels Driver,,Delivered meals to seniors in the downtown Spokane area.,need,1.75
Julia,Abbott,[email protected],1553308,Student,2019-02-28 00:00:00,2019-03-03 15:34:09,(SP 19) CS-472,Work with Rogers High School,,"In Class work for client, worked on getting platform to work",need,1.33
Julia,Abbott,[email protected],1553308,Student,2019-03-03 00:00:00,2019-03-03 15:34:43,(SP 19) CS-472,Work with Rogers High School,,"Worked on Flutter tutorial, got starter_app running",need,2.00
Julia,Abbott,[email protected],1553308,Student,2019-03-01 00:00:00,2019-03-03 15:35:31,(SP 19) CS-472,Work with Rogers High School,,"Installing Flutter on personal laptop, troubleshooting .exe files and working with Android Studio",need,1.00
Nadia,Sarfraz,[email protected],1771582,Student,2019-03-02 00:00:00,2019-03-03 19:44:02,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,RISE Tutor and Mentor,,,need,2.00
Anujin,Munkhbat,[email protected],1769100,Student,2019-03-03 00:00:00,2019-03-03 20:33:11,(SP 19) CS-472,"Work with the School of Ed, WIM",,,need,4.00
Taylor,White,[email protected],1686427,Student,2019-02-28 00:00:00,2019-03-03 21:46:35,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,1.50
Taylor,White,[email protected],1686427,Student,2019-03-05 00:00:00,2019-03-03 21:47:43,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,5.50
Taylor,White,[email protected],1686427,Student,2019-03-06 00:00:00,2019-03-03 21:48:09,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,5.00
Taylor,White,[email protected],1686427,Student,2019-03-07 00:00:00,2019-03-03 21:48:35,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,2.00
Courtney,Cossette,[email protected],2193155,Student,2019-02-22 00:00:00,2019-03-03 22:03:34,,Field Placement (SP 19) ,,Regal Elementary ,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-18 00:00:00,2019-03-03 23:51:49,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-19 00:00:00,2019-03-03 23:52:20,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-20 00:00:00,2019-03-03 23:52:45,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-22 00:00:00,2019-03-03 23:53:13,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-25 00:00:00,2019-03-03 23:53:37,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-26 00:00:00,2019-03-03 23:54:03,Community Service Specialists,WCCC Community Service Specialist ,,,need,2.00
Vanessa,Kaufman,[email protected],2200686,Student,2019-03-01 00:00:00,2019-03-04 09:16:59,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,"Arrive 1:00, Leave 3:00",need,2.00
Shelby,Spear,[email protected],1554172,Student,2019-02-27 00:00:00,2019-03-04 11:06:24,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Shelby,Spear,[email protected],1554172,Student,2019-03-01 00:00:00,2019-03-04 11:06:41,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Shelby,Spear,[email protected],1554172,Student,2019-03-04 00:00:00,2019-03-04 11:06:56,,UGM Anna Ogden Hall with PY 402,,,need,2.50
Alysha,Terrell,[email protected],1554859,Student,2019-03-04 00:00:00,2019-03-04 11:17:49,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,6.00
Jacob,Hubbard,[email protected],1552226,Student,2019-03-22 00:00:00,2019-03-04 11:52:14,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,2.00
Jacob,Hubbard,[email protected],1552226,Student,2019-03-26 00:00:00,2019-03-04 11:52:33,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Jacob,Hubbard,[email protected],1552226,Student,2019-03-28 00:00:00,2019-03-04 11:52:55,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,3.00
Rachel,Reynolds,[email protected],1551279,Student,2019-02-28 00:00:00,2019-03-04 12:50:03,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,3.00
Rachel,Reynolds,[email protected],1551279,Student,2019-03-01 00:00:00,2019-03-04 12:50:16,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Hailey,Swearingen,[email protected],1551957,Student,2019-03-01 00:00:00,2019-03-04 13:18:31,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,,need,5.00
Hailey,Swearingen,[email protected],1551957,Student,2019-03-04 00:00:00,2019-03-04 13:18:49,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,,need,6.00
Caleb,Payne,[email protected],2204849,Student,2019-03-02 00:00:00,2019-03-04 14:22:23,,En Christo Volunteers,,,need,4.00
Malia,Cross,[email protected],1557514,Student,2019-03-04 00:00:00,2019-03-04 14:24:28,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Discussed updated schedule with supervisor. Listened to interviews for case #4. Finished reading case #4. Pet office dog. Went to court for a re sentencing! So cool!,need,5.00
Laina,Damon,[email protected],1553868,Student,2019-02-06 00:00:00,2019-03-04 14:25:47,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,2.00
Laina,Damon,[email protected],1553868,Student,2019-02-07 00:00:00,2019-03-04 14:26:10,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,2.00
Laina,Damon,[email protected],1553868,Student,2019-02-20 00:00:00,2019-03-04 14:26:35,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-02-25 00:00:00,2019-03-04 14:28:16,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-02-27 00:00:00,2019-03-04 14:28:47,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,5.00
Caleb,Payne,[email protected],2204849,Student,2019-02-27 00:00:00,2019-03-04 14:28:56,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,first time I got to go in and meet Chris. I got to observe wind ensemble and strings ensemble.,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-03-01 00:00:00,2019-03-04 14:29:11,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-03-04 00:00:00,2019-03-04 14:29:32,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,3.00
Jeff,Louissaint,[email protected],1554465,Student,2019-03-02 00:00:00,2019-03-04 14:54:24,,Martin Hall Juvenile Detention Center with SO 475,,,need,8.00
Jeff,Louissaint,[email protected],1554465,Student,2019-03-03 00:00:00,2019-03-04 14:54:52,,Martin Hall Juvenile Detention Center with SO 475,,,need,8.00
Kelsey,Hormel,[email protected],1648596,Student,2019-03-04 00:00:00,2019-03-04 16:02:29,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Braelen,Babbitt,[email protected],1678952,Student,2019-02-19 00:00:00,2019-03-04 16:18:11,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.25
Braelen,Babbitt,[email protected],1678952,Student,2019-02-20 00:00:00,2019-03-04 16:18:40,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.00
Braelen,Babbitt,[email protected],1678952,Student,2019-02-26 00:00:00,2019-03-04 16:18:57,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.25
Braelen,Babbitt,[email protected],1678952,Student,2019-02-27 00:00:00,2019-03-04 16:19:16,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.00
Anna,Kelly,[email protected],2024021,Student,2019-03-04 00:00:00,2019-03-04 16:35:17,(SP 19) PY-402 Senior Practicum ,Community Court with PY 402,,,need,4.50
Rebecca,Devereaux,[email protected],2180999,Student,2019-03-04 00:00:00,2019-03-04 17:14:42,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Samantha,Cone,[email protected],2190264,Student,2019-03-04 00:00:00,2019-03-04 17:33:56,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Ji,Ahn,[email protected],1557416,Student,2019-02-02 00:00:00,2019-03-04 18:38:51,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,Art Show(Prepping and the Actual Event),need,11.25
Ji,Ahn,[email protected],1557416,Student,2019-02-03 00:00:00,2019-03-04 18:39:30,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,Staff Retreat,need,4.50
Ji,Ahn,[email protected],1557416,Student,2019-02-04 00:00:00,2019-03-04 18:40:03,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,Office Work,need,8.00
Ji,Ahn,[email protected],1557416,Student,2019-02-06 00:00:00,2019-03-04 18:40:53,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,Adulting 101 Metting & Training,need,4.00
Ji,Ahn,[email protected],1557416,Student,2019-02-09 00:00:00,2019-03-04 18:41:31,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,Adulting 101 MeetingParents Night Out,need,7.00
Ji,Ahn,[email protected],1557416,Student,2019-02-18 00:00:00,2019-03-04 18:55:32,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,5.00
Ji,Ahn,[email protected],1557416,Student,2019-02-19 00:00:00,2019-03-04 18:55:54,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,2.50
Ji,Ahn,[email protected],1557416,Student,2019-02-21 00:00:00,2019-03-04 18:56:13,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,5.00
Ji,Ahn,[email protected],1557416,Student,2019-02-22 00:00:00,2019-03-04 18:56:37,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,6.50
Ji,Ahn,[email protected],1557416,Student,2019-02-25 00:00:00,2019-03-04 18:57:00,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,6.00
Ji,Ahn,[email protected],1557416,Student,2019-03-04 00:00:00,2019-03-04 19:11:19,(SP 19) PY-402 Senior Practicum ,The Arc of Spokane with PY 402,,,need,6.25
Krystal,Roberts,[email protected],1973541,Student,2019-03-04 00:00:00,2019-03-04 20:13:34,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.00
Courtney,Herrington,[email protected],1690037,Student,2019-02-26 00:00:00,2019-03-04 20:31:50,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Courtney,Herrington,[email protected],1690037,Student,2019-03-22 00:00:00,2019-03-04 21:05:00,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Courtney,Herrington,[email protected],1690037,Student,2019-02-28 00:00:00,2019-03-04 21:05:41,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Faith,Martin,[email protected],1692445,Student,2019-02-25 00:00:00,2019-03-04 21:17:02,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Iceskating,need,1.50
Faith,Martin,[email protected],1692445,Student,2019-02-28 00:00:00,2019-03-04 21:17:30,(SP 19) PY-402 Senior Practicum ,Spokane Parks and Rec Therapeutic Recreation with PY 402,,Crafts,need,2.50
Hannah,Boyd,[email protected],1550924,Student,2019-03-04 00:00:00,2019-03-04 21:48:28,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,Hasib and Muzghan work,need,3.50
Rhiana,Everest,[email protected],1551209,Student,2019-03-04 00:00:00,2019-03-05 00:33:15,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,,need,5.67
Michelina,Cozzetto,[email protected],2026017,Student,2019-02-27 00:00:00,2019-03-05 11:22:41,(Spring 19) TES-364 TESOL Field Experience ,Rogers High School TESOL-364,,,need,3.00
Kaeli,Flanagan,[email protected],2198528,Student,2019-02-27 00:00:00,2019-03-05 11:29:48,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.25
Kaeli,Flanagan,[email protected],2198528,Student,2019-03-04 00:00:00,2019-03-05 11:30:13,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-03-28 00:00:00,2019-03-05 11:31:43,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Kaitlyn,Caprye,[email protected],2198512,Student,2019-03-05 00:00:00,2019-03-05 13:39:14,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,At my field experience we played lighting today. Very entertaining and good for the kids. ,need,3.00
Krystal,Roberts,[email protected],1973541,Student,2019-03-05 00:00:00,2019-03-05 17:41:09,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.50
Isreal,Sungalu,[email protected],1552101,Student,2019-03-05 00:00:00,2019-03-05 17:42:13,,,Electronic Monitoring Juvenile Court ,,individual,8.50
Utsal,Shrestha,[email protected],1891509,Student,2019-02-22 00:00:00,2019-03-05 19:02:07,(SP 19) CS-472,Happy Cake Co,,Met the client,need,1.50
Utsal,Shrestha,[email protected],1891509,Student,2019-02-28 00:00:00,2019-03-05 19:02:53,(SP 19) CS-472,Happy Cake Co,,Set up and learned basic flutter,need,4.00
Utsal,Shrestha,[email protected],1891509,Student,2019-03-02 00:00:00,2019-03-05 19:03:23,(SP 19) CS-472,Happy Cake Co,,Set up email backend,need,2.50
Anthony,Barnes,[email protected],2213703,Student,2019-03-05 00:00:00,2019-03-05 20:19:45,,RISE Tutor and Mentor,,Helped in the science department for FAST,need,1.50
Julia,Abbott,[email protected],1553308,Student,2019-03-05 00:00:00,2019-03-05 20:32:41,(SP 19) CS-472,Work with Rogers High School,,"Worked in class for 1.5 hours, worked on own getting app to work with Google Firebase for 1 hour",need,2.50
Christina,Mullan,[email protected],2215564,Student,2019-03-05 00:00:00,2019-03-05 21:12:30,,RISE Tutor and Mentor,,,need,1.50
Hannah,Boyd,[email protected],1550924,Student,2019-03-05 00:00:00,2019-03-05 21:37:33,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,3.50
Michael,Watson,[email protected],2027630,StudentCommunity Member,2019-03-05 00:00:00,2019-03-05 23:46:30,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Abigail,Nye,[email protected],1554687,Student,2019-03-01 00:00:00,2019-03-06 06:57:17,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.25
Joseph,Fleckenstein,[email protected],2192850,Student,2019-03-05 00:00:00,2019-03-06 10:13:38,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,First day of my field placement for EDU 203,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-03-06 00:00:00,2019-03-06 10:51:02,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,2.00
Katrina,King,[email protected],1686290,Student,2019-03-01 00:00:00,2019-03-06 11:48:36,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-03-04 00:00:00,2019-03-06 11:48:59,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-03-06 00:00:00,2019-03-06 11:49:14,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,3.00
Melanie,Elston,[email protected],1650077,Student,2019-02-27 00:00:00,2019-03-06 12:09:37,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,4.00
Melanie,Elston,[email protected],1650077,Student,2019-03-04 00:00:00,2019-03-06 12:10:12,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.00
Nicholas,Hughes,[email protected],1534862,Student,2019-03-01 00:00:00,2019-03-06 13:00:45,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Nicholas,Hughes,[email protected],1534862,Student,2019-03-04 00:00:00,2019-03-06 13:01:10,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Nicholas,Hughes,[email protected],1534862,Student,2019-03-06 00:00:00,2019-03-06 13:01:33,(SP 19) PY-402 Senior Practicum ,St. Luke's Rehab with PY 402,,,need,4.00
Svetlana,Yuryev,[email protected],1993707,Student,2019-03-05 00:00:00,2019-03-06 13:50:05,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,Serve those in need at St. Margaret's Shelter,St. Margaret's Shelter ,,need,1.50
Vanessa,Ivy,[email protected],1551285,Student,2019-03-05 00:00:00,2019-03-06 14:24:43,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,Cleaning day. happy birthday Buffy!,need,2.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-25 00:00:00,2019-03-06 14:42:32,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-02-27 00:00:00,2019-03-06 14:43:04,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-03-04 00:00:00,2019-03-06 14:43:53,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Lilliana,Fuentes,[email protected],1672243,Student,2019-03-05 00:00:00,2019-03-06 14:44:11,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,2.50
Lilliana,Fuentes,[email protected],1672243,Student,2019-03-06 00:00:00,2019-03-06 14:44:31,(SP 19) Field Placement EDU 442 ,Field Placement (SP 19) ,,,need,1.00
Taylor,Lee,[email protected],1556184,Student,2019-02-05 00:00:00,2019-03-06 14:54:39,,,Spokane Police Department,Co-Op Meeting,individual,4.00
Taylor,Lee,[email protected],1556184,Student,2019-02-19 00:00:00,2019-03-06 14:56:48,,,Spokane Police Department,Co-Op Meeting,individual,4.00
Taylor,Lee,[email protected],1556184,Student,2019-02-16 00:00:00,2019-03-06 14:57:47,,,Spokane Police Department ,NEVOC,individual,4.00
Taylor,Lee,[email protected],1556184,Student,2019-02-21 00:00:00,2019-03-06 14:58:39,,,Spokane Police Department,Co-Op Patrol,individual,6.00
Taylor,Lee,[email protected],1556184,Student,2019-02-28 00:00:00,2019-03-06 14:59:52,,,Spokane Police Department,Monthly work out,individual,4.00
Taylor,Lee,[email protected],1556184,Student,2019-02-28 00:00:00,2019-03-06 15:00:42,,,Spokane Police Department,Monthly mail check,individual,4.00
Taylor,Lee,[email protected],1556184,Student,2019-03-05 00:00:00,2019-03-06 15:08:08,,,Spokane Police Department,Co-Op meeting,individual,4.00
Rhiana,Everest,[email protected],1551209,Student,2019-03-06 00:00:00,2019-03-06 15:15:59,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,,need,3.25
Madyson,Gabriel,[email protected],1552596,Student,2019-03-06 00:00:00,2019-03-06 15:27:54,,Spokane Police Department with PY 402,,Training presentation on filing gun restraints ,need,1.50
Rachel,Werner,[email protected],1551293,Student,2019-03-05 00:00:00,2019-03-06 15:52:28,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I observed at the front desk and with the Community Response Team.,need,5.50
Nikkita,Dehle,[email protected],1404106,Student,2019-02-28 00:00:00,2019-03-06 15:53:45,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Nikkita,Dehle,[email protected],1404106,Student,2019-03-01 00:00:00,2019-03-06 15:54:53,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,1.58
Anna,Kelly,[email protected],2024021,Student,2019-03-05 00:00:00,2019-03-06 15:55:57,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Nikkita,Dehle,[email protected],1404106,Student,2019-03-05 00:00:00,2019-03-06 15:56:04,(SP 19) PY-402 Senior Practicum ,Whitworth Student Success with PY 402,,,need,2.75
Emmi,Stauffacher,[email protected],2209987,Student,2019-03-05 00:00:00,2019-03-06 16:11:57,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Jessica,Schmautz,[email protected],2005846,Student,2019-02-04 00:00:00,2019-03-06 16:12:49,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-07 00:00:00,2019-03-06 16:13:10,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-10 00:00:00,2019-03-06 16:13:55,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,8.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-14 00:00:00,2019-03-06 16:14:18,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-18 00:00:00,2019-03-06 16:14:41,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-21 00:00:00,2019-03-06 16:15:00,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-24 00:00:00,2019-03-06 16:15:17,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,8.00
Jessica,Schmautz,[email protected],2005846,Student,2019-03-25 00:00:00,2019-03-06 16:15:37,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-25 00:00:00,2019-03-06 16:16:12,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-02-28 00:00:00,2019-03-06 16:16:29,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Jessica,Schmautz,[email protected],2005846,Student,2019-03-03 00:00:00,2019-03-06 16:17:00,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,10.00
Jessica,Schmautz,[email protected],2005846,Student,2019-03-04 00:00:00,2019-03-06 16:17:16,(SP 19) PY-402 Senior Practicum ,Sideout Volleyball Club with PY 402,,,need,2.00
Morgan,Howe,[email protected],1551270,Student,2019-02-20 00:00:00,2019-03-06 16:29:27,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.25
Morgan,Howe,[email protected],1551270,Student,2019-02-21 00:00:00,2019-03-06 16:29:48,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-02-22 00:00:00,2019-03-06 16:30:06,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.00
Morgan,Howe,[email protected],1551270,Student,2019-03-23 00:00:00,2019-03-06 16:30:29,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-02-25 00:00:00,2019-03-06 16:30:55,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,8.00
Morgan,Howe,[email protected],1551270,Student,2019-02-26 00:00:00,2019-03-06 16:31:19,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,2.50
Morgan,Howe,[email protected],1551270,Student,2019-02-27 00:00:00,2019-03-06 16:31:43,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.00
Morgan,Howe,[email protected],1551270,Student,2019-02-28 00:00:00,2019-03-06 16:32:02,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-03-01 00:00:00,2019-03-06 16:33:16,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-03-02 00:00:00,2019-03-06 16:33:33,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,5.00
Morgan,Howe,[email protected],1551270,Student,2019-03-05 00:00:00,2019-03-06 16:33:54,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,2.50
Morgan,Howe,[email protected],1551270,Student,2019-03-06 00:00:00,2019-03-06 16:34:08,(SP 19) PY-402 Senior Practicum ,Orange Theory Fitness with PY 402,,,need,4.00
Kalianna,Lundin,[email protected],1550991,Student,2019-03-04 00:00:00,2019-03-06 16:35:31,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,3.00
Kalianna,Lundin,[email protected],1550991,Student,2019-02-05 00:00:00,2019-03-06 16:36:49,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,0.50
Kalianna,Lundin,[email protected],1550991,Student,2019-02-15 00:00:00,2019-03-06 16:37:07,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Kalianna,Lundin,[email protected],1550991,Student,2019-03-01 00:00:00,2019-03-06 16:38:05,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.50
Justess,Neihart,[email protected],2004052,Student,2019-03-01 00:00:00,2019-03-06 16:51:37,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,3.00
Justess,Neihart,[email protected],2004052,Student,2019-03-06 00:00:00,2019-03-06 16:52:14,Community Service Specialists,World Relief Community Service Specialist,,"Office Help, Interpretation",need,3.00
Rebecca,Devereaux,[email protected],2180999,Student,2019-03-06 00:00:00,2019-03-06 17:18:10,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.00
Kristopher,Isherwood,[email protected],1553256,Student,2019-03-06 00:00:00,2019-03-06 17:24:48,(SP 19) PY-402 Senior Practicum ,CHATT Counseling with PY 402,,,need,2.00
Alana,Fujimoto,[email protected],1551691,Student,2019-03-06 00:00:00,2019-03-06 17:26:06,(SP 19) PO 297 Nonviolent Defense and Conflict Resolution,RISE Tutor and Mentor,,Met teacher and worked with a couple of students to promote writing and reading skills in class.,need,1.50
Kaitlyn,Caprye,[email protected],2198512,Student,2019-03-06 00:00:00,2019-03-06 17:26:46,,RISE Tutor and Mentor,,Tutoring English ,need,2.15
Michael,Gamlem III,[email protected],1551552,Student,2019-02-26 00:00:00,2019-03-06 17:53:19,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.50
Michael,Gamlem III,[email protected],1551552,Student,2019-02-28 00:00:00,2019-03-06 17:53:36,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.50
Michael,Gamlem III,[email protected],1551552,Student,2019-03-01 00:00:00,2019-03-06 17:54:06,(SP 19) CS-472,Dashboard for Facilities ,,,need,2.50
Michael,Gamlem III,[email protected],1551552,Student,2019-02-26 00:00:00,2019-03-06 17:54:47,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.00
Michael,Gamlem III,[email protected],1551552,Student,2019-03-02 00:00:00,2019-03-06 17:55:11,(SP 19) CS-472,Dashboard for Facilities ,,,need,2.50
Michael,Gamlem III,[email protected],1551552,Student,2019-03-05 00:00:00,2019-03-06 17:55:33,(SP 19) CS-472,Dashboard for Facilities ,,,need,3.00
Michael,Gamlem III,[email protected],1551552,Student,2019-03-05 00:00:00,2019-03-06 17:56:08,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.00
Michael,Gamlem III,[email protected],1551552,Student,2019-03-06 00:00:00,2019-03-06 17:56:30,(SP 19) CS-472,Dashboard for Facilities ,,,need,3.00
Hannah,Barre,[email protected],1553990,Student,2019-03-02 00:00:00,2019-03-06 17:57:57,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,United Way,need,4.00
Hannah,Barre,[email protected],1553990,Student,2019-03-06 00:00:00,2019-03-06 17:58:21,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,Northeast Community Center,need,3.00
Madison,Dammarell,[email protected],1551391,Student,2019-03-05 00:00:00,2019-03-06 18:05:24,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-03-04 00:00:00,2019-03-06 18:05:35,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-03-01 00:00:00,2019-03-06 18:05:46,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-28 00:00:00,2019-03-06 18:06:26,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-26 00:00:00,2019-03-06 18:06:46,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-25 00:00:00,2019-03-06 18:07:05,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-22 00:00:00,2019-03-06 18:08:05,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-21 00:00:00,2019-03-06 18:08:24,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-19 00:00:00,2019-03-06 18:08:36,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-11 00:00:00,2019-03-06 18:09:06,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-08 00:00:00,2019-03-06 18:09:40,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-07 00:00:00,2019-03-06 18:09:59,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.50
Madison,Dammarell,[email protected],1551391,Student,2019-02-05 00:00:00,2019-03-06 18:10:16,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Madison,Dammarell,[email protected],1551391,Student,2019-02-04 00:00:00,2019-03-06 18:10:31,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Kendy,Urzua Valadez,[email protected],2209503,Student,2019-03-06 00:00:00,2019-03-06 18:10:51,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Annie,Clark,[email protected],1851551,Student,2019-03-05 00:00:00,2019-03-06 19:13:26,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Utsal,Shrestha,[email protected],1891509,Student,2019-03-06 00:00:00,2019-03-06 21:20:47,(SP 19) CS-472,Happy Cake Co,,Worked on implementing a date-picker in Happy Cake and figured out controllers for some text boxes.,need,2.00
Hannah,Boyd,[email protected],1550924,Student,2019-03-06 00:00:00,2019-03-06 21:28:44,(SP 19) PY-402 Senior Practicum ,Spokane Community College TESOL program with PY 402 ,,,need,2.50
Genevieve,Brindle,[email protected],1681407,Student,2019-02-15 00:00:00,2019-03-06 23:15:19,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-02-20 00:00:00,2019-03-06 23:17:13,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-02-25 00:00:00,2019-03-06 23:19:51,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-02-27 00:00:00,2019-03-06 23:20:20,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-03-01 00:00:00,2019-03-06 23:20:59,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-03-04 00:00:00,2019-03-06 23:21:26,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Genevieve,Brindle,[email protected],1681407,Student,2019-03-06 00:00:00,2019-03-06 23:21:49,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-20 00:00:00,2019-03-07 10:38:15,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-20 00:00:00,2019-03-07 10:39:14,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-21 00:00:00,2019-03-07 10:40:13,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-25 00:00:00,2019-03-07 10:40:49,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-26 00:00:00,2019-03-07 10:41:02,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-27 00:00:00,2019-03-07 10:41:18,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-02-28 00:00:00,2019-03-07 10:41:31,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-01 00:00:00,2019-03-07 10:42:00,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-04 00:00:00,2019-03-07 10:42:11,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-06 00:00:00,2019-03-07 10:42:24,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Kalianna,Lundin,[email protected],1550991,Student,2019-03-06 00:00:00,2019-03-07 11:30:48,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.50
Courtney,Herrington,[email protected],1690037,Student,2019-03-05 00:00:00,2019-03-07 11:47:19,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.50
Sarah,Weers,[email protected],1553331,Student,2019-03-01 00:00:00,2019-03-07 12:00:09,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-03-01 00:00:00,2019-03-07 12:00:44,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Sarah,Weers,[email protected],1553331,Student,2019-03-04 00:00:00,2019-03-07 12:01:25,(SP 19) PY-402 Senior Practicum ,Vanessa Behan Practicum ,,,need,8.00
Kaitlyn,Caprye,[email protected],2198512,Student,2019-03-07 00:00:00,2019-03-07 12:07:52,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,Speed stacking ,need,2.00
Becca,Patterson,[email protected],2002849,Student,2019-02-28 00:00:00,2019-03-07 12:10:28,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-03-03 00:00:00,2019-03-07 12:10:48,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Becca,Patterson,[email protected],2002849,Student,2019-03-04 00:00:00,2019-03-07 12:11:13,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,4.00
Karis,Lovell,[email protected],2206496,Student,2019-03-07 00:00:00,2019-03-07 13:00:52,(SP 19) PY-402 Senior Practicum ,Family Promise with PY 402,,,need,3.00
Jazmyne,Borja,[email protected],2198508,Student,2019-02-14 00:00:00,2019-03-07 13:02:07,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Jazmyne,Borja,[email protected],2198508,Student,2019-02-20 00:00:00,2019-03-07 13:02:21,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Jazmyne,Borja,[email protected],2198508,Student,2019-02-27 00:00:00,2019-03-07 13:04:09,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Jazmyne,Borja,[email protected],2198508,Student,2019-02-28 00:00:00,2019-03-07 13:04:21,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Jazmyne,Borja,[email protected],2198508,Student,2019-03-05 00:00:00,2019-03-07 13:04:43,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.75
Jazmyne,Borja,[email protected],2198508,Student,2019-03-06 00:00:00,2019-03-07 13:04:59,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.00
Olivia,Swanson,[email protected],1551027,Student,2019-02-06 00:00:00,2019-03-07 13:10:21,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,,need,1.50
Olivia,Swanson,[email protected],1551027,Student,2019-03-07 00:00:00,2019-03-07 13:10:45,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,,need,1.00
Olivia,Swanson,[email protected],1551027,Student,2019-03-08 00:00:00,2019-03-07 13:10:56,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,,need,2.00
Abigail,O'Brien,[email protected],1683009,Student,2019-02-20 00:00:00,2019-03-07 13:27:02,,,Whitworth Literacy Center,Training Session,individual,2.00
Abigail,O'Brien,[email protected],1683009,Student,2019-02-25 00:00:00,2019-03-07 13:28:24,,,Whitworth Literacy Center,,individual,1.00
Abigail,O'Brien,[email protected],1683009,Student,2019-02-27 00:00:00,2019-03-07 13:30:11,,,Whitworth Literacy Center,,individual,1.00
Abigail,O'Brien,[email protected],1683009,Student,2019-03-04 00:00:00,2019-03-07 13:31:16,,,Whitworth Literacy Center,,individual,1.00
Abigail,O'Brien,[email protected],1683009,Student,2019-03-06 00:00:00,2019-03-07 13:31:59,,,Whitworth Literacy Center,,individual,1.00
Sarah,Ward,[email protected],2171631,Student,2019-03-07 00:00:00,2019-03-07 13:52:40,,,Catholic Charities (CAPA) ,These hours were worked between February 19 and March 7,individual,20.50
Krystal,Roberts,[email protected],1973541,Student,2019-03-07 00:00:00,2019-03-07 14:02:27,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,1.50
Thomas,Dale,[email protected],1552376,Student,2019-03-02 00:00:00,2019-03-07 14:19:35,(SP 19) CS-472,Work NW Christian,,,need,12.00
Thomas,Dale,[email protected],1552376,Student,2019-02-28 00:00:00,2019-03-07 14:20:18,CS-200 Computer Science Outreach,Shadle Park High School CS,,,need,1.50
Thomas,Dale,[email protected],1552376,Student,2019-03-07 00:00:00,2019-03-07 14:20:32,CS-200 Computer Science Outreach,Shadle Park High School CS,,,need,1.50
Samantha,Monteville,[email protected],0937354,Student,2019-02-27 00:00:00,2019-03-07 14:23:21,,Field Placement (SP 19) ,,,need,2.50
Samantha,Monteville,[email protected],0937354,Student,2019-02-22 00:00:00,2019-03-07 14:23:48,,Field Placement (SP 19) ,,,need,1.50
Samantha,Monteville,[email protected],0937354,Student,2019-02-21 00:00:00,2019-03-07 14:25:00,,Field Placement (SP 19) ,,,need,2.30
Samantha,Monteville,[email protected],0937354,Student,2019-03-04 00:00:00,2019-03-07 14:28:24,,Field Placement (SP 19) ,,,need,2.50
Samantha,Monteville,[email protected],0937354,Student,2019-03-06 00:00:00,2019-03-07 14:28:40,,Field Placement (SP 19) ,,,need,2.50
Samantha,Monteville,[email protected],0937354,Student,2019-03-01 00:00:00,2019-03-07 14:30:38,,Field Placement (SP 19) ,,,need,1.30
Samantha,Monteville,[email protected],0937354,Student,2019-03-20 00:00:00,2019-03-07 14:35:21,,Field Placement (SP 19) ,,,need,2.30
Samantha,Monteville,[email protected],0937354,Student,2019-02-20 00:00:00,2019-03-07 14:36:44,,Field Placement (SP 19) ,,,need,2.30
Jacob,Hubbard,[email protected],1552226,Student,2019-03-05 00:00:00,2019-03-07 14:51:13,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,4.00
Jacob,Hubbard,[email protected],1552226,Student,2019-03-07 00:00:00,2019-03-07 14:51:29,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,4.00
Chelsea,Shearer,[email protected],1648905,Student,2019-03-07 00:00:00,2019-03-07 15:41:32,,RISE Tutor and Mentor,,training,need,0.75
Isreal,Sungalu,[email protected],1552101,Student,2019-03-07 00:00:00,2019-03-07 17:26:18,,,Electronic Monitoring Juvenile Court ,,individual,8.50
Isabella,Fleener,[email protected],1553343,Student,2019-03-07 00:00:00,2019-03-07 17:31:19,(SP 19) PY-402 Senior Practicum ,Whitworth Marriage and Family Therapy Center with PY 402,,,need,4.00
Andrew,Hutson,[email protected],1410352,Student,2019-03-05 00:00:00,2019-03-07 17:36:06,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.33
Andrew,Hutson,[email protected],1410352,Student,2019-03-07 00:00:00,2019-03-07 17:36:17,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.33
Jacob,Brook,[email protected],1554139,Student,2019-03-07 00:00:00,2019-03-07 17:43:41,,Happy Cake Co,,,need,14.00
Samantha,Cone,[email protected],2190264,Student,2019-03-06 00:00:00,2019-03-07 18:07:39,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Madyson,Gabriel,[email protected],1552596,Student,2019-03-07 00:00:00,2019-03-07 18:49:36,,Spokane Police Department with PY 402,,Went to order requests court hearings ,need,4.50
Vanessa,Ivy,[email protected],1551285,Student,2019-03-07 00:00:00,2019-03-07 21:13:33,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,"Coffee stand. Jimmy is out sick, Dale covering for him",need,2.00
Meghan,Kunz,[email protected],2195164,Student,2019-02-28 00:00:00,2019-03-07 21:27:57,,,North Central High School,,individual,1.00
Meghan,Kunz,[email protected],2195164,Student,2019-03-05 00:00:00,2019-03-07 21:28:31,,,North Central High School,,individual,1.00
Meghan,Kunz,[email protected],2195164,Student,2019-03-07 00:00:00,2019-03-07 21:29:21,,,North Central High School,,individual,1.00
Andrea,Sorensen,[email protected],2190238,Student,2019-03-07 00:00:00,2019-03-07 22:28:47,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-03-07 00:00:00,2019-03-08 00:20:25,Small Business Development Center ,SBDC Hours ,,,need,0.50
Andrew,Wiebers,[email protected],1640335,Student,2019-03-07 00:00:00,2019-03-08 01:01:55,,RISE Tutor and Mentor,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-04 00:00:00,2019-03-08 11:58:45,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-11 00:00:00,2019-03-08 11:59:03,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-18 00:00:00,2019-03-08 11:59:20,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-02-25 00:00:00,2019-03-08 11:59:40,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,1.00
Katrina,King,[email protected],1686290,Student,2019-03-08 00:00:00,2019-03-08 11:59:58,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,3.00
Jessica,Stone,[email protected],1552564,Student,2019-02-01 00:00:00,2019-03-08 12:15:21,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.25
Jessica,Stone,[email protected],1552564,Student,2019-02-05 00:00:00,2019-03-08 12:16:32,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.00
Jessica,Stone,[email protected],1552564,Student,2019-02-06 00:00:00,2019-03-08 12:17:14,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.75
Jessica,Stone,[email protected],1552564,Student,2019-02-08 00:00:00,2019-03-08 12:17:40,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Jessica,Stone,[email protected],1552564,Student,2019-02-14 00:00:00,2019-03-08 12:18:06,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Jessica,Stone,[email protected],1552564,Student,2019-02-15 00:00:00,2019-03-08 12:18:26,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Jessica,Stone,[email protected],1552564,Student,2019-02-16 00:00:00,2019-03-08 12:18:47,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Jessica,Stone,[email protected],1552564,Student,2019-03-17 00:00:00,2019-03-08 12:19:02,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.00
Jessica,Stone,[email protected],1552564,Student,2019-03-20 00:00:00,2019-03-08 12:20:54,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.25
Jessica,Stone,[email protected],1552564,Student,2019-02-21 00:00:00,2019-03-08 12:21:48,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Jessica,Stone,[email protected],1552564,Student,2019-02-20 00:00:00,2019-03-08 12:24:04,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.25
Jessica,Stone,[email protected],1552564,Student,2019-02-22 00:00:00,2019-03-08 12:24:30,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,3.25
Jessica,Stone,[email protected],1552564,Student,2019-02-23 00:00:00,2019-03-08 12:24:45,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.75
Jessica,Stone,[email protected],1552564,Student,2019-02-28 00:00:00,2019-03-08 12:25:23,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,2.00
Jessica,Stone,[email protected],1552564,Student,2019-03-01 00:00:00,2019-03-08 12:25:37,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.50
Jessica,Stone,[email protected],1552564,Student,2019-03-04 00:00:00,2019-03-08 12:26:16,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,0.75
Jessica,Stone,[email protected],1552564,Student,2019-03-06 00:00:00,2019-03-08 12:26:32,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,,need,1.00
Rhiana,Everest,[email protected],1551209,Student,2019-03-07 00:00:00,2019-03-08 12:48:36,(SP 19) SO-475 Sociology Practicum ,Refugee Connection Spokane ,,Phone call w/ Megan Ballard,need,1.00
Michael,Gamlem III,[email protected],1551552,Student,2019-03-07 00:00:00,2019-03-08 13:18:46,(SP 19) CS-472,Dashboard for Facilities ,,,need,2.00
Michael,Gamlem III,[email protected],1551552,Student,2019-03-08 00:00:00,2019-03-08 13:19:06,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.00
Caitlyn,Sylva,[email protected],2193436,Student,2019-03-08 00:00:00,2019-03-08 14:26:04,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.00
Justess,Neihart,[email protected],2004052,Student,2019-03-08 00:00:00,2019-03-08 14:29:09,Community Service Specialists,World Relief Community Service Specialist,,Office Help,need,4.00
Annie,Clark,[email protected],1851551,Student,2019-03-07 00:00:00,2019-03-08 14:34:33,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,2.00
Malia,Cross,[email protected],1557514,Student,2019-03-08 00:00:00,2019-03-08 14:56:36,(SP 19) SO-475 Sociology Practicum ,SPD Practicum SO 475,,Ordered school records for one of our clients. Faxed paperwork. Ordered discharge summary for one of our clients. Faxed more. Read expert report on case #3. ,need,5.00
Rachel,Werner,[email protected],1551293,Student,2019-03-07 00:00:00,2019-03-08 15:00:01,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I observed the mindfulness group and met with my supervisor. ,need,1.50
Rachel,Reynolds,[email protected],1551279,Student,2019-03-05 00:00:00,2019-03-08 15:10:05,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Rachel,Reynolds,[email protected],1551279,Student,2019-03-08 00:00:00,2019-03-08 15:10:16,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,5.00
Paola,Haley,[email protected],1683020,Student,2019-03-04 00:00:00,2019-03-08 16:01:28,,Field Placement (SP 19) ,,,need,2.75
Paola,Haley,[email protected],1683020,Student,2019-03-06 00:00:00,2019-03-08 16:01:43,,Field Placement (SP 19) ,,,need,2.50
Paola,Haley,[email protected],1683020,Student,2019-03-08 00:00:00,2019-03-08 16:02:00,,Field Placement (SP 19) ,,,need,3.00
Jacob,Dunning,[email protected],1769226,Student,2019-03-08 00:00:00,2019-03-08 16:26:56,Small Business Development Center ,SBDC Hours ,,,need,2.00
Sarah,Hudson,[email protected],2193858,Student,2019-03-08 00:00:00,2019-03-08 16:41:06,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Sarah,Hudson,[email protected],2193858,Student,2019-03-06 00:00:00,2019-03-08 16:41:31,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.00
Sarah,Hudson,[email protected],2193858,Student,2019-03-04 00:00:00,2019-03-08 16:45:34,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Rebecca,Devereaux,[email protected],2180999,Student,2019-03-08 00:00:00,2019-03-08 17:23:58,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Alejandra,Gomez Martinez,[email protected],1917295,Student,2019-03-08 00:00:00,2019-03-08 17:55:24,Small Business Development Center ,SBDC Hours ,,,need,3.00
Tamara,Tokarz,[email protected],1552634,Student,2019-03-08 00:00:00,2019-03-08 18:03:59,(SP 19) SO-475 Sociology Practicum ,Fulcrum/Grips Practicum ,,,need,2.00
Tamara,Tokarz,[email protected],1552634,Student,2019-03-08 00:00:00,2019-03-08 18:06:33,(SP 19) SO-475 Sociology Practicum ,Bail Project SO 475,,Outreach,need,1.75
Rachel,Werner,[email protected],1551293,Student,2019-03-08 00:00:00,2019-03-08 18:08:16,(SP 19) PY-402 Senior Practicum ,Excelsior Youth Center with PY 402,,I was in the residential area with the boys building connections. ,need,3.00
Caleb,Geringer,[email protected],910125182,Student,2019-02-25 00:00:00,2019-03-08 18:26:16,,RISE Tutor and Mentor,,Holmes 1st grade reading buddy ,need,1.00
Caleb,Geringer,[email protected],910125182,Student,2019-03-04 00:00:00,2019-03-08 18:27:02,,RISE Tutor and Mentor,,Holmes 1st grade reading buddy ,need,1.10
Samantha,Cone,[email protected],2190264,Student,2019-03-08 00:00:00,2019-03-08 18:36:29,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Angela,Brasher,[email protected],1989381,Student,2019-03-09 00:00:00,2019-03-09 10:51:07,(SP 19) BU 338 Voluntary Income Tax Assistance ,Voluntary Income Tax Assistance ,,,need,7.50
Alaina,Stockdill,[email protected],2198590,Student,2019-03-07 00:00:00,2019-03-09 11:46:38,,RISE Tutor and Mentor,,,need,1.00
Madyson,Gabriel,[email protected],1552596,Student,2019-03-08 00:00:00,2019-03-09 18:43:39,,Spokane Police Department with PY 402,,"LAP report copying, powerpoint revamping/creation",need,4.00
Kendy,Urzua Valadez,[email protected],2209503,Student,2019-03-07 00:00:00,2019-03-09 23:17:26,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.75
Anna,Kelly,[email protected],2024021,Student,2019-03-10 00:00:00,2019-03-10 12:11:54,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Anna,Kelly,[email protected],2024021,Student,2019-03-07 00:00:00,2019-03-10 12:12:37,(SP 19) PY-402 Senior Practicum ,Information Desk Administrative Assistant for PY 402,,,need,5.00
Vanessa,Ivy,[email protected],1551285,Student,2019-03-08 00:00:00,2019-03-10 13:13:21,(SP 19) PY-402 Senior Practicum ,The City Gate with PY 402,,Tables.. We were slow today,need,5.50
Mason,Elms,[email protected],1555416,Student,2019-03-09 00:00:00,2019-03-10 13:23:06,,ParaSport Spokane,,,need,5.00
Sarangi,Handun Pathirana,[email protected],2002855,Student,2019-03-07 00:00:00,2019-03-10 14:34:44,,RISE Tutor and Mentor,,,need,1.00
Tristan,Hildahl,[email protected],1696930,Student,2019-02-26 00:00:00,2019-03-10 15:41:17,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.50
Tristan,Hildahl,[email protected],1696930,Student,2019-02-27 00:00:00,2019-03-10 15:42:14,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.00
Tristan,Hildahl,[email protected],1696930,Student,2019-02-28 00:00:00,2019-03-10 15:42:48,(SP 19) CS-472,Dashboard for Facilities ,,,need,1.50
Tristan,Hildahl,[email protected],1696930,Student,2019-03-03 00:00:00,2019-03-10 15:43:42,(SP 19) CS-472,Dashboard for Facilities ,,,need,3.00
Tristan,Hildahl,[email protected],1696930,Student,2019-03-05 00:00:00,2019-03-10 15:44:53,(SP 19) CS-472,Dashboard for Facilities ,,,need,2.00
Tristan,Hildahl,[email protected],1696930,Student,2019-03-07 00:00:00,2019-03-10 15:45:46,(SP 19) CS-472,Dashboard for Facilities ,,,need,2.00
Tristan,Hildahl,[email protected],1696930,Student,2019-03-10 00:00:00,2019-03-10 15:46:30,(SP 19) CS-472,Dashboard for Facilities ,,,need,3.00
Siri,Barrera,[email protected],2140213,Student,2019-02-08 00:00:00,2019-03-10 16:04:00,,,Parasport Spokane,,individual,4.00
Siri,Barrera,[email protected],2140213,Student,2019-02-01 00:00:00,2019-03-10 16:05:13,,,parasport Spokane,,individual,4.00
Siri,Barrera,[email protected],2140213,Student,2019-02-15 00:00:00,2019-03-10 16:05:59,,,Parasport Spokane,,individual,16.00
Siri,Barrera,[email protected],2140213,Student,2019-02-16 00:00:00,2019-03-10 16:08:03,,,Parasport Spokane,,individual,17.00
Siri,Barrera,[email protected],2140213,Student,2019-02-17 00:00:00,2019-03-10 16:08:43,,,Parasport Spokane,,individual,14.00
Siri,Barrera,[email protected],2140213,Student,2019-03-23 00:00:00,2019-03-10 16:09:46,,,Parasport Spokane,,individual,4.00
Siri,Barrera,[email protected],2140213,Student,2019-02-23 00:00:00,2019-03-10 16:11:40,,,Parasport Spokane,,individual,3.50
Siri,Barrera,[email protected],2140213,Student,2019-03-05 00:00:00,2019-03-10 16:13:12,,,Parasport Spokane,,individual,1.00
Siri,Barrera,[email protected],2140213,Student,2019-03-08 00:00:00,2019-03-10 16:14:02,,,Parasport Spokane,,individual,2.50
Siri,Barrera,[email protected],2140213,Student,2019-03-09 00:00:00,2019-03-10 16:15:05,,,Parasport Spokane,,individual,2.00
Siri,Barrera,[email protected],2140213,Student,2019-03-10 00:00:00,2019-03-10 16:15:35,,,Parasport Spokane,,individual,4.50
Anna,Franzella,[email protected],1994534,Student,2019-03-10 00:00:00,2019-03-10 18:44:07,(SP 19) HS-315 Nutrition ,Volunteer at HOC with Jessica ,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-07 00:00:00,2019-03-10 20:17:36,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Sharon,Wilkes,[email protected],1377531,Student,2019-03-08 00:00:00,2019-03-10 20:17:50,(SP 19) PY-402 Senior Practicum ,Boys and Girls Club: Mead Clubhouse with PY 402,,,need,2.00
Hailey,Swearingen,[email protected],1551957,Student,2019-03-08 00:00:00,2019-03-10 20:29:35,(SP 19) PY-402 Senior Practicum ,Grassroots Therapy Group with PY 402,,"CANS training, FTDM meeting at CPS",need,6.50
Mary,Gerhardstein,[email protected],0929686,Student,2019-02-28 00:00:00,2019-03-10 21:19:27,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-03-05 00:00:00,2019-03-10 21:19:55,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.75
Mary,Gerhardstein,[email protected],0929686,Student,2019-03-06 00:00:00,2019-03-10 21:20:12,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Mary,Gerhardstein,[email protected],0929686,Student,2019-03-07 00:00:00,2019-03-10 21:20:26,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Rachel,Reynolds,[email protected],1551279,Student,2019-03-10 00:00:00,2019-03-10 21:21:25,(SP 19) PY-402 Senior Practicum ,Miryam's House with PY 402,,,need,4.00
Paige,Pence,[email protected],2192712,Student,2019-02-19 00:00:00,2019-03-10 21:44:26,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.50
Paige,Pence,[email protected],2192712,Student,2019-02-26 00:00:00,2019-03-10 21:45:54,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,,need,3.50
Jazmyne,Borja,[email protected],2198508,Student,2019-03-07 00:00:00,2019-03-10 22:47:27,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.00
Madison,Abbott,[email protected],2002751,Student,2019-03-04 00:00:00,2019-03-10 22:59:53,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Madison,Abbott,[email protected],2002751,Student,2019-02-26 00:00:00,2019-03-10 23:00:20,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,1.50
Nicole,Juarez Zelaya,[email protected],2198547,Student,2019-03-07 00:00:00,2019-03-11 00:40:24,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,2.50
Jamil,Fashu-Kanu,[email protected],2195224,Student,2019-03-06 00:00:00,2019-03-11 03:28:39,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,first time,need,2.00
Andrea,Sorensen,[email protected],2190238,Student,2019-03-08 00:00:00,2019-03-11 09:29:37,(SP 19) Field Experience EDU-203 ,Field Placement (SP 19) ,,,need,3.00
Laina,Damon,[email protected],1553868,Student,2019-03-06 00:00:00,2019-03-11 10:21:08,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-03-08 00:00:00,2019-03-11 10:23:14,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Laina,Damon,[email protected],1553868,Student,2019-03-11 00:00:00,2019-03-11 10:23:52,(SP 19) PY-402 Senior Practicum ,Glover MS/Lewis and Clark HS with PY 402,,,need,4.00
Katrina,King,[email protected],1686290,Student,2019-03-11 00:00:00,2019-03-11 11:10:30,(SP 19) PY-402 Senior Practicum ,Whitworth Res Life-Arend with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-03-08 00:00:00,2019-03-11 11:18:25,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,3.00
Alysha,Terrell,[email protected],1554859,Student,2019-03-11 00:00:00,2019-03-11 11:18:40,(SP 19) PY-402 Senior Practicum ,Whitworth Institutional Advancement with PY 402,,,need,6.00
Froukje,Lakerveld,[email protected],2192636,Student,2019-03-08 00:00:00,2019-03-11 11:36:48,,,Whitworth Science Bowl,,individual,2.00
Froukje,Lakerveld,[email protected],2192636,Student,2019-03-09 00:00:00,2019-03-11 11:37:57,,,Whitworth Science Bowl,,individual,7.00
Tiffany,Li,[email protected],2198556,Student,2019-03-07 00:00:00,2019-03-11 11:59:27,,RISE Tutor and Mentor,,,need,1.50
Maria,Alvarez,[email protected],2015362,Student,2019-03-09 00:00:00,2019-03-11 12:07:55,,En Christo Volunteers,,,need,4.00
Rebecca,Mitchell,[email protected],1959537,Student,2019-02-19 00:00:00,2019-03-11 12:27:10,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,"It was my first day in the class, so I observed and helped wherever was needed. I participated in activities with students as well. ",need,3.50
Niccole,Donaldson,[email protected],2193586,Student,2019-03-09 00:00:00,2019-03-11 12:31:53,,,Robinson Science Building,"Volunteered at the 2019 Science Bowl in Robinson, was a timekeeper.",individual,6.50
Rebecca,Mitchell,[email protected],1959537,Student,2019-02-26 00:00:00,2019-03-11 12:32:20,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,"I observed again, both Mrs. Boyd and the student teacher. I also participated in activities with the students such as reading a text to find the main idea and its supporting details.",need,3.50
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-25 00:00:00,2019-03-11 13:02:27,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-12 00:00:00,2019-03-11 13:02:52,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-27 00:00:00,2019-03-11 13:03:17,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-26 00:00:00,2019-03-11 13:03:34,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,5.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-28 00:00:00,2019-03-11 13:03:55,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,5.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-28 00:00:00,2019-03-11 13:04:21,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-29 00:00:00,2019-03-11 13:04:51,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-04-01 00:00:00,2019-03-11 13:05:09,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-28 00:00:00,2019-03-11 13:06:21,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-02-28 00:00:00,2019-03-11 13:07:00,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Tate Madison,Bell,[email protected],2212031,Student,2019-02-07 00:00:00,2019-03-11 13:07:06,(Spring 19) TES-364 TESOL Field Experience ,SCC Adult Education TESOL Program,,,need,4.00
Rebecca,Mitchell,[email protected],1959537,Student,2019-03-05 00:00:00,2019-03-11 13:07:06,(SP 19) Field Placement - EDU 342 - Elementary Curriculum Field Experience,Field Placement (SP 19) ,,"I printed off some papers that I am going to give students when I teach. I observed, looked over a text and observed what parts were the main ideas and descriptions in each section of the text with the students. ",need,2.50
Tate Madison,Bell,[email protected],2212031,Student,2019-02-21 00:00:00,2019-03-11 13:07:40,(Spring 19) TES-364 TESOL Field Experience ,SCC Adult Education TESOL Program,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-01 00:00:00,2019-03-11 13:07:42,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-04 00:00:00,2019-03-11 13:08:21,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,3.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-05 00:00:00,2019-03-11 13:08:36,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
Tate Madison,Bell,[email protected],2212031,Student,2019-02-28 00:00:00,2019-03-11 13:08:43,(Spring 19) TES-364 TESOL Field Experience ,SCC Adult Education TESOL Program,,,need,4.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-06 00:00:00,2019-03-11 13:08:52,PY330 -Psychology of Poverty and Social Class ,Work with Spokane Juvenile Court ,,,need,1.00
Elizabeth,Sanders,[email protected],1553601,Student,2019-03-07 00:00:00,2019-03-11 13:09:13,(SP 19) PY-402 Senior Practicum ,Evergreen Elementary School with PY 402,,,need,1.00
James,Gao,[email protected],2194148,Student,2019-03-07 00:00:00,2019-03-11 13:11:11,,RISE Tutor and Mentor,,"SPARK: First day at Spark, informal, fun atmosphere. Made slime with the kids and got a small tour.",need,2.00