-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCV.html
1504 lines (1369 loc) · 94.4 KB
/
CV.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MGCS7827C1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MGCS7827C1');
</script>
<title>John E Pierce Curriculum Vitae</title>
<link rel="stylesheet" href="CV.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="description" content="Dr John E Pierce, Curriculum Vitae">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type='text/javascript' src='https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js'></script>
</head>
<body>
<script>
window.onload = function() {
//Unscramble
let emaila = document.getElementById('emaila');
let href = emaila.getAttribute("href").substring(7);
function rot13(str) {
// Create an empty string to store the decrypted string
let decrypted = "";
for (let i = 0; i < str.length; i++) {
let charCode = str.charCodeAt(i);
if (charCode >= 65 && charCode <= 90) {
charCode = (charCode - 65 + 13) % 26 + 65;
} else if (charCode >= 97 && charCode <= 122) {
charCode = (charCode - 97 + 13) % 26 + 97;
}
decrypted += String.fromCharCode(charCode);
}
return decrypted;
}
let newhref = rot13(href);
emaila.setAttribute("href","mailto:"+newhref);
//Years post PhD
let now = Date.now();
const Phd = 1628204400000;
let elapsed = Math.floor((now - Phd)/31556736000).toFixed(0);
document.getElementById("yearsPost").innerHTML = elapsed;
//Funding
const fundingDivs = document.querySelectorAll(".funding p");
var funding = 0;
var fundingCIA = 0;
fundingDivs.forEach(span => {
if (span.textContent.includes(" successful")) {
const dollarAmounts = span.textContent.match(/\$\d+(,\d{3})*(\.\d+)?/g);
if (dollarAmounts && dollarAmounts.length > 0) {
const number = parseInt(dollarAmounts[0].replace(/[\$,]/g, ''));
funding += number;
}
}
if (span.textContent.startsWith("Pierce") && span.textContent.includes(" successful")) {
const dollarAmounts = span.textContent.match(/\$\d+(,\d{3})*(\.\d+)?/g);
if (dollarAmounts && dollarAmounts.length > 0) {
const number = parseInt(dollarAmounts[0].replace(/[\$,]/g, ''));
fundingCIA += number;
}
}
});
//count up animation
function animateValue(id, start, end, duration, prefix, suffix, decimals) {
const element = document.getElementById(id);
const range = end - start;
let startTime = null;
function tick(timestamp) {
if (!startTime) startTime = timestamp;
const progress = Math.min((timestamp - startTime) / duration, 1);
element.innerText = prefix + ((start + range * progress)).toFixed(decimals) + suffix;
if (progress < 1) {
requestAnimationFrame(tick);
}
}
requestAnimationFrame(tick);
}
animateValue("funding", 0, funding/1000000, 1000, "$", "m", 2);
animateValue("fundingCIA", 0, fundingCIA/1000, 1000, "$", "k", 0);
//Count publications
pubCount = document.querySelectorAll(".JournalArticles p:not(.lineBreak)").length;
animateValue("pubsCount", 0, pubCount, 1000, "", "");
//show or hide home arrow
var topArrowTrigger = document.getElementById("ProfessionalExperience").offsetTop;
window.onscroll = function() {
//
topArrow = document.getElementById("topArrow");
if(window.pageYOffset > topArrowTrigger){
topArrow.style.opacity = 1;
topArrow.style.height = "auto";
} else {
topArrow.style.opacity = 0;
topArrow.style.height = 0;
}
};
//Show or hide sections
const leftCols = document.querySelectorAll(".leftCol")
leftCols.forEach(leftCol => {
const childDiv = leftCol.querySelector('div div');
leftCol.addEventListener('click', () => {
const rightCol = leftCol.nextElementSibling;
rightCol.classList.toggle("rightColHidden")
const mask = rightCol.querySelector(".rightColMask")
mask.style.opacity = mask.style.opacity === "1" ? "0" : "1";
if (rightCol.classList.contains("rightColHidden")) {
var hiddenHeight = `calc(${leftCol.querySelector('div').offsetHeight}px + 1.2rem)`;
rightCol.style.maxHeight = hiddenHeight;
rightCol.querySelector(".rightColMask").style.height = hiddenHeight;
}
else{
rightCol.style.maxHeight = "none";
}
});
});
// Add altmetric label
const altmetricCounts = document.querySelectorAll('.altmetric');
altmetricCounts[0].prepend("Altmetrics: ")
//function to pull number from altmetric embedded div
function pullAltmetricTotal(imgElement){
var altText = imgElement.getAttribute('alt');
var score = parseInt(altText.match(/\d+/), 10);
if (!isNaN(score)) {
let scoreSpan = document.createElement('span');
scoreSpan.textContent = score;
imgElement.parentNode.insertBefore(scoreSpan, imgElement.nextSibling);
}
}
//Feed altmetric embeds through, change image
var imgElements = document.querySelectorAll('.altmetric-embed img');
imgElements.forEach(element => {
pullAltmetricTotal(element)
element.setAttribute("src", "images/altmetrics.png")
});
}
</script>
<a id="homeArrow" href="index.html">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-up-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z"/>
</svg>
</a>
<div id="header">
<h1>John E. Pierce, PhD</h1>
<p>
<a href="mailto:[email protected]" id="emaila">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="inherit" class="bi bi-at" viewBox="0 0 16 16">
<path d="M13.106 7.222c0-2.967-2.249-5.032-5.482-5.032-3.35 0-5.646 2.318-5.646 5.702 0 3.493 2.235 5.708 5.762 5.708.862 0 1.689-.123 2.304-.335v-.862c-.43.199-1.354.328-2.29.328-2.926 0-4.813-1.88-4.813-4.798 0-2.844 1.921-4.881 4.594-4.881 2.735 0 4.608 1.688 4.608 4.156 0 1.682-.554 2.769-1.416 2.769-.492 0-.772-.28-.772-.76V5.206H8.923v.834h-.11c-.266-.595-.881-.964-1.6-.964-1.4 0-2.378 1.162-2.378 2.823 0 1.737.957 2.906 2.379 2.906.8 0 1.415-.39 1.709-1.087h.11c.081.67.703 1.148 1.503 1.148 1.572 0 2.57-1.415 2.57-3.643zm-7.177.704c0-1.197.54-1.907 1.456-1.907.93 0 1.524.738 1.524 1.907S8.308 9.84 7.371 9.84c-.895 0-1.442-.725-1.442-1.914z"/>
</svg>[email protected]
</a>
<a href="http://www.twitter.com/johnpierce85">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="inherit" viewBox="0 0 16 16">
<path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"/>
</svg>
@johnpierce85
</a>
<a href="https://orcid.org/0000-0001-5164-5106">
<svg width="17" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><defs><clipPath id="clip0"><rect x="0" y="0" width="17" height="16"/></clipPath><clipPath id="clip1"><rect x="0" y="0" width="17" height="15"/></clipPath><clipPath id="clip2"><rect x="0" y="-1" width="17" height="16"/></clipPath></defs><g clip-path="url(#clip0)"><g clip-path="url(#clip1)"><g clip-path="url(#clip2)"><path d="M9.58826 6.40425 8.21522 6.40425 8.21522 10.9975 9.63436 10.9975C11.6528 10.9975 12.117 9.46314 12.117 8.69924 12.117 7.4579 11.3235 6.40425 9.58826 6.40425ZM8.42924 1.02073C4.33645 1.02073 1.02073 4.33645 1.02073 8.42924 1.02073 12.522 4.33645 15.8378 8.42924 15.8378 12.522 15.8378 15.8378 12.522 15.8378 8.42924 15.8378 4.33645 12.522 1.02073 8.42924 1.02073ZM6.01571 11.7976 5.1234 11.7976 5.1234 5.59754 6.01571 5.59754 6.01571 11.7976ZM5.5712 4.89291C5.24852 4.89291 4.9851 4.63279 4.9851 4.30681 4.9851 3.98084 5.24523 3.72072 5.5712 3.72072 5.89388 3.72072 6.1573 3.98084 6.1573 4.30681 6.154 4.6295 5.89388 4.89291 5.5712 4.89291ZM9.74302 11.8042 7.3229 11.8042 7.3229 5.59754 9.72984 5.59754C12.0215 5.59754 13.0291 7.234 13.0291 8.69924 13.0291 10.2929 11.7878 11.8042 9.74302 11.8042Z" fill="inherit" fill-rule="nonzero" fill-opacity="1" transform="matrix(1.00839 0 0 1 0 -0.958742)"/></g></g></g></svg>
0000-0001-5164-5106</a>
<a href="https://johnepierce.github.io">
<svg width="18" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><defs><clipPath id="clip0"><rect x="0" y="0" width="18" height="16"/></clipPath><clipPath id="clip1"><rect x="0" y="0" width="18" height="15"/></clipPath><clipPath id="clip2"><rect x="0" y="0" width="18" height="15"/></clipPath></defs><g clip-path="url(#clip0)"><g clip-path="url(#clip1)"><g clip-path="url(#clip2)"><path d="M12.1832 10.4257C12.2428 9.93422 12.2875 9.44272 12.2875 8.93634 12.2875 8.42995 12.2428 7.93845 12.1832 7.44695L14.7003 7.44695C14.8194 7.92355 14.8939 8.4225 14.8939 8.93634 14.8939 9.45018 14.8194 9.94913 14.7003 10.4257M10.8651 14.5662C11.3119 13.7396 11.6545 12.846 11.8928 11.9151L14.0896 11.9151C13.3747 13.1439 12.2353 14.0971 10.8651 14.5662M10.6789 10.4257 7.19375 10.4257C7.11928 9.93422 7.07459 9.44272 7.07459 8.93634 7.07459 8.42995 7.11928 7.931 7.19375 7.44695L10.6789 7.44695C10.7459 7.931 10.7981 8.42995 10.7981 8.93634 10.7981 9.44272 10.7459 9.93422 10.6789 10.4257M8.93634 14.8641C8.31825 13.9705 7.8193 12.98 7.51398 11.9151L10.3587 11.9151C10.0534 12.98 9.55443 13.9705 8.93634 14.8641M5.95755 5.95755 3.78306 5.95755C4.49051 4.72137 5.63735 3.76815 7.00014 3.30644 6.55332 4.13306 6.21821 5.02669 5.95755 5.95755M3.78306 11.9151 5.95755 11.9151C6.21821 12.846 6.55332 13.7396 7.00014 14.5662 5.63735 14.0971 4.49051 13.1439 3.78306 11.9151M3.1724 10.4257C3.05324 9.94913 2.97879 9.45018 2.97879 8.93634 2.97879 8.4225 3.05324 7.92355 3.1724 7.44695L5.68946 7.44695C5.62989 7.93845 5.58521 8.42995 5.58521 8.93634 5.58521 9.44272 5.62989 9.93422 5.68946 10.4257M8.93634 3.00113C9.55443 3.89476 10.0534 4.89264 10.3587 5.95755L7.51398 5.95755C7.8193 4.89264 8.31825 3.89476 8.93634 3.00113M14.0896 5.95755 11.8928 5.95755C11.6545 5.02669 11.3119 4.13306 10.8651 3.30644 12.2353 3.7756 13.3747 4.72137 14.0896 5.95755M8.93634 1.48939C4.81817 1.48939 1.48939 4.84051 1.48939 8.93634 1.48939 13.0471 4.82562 16.3833 8.93634 16.3833 13.0471 16.3833 16.3833 13.0471 16.3833 8.93634 16.3833 4.82562 13.0471 1.48939 8.93634 1.48939Z" fill="inherit" fill-rule="nonzero" fill-opacity="1" transform="matrix(1.00712 0 0 1 0 -1.41141)"/></g></g></g></svg>
johnepierce.github.io
</a>
<a href="http://www.aphasiatherapyonline.com/">
<svg width="18" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" overflow="hidden"><defs><clipPath id="clip0"><rect x="0" y="0" width="18" height="16"/></clipPath><clipPath id="clip1"><rect x="0" y="0" width="18" height="15"/></clipPath><clipPath id="clip2"><rect x="0" y="0" width="18" height="15"/></clipPath></defs><g clip-path="url(#clip0)"><g clip-path="url(#clip1)"><g clip-path="url(#clip2)"><path d="M12.1832 10.4257C12.2428 9.93422 12.2875 9.44272 12.2875 8.93634 12.2875 8.42995 12.2428 7.93845 12.1832 7.44695L14.7003 7.44695C14.8194 7.92355 14.8939 8.4225 14.8939 8.93634 14.8939 9.45018 14.8194 9.94913 14.7003 10.4257M10.8651 14.5662C11.3119 13.7396 11.6545 12.846 11.8928 11.9151L14.0896 11.9151C13.3747 13.1439 12.2353 14.0971 10.8651 14.5662M10.6789 10.4257 7.19375 10.4257C7.11928 9.93422 7.07459 9.44272 7.07459 8.93634 7.07459 8.42995 7.11928 7.931 7.19375 7.44695L10.6789 7.44695C10.7459 7.931 10.7981 8.42995 10.7981 8.93634 10.7981 9.44272 10.7459 9.93422 10.6789 10.4257M8.93634 14.8641C8.31825 13.9705 7.8193 12.98 7.51398 11.9151L10.3587 11.9151C10.0534 12.98 9.55443 13.9705 8.93634 14.8641M5.95755 5.95755 3.78306 5.95755C4.49051 4.72137 5.63735 3.76815 7.00014 3.30644 6.55332 4.13306 6.21821 5.02669 5.95755 5.95755M3.78306 11.9151 5.95755 11.9151C6.21821 12.846 6.55332 13.7396 7.00014 14.5662 5.63735 14.0971 4.49051 13.1439 3.78306 11.9151M3.1724 10.4257C3.05324 9.94913 2.97879 9.45018 2.97879 8.93634 2.97879 8.4225 3.05324 7.92355 3.1724 7.44695L5.68946 7.44695C5.62989 7.93845 5.58521 8.42995 5.58521 8.93634 5.58521 9.44272 5.62989 9.93422 5.68946 10.4257M8.93634 3.00113C9.55443 3.89476 10.0534 4.89264 10.3587 5.95755L7.51398 5.95755C7.8193 4.89264 8.31825 3.89476 8.93634 3.00113M14.0896 5.95755 11.8928 5.95755C11.6545 5.02669 11.3119 4.13306 10.8651 3.30644 12.2353 3.7756 13.3747 4.72137 14.0896 5.95755M8.93634 1.48939C4.81817 1.48939 1.48939 4.84051 1.48939 8.93634 1.48939 13.0471 4.82562 16.3833 8.93634 16.3833 13.0471 16.3833 16.3833 13.0471 16.3833 8.93634 16.3833 4.82562 13.0471 1.48939 8.93634 1.48939Z" fill="inherit" fill-rule="nonzero" fill-opacity="1" transform="matrix(1.00712 0 0 1 0 -1.41141)"/></g></g></g></svg>
aphasiatherapyonline.com
</a>
</p>
</div>
<div id="details">
<p>
<span><span id="yearsPost">1</span> years post PhD</span>
<span><span id="funding">$0k</span> funding | <span id="fundingCIA">$0k</span> as CIA </span>
<span><span id="pubsCount">0</span> publications </span>
<span><span>220</span> citations</span>
<span>H-index <span>9</span></span>
<!-- https://www.scopus.com/authid/detail.uri?authorId=57209304655 -->
</p>
</div>
<div id="content">
<div class="leftCol" >
<div id="education">
Education
</div>
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p><b>Doctor of Philosophy</b>
<br>La Trobe University Aug
2021
<br><i>A Comparison of Lower
Intensity Constraint-Induced and Multimodal Therapies in Chronic Aphasia</i>
<br>Supervisors: Prof
Miranda Rose, Dr Robyn O’Halloran & Prof Leanne Togher</p>
<p><b>Post Graduate Diploma in Health
Research Methodology (1st class)</b>
<br>La Trobe University
2011
<br><i>Alternating &
Sequential Motion Rates in Older Adults – Normative Data</i>
<br>Supervisors: Prof
Alison Perry & A/Prof Susan Cotton<b></b></p>
<p><b>Bachelor of Speech Pathology</b>
<br>La Trobe University
2008</p>
</div>
<a id="topArrow" href="#header">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-up-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z"/>
</svg>
</a>
<div class="clear"></div>
<div class="leftCol">
<div id="ProfessionalExperience">Professional Experience</div>
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p><b>Post Doctoral</b><b> Research Fellow – Centre of Research
Excellence in Aphasia Recovery and Rehabilitation</b>
<br>May 2021 ⇾ Present ||
Full-time
<br><i>Coordinator of Communication
Connect ($1.8m NHMRC Ideas Grant)</i></p>
<p><b>Grade 4 Speech
Pathologist – Cabrini Health</b>
<br>Sep 2017 ⇾ April 2021 || Permanent part-time
<br><i>Rehabilitation in inpatient,
outpatient and ambulatory services</i>
<br>-
Coordinator
of interdisciplinary Parkinson’s Program
<br>-
Senior
Subacute Speech Pathologist, managed team of six</p>
<p><b>Grade 3 Subacute Speech
Pathologist – Cabrini Health</b>
<br>May 2016 ⇾ Sep 2017 || Permanent part-time
<br><i>Rehabilitation in inpatient,
outpatient and ambulatory services</i></p>
<p><b>Movement Disorders
Program Coordinator – Peninsula Health</b>
<br>Sep 2013 ⇾ April 2016 || Permanent part-time
<br><i>Inpatient and outpatient program for Parkinson’s Disease</i></p>
<p><b>Grade 2 Speech
Pathologist – Peninsula Health</b>
<br>Sep 2010 ⇾ April 2016 || Permanent full-time
<br><i>Community rehab, subacute inpatient,
acute, residential care</i></p>
<p><b>Private Practice Speech Pathologist –
independent</b>
<br>Dec 2014 ⇾ June 2016 || After hours
<br><i>Rehabilitation of patients with traumatic brain injury </i></p>
<p><b>Grade 1 Speech
Pathologist – Peninsula Health</b>
<br>Mar 2009 ⇾ Sep 2010 || Permanent full-time<u></u>
<br><i>Sub-acute inpatient, acute &
community rehab</i></p>
<p><b>Grade 1 Speech
Pathologist – Victorian Rehabilitation Centre</b>
<br>Nov 2008 ⇾ Jan 2009 || Fixed term full-time
<br><i>Sub-acute inpatient</i></p>
</div>
<div class="clear"></div>
<div class="leftCol">
<div id="Awards">Awards</div>
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p>Presentation of the day - 2023, British Aphasiology Society Conference.</p>
<p>Best Aphasia Presentation - 2023, Stroke Conference, Melbourne.</p>
<p>Collaboration of Aphasia Trialists Resources and Recruitment Award - CATS 10 year anniversary awards 2023.</p>
<p>Tavistock Trust for Aphasia Student Prize - La Trobe
University 2020. <i>Awarded for excellence in work relating
to aphasia.</i></p>
</div>
<!-- <div class="leftCol">
Current Projects
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p><i>Aphasia Therapy Online – Vietnamese,
Mandarin, Greek</i></p>
<p><i> </i></p>
<p><i>M-MAT-tele</i></p>
<p><i> </i></p>
<p><i>Communication Connect</i></p>
<p><i> </i></p>
<p><i>Updating the Australian Aphasia
Rehabilitation Pathway.</i></p>
<p><i><span style='text-decoration:none'> </i></p>
<p><i>CHAT Maintain</i></p>
<p><i> </i></p>
<p><i>Fatigue and distress</i></p>
<p><i> </i></p>
<p><i>What makes a video aphasia-accessible? An
international project.</i></p>
<p>Finch, E., Pierce, J. E., Breitenstein, C.
(University of Muenster), Dow-Richards, C. (Aphasia Recovery Connection), Matos,
A. (University of Aveiro), Pais, A. (Trinity College Dublin), Charalambous,
M. (University of Fribourg; Cyprus University of Technology), Wallace, S.
(University of Queensland), Reed, A. (Aphasia Recovery Connection).</p>
<p><i>Establishing consensus on implementation
priorities for post-stroke aphasia services.</i> Shrubsole, K. (University of Queensland), Power, E.
(University of Technology Sydney), Lynch, E. (Flinders University), Wallace,
S. (University of Queensland).</p>
<p><i>Spontaneous swallowing rates in people with Parkinson's
compared to controls.</i><br>
(Funded research).</p>
<p>Pierce, J. E., Crouch,
H. (Monash Health), Vogel, A. (The University of Melbourne).</p>
</div> -->
<div class="clear"></div>
<div class="leftCol">
<div id="GrantsScholarships">Grants & Scholarships</div>
</div>
<div class="rightCol funding">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p><b>Pierce, J. E.</b>, Hill, A., Churilov, L., Carragher, M., Power, E., Wong, D., Dipper, L., Adikari, A., Rose, M. (2024). <i>Pioneering treatment for people with subtle post-stroke language impairments. </i>La Trobe University MRFF Kickstarter scheme. ($30,000 - successful).
</p>
<p><b>Pierce, J. E.</b>, Adam, T., Adam, J., Godecke, E., Hill, A., Johns, H., Kim, J., Nicholls, R., Power, E., Togher, L., Rose, M. (2024). <i>Maximising Aphasia Treatment and Recovery across Australia through Innovative Group Telerehabilitation</i>. MRFF Cardiovascular Mission. ($565,000 - successful).
</p>
<p>
Adikari, A., <b>Pierce, J. E.</b>, Alahakoon, D. (2024). <i>AI-empowered personalised communication assistant.</i> La Trobe Business School Small Grant, La Trobe University, Australia. ($5000 - successful).
</p>
<p><b>Pierce, J. E.</b>. (2023). <i>Future Leaders Grant</i>, Stroke Foundation, Melbourne, VIC. ($15,000 – successful).</p>
<p>Lanyon, L.,
Shiggins, C., <b>Pierce, J. E.</b>, Rademaker, B., Sayner, A., Ermert, M., Ermert, K., Pettigrove, K., Rose,
M. (2023). <i>Phase II investigation of the feasibility,
acceptability, and preliminary efficacy of a Hub-and-Spoke, Peer-Led
Community Aphasia Group program.</i> Early and Early-Mid Career Researcher Seed Grant,
Stroke Foundation, Melbourne, VIC. ($80,000 – successful).</p>
<p>Finch, E.,
Kelly, E., Farrell, A., Ownsworth, T., Pinkham, M.,
Brownsett, B., Copland, D., Jones, A., Fleming, J., Doig, E., Jones, A., <b>Pierce,
J. E.</b>, McPhail, S., Turkington, L., Little, L. (2022). CanCommunicate: Optimising communication for people with brain cancer and their families. Metro South Health Study Education and
Research Trust Account ($125,000 – successful).</p>
<p><b>Pierce, J.E.</b>, Copland, D., Godecke, E.,
Foster, A., Churilov, L., Nicholls, R., Tulloch, G., Barry, S., & Rose,
M. (2022).<i> M-MAT Tele: Maximising aphasia recovery through a
group telehealth intervention.</i> Early and Early-Mid Career Researcher Seed Grant,
Stroke Foundation, Melbourne, VIC. ($80,000 – <b>successful</b>).</p>
<p><b>Pierce, J.E.</b>
(2022). <i>Aphasia
Therapy Online - Vietnamese, Mandarin, Greek.</i> Telematics Trust. ($50,000
– <b>successful</b>).</p>
<p><b>Pierce, J.E.</b>
(2022). <i>Enabling
clinical implementation of evidence-based aphasia intervention: M-MAT Tele.</i> Speech Pathology Australia New
Researcher Grant. ($18,000 – <b>successful</b>).</p>
<p id="ABCgrant"><b>Pierce, J.E.</b>, Hill,
A., Wong, D. & Rose, M. (2021). <i>Addressing inequity in aphasia
rehabilitation: Adapting Multi-Modality Aphasia Therapy for telehealth</i>. La Trobe University Theme
Grant, Melbourne, VIC. ($25,000 – <b>successful</b>).</p>
<p><b>Pierce, J.E.</b>,
Togher, L., Copland, D., Nickels, L., Godecke, E., Foster, A., Churilov, L.,
Nicholls, R., Hayward, K., Rose, M. (2021).<i> Phase II exploration of Lower Intensity
Multi-Modality Aphasia Therapy (LIMMAT).</i> Lady Marigold Southey Aphasia Research Grant,
Stroke Foundation, Melbourne, VIC. ($100,000 – unsuccessful).</p>
<p>Campbell, J., Dignam,
J., Copland, D., Hill, A., Rose, M., Hersh, D., Shrubsole, K., <b>Pierce, J.E.</b>, Jamieson,
P. CHAT-Maintain: Maintaining language and quality of life gains with
low-dose technology-delivered aphasia therapy. Lady Marigold Southey Aphasia Research
Grant, Stroke Foundation, Melbourne, VIC. ($100,000 – <b>successful as CIH</b>).</p>
<p><b>Pierce, J.E.</b>,
Togher, L., Copland, D., Nickels, L., Godecke, E., Foster, A., Churilov, L., Nicholls,
R., Hayward, K., Rose, M. (2021).<i> Exploration of Lower Intensity Multi-Modality Aphasia
Therapy (LIMMAT).</i> CASS Foundation
Science Grant, CASS Foundation, Melbourne, VIC. ($65,000 – unsuccessful).</p>
<p><b>Pierce, J.E.</b>
& Vogel, A. (2019). <i>Spontaneous swallowing rates in people with Parkinson's
compared to controls</i>. Cabrini Foundation research grant, Melbourne, VIC. ($20,000 – <b>successful
</b>)</p>
<p><b>Pierce, J.E.</b>
& Vogel, A. (2018). <i>Spontaneous swallowing rates in people with Parkinson's
compared to controls</i>. Cabrini Foundation research grant, Melbourne, VIC. (unsuccessful)</p>
<p>Smart strokes
scholarship 2017 - travel scholarship.<br>
Melbourne, VIC. ($500 - <b>successful</b>)</p>
</div>
<div class="clear"></div>
<div class="leftCol">
<div id="JournalArticles">Peer Reviewed Publications</div>
</div>
<div class="rightCol JournalArticles">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p>
Rose, M. L., Wilcox, C., Attard, M., <b>Pierce, J. E.</b>, Shiggins, C., Lanyon, L., Wong, D., Fenner, P., & Carragher, M. (early online). Acceptability, feasibility and preliminary efficacy of the Peer-led Hub-and-Spoke Community Aphasia Group program. Aphasiology, 0(0), 1–22. <a href="https://doi.org/10.1080/02687038.2024.2410766">https://doi.org/10.1080/02687038.2024.2410766</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/02687038.2024.2410766"></div>
</td>
</tr>
</table>
<p>
Hernandez, N. J., Pettigrove, K., Mellahn, K., Isaksen, J. K., <b>Pierce, J. E.</b>, & Rose, M. L. (2024). Carers in post-stroke aphasia: a scoping review of interventions and outcomes beyond communication partner training. Disability and Rehabilitation, 1–12. <a href="https://doi.org/10.1080/09638288.2024.2399221">https://doi.org/10.1080/09638288.2024.2399221</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09638288.2024.2399221"></div>
</td>
</tr>
</table>
<p>
Shrubsole, K., Stone, M., Cadilhac, D. A., Kilkenny, M. F., Power, E., Lynch, E., <b>Pierce, J. E.</b>, Copland, D., Godecke, E., Burton, B., Brogan, E. & Wallace, S. J. (2024). Establishing Quality Indicators and Implementation Priorities for Post-Stroke Aphasia Services Through End-User Involvement. Health expectations: an international journal of public participation in health care and health policy, 27(5), e14173. <a href='doi.org/10.1111/hex.14173'>https://doi.org/10.1111/hex.14173</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1111/hex.14173"></div>
</td>
</tr>
</table>
<p>
Pallewela, N., Alahakoon, D., Adikari, A., <b>Pierce, J. E.</b>, & Rose, M. L. (2024). Optimizing Speech Emotion Recognition with Machine Learning Based Advanced Audio Cue Analysis. <i>Technologies, 12</i>(7), Article 7. <a href="https://doi.org/10.3390/technologies12070111">https://doi.org/10.3390/technologies12070111</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.3390/technologies12070111"></div>
</td>
</tr>
</table>
<p>
<b>Pierce, J. E.</b>, Hill, A. J., Wong, D., Pitt, R., & Rose, M. L. (2024). Adapting a group-based, multimodal aphasia treatment for telehealth – co-design of M-MAT Tele. <i>Disability and Rehabilitation: Assistive Technology, 20</i>(1). <a href="https://doi.org/10.1080/17483107.2024.2366423">https://doi.org/10.1080/17483107.2024.2366423</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/17483107.2024.2366423"></div>
</td>
</tr>
</table>
<p>
<b>Pierce, J. E.</b>, Cavanaugh, R., Harvey, S., Dickey, M. W., Nickels, L., Copland, D., Togher, L., Godecke, E., Meinzer, M., Rai, T., Cadilhac, D. A., Kim, J., Hurley, M., Foster, A. M., Carragher, M., Wilcox, C., & Rose, M. L. (2024). High-Intensity Aphasia Intervention Is Minimally Fatiguing in Chronic Aphasia: An Analysis of Participant Self-Ratings From a Large Randomized Controlled Trial. <i>Stroke, 55</i>(7).<a href='https://doi.org/10.1161/STROKEAHA.123.046031'>https://doi.org/10.1161/STROKEAHA.123.046031</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1161/STROKEAHA.123.046031"></div>
</td>
</tr>
</table>
<p>
Watanabe, M., Cartwright, J., & <b>Pierce, J. E.</b> (2024). Positive effects of speech and language therapy group interventions in primary progressive aphasia: A systematic review. <i>International Journal of Language & Communication Disorders, 59</i>(5), 1832-1849. <a href='https://doi.org/10.1111/1460-6984.13031'>https://doi.org/10.1111/1460-6984.13031</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1111/1460-6984.13031"></div>
</td>
</tr>
</table>
<p>
Griffin-Musick, J., Harvey, S., <b>Pierce, J. E.</b>, Fahey, D., & Off, C. (2024). The “I” in ICAPs: examining treatment intensity under the microscope. <i>Aphasiology, 39</i>(1), 11-39. <a href="https://doi.org/10.1080/02687038.2024.2317920">https://doi.org/10.1080/02687038.2024.2317920</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/02687038.2024.2317920"></div>
</td>
</tr>
</table>
<p>
Kim, J., Rose, M. L., <b>Pierce, J. E.</b>, Nickels, L., Copland, D., Togher, L., Godecke, E., Meinzer, M., Rai, T., Hurley, M., Foster, A., Carragher, M., Wilcox, C., & Cadilhac, D. A. (2024). High-intensity aphasia therapy is cost-effective in people with post-stroke aphasia: Evidence from the COMPARE trial. <i>Stroke, 55</i>(3), 705-714. <a href="https://doi.org/10.1161/STROKEAHA.123.045183">https://10.1161/STROKEAHA.123.045183</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1161/STROKEAHA.123.045183"></div>
</td>
<td>
1 citation
</td>
</tr>
</table>
<p>
Eley, E., Rose, M. L., van den Berg, M., <b>Pierce, J. E.</b>, Foster, A., Lamborn, E., D'Souza, S., Godecke, E., Lanyon, L., Shiggins, C., Kneebone, I., Baker, C. (2023). The effects of cognitive-linguistic interventions to treat aphasia in the first 90 days post stroke: A systematic review. <i>Aphasiology, 38</i>(4), 1351-1376.
<a href="https://doi.org/10.1080/02687038.2023.2282659">https://doi.org/10.1080/02687038.2023.2282659</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/02687038.2023.2282659"></div>
</td>
<td>
1 citation
</td>
</tr>
</table>
<p>
<b>Pierce, J. E.</b> (2024). AI-generated images for speech pathology - an exploratory application to aphasia assessment and intervention materials. <i>American Journal of Speech-Language Pathology, 33</i>(1), 443-451.<a href="https://doi.org/10.1044/2023_AJSLP-23-00142">https://doi.org/10.1044/2023_AJSLP-23-00142</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1044/2023_AJSLP-23-00142"></div>
</td>
<td>
1 citation
</td>
</tr>
</table>
<p>
Finch, E., <b>Pierce, J. E.</b>, Pais, A. M., Dow-Richards, C., Reed, A., Charalambous, M., Matos, M. A., Wallace, S. J., & Breitenstein, C. (2023). Preferences of people with post-stroke aphasia for aphasia research videos: An international project. <i>Aphasiology, 38</i>(4), 758-769. <a href="https://doi.org/10.1080/02687038.2023.2229030">https://doi.org/10.1080/02687038.2023.2229030</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/02687038.2023.2229030"></div>
</td>
<td>
1 citation
</td>
</tr>
</table>
<p>
Adikari, A., Hernandez, N., Alahakoon, D., Rose, M. L., & <b>Pierce, J. E.</b> (2023). From concept to practice: a scoping review of the application of AI to aphasia diagnosis and management. <i>Disability and Rehabilitation, 46</i>(7), 1288-1297. <a href="https://doi.org/10.1080/09638288.2023.2199463">https://doi.org/10.1080/09638288.2023.2199463</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09638288.2023.2199463"></div>
</td>
<td>
</td>
</tr>
</table>
<p>
<b>Pierce, J. E.</b>, O’Halloran, R., Togher, L., Nickels, L., Copland, D., Godecke, E., Meinzer, M., Rai, T., Cadilhac, D. A., Kim, J., Hurley, M., Foster, A., Carragher, M., Steel, G., & Rose, M. L. (2024). Acceptability, feasibility and preliminary efficacy of low-moderate intensity Constraint Induced Aphasia Therapy and Multi-Modality Aphasia Therapy in chronic aphasia after stroke. <i>Topics in Stroke Rehabilitation, 31</i>(1), 44-56. <a href="https://doi.org/10.1080/10749357.2023.2196765">https://doi.org/10.1080/10749357.2023.2196765</a>
</p>
<table>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/10749357.2023.2196765"></div>
</td>
<td>
</td>
</tr>
</table>
<p>Harvey,S., Rose, M. L., Brogan, E., <b>Pierce, J. E.</b>, Godecke, E., Brownsett, S. L. E., Churilov, L., Copland, D., Dickey, M. W., Dignam, J., Lannin, N. A., Nickels, L., Bernhardt, J., & Hayward, K. S. (2022). Examining dose frameworks to improve aphasia rehabilitation research. <i>Archives of Physical Medicine and Rehabilitation, 104</i>(5), 830-838. <a href="https://doi.org/10.1016/j.apmr.2022.12.002">https://doi.org/10.1016/j.apmr.2022.12.002</a>
</p>
<table>
<tbody>
<tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1016/j.apmr.2022.12.002"></div>
</td>
<td>
</td>
</tr></tbody>
</table>
<p>Rose, M., Nickels, L., Copland, D., Togher, L.,
Godecke, E., Meinzer, M., Rai, T., Cadilhac, D., Kim, J., Hurley, M., Foster,
A., Carragher, M., Wilcox, C., <b>Pierce, J. E</b>., Steel, G. (2022).
Results of the COMPARE trial of constraint-induced or multimodality aphasia
therapy compared with usual care in chronic poststroke aphasia. <i>Journal of
Neurology, Neurosurgery and Psychiatry, 93</i>(6), 573-581. <a
href="https://doi.org/10.1136/jnnp-2021-328422">https://doi.org/10.1136/jnnp-2021-328422</a></p>
<p class="lineBreak"><a
href="https://www.youtube.com/watch?v=dT7Sic8Gimc">
<img class="inlineicon" src="images/image006.png"/></a>
</a> <a
href="https://www.youtube.com/watch?v=dT7Sic8Gimc"><i>Video
abstract</i></a><i> </i></p>
<table>
<tbody><tr>
<td>
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1136/jnnp-2021-328422"></div>
</td>
<td>
</td>
</tr>
<tr><b><i>Cited in <a href='https://www.nice.org.uk/guidance/ng236'>NICE guideline - stroke rehabilitation for adults</a></i></b></tr>
</tbody></table>
<p>Menahemi-Falkov, M., Breitenstein, C., <b>Pierce,
J. E</b>., Hill, A. J., O'Halloran, R., & Rose, M. L. (2021). A
systematic review of maintenance following intensive therapy programs in
chronic post-stroke aphasia: importance of individual response analysis<i>.
Disability and Rehabilitation, 44</i>(20), 5811-5826. <a
href="https://doi.org/10.1080/09638288.2021.1955303">https://doi.org/10.1080/09638288.2021.1955303</a>
<p class="lineBreak">
<a
href="https://figshare.com/articles/dataset/A_systematic_review_of_maintenance_following_intensive_therapy_programs_in_chronic_post-stroke_aphasia_importance_of_individual_response_analysis/15157621?file=29121391"></a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a
href="https://figshare.com/articles/dataset/A_systematic_review_of_maintenance_following_intensive_therapy_programs_in_chronic_post-stroke_aphasia_importance_of_individual_response_analysis/15157621?file=29121391"><i>Video abstract</i></a><i></i></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09638288.2021.1955303"></div>
</td>
<td width=159 valign=top >
<div></div>
</td>
<td width=159 valign=top >
<div>FWCI: 1.95</div>
</td>
</tr>
<tr><b><i>Cited in ASHA's <a href="https://apps.asha.org/EvidenceMaps/Articles/ArticleSummary/429ffb99-e67c-4037-8051-61dfcaadf87d">Evidence Map</a>; cited in UK Stroke Guidelines</i></b></tr>
</table>
<p>Rose, M. L., <b>Pierce, J. E., </b>Scharp,
V., Off, C., Babbitt, E., Griffin-Musick, J., &
Cherney, L. (2021). Developments in the application of Intensive
Comprehensive Aphasia Programs: An international survey of practice. <i>Disability
and Rehabilitation, 44</i>(20), 5863-5877. <a
href="https://doi.org/10.1080/09638288.2021.1948621">https://doi.org/10.1080/09638288.2021.1948621</a> </p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09638288.2021.1948621"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
FWCI: 1.62
</td>
</tr>
</table>
<p>Harvey, S., Carragher, M., Dickey, M. W., <b>Pierce,
J. E</b>., & Rose, M. L. (2020). Dose effects in behavioural treatment of
post-stroke aphasia: a systematic review and meta-analysis. <i>Disability and
Rehabilitation, 93</i>(1), 1–12. <a
href="https://doi.org/10.1080/09638288.2020.1843079">https://doi.org/10.1080/09638288.2020.1843079</a></p>
<p class="lineBreak"><a
href="https://figshare.com/articles/dataset/A_systematic_review_of_maintenance_following_intensive_therapy_programs_in_chronic_post-stroke_aphasia_importance_of_individual_response_analysis/15157621?file=29121391">
</a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a
href="https://www.tandfonline.com/doi/suppl/10.1080/09638288.2020.1843079?scroll=top"><i>Video abstract</i></a><i></i></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09638288.2020.1843079"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
FWCI: 4.82
</td>
</tr>
<tr><b><i>Cited in ASHA's <a href="https://apps.asha.org/EvidenceMaps/Articles/ArticleSummary/ae168cdd-921c-4a72-9394-8fad14b5c7c8">Evidence Map</a>, cited in <a href='https://www.nice.org.uk/guidance/ng236'>NICE guideline - stroke rehabilitation for adults</a></i></b></tr>
</table>
<p>Harvey, S. R., Carragher, M., Dickey, M.
W., <b>Pierce, J. E</b>., & Rose, M. L. (2020). Treatment dose in
post-stroke aphasia: A systematic scoping review. <i>Neuropsychological
Rehabilitation, 31</i>(10), 1629-1660. <a
href="https://doi.org/10.1080/09602011.2020.1786412">https://doi.org/10.1080/09602011.2020.1786412</a>
<br>
<a
href="https://www.tandfonline.com/doi/suppl/10.1080/09638288.2020.1843079?scroll=top">
</a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a href="https://vimeo.com/437127608"><i>Video abstract</i></a><i></i></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09602011.2020.1786412"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
FWCI: 1.64
</td>
</tr>
<tr><b>Cited in ASHA’s Aphasia </b><a
href="https://apps.asha.org/EvidenceMaps/Articles/ArticleSummary/8db4b3d6-d39c-40cc-8ae2-4f584b9226a9"><b>evidence map</b></a></tr>
</table>
<p><b>Pierce, J. E.</b>, O’Halloran, R., Menahemi-Falkov, M., Togher, L.,
& Rose, M. (2020). Comparing higher and lower weekly treatment
intensity for chronic aphasia: A systematic review and meta-analysis.<i>
Neuropsychological</i> Rehabilitation, 31(8), 1289-1313. <a
href="https://doi.org/10.1080/09602011.2020.1768127">https://doi.org/10.1080/09602011.2020.1768127</a>
<br>
<a
href="https://figshare.com/articles/dataset/A_systematic_review_of_maintenance_following_intensive_therapy_programs_in_chronic_post-stroke_aphasia_importance_of_individual_response_analysis/15157621?file=29121391">
</a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a href="https://vimeo.com/427783862"><i>Video abstract –
standard</i></a><i> | </i><a href="https://vimeo.com/427784453">
</a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a
href="https://vimeo.com/427784453"><i>Video abstract – aphasia friendly</i></a><i></i></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09602011.2020.1768127"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
FWCI 4.1
</td>
</tr>
<tr><b>Cited in ASHA’s Aphasia </b><a
href="https://apps.asha.org/EvidenceMaps/Articles/ArticleSummary/880e2f9c-1ab6-4bf8-80de-aac5afb5a20b"><b>evidence map</b></a></tr>
</table>
<p><b>Pierce, J. E</b>., O’Halloran, R., Togher, L., & Rose, M.
(2019). What Is Meant by “Multimodal Therapy” for Aphasia? American Journal
of Speech-Language Pathology. American Journal of Speech-Language Pathology,
28(2), <a
href="http://dx.doi.org/10.1044/2018_AJSLP-18-0157">http://dx.doi.org/10.1044/2018_AJSLP-18-0157</a> <br>
<a
href="https://doi.org/10.23641/asha.7646717">
</a>
<img class="inlineicon" src="images/image006.png"/>
</a> <a href="https://doi.org/10.23641/asha.7646717"><i>Video abstract</i></a> (1526 views) </p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.23641/asha.7646717"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
FWCI: 1.43
</td>
</tr>
</table>
<p>Rose, M. L., Ali, M., Elders, A., Godwin, J., Sandri, A. K., Williams, L. J., Williams, L. R., VandenBerg, K., Abel, S., Abo, M., Becker, F., Bowen, A., Brandenburg, C., Breitenstein, C., Copland, D., Cranfill, T., Pietro-Bachmann, M. D., Enderby, P., Fillingham, J., Pierce, J. E., … Brady, M. C. (2018). Tidier descriptions of speech and language therapy interventions for people with aphasia; consensus from the RELEASE collaboration. <i>Aphasiology, 32</i>(S1), 183–186.</p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/02687038.2018.1487021"></div>
</td>
<td width=159 valign=top >
</td>
</tr>
</table>
<p><b>Pierce, J. E.</b>, Menahemi-Falkov, M., O'Halloran,
R., Togher, L., & Rose, M. L. (2017). Constraint and multimodal approaches to therapy for chronic
aphasia: A systematic review and meta-analysis.
<i>Neuropsychologi</i><i
>cal
Rehabilitation, </i>29(7), 1–37. <a
href="https://doi.org/10.1080/09602011.2017.1365730">https://doi.org/10.1080/09602011.2017.1365730</a></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1080/09602011.2017.1365730"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
</td>
</tr>
<tr><b><i>Cited in ASHA's <a href="https://apps.asha.org/EvidenceMaps/Articles/ArticleSummary/778e4c32-acb0-498a-88ff-eb66f7f6751f">Evidence Map</a>, cited in French National Authority for Health (Haute Autorité de Santé) Clinical Guideline for chronic stroke rehabilitation</i></b></tr>
</table>
<p><b>Pierce, J. E.</b>, Cotton, S., & Perry, A. (2013). Alternating &
sequential motion rates in older adults. <i>International Journal of Language
& Communication Disorders, 48</i>(3): 257-264. <a href="http://doi.org/10.1111/1460-6984.12001">http://doi.org/10.1111/1460-6984.12001</a></p>
<table >
<tr>
<td width=159 valign=top >
<div class='altmetric-embed altmetric' data-badge-type='donut' data-doi="10.1111/1460-6984.12001"></div>
</td>
<td width=159 valign=top >
</td>
<td width=159 valign=top >
</td>
</tr>
</table>
</div>
<div class="clear"></div>
<div class="leftCol">
<div id="BookChapters">Book Chapters</div>
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p>Rose, M. L., <b>Pierce, J. E.</b> &
Harvey, S. (2022). Single-Case Experimental Designs in Health Research. In P.
Liamputtong (Ed.), <i>Research Methods in Health - Foundations for
Evidence-Based Practice</i> (4th ed.) Oxford University Press.</p>
<p><b>Pierce, J. E.</b> & Vogel, A. (2023). Clinical scenario - Questions about diagnosis: examples of appraisals from different health
professions, In Hoffmann, T., Bennett, S., and Del Mar, S. (Eds.)
<i>Evidence-Based Practice across the Health Professions.</i> Elsevier. 4th Edition. Elsevier. 9780729598545
9</p>
</div>
<div class="clear"></div>
<div class="leftCol">
<div id="Presentations">Presentations</div>
</div>
<div class="rightCol">
<div class="rightColMask-container">
<div class="rightColMask"></div>
</div>
<p><b>Pierce, J.E.</b>, Rose, M. L., Alahakoon, D., Wong, D., Ryan, B., Copland, D., Power, E., Kneebone, I., Togher, L., Usherwood, T., Hill, A., Sheldrick, T., Attard, M., Shiggins, C., Rietdijk, R., Lanyon, L., Cadilhac, D., Hill, K., Churilov, L., Worrall, L., Hernandez, N., Lindley, R., Adikari, A., & Pallewela, N. (2025, February). Communication Connect: AI-enhanced self-management for communication disability from stroke and traumatic brain injury. <i>Digital Health Week 2025</i>, Melbourne & Sydney, Australia.</p>
<p><b>Pierce, J.E.</b>, Adikari, A., Alahakoon, D., Wong, D., Ryan, B., Kneebone, I., Hernandez, N., Pallewela, N., & Rose, M. (2024, December). Mood Compass: A co-designed tool for monitoring and management of mood in people with communication disability <b>[Invited speaker]</b>. OPSYRIS Conference, Australia.</p>
<p><b>Pierce, J.E.</b> (April, 2024). Communication Connect. <i>Speech Pathologists in Adult Rehabilitation</i>, Melbourne, Australia.</p>
<p><b>Pierce, J. E.</b>, Adikari, A., Pallewela, N., Hernandez, N., Rose, M., Alahakoon, D. (September, 2024). <i>Artificial Intelligence for Aphasia: Opportunities, Challenges and Risks.</i> British Aphasiology Society International Conference, Leicester, United Kingdom.</p>
<p><b>Pierce, J. E.</b>, Eley, E., Pitt, R., Wong, D., Hill, A., Rose, M. L. (July, 2024). <i>Adapting Group-Based Aphasia Treatment for Telehealth: Development and Evaluation of Multi-Modality Aphasia Therapy Tele.</i> International Aphasia Rehabilitation Conference, Brisbane, Australia.</p>
<p>Wong, D., Rose, A., Blake, J., Power, E., Kneebone, I., Stolwyk, R., Gracey, F., Thomas, S., <b>Pierce, J. E.</b>, & Evans, J. (May, 2024). Towards accessible, tailored assessment of mood in people with moderate-severe cognitive and communication impairments following acquired brain injury. [Datablitz presentation]. 21st Neuropsychological Rehabilitation Special Interest Group, World Federation of Neurorehabilitation (NR-SIG-WFNR) conference, Coimbra, Portugal.</p>
<p><b>Pierce, J. E.</b>, Hill, A., Wong, D., Pitt, R., Rose, M. (November, 2023). <i>Co-design and testing of Multi-Modality Aphasia Therapy Tele, a telehealth adaptation of an evidence-based, group aphasia intervention.</i> Aphasiology Symposium of Australasia, Perth, Australia.</p>
<p><b>Pierce, J. E.</b> (November, 2023). <i>Exploring AI-generated images for aphasia therapy and assessments.</i> Aphasiology Symposium of Australasia, Perth, Australia.</p>
<p><b>Pierce, J. E.</b>, Lazzarotto, M. T., Vuong, G., & Kambanaros, M. (November, 2023). <i>Development of free online aphasia therapy for Mandarin, Vietnamese, and Greek speakers.</i> Aphasiology Symposium of Australasia, Perth, Australia.</p>
<p><b>Pierce, J. E.</b>, Hill, A., Wong, D., Pitt, R., Rose, M. (October, 2023). <i>Development and testing of M-MAT Tele – a telehealth adaptation of a group-based intervention for aphasia. Logopädie Digital</i> <b>[invited speaker]</b>, Germany.</p>
<p><b>Pierce, J. E.</b>, Hernandez, N., Alahakoon, D., Adikari, A., Pallewela, N., Sheldrick, T., Hill, A., Ryan, B., Wong, D., Copland, D., Power, E., Kneebone, I., Togher, L., Usherwood, T., Shiggins, C., Cadilhac, D., Hill, K., Churilov, L., Worrall, L., Lanyon, L., Attard, M., Rietdijk, R., Lindley, R. I., Rose, M. L. (August, 2023). <i>Highest Priority Challenges for People with Communication Disability after Discharge.</i> British Aphasiology Society Conference, 2023, London, UK.</p>
<p><b>Pierce, J. E.</b>, Hernandez, N., Alahakoon, D., Adikari, A., Pallewela, N., Sheldrick, T., Hill, A., Ryan, B., Wong, D., Copland, D., Power, E., Kneebone, I., Togher, L., Usherwood, T., Shiggins, C., Cadilhac, D., Hill, K., Churilov, L., Worrall, L., Lanyon, L., Attard, M., Rietdijk, R., Lindley, R. I., Rose, M. L. (August, 2023). <i>What are the Highest Priority Challenges for People with Communication Disability after Discharge?</i> Stroke 2023, Melbourne, Australia.</p>
<p><b>Pierce, J. E.</b> (August, 2023). <i>Co-designing digital solutions for aphasia. </i>Loddon Mallee Region Speech Pathology Week Event <b>[invited speaker]</b>, Bendigo, Australia.</p>
<p><b>Pierce, J. E.</b>(August, 2023). <i>Technology Solutions to Post Stroke Aphasia. </i>Congresso Fonoaudiológico de Bauru <b>[invited speaker]</b>, São Paulo, Brazil.</p>
<p><b>Pierce,
J. E.</b>,
Adikari, A., Hernandez, N., Pallewala, N.,
Alahakoon, D., Copland, D., Hill, A., Power, E., Ryan, B., Togher, L.,
Usherwood, T., Wong, D., Rose, M. (November, 2022). <i>AI
in Aphasia - Past, present and future.</i>
Aphasiology Symposium of Australasia, Melbourne, Australia. </p>
<p><b>Pierce,
J. E.</b>,
Alahakoon, D., Attard, M., Cadilhac, D., Churilov, L., Copland, D.,
Hernandez, N., Hill, A., Hill, K., Kneebone, I., Lanyon, L., Togher, L.,
Lindley, R., Power, E., Rietdijk, R., Ryan, B., Sheldrick, T., Shiggins, C., Usherwood,
T., Wong, D., Worrall, L., Rose, M. L. (August,
2022). <i>“The Big Black Hole” - Experiences of Communication Disability after
Stroke from Patient, Caregiver and Clinician Perspectives. Smart Strokes,
Sydney, Australia.
</i></p>
<p><b>Pierce,
J. E.</b>,
Wallace, S., Harvey, S., Baker, C., Shiggins, C., Carragher, M., Rose, M. (May, 2022). <i>Creating a Video Abstract for your research</i>
[workshop]. Australasian Society for the Study of Brain Impairment
Conference, Perth, Australia.</p>
<p><b>Pierce,
J. E.</b>,
Pais, A., & Finch, E. (2021, December). Aphasia-friendly video
project/how to create a research video for a person with aphasia. Collaboration
of Aphasia Trialists Virtual Event Week.<b></b></p>
<p><b>Pierce,
J. E. </b>(2021,
October). Low-moderate intensity aphasia intervention – a pilot trial of
Constraint Induced Aphasia Therapy and Multi-Modality Aphasia Therapy <b>[invited
speaker]</b>. Aphasia CRE Seminar, Melbourne, Australia.</p>
<p><b>Pierce,
J. E.</b>
(2021, October). <i>Closing the loop: Using Phase III trial data to guide a
basket Bayesian Optimal Phase IIa trial design</i> <b>[invited
speaker].</b> Stroke Society of Australasia, Perth, Australia.</p>
<p><b>Pierce,
J. E.</b>,
Togher, L., O'Halloran, R., Cadilhac, D., Copland, D., Foster, A., Godecke, E.,
Kim, J., Hurley, M., Nickels, L., Meinzer, M., Rai, T; Wilcox, C., Rose, M. L.
(2021, September). <i>Comparison of Constraint Induced Aphasia Therapy and
Multi-Modality Aphasia Therapy at a Low-Moderate Intensity – A Substudy Randomised Controlled Trial. </i>British
Aphasiology Society Conference, Newcastle, United Kingdom.</p>
<p><b>Pierce,
J. E.</b>,
Togher, L., O'Halloran, R., Cadilhac, D., Copland, D., Foster, A., Godecke, E.,
Kim, J., Hurley, M., Nickels, L., Meinzer, M., Rai, T; Wilcox, C., Rose, M. L.
(2021, July). <i>Comparison of Constraint Induced Aphasia Therapy and
Multi-Modality Aphasia Therapy at a Low-Moderate Intensity – A Substudy Randomised Controlled Trial. </i>6th Pacific Rim
Conference, Melbourne, Australia.</p>
<p><b>Pierce, J. E.</b> (2021, June). <i>Dysphagia
research updated</i> <b>[invited speaker]</b>. Parkinson’s Victoria – Speech
Pathology Community of Practice [online].</p>
<p><b>Pierce, J. E.</b>, Menahemi-Falkov, M., O'Halloran,
R., Togher, L., & Rose, M. (2021,
June). <i>Looking
at the relationship between intense or spread out therapy
– both can be positive.</i> Australian Aphasia Association Conference [online].<i></i></p>
<p><b>Pierce, J. E.</b>, Menahemi-Falkov, M., O'Halloran,
R., Togher, L., & Rose, M. (2021,
May). <i>Review
of treatment intensity in chronic aphasia. </i>Speech Pathologists in Adult
Rehabilitation [online seminar].<b></b></p>
<p>Rose,
M., Copland, D., Nickels, L., Togher, L., Meinzer, M., Rai, T., Kim, J.,
Cadilhac, D., Hurley, M., Wilcox, C., Foster, A., Carragher, M., <b>Pierce, J.
E.</b> & Godecke, E. (2021, May). <i>Primary and secondary results of the
COMPARE randomized controlled trial of Constraint Induced Aphasia
Therapy-Plus, Multimodality Aphasia Therapy and usual care for chronic
post-stroke aphasia</i>. Clinical Aphasiology Conference [virtual].</p>
<p>Rose,
M., Copland, D., <b>Pierce, J. E.</b>, Harvey, S., Brogan, E., Brownsett, S.,
Godecke, E., Carragher, M., & Dickey, M. W. (2021, May). <i>Revisiting
concepts of treatment dose and intensity in aphasia rehabilitation. </i>Clinical
Aphasiology Conference [virtual].</p>
<p>Pierce,
J. E. (2020, December). <i>Research Impact and Dissemination </i>[virtual
panel]. American Speech-Language Hearing Association. <b>Invited speaker.</b></p>
<p><b>Pierce,