-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathspeakers.json
More file actions
8787 lines (8787 loc) · 405 KB
/
speakers.json
File metadata and controls
8787 lines (8787 loc) · 405 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "A. Paget Wilkes",
"code": "a_paget_wilkes",
"description": "",
"file": "a_paget_wilkes.json",
"image": ""
},
{
"name": "Aaron Clark",
"code": "aaron_clark",
"description": "",
"file": "aaron_clark.json",
"image": ""
},
{
"name": "Aaron Dunlop",
"code": "aaron_dunlop",
"description": "Aaron Dunlop ( - )\r\nListen to freely downloadable audio sermons by the speaker Aaron Dunlop in mp3 format. Mr. Dunlop who is originally from Northern Ireland, graduated from the Geneva Reformed Seminary, SC. and is currently pioneering a Free Presbyterian Church in Victoria, British Columbia.\r\nReformed in Doctrine, believing in the divine authority and verbal inspiration of the Bible, and the great fundamental doctrines of grace it contains. The Scriptures alone are the supreme authority in matters of faith and practice. Separatist in Practice, believing and practicing the doctrine of Biblical separatism. In accordance with this, the Free Presbyterian Church has no association with the modern Ecumenical or Charismatic movements, nor will it fellowship with any church which has departed from the fundamental doctrines of the Word of God.",
"file": "aaron_dunlop.json",
"image": ""
},
{
"name": "Aaron Ernst",
"code": "aaron_ernst",
"description": "",
"file": "aaron_ernst.json",
"image": ""
},
{
"name": "Aaron Hurst",
"code": "aaron_hurst",
"description": "",
"file": "aaron_hurst.json",
"image": ""
},
{
"name": "Abigail Miller",
"code": "abigail_miller",
"description": "",
"file": "abigail_miller.json",
"image": ""
},
{
"name": "Abner Kauffman",
"code": "abner_kauffman",
"description": "",
"file": "abner_kauffman.json",
"image": ""
},
{
"name": "Acapella Anabaptist Hymns",
"code": "acapella_anabaptist_hymns",
"description": "",
"file": "acapella_anabaptist_hymns.json",
"image": ""
},
{
"name": "Acapella Singing My Anchor Holds",
"code": "acapella_singing_my_anchor_holds",
"description": "",
"file": "acapella_singing_my_anchor_holds.json",
"image": ""
},
{
"name": "Acapella Singing Unto Him",
"code": "acapella_singing_unto_him",
"description": "",
"file": "acapella_singing_unto_him.json",
"image": ""
},
{
"name": "Achille Blaize",
"code": "achille_blaize",
"description": "",
"file": "achille_blaize.json",
"image": ""
},
{
"name": "Adams David",
"code": "adams_david",
"description": "",
"file": "adams_david.json",
"image": ""
},
{
"name": "Adrian Rogers",
"code": "adrian_rogers",
"description": "Adrian Rogers (1931 - 2005)\r\nListen to freely downloadable audio sermons by the speaker Adrian Rogers in mp3 format. Served three terms as president of the Southern Baptist Convention (1979\u00e2\u20ac\u201c1980 and 1986\u00e2\u20ac\u201c1988). He was also a Southern Baptist pastor whose church services aired on television, and a conservative author.\r\nRogers was instrumental in the Southern Baptist denomination's shift towards the right that began in the late 1970s, as he was elected president of the denomination during a theological controversy within the denomination known as the Soutnern Baptist Convention Conservative resurgence.",
"file": "adrian_rogers.json",
"image": ""
},
{
"name": "Adrian Warnock",
"code": "adrian_warnock",
"description": "Adrian Warnock ( - )\r\nListen to freely downloadable audio sermons by the speaker Adrian Warnock in mp3 format. Adrian Warnock is part of the leadership team of Jubilee Church, London, where he has preached regularly for more than ten years. His book, Raised With Christ \u00e2\u20ac\u201c How The Resurrection Changes Everything was published by Crossway January 2010.\r\nAdrian Warnock started blogging in April 2003, and has written more than 5000 posts since then. He was born in the UK. He is married to Andr\u00c3\u00a9e and the father of five children \u00e2\u20ac\u201c Tamasin, Henry, Charis, Joel and George. You can read the wedding vows they used and Adrian often posts about his personal life.",
"file": "adrian_warnock.json",
"image": ""
},
{
"name": "Aeron Morgan",
"code": "aeron_morgan",
"description": "Aeron Morgan (1934 - 2013)\r\nListen to freely downloadable audio sermons by the speaker Aeron Morgan in mp3 format. Aeron Morgan is a Welshman, born in Aberaman in the Aberdare Valley, South Wales. Raised in a Christian home, his godly parents had a great influence on his life, and he was converted at a very early age in the local Pentecostal Mission. The assembly was truly a 'sending church,' privileged to see many go forth as missionaries, pastors, and evangelists to different parts of the world. \r\nFrom his parents, and a through steady stream of others touched by God, brother Morgan's early life was enriched by redeemed drunkards, itinerant preachers who would stay with the Morgans when Aeron was young, ( one of whom would lead him into personal, devotional Bible studies,\"We will just study the book of Colossians this week, alright Aeron?\"), and devout Pentecostal christians of all walks of life who stamped their impression on this man of God.",
"file": "aeron_morgan.json",
"image": ""
},
{
"name": "Aileen Gilchrist",
"code": "aileen_gilchrist",
"description": "",
"file": "aileen_gilchrist.json",
"image": ""
},
{
"name": "Aimee Semple McPherson",
"code": "aimee_semple_mcpherson",
"description": "Aimee Semple McPherson (1890 - 1944)\r\nListen to freely downloadable audio sermons by the speaker Aimee Semple McPherson in mp3 format. Also known as Sister Aimee, was a Canadian-American Los Angeles\u00e2\u20ac\u201cbased evangelist and media celebrity in the 1920s and 1930s. She founded the Foursquare Church. McPherson has been noted as a pioneer in the use of modern media, especially radio, and was the second woman to be granted a broadcast license. She used radio to draw on the growing appeal of popular entertainment in North America and incorporated other forms into her weekly sermons at Angelus Temple.\r\nIn her time she was the most publicized Christian evangelist, surpassing Billy Sunday and her other predecessors. She conducted public faith-healing demonstrations before large crowds, allegedly healing tens of thousands of people. McPherson's articulation of the United States as a nation founded and sustained by divine inspiration continues to be echoed by many pastors in churches today. Her media image, which sensationalized difficulties with her mother and daughter, as well as a mysterious five-week disappearance, shrouded her extensive charity work and significant contributions to the revitalization of American Christianity in the 20th century.",
"file": "aimee_semple_mcpherson.json",
"image": ""
},
{
"name": "Al Henson",
"code": "al_henson",
"description": "",
"file": "al_henson.json",
"image": ""
},
{
"name": "Al Martin",
"code": "al_martin",
"description": "",
"file": "al_martin.json",
"image": ""
},
{
"name": "Al Whittinghill",
"code": "al_whittinghill",
"description": "Al Whittinghill ( - )\r\nListen to freely downloadable audio sermons by the speaker Al Whittinghill in mp3 format. Al was called to join the worldwide ministry of Ambassadors for Christ International. AFCI is a fellowship of preachers and teachers of God\u2019s Word who seek to serve the Church of Jesus Christ as catalysts for genuine spiritual revival and world evangelism, primarily through itinerant preaching ministries. Al works with AFCI out of its office in Atlanta, Georgia having an extensive preaching\/teaching ministry that reaches around the world. His ministry in the local churches encompasses many denominations across the United States and in other countries, where he has presented the unsearchable riches of Christ from God\u2019s Word in more than 50 countries. For more than thirty five years Al has been privileged to preach, teach, and minister across the USA, Europe, India, Canada, Africa, Asia, Australia, the Pacific nations, and in countries behind the former Iron Curtain.\r\n\" I perceive that this man is a prophet who has a word for this generation\u2026.\" - Vance Havner \/ \"My friend and brother Al Whittinghill has been touched with a live coal. He truly points the way and also leads the way. \"A man whose heart the Lord has touched\" 1 Sam.10:26. Hear him.\" - Leonard Ravenhill",
"file": "al_whittinghill.json",
"image": ""
},
{
"name": "Alan Andrews",
"code": "alan_andrews",
"description": "",
"file": "alan_andrews.json",
"image": ""
},
{
"name": "Alan Barr",
"code": "alan_barr",
"description": "",
"file": "alan_barr.json",
"image": ""
},
{
"name": "Alan Bartley",
"code": "alan_bartley",
"description": "",
"file": "alan_bartley.json",
"image": ""
},
{
"name": "Alan Cairns",
"code": "alan_cairns",
"description": "",
"file": "alan_cairns.json",
"image": ""
},
{
"name": "Alan Franklin",
"code": "alan_franklin",
"description": "",
"file": "alan_franklin.json",
"image": ""
},
{
"name": "Alan Ives",
"code": "alan_ives",
"description": "",
"file": "alan_ives.json",
"image": ""
},
{
"name": "Alan Martin",
"code": "alan_martin",
"description": "",
"file": "alan_martin.json",
"image": ""
},
{
"name": "Alan Redpath",
"code": "alan_redpath",
"description": "Alan Redpath (1907 - 1989)\r\nListen to freely downloadable audio sermons by the speaker Alan Redpath in mp3 format. Redpath was a well-known preacher from England who pastored the famous Moody church in chicago for 7 years. He ministered at Keswick conventions and also deeper life meetings on the subject of revival, prayer, full-surrender. He spent the later years of his life ministering Capernwray bible school movement founded by Major Ian Thomas.\r\n\r\nDr. Redpath authored six books; the first one, Victorious Christian Living, was published in 1955. Others were Victorious Prayer (1956), Victorious Christian Service (1958), The Royal Route to Heaven (1960), Blessings Out of Buffettings (1965), The Making of a Man of God (1962), and Law and Liberty and Captivity to Conquest (1978).",
"file": "alan_redpath.json",
"image": "\/images\/alan_redpath.gif"
},
{
"name": "Alan Stewart",
"code": "alan_stewart",
"description": "",
"file": "alan_stewart.json",
"image": ""
},
{
"name": "Alan Thomas",
"code": "alan_thomas",
"description": "",
"file": "alan_thomas.json",
"image": ""
},
{
"name": "Albert Barr",
"code": "albert_barr",
"description": "",
"file": "albert_barr.json",
"image": ""
},
{
"name": "Albert Leckie",
"code": "albert_leckie",
"description": "",
"file": "albert_leckie.json",
"image": ""
},
{
"name": "Albert Mohler",
"code": "albert_mohler",
"description": "Albert Mohler (1959 - )\r\nListen to freely downloadable audio sermons by the speaker Albert Mohler in mp3 format. \r\nDr. R. Albert Mohler Jr. serves as president of The Southern Baptist Theological Seminary - the flagship school of the Southern Baptist Convention and one of the largest seminaries in the world. Dr. Mohler has been recognized by such influential publications as Time and Christianity Today as a leader among American evangelicals. In fact, Time.com called him the \u201creigning intellectual of the evangelical movement in the U.S.\u201d\r\nDr. Mohler has presented lectures or addresses at institutions including Columbia University, the University of Virginia, Wheaton College, Samford University, Trinity Evangelical Divinity School, the University of Richmond, Mercer University, Cedarville University, Beeson Divinity School, Reformed Theological Seminary, The Master\u2019s Seminary, Geneva College, Biola University, Covenant Theological Seminary, The Cumberland School of Law, The Regent University School of Law, Grove City College, Vanderbilt University and the historic Chautauqua Institution, among many others.",
"file": "albert_mohler.json",
"image": ""
},
{
"name": "Albert N. Martin",
"code": "albert_n_martin",
"description": "",
"file": "albert_n_martin.json",
"image": ""
},
{
"name": "Albert Zehr",
"code": "albert_zehr",
"description": "",
"file": "albert_zehr.json",
"image": ""
},
{
"name": "Albu van Eeden",
"code": "albu_van_eeden",
"description": "",
"file": "albu_van_eeden.json",
"image": ""
},
{
"name": "Alden Gannett",
"code": "alden_gannett",
"description": "",
"file": "alden_gannett.json",
"image": ""
},
{
"name": "Aldy Fam Fanous",
"code": "aldy_fam_fanous",
"description": "",
"file": "aldy_fam_fanous.json",
"image": ""
},
{
"name": "Ale Leiding",
"code": "ale_leiding",
"description": "",
"file": "ale_leiding.json",
"image": ""
},
{
"name": "Alex Marini",
"code": "alex_marini",
"description": "",
"file": "alex_marini.json",
"image": ""
},
{
"name": "Alex Wiseman",
"code": "alex_wiseman",
"description": "",
"file": "alex_wiseman.json",
"image": ""
},
{
"name": "Alfred P. Gibbs",
"code": "alfred_p_gibbs",
"description": "",
"file": "alfred_p_gibbs.json",
"image": ""
},
{
"name": "Alistair Begg",
"code": "alistair_begg",
"description": "",
"file": "alistair_begg.json",
"image": ""
},
{
"name": "Allan Brown",
"code": "allan_brown",
"description": "",
"file": "allan_brown.json",
"image": ""
},
{
"name": "Allen Weakland",
"code": "allen_weakland",
"description": "",
"file": "allen_weakland.json",
"image": ""
},
{
"name": "Alphaus Mdlalose",
"code": "alphaus_mdlalose",
"description": "",
"file": "alphaus_mdlalose.json",
"image": ""
},
{
"name": "Andrew Bonar",
"code": "andrew_bonar",
"description": "Andrew Bonar (1810 - 1892)\r\nListen to freely downloadable audio sermons by the speaker Andrew Bonar in mp3 format. He was a well-known pastor in Scotland with the Free Church. His brother Horatius was another well-known minister who was contemporary with Robert Murray Mchyene and others in those days. They saw a move of revival in their churches where the Spirit brought many immediate conversations in a short period of time. \r\n\r\nHe is best known for his work on compiling the life of the prophet of Dundee: Robert Murray Mchyene: \"Memoir and Remains of Robert Murray McCheyne.\" One cannot read this volume and feel the sobriety of eternity and the fear of the Lord. He also wrote a wonderful volume on Leviticus.",
"file": "andrew_bonar.json",
"image": ""
},
{
"name": "Andrew Davies",
"code": "andrew_davies",
"description": "",
"file": "andrew_davies.json",
"image": ""
},
{
"name": "Andrew Foster",
"code": "andrew_foster",
"description": "",
"file": "andrew_foster.json",
"image": ""
},
{
"name": "Andrew Murray",
"code": "andrew_murray",
"description": "Andrew Murray (1828 - 1917)\r\nListen to freely downloadable audio sermons by the speaker Andrew Murray in mp3 format. Brother Andrew Murray was a well-known writer\/preacher in South Africa who ministered amongst the Dutch Reformed churches. His writings now are widely accepted by modern evangelicals and he is published more than ever in his life-time. \r\n\r\nSome of his better known books titles are: \"Abide In Christ\", \"Absolute Surrender,\" and \"Humility.\" His burden for the body of Christ were teachings on the abiding Spirit of Christ in the believer, the life of faith with God daily, and the life of intercession and prayer in the Church.",
"file": "andrew_murray.json",
"image": ""
},
{
"name": "Andrew Strom",
"code": "andrew_strom",
"description": "",
"file": "andrew_strom.json",
"image": ""
},
{
"name": "Andrew Weaver",
"code": "andrew_weaver",
"description": "",
"file": "andrew_weaver.json",
"image": ""
},
{
"name": "Andy Brink",
"code": "andy_brink",
"description": "",
"file": "andy_brink.json",
"image": ""
},
{
"name": "Andy Stanley",
"code": "andy_stanley",
"description": "Andy Stanley ( - )\r\nListen to freely downloadable audio sermons by the speaker Andy Stanley in mp3 format. Is the senior pastor of North Point Community Church, Buckhead Church, Browns Bridge Community Church, Gwinnett Church and Watermarke Church. He also founded North Point Ministries, which is a worldwide Christian organization.\r\nIn January, 2009, Stanley was selected to be the fourth speaker at the National Prayer Service following the inauguration. In addition, Andy Stanley has been a frequent speaker at Willow Creek Association's Global Leadership Summit. The Summit was founded by BIll Hybels in 1995. Stanley now lives in Alpharetta, Georgia with his wife, Sandra, and his three children: Andrew, Garrett, and Allie.",
"file": "andy_stanley.json",
"image": ""
},
{
"name": "Andy Zelinski",
"code": "andy_zelinski",
"description": "",
"file": "andy_zelinski.json",
"image": ""
},
{
"name": "Angel Castillo",
"code": "angel_castillo",
"description": "",
"file": "angel_castillo.json",
"image": ""
},
{
"name": "Ann Abernathy",
"code": "ann_abernathy",
"description": "",
"file": "ann_abernathy.json",
"image": ""
},
{
"name": "Ann Brubaker",
"code": "ann_brubaker",
"description": "",
"file": "ann_brubaker.json",
"image": ""
},
{
"name": "Anna Ng",
"code": "anna_ng",
"description": "",
"file": "anna_ng.json",
"image": ""
},
{
"name": "Anne Graham Lotz",
"code": "anne_graham_lotz",
"description": "Anne Graham Lotz ( - )\r\nCalled \"the best preacher in the family\" by her father, Billy Graham, Anne Graham Lotz speaks around the globe with the wisdom and authority of years spent studying God's Word. The New York Times named Anne one of the five most influential evangelists of her generation. She's been profiled on 60 Minutes, and has appeared on TV programs such as Larry King Live, The Today Show, and HannityLive. Her Just Give Me Jesus revivals have been held in more than 30 cities in 12 different countries, to hundreds of thousands of attendees.\r\nWhether a delegate to Davos' Economic Forum, a commentator to the Washington Post, or a groundbreaking speaker on platforms throughout the world, Anne's aim is clear - to bring revival to the hearts of God's people. And her message is consistent - calling people into a personal relationship with God through His Word. Anne is a best-selling and award-winning author. Her most recent releases are Wounded by God's People, Fixing My Eyes on Jesus, Expecting to See Jesus and her first children's book, Heaven: God's Promise for Me.",
"file": "anne_graham_lotz.json",
"image": ""
},
{
"name": "Anton Bosch",
"code": "anton_bosch",
"description": "Anton Bosch ( - )\r\nListen to freely downloadable audio sermons by the speaker Anton Bosch in mp3 format. Privileged to be born into a long line of preachers, Anton Bosch met the Lord Jesus Christ as his Saviour in 1968. In 1971 he entered the Theological College of South Africa for two years, completed the third year by correspondence and was awarded the Diploma in Theology. In 2005 he was awarded the degree Master in Theology cum laude. The title of his dissertation was \u00e2\u20ac\u0153The pastoral and practical principles on which the churches in the New Testament are based\u00e2\u20ac\u009d. He is currently working on his Ph.D. in Biblical Studies. \r\n\r\nIn 2003 he was elected to the board of the International Fellowship of Christian Believers (formerly OFFI) with responsibility for the African continent and in 2004 was asked to serve as its international president. At the end of 2003 he was called to assist Burbank Community Church (Los Angeles, California) as it\u00e2\u20ac\u2122s senior pastor.. In 2009 the church moved to new premises in Sun Valley and us now known as Sun Valley Community Church (SVCC). Anton continues to teach at SVCC. It has been his life-long quest to rediscover New Testament Christianity and to call Christians and churches back to knowing, believing and living the Bible. He has planted a number of churches that are based on these principles. He is passionate about a correct exegesis of the Word and specialises in expository preaching and teaching.",
"file": "anton_bosch.json",
"image": ""
},
{
"name": "Arlen L. Chitwood",
"code": "arlen_l_chitwood",
"description": "",
"file": "arlen_l_chitwood.json",
"image": ""
},
{
"name": "Arno Stegen",
"code": "arno_stegen",
"description": "Arno Stegen ( - )\r\nListen to freely downloadable audio sermons by the speaker Arno Stegen in mp3 format. He helped found the Kwasizabantu Mission where a few thousand live on the mission doing work for the Lord. He shares a powerful burden for the purity of the Church and revival in the Church.\r\n\r\nMany ministers have preached in their large conventions through the years namely David Wilkerson who enjoyed greatly the mission's work. They have established over 30 other missions around the work as a work of the Spirit.",
"file": "arno_stegen.json",
"image": ""
},
{
"name": "Arnold Cook",
"code": "arnold_cook",
"description": "",
"file": "arnold_cook.json",
"image": ""
},
{
"name": "Art Katz",
"code": "art_katz",
"description": "Art Katz (1929 \u00e2\u20ac\u201c 2007)\r\nListen to freely downloadable audio sermons by the speaker Art Katz in mp3 format. He was radically converted by reading the New Testament. God used him to have a powerful prophetic insight into the end-times and the coming suffering of the jewish people before the great accepting of Jesus as Messiah. His eschatological insight is a very needful truth to be realized in the body of Christ. \r\n\r\nArt was a prophetic voice insofar as he called his listeners to purposes in God that would affect both time and eternity, purposes that had to do with the glory of God in the Church. Frequently, his messages called the Church to an awareness of the Last Days [End-times] in such a way that made that time seem imminent and at the door.",
"file": "art_katz.json",
"image": "\/images\/art_katz.gif"
},
{
"name": "Arthur Blessitt",
"code": "arthur_blessitt",
"description": "",
"file": "arthur_blessitt.json",
"image": ""
},
{
"name": "Arthur Cooke",
"code": "arthur_cooke",
"description": "",
"file": "arthur_cooke.json",
"image": ""
},
{
"name": "Arturo G. Azurdia",
"code": "arturo_g_azurdia",
"description": "",
"file": "arturo_g_azurdia.json",
"image": ""
},
{
"name": "Asia Harvest",
"code": "asia_harvest",
"description": "",
"file": "asia_harvest.json",
"image": ""
},
{
"name": "Audio Bible NT KJV",
"code": "audio_bible_nt_kjv",
"description": "Audio Bible NT KJV ( - )\r\nListen to freely downloadable audio sermons by the Audio Bible NT KJV in mp3 format. Many other things we might give thee warning of (gentle Reader) if we had not exceeded the measure of a Preface already. It remaineth, that we commend thee to God, and to the Spirit of his grace, which is able to build further than we can ask or think. He removeth the scales from our eyes, the vail from our hearts, opening our wits that we may understand his word, enlarging our hearts, yea correcting our affections, that we may love it to the end. Ye are brought unto fountains of living water which ye digged not; do not cast earth into them with the Philistines, neither prefer broken pits before them with the wicked Jews. [Gen 26:15. Jer 2:13.] Others have laboured, and you may enter into their labours; O receive not so great things in vain, O despise not so great salvation! Be not like swine to tread under foot so precious things, neither yet like dogs to tear and abuse holy things. Say not to our Saviour with the Gergesites, Depart out of our coast [Matt 8:34]; neither yet with Esau sell your birthright for a mess of pottage [Heb 12:16]. If light be come into the world, love not darkness more than light; if food, if clothing be offered, go not naked, starve not yourselves. Remember the advice of Nazianzene, \"It is a grievous thing\" (or dangerous) \"to neglect a great fair, and to seek to make markets afterwards:\" also the encouragement of S. Chrysostom, \"It is altogether impossible, that he that is sober\" (and watchful) \"should at any time be neglected:\" [S. Chrysost. in epist. ad Rom. cap. 14. oral. 26.]\r\nLastly, the admonition and menacing of S. Augustine, \"They that despise God's will inviting them, shall feel God's will taking vengeance of them.\" [S. August. ad artic. sibi falso object. Artic. 16.] It is a fearful thing to fall into the hands of the living God; [Heb 10:31] but a blessed thing it is, and will bring us to everlasting blessedness in the end, when God speaketh unto us, to hearken; when he setteth his word before us, to read it; when he stretcheth out his hand and calleth, to answer, Here am I, here we are to do thy will, O God. The Lord work a care and conscience in us to know him and serve him, that we may be acknowledged of him at the appearing of our Lord Jesus Christ, to whom with the holy Ghost, be all praise and thanksgiving. Amen.",
"file": "audio_bible_nt_kjv.json",
"image": ""
},
{
"name": "Augustine",
"code": "augustine",
"description": "",
"file": "augustine.json",
"image": ""
},
{
"name": "Aunt Martha",
"code": "aunt_martha",
"description": "",
"file": "aunt_martha.json",
"image": ""
},
{
"name": "Avi Lipkin",
"code": "avi_lipkin",
"description": "",
"file": "avi_lipkin.json",
"image": ""
},
{
"name": "A.W. Pink",
"code": "aw_pink",
"description": "A.W. Pink (1886 - 1952)\r\nListen to freely downloadable audio sermons by the speaker A.W. Pink in mp3 format. Studied at Moodly Bible Institute and pastored some churches in America. He was not very accepted in his congregations which finally made him move back to England to be involved in writing ministry full-time till his death. \r\n\r\nHe was strictly calvinist in this thinking but many of his writings also reflect balance and openness to other views of doctrine. Especially his teachings on antichrist and end-times were promoted well during his life. He wrote over 40 books and many pamphlets including he distributed titled: \"Studies in the Scriptures.\"",
"file": "aw_pink.json",
"image": ""
},
{
"name": "A.W. Tozer",
"code": "aw_tozer",
"description": "A.W. Tozer (1897 - 1963)\r\nListen to freely downloadable audio sermons by the speaker A.W. Tozer in mp3 format. A \"20th-century prophet\" many called him during his lifetime. For 31 years A.W.Tozer was pastor of Southside Alliance Church in Chicago. He was involved in the missionary alliance movement for most of his pulpit life. A.W. Tozer lived in the presence of God he saw clearly and he spoke as a prophet to the church. He sought for God's honor with the zeal of Elijah and mourned with Jeremiah at the apostasy of God's people. \r\n\r\nLeonard Ravenhill was a close friend of pastor and writer A. W. Tozer and spoke of him as one of the most influential voices in the Church in America. A.W. Tozer's materials are a mainstay in Evangelical churches in our day and he is one of the most quoted authors. He was a prophet in his day and his writings are even more influential in our day. One of his books: The Pursuit of God, has had over 1 million copies sold world-wide.",
"file": "aw_tozer.json",
"image": "\/images\/aw_tozer.gif"
},
{
"name": "A.W. Tozer Books",
"code": "aw_tozer_books",
"description": "A.W. Tozer (1897 - 1963)\r\nListen to freely downloadable audio books by the speaker A.W. Tozer in mp3 format. A \"20th-century prophet\" many called him during his lifetime. For 31 years A.W.Tozer was pastor of Southside Alliance Church in Chicago. He was involved in the missionary alliance movement for most of his pulpit life. A.W. Tozer lived in the presence of God he saw clearly and he spoke as a prophet to the church. He sought for God's honor with the zeal of Elijah and mourned with Jeremiah at the apostasy of God's people. \r\n\r\nLeonard Ravenhill was a close friend of pastor and writer A. W. Tozer and spoke of him as one of the most influential voices in the Church in America. A.W. Tozer's materials are a mainstay in Evangelical churches in our day and he is one of the most quoted authors. He was a prophet in his day and his writings are even more influential in our day. One of his books: The Pursuit of God, has had over 1 million copies sold world-wide.",
"file": "aw_tozer_books.json",
"image": ""
},
{
"name": "Bakht Singh",
"code": "bakht_singh",
"description": "Bakht Singh (1903 - 2000)\r\nListen to freely downloadable audio sermons by the speaker Bakht Singh in mp3 format. He is often regarded as one of the most well-known bible teachers and preachers and pioneers of the Indian Church movements. He was India's foremost evangelist, preacher and indigenous church planter who founded churches based on New Testament principles. He began a worldwide indigenous church-planting movement in India that eventually saw more than 10,000 local churches. Norman Grubb missionary statesman, author and teacher: \"In all my missionary experience I think these churches on their New Testament foundations are the nearest I have seen to a replica of the early church and a pattern for the birth and growth of the young churches in all the countries which we used to talk about as mission fields.\"\r\nLife of prayer. Brother Bakht Singh was a man of prayer. He spent hours upon his knees in communion with the Lord seeking the Lord's mind regarding His will concerning the work and ministry. Therefore, the Lord also honored him and blessed him beyond any human understanding. This is one of the reasons why the Lord has used him so mightily for the edification of His Body and for the extension of His glorious kingdom both in India and abroad.",
"file": "bakht_singh.json",
"image": "\/images\/bakht_singh.gif"
},
{
"name": "Barbara Hughes",
"code": "barbara_hughes",
"description": "",
"file": "barbara_hughes.json",
"image": ""
},
{
"name": "Barrett Marshall",
"code": "barrett_marshall",
"description": "",
"file": "barrett_marshall.json",
"image": ""
},
{
"name": "Basilea Schlink",
"code": "basilea_schlink",
"description": "Basilea Schlink (1904 \u2013 2001)\r\nListen to freely downloadable audio sermons by the speaker Basilea Schlink in mp3 format. She was used of the Lord to help found the Evangelical Sisterhood of Mary. The Lord has used her writings powerfully to help encourage the greater body of Christ of future sufferings for the Lord and how to endure them. Also one of the burdens of her ministry was to share in the sufferings of the Lord and share the sorrow that Jesus has for a lost world and a backslidden church.\r\n\r\n\"In heaven we will say, \u2018Do you remember the time we celebrated a festival of heaven on earth with Mother Basilea?'\" - Corrie ten Boom. \"To visit one of the Kanaan sanctuaries that they have assembled around the world is to visit a taste of the kingdom on earth.\" - Greg Gordon",
"file": "basilea_schlink.json",
"image": "\/images\/basilea_schlink.gif"
},
{
"name": "Bayless Conley",
"code": "bayless_conley",
"description": "",
"file": "bayless_conley.json",
"image": ""
},
{
"name": "B.B. Caldwell",
"code": "bb_caldwell",
"description": "",
"file": "bb_caldwell.json",
"image": ""
},
{
"name": "Believers in Grand Rapids",
"code": "believers_in_grand_rapids",
"description": "",
"file": "believers_in_grand_rapids.json",
"image": ""
},
{
"name": "Ben Crandall",
"code": "ben_crandall",
"description": "",
"file": "ben_crandall.json",
"image": ""
},
{
"name": "Ben Torrey",
"code": "ben_torrey",
"description": "Ben Torrey ( - )\r\nListen to freely downloadable audio sermons by the speaker Ben Torrey in mp3 format. Executive director of The Fourth River Project, Inc which is an organization that is preparing for the opening of North Korea. Their intercession and practical preparations are helping the body of Christ to be spiritually prepared to share the Good News of Christ effectively with North Korea.\r\nJesus Abbey is an intentional community and house of intercessory prayer founded by Jane and Archer Torrey, in 1965 by faith in God's provision. Currently Ben Torrey serves as chairman of the Jesus Abbey board of trustees. As he travels to America yearly he serves as the Archdeacon in the Evangelical Apostolic Church of North America which is in the tradition of the Church of the East. All 53 of the recordings below were recorded for the Far East Broadcasting company in 2007.",
"file": "ben_torrey.json",
"image": ""
},
{
"name": "Ben Wikner",
"code": "ben_wikner",
"description": "",
"file": "ben_wikner.json",
"image": ""
},
{
"name": "Ben Zornes",
"code": "ben_zornes",
"description": "",
"file": "ben_zornes.json",
"image": ""
},
{
"name": "Benard Fell",
"code": "benard_fell",
"description": "",
"file": "benard_fell.json",
"image": ""
},
{
"name": "Bertha Smith",
"code": "bertha_smith",
"description": "",
"file": "bertha_smith.json",
"image": ""
},
{
"name": "Bertie Johnston",
"code": "bertie_johnston",
"description": "",
"file": "bertie_johnston.json",
"image": ""
},
{
"name": "B.H. Clendennen",
"code": "bh_clendennen",
"description": "",
"file": "bh_clendennen.json",
"image": ""
},
{
"name": "Bill Agee",
"code": "bill_agee",
"description": "",
"file": "bill_agee.json",
"image": ""
},
{
"name": "Bill Ammon",
"code": "bill_ammon",
"description": "",
"file": "bill_ammon.json",
"image": ""
},
{
"name": "Bill Bright",
"code": "bill_bright",
"description": "",
"file": "bill_bright.json",
"image": ""
},
{
"name": "Bill Gallatin",
"code": "bill_gallatin",
"description": "",
"file": "bill_gallatin.json",
"image": ""
},
{
"name": "Bill McLeod",
"code": "bill_mcleod",
"description": "Bill McLeod (1919 - 2012)\r\nListen to freely downloadable audio sermons by the speaker Bill McLeod in mp3 format. Bill Mcleod was the pastor of Ebenezer Baptist Church for many years where ultimately God sent revival to that affecting much of Canada. He had a passion to know God and His word. Paul Washer said he was one of the most godly men he met in Canada.\r\n\r\nBill Mcleod had been praying and had his congregation praying for revival for years. On, October 17, 1971, God in His sovereignty came in revival. Without human means or explanation, the revival spread from church to church, community to community, city to city, and not long after from province to province. This has become known as the 1971 Canadian Revival movement.",
"file": "bill_mcleod.json",
"image": "\/images\/bill_mcleod.gif"
},
{
"name": "Bill Randles",
"code": "bill_randles",
"description": "",
"file": "bill_randles.json",
"image": ""
},
{
"name": "Bill Stafford",
"code": "bill_stafford",
"description": "",
"file": "bill_stafford.json",
"image": ""
},
{
"name": "Bill Wright",
"code": "bill_wright",
"description": "",
"file": "bill_wright.json",
"image": ""
},
{
"name": "Billy Ingram",
"code": "billy_ingram",
"description": "",
"file": "billy_ingram.json",
"image": ""
},
{
"name": "Billy Magee",
"code": "billy_magee",
"description": "",
"file": "billy_magee.json",
"image": ""
},
{
"name": "Billy Strachan",
"code": "billy_strachan",
"description": "",
"file": "billy_strachan.json",
"image": ""
},
{
"name": "Billy Strachen",
"code": "billy_strachen",
"description": "",
"file": "billy_strachen.json",
"image": ""
},
{
"name": "Billy Sunday",
"code": "billy_sunday",
"description": "Billy Sunday (1862 - 1935)\r\nListen to freely downloadable audio sermons by the speaker Billy Sunday in mp3 format. Was an American athlete who, after being a popular outfielder in baseball's National League during the 1880s, became the most celebrated and influential American evangelist during the first two decades of the 20th century.\r\nBilly Sunday was a conservative evangelical who accepted fundamentalist doctrines. He affirmed and preached the inerrancy of the Bible, the virgin birth of Christ, the doctrine of substitutionary atonement, the bodily resurrection of Christ, a literal devil and hell, and the imminent return of Jesus Christ. At the turn of the 20th century, most Protestant church members, regardless of denomination, gave assent to these doctrines. Sunday refused to hold meetings in cities where he was not welcomed by the vast majority of the Protestant churches and their clergy.",
"file": "billy_sunday.json",
"image": "\/images\/billy_sunday.gif"
},
{
"name": "Bishop Samuel Mathew",
"code": "bishop_samuel_mathew",
"description": "",
"file": "bishop_samuel_mathew.json",
"image": ""
},
{
"name": "BJU Students and Faculty",
"code": "bju_students_and_faculty",
"description": "",
"file": "bju_students_and_faculty.json",
"image": ""
},
{
"name": "Blaine Scogin",
"code": "blaine_scogin",
"description": "Blaine Scogin ( - )\r\nListen to freely downloadable audio sermons by the speaker Blaine Scogin in mp3 format. Brother Blaine is a believer in Little Rock, Arkansas. He was saved during the Jesus Movement in America many years ago. His burden now is greatly for the persecuted church. He now runs a prayer ministry conference call \"Persecution Watch\" that gathers 3 times a week: Tuesday's, Thursday's and Saturday. The call is 8pm CST each night. Number is 209.255.1000. The Access code is 109083#",
"file": "blaine_scogin.json",
"image": ""
},
{
"name": "Bob Anderson",
"code": "bob_anderson",
"description": "",
"file": "bob_anderson.json",
"image": ""
},
{
"name": "Bob Beers",
"code": "bob_beers",
"description": "",
"file": "bob_beers.json",
"image": ""
},
{
"name": "Bob Bruton",
"code": "bob_bruton",
"description": "",
"file": "bob_bruton.json",
"image": ""
},
{
"name": "Bob Clark",
"code": "bob_clark",
"description": "",
"file": "bob_clark.json",
"image": ""
},
{
"name": "Bob Doom",
"code": "bob_doom",
"description": "",
"file": "bob_doom.json",
"image": ""
},
{
"name": "Bob Faulkner",
"code": "bob_faulkner",
"description": "",
"file": "bob_faulkner.json",
"image": ""
},
{
"name": "Bob George",
"code": "bob_george",
"description": "Bob George ( - )\r\nListen to freely downloadable audio sermons by the speaker Bob George in mp3 format. For many years, Bob hosted People to People, a daily radio broadcast. Connecting with listeners across the continent on his live, daily radio broadcast, Bob offered real answers for real life as he addressed common questions as well as the tough issues of today, directing callers to the centrality of \u00e2\u20ac\u0153Christ in you, your only hope of glory\u00e2\u20ac\u009d (Colossians 1:27).\r\nBob George is the author of the best-selling book, Classic Christianity, with an estimated 650,000 copies in print worldwide, in 27 languages. Bob also has authored several other books including Growing in Grace, Faith That Pleases God, as well as numerous Bible study guides.",
"file": "bob_george.json",
"image": ""
},
{
"name": "Bob Hoekstra",
"code": "bob_hoekstra",
"description": "Bob Hoekstra ( - 2012)\r\nListen to freely downloadable audio sermons by the speaker Bob Hoekstra in mp3 format. Bob's involvement with the Calvary Chapels began in 1971, when he and his wife Dini visited Calvary Chapel Costa Mesa on a Sunday evening. They were deeply touched by the life-giving teaching of the word of God, the simple worship \"in Spirit and in truth\", and the profound expressions of the love of the Lord among the saints. Upon returning to Dallas, they regularly obtained Pastor Chuck Smith's teaching tapes and eventually became daily listeners of the Word for Today on the radio.\r\n\r\nSince 1993, Bob had been teaching at Calvary Chapel and other church fellowships across the country and overseas (including, Seminars, Pastors' Conferences, Church Services, Leadership Conferences, Retreats, and Schools of Evangelism\/Ministry). He has taught numerous classes at Calvary Chapel Bible College (both at its former location in Twin Peaks, CA and its current location in Murrieta Hot Springs, CA) as well as at the extension campuses of Costa Mesa, Vista, San Diego, El Cajon, and others. Bob's teaching generally highlights such subjects as Counseling God's Way ,Family God's Way ,Growing in the Grace of God ,The Church: How Jesus Builds It ,Contending for the Faith ,Promise Believers ,The Sufficiency of Christ and His Word ,The Psychologizing of the Faith , and related themes.",
"file": "bob_hoekstra.json",
"image": ""
},
{
"name": "Bob Jennings",
"code": "bob_jennings",
"description": "",
"file": "bob_jennings.json",
"image": ""
},
{
"name": "Bob Jones III",
"code": "bob_jones_iii",
"description": "",
"file": "bob_jones_iii.json",
"image": ""
},
{
"name": "Bob Jones Sr.",
"code": "bob_jones_sr",
"description": "Bob Jones Sr. (1883 - 1968)\r\nListen to freely downloadable audio sermons by the speaker Bob Jones Sr. in mp3 format. Evangelist and founder of Bob Jones University, was born in rural Dale County in southeastern Alabama. A Methodist, Jones was converted at a revival meeting when he was eleven years old and by the time he was fourteen he had begun preaching. Jones attended Southern University (today\u00e2\u20ac\u2122s Birmingham Southern College) for three years but did not finish a degree, opting instead to concentrate on evangelistic work. A militant fundamentalist, Jones conducted a wide-ranging campaign denouncing modernist teachings on the Bible and evolution and the abandonment of traditional Protestant social mores. Viewing the control of education as the key to defending the faith, Jones started Bob Jones College near Panama City, Florida in 1927. \r\nThe financial burden of the Depression caused Jones to move the school to Cleveland, Tennessee in 1933, and financial considerations likewise played a major role in the school\u00e2\u20ac\u2122s final move to Greenville, South Carolina in 1947 (where it became Bob Jones University). Jones was an early supporter of the National Association of Evangelicals (NAE) but by the mid-1950s had broken with the movement, largely over its support of Billy Graham (who had left the school after his freshman year), whom Jones and his militant son Bob Jones, Jr. viewed as a compromiser for his inclusion of mainline clergy in his evangelistic crusades. Increasingly, Bob Jones, Sr. and Jr. and their University were seen as the embodiment of ultra-separatist fundamentalism. Although the school emphasized a film school and prided itself on its Shakespearian productions and art collection, the Jones\u00e2\u20ac\u2122 insistence on rigid social policies and the maintenance of on-campus segregation (black students were not admitted until 1971 and a ban against interracial dating was in place until 2000) made it a symbol in the popular press and among many evangelicals of the backward-looking mindset of the fundamentalist movement.",
"file": "bob_jones_sr.json",
"image": ""
},
{
"name": "Bob Kauflin",
"code": "bob_kauflin",
"description": "",
"file": "bob_kauflin.json",
"image": ""
},
{
"name": "Bob Mumford",
"code": "bob_mumford",
"description": "",
"file": "bob_mumford.json",
"image": ""
},
{
"name": "Bob Phillips",
"code": "bob_phillips",
"description": "",
"file": "bob_phillips.json",
"image": ""
},
{
"name": "Bob Russell",
"code": "bob_russell",
"description": "",
"file": "bob_russell.json",
"image": ""
},
{
"name": "Bob Sorge",
"code": "bob_sorge",
"description": "",
"file": "bob_sorge.json",
"image": ""
},
{
"name": "Bob Taylor",
"code": "bob_taylor",
"description": "",
"file": "bob_taylor.json",
"image": ""
},
{
"name": "Bob Utley",
"code": "bob_utley",
"description": "",
"file": "bob_utley.json",
"image": ""
},
{
"name": "Bob Vernon",
"code": "bob_vernon",
"description": "",
"file": "bob_vernon.json",
"image": ""
},
{
"name": "Bob Woolsey",
"code": "bob_woolsey",
"description": "",
"file": "bob_woolsey.json",
"image": ""
},
{
"name": "Bona Fleming",
"code": "bona_fleming",
"description": "",
"file": "bona_fleming.json",
"image": ""
},
{
"name": "Brad Allen",
"code": "brad_allen",
"description": "Brad Allen ( - )\r\nListen to freely downloadable audio sermons by the speaker Brad Allen in mp3 format. Brad Allen served for 42 years as a Baptist Pastor. then retired from the pastorate on May 1, 1999. He had a passion in my heart to see true, authentic spiritual awakening in the local church. Since 1999, preaching Spiritual Awakening Conferences in fourteen different states, and in Scotland. The time for great spiritual awakening for America is here. God is beginning to do a \"new thing.\" The time of the \"latter rain\" is fast approaching.\r\nBrad Allen founded Spiritual Awakening Ministries. Churches in America have had enough \"revival meetings\" where no one is revived, enough evangelistic campaigns where no one is converted to Christ. It is time to call the church to account for true spiritual awakening. When Brad is invited to a church, he makes no demands on that church. He will go anywhere he is invited.",
"file": "brad_allen.json",
"image": ""
},
{
"name": "Brad Scheelke",
"code": "brad_scheelke",
"description": "",
"file": "brad_scheelke.json",
"image": ""
},
{
"name": "Brent Yim",
"code": "brent_yim",
"description": "",
"file": "brent_yim.json",
"image": ""
},
{
"name": "Brian Brodersen",
"code": "brian_brodersen",
"description": "",
"file": "brian_brodersen.json",
"image": ""
},
{
"name": "Brian Chesemore",
"code": "brian_chesemore",
"description": "",
"file": "brian_chesemore.json",
"image": ""
},
{
"name": "Brian Edwards",
"code": "brian_edwards",
"description": "",
"file": "brian_edwards.json",
"image": ""
},
{
"name": "Brian Gochenour",
"code": "brian_gochenour",
"description": "",
"file": "brian_gochenour.json",
"image": ""
},
{
"name": "Brian Green",
"code": "brian_green",
"description": "",
"file": "brian_green.json",
"image": ""
},
{
"name": "Brian Long",
"code": "brian_long",
"description": "Brian Long ( - )\r\nListen to freely downloadable audio sermons by the speaker Brian Long in mp3 format. Brother Brian Long is the pastor of Cornerstone Community Church of Barnsdall. God has done a powerful work in this brothers life as he has served as a baptist pastor for a season and now God has called him out to a independent work under the Headship of Jesus Christ.\r\nHe has spoken at SermonIndex Conference as well as other revival meetings in Churches across America. His burden and passion for the glory of Jesus Christ alone is evident in his preaching. The emphasis on prayer and the prayer meeting in their fellowship has been the power behind the local church, you are welcome to visit locally for their prayer time on Wednesday.",
"file": "brian_long.json",
"image": ""
},
{
"name": "Brian York",
"code": "brian_york",
"description": "",
"file": "brian_york.json",
"image": ""
},
{
"name": "Brigette Gabriel",
"code": "brigette_gabriel",
"description": "",
"file": "brigette_gabriel.json",
"image": ""
},
{
"name": "Bro. Tiasto",
"code": "bro_tiasto",
"description": "",
"file": "bro_tiasto.json",
"image": ""
},
{
"name": "Brother Andrew",
"code": "brother_andrew",
"description": "Brother Andrew ( - )\r\nListen to freely downloadable audio sermons by the speaker Brother Andrew in mp3 format. Known in English-speaking countries as Brother Andrew, is a Christian missionary famous for his exploits smuggling Bibles to communist countries in the height of the Cold War, a feat that has earned him the nickname \"God's smuggler\". Brother Andrew studied at the WEC Missionary Training College in Glasgow, Scotland. \r\nIn 1967, he published the first edition of God's Smuggler, written with John and Elizabeth Sherrill. God's Smuggler tells the story of Brother Andrew's early childhood, conversion to Christianity, and adventures as a Bible-smuggler behind the Iron Curtain. It has now sold over 10 million copies in thirty-five languages. After the fall of communism in Europe, Brother Andrew shifted his focus to the Middle East and has worked to strengthen the church in the Islamic world. In the 70s he visited war-torn Lebanon several times, stating that \"global conflict in the end times will focus on Israel and its neighboring countries\".",
"file": "brother_andrew.json",
"image": "\/images\/brother_andrew.gif"
},
{
"name": "Brother Jaco",
"code": "brother_jaco",
"description": "",
"file": "brother_jaco.json",
"image": ""
},
{
"name": "Brother Lawrence",
"code": "brother_lawrence",
"description": "Brother Lawrence (1614 - 1691)\r\nListen to freely downloadable audio sermons by the speaker Brother Lawrence in mp3 format. Served as a lay brother in a Carmelite monastery in Paris. Christians commonly remember him for the intimacy he expressed concerning his relationship to God as recorded in a book compiled after his death, the classic Christian text, The Practice of the Presence of God.\r\n\r\nDespite his lowly position in life and the priory, his character attracted many to him. He had a reputation for experiencing profound peace and visitors came to seek spiritual guidance from him. The wisdom he passed on to them, in conversations and in letters, would later become the basis for the book, The Practice of the Presence of God. Father Joseph de Beaufort, later vicar general to the Archbishop of Paris, compiled this work after Brother Lawrence died. It became popular among Catholics and Protestants alike, with John Wesley and A. W. Tozer recommending it to others.",
"file": "brother_lawrence.json",