-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
2514 lines (2512 loc) · 147 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"data": [
{
"ISBN": "086171573X / 9780861715732",
"Name": "Moody Cow Meditates",
"Author": ["Kerry Lee MacLean"],
"Tags": ["Book", "Meditation", "Family relationships", "Age 2-5"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 32,
"Illustrator": ["Kerry Lee MacLean"],
"Publisher": "Wisdom Publications",
"Edition": "(2009)",
"Notes": "Moody Cow is Peter, whose grandfather taught him a way to tune in with his angry feelings and settle his mind through focused meditation after a bad day. Learn how to make your own mind jar and control your negative emotions! The publisher, Wisdom Publications, is affiliated with the Foundation for the Preservation of Mahayana Tradition.",
"Access": "This book can be ordered online and is also available in the TKL library, call number PZ10.3.",
"Url": "images/01-moodycow.png",
"id": 1
},
{
"ISBN": "080505443X / 9780805054439",
"Name": "The Dalai Lama: a biography of the Tibetan spiritual and political leader",
"Author": ["Demi"],
"Tags": ["Book", "Great masters", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 32,
"Illustrator": ["Demi"],
"Publisher": "Henry Holt and Company, Inc.",
"Edition": "first edition (1998)",
"Notes": "This book tells the story of the search for the successor of the thirteenth Dalai Lama, after his passing in 1933. With simplicity and beauty, the author blends text and illustrations to describe the extraordinary life and vision of a kind and beloved master. The author is a Buddhist practitioner. Foreword written by HH Dalai Lama.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ7935 .B777.",
"Url": "images/02-dalailamademi.png",
"id": 2
},
{
"ISBN": "9780805049008",
"Name": "The Empty Pot",
"Author": ["Demi"],
"Tags": ["Book", "Karma, virtues and non-virtues", "Folktales", "Age 2-5"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Demi"],
"Publisher": "Henry Holt and Company, Inc.",
"Edition": "first Square Fish edition (February 2012)",
"Notes": "Ping, the hero of this Chinese folktale, is unable to grow the seed distributed by the Emperor. This book will help you determine what is best: the empty truth or the beauty of illusion. Demi's books for children have been awarded for making a positive difference in the world.",
"Access": "This book can be ordered online and is also available in the TKL library, call number PZ8.1.D38.",
"Url": "images/03-emptypot.png",
"id": 3
},
{
"ISBN": "9781888375947",
"Name": "Anh's Anger",
"Author": ["Gail Silver"],
"Tags": ["Book", "Meditation", "Family relationships", "Age 2-5"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 36,
"Illustrator": ["Christiane Kromer"],
"Publisher": "Plum Blossom",
"Edition": "first edition (2009)",
"Notes": "By “sitting“ with his anger, Anh learns how to identify and deal with his feelings. Using a variety of techniques, Anh is able to calm himself down and transform his strong emotions. Based on teachings on mindfulness and Buddhism by the Vietnamese Zen Master Thich Nhat Hanh, a well-known poet and peace activist.",
"Access": "This book can be ordered online and is also available in the TKL library, call number PZ7.S58567.",
"Url": "images/04-anhsanger.png",
"id": 4
},
{
"ISBN": "0937938939 / 9780937938935",
"Name": "Where is Tibet? = Bod ga pa yod red = Poo kabah yoreh: a story in Tibetan and English",
"Author": ["Gina Halpern"],
"Tags": ["Book", "Other", "Age 2-5"],
"Language": ["Tibetan", "English"],
"CoverType": "Paperback",
"Pages": 48,
"Illustrator": ["Gina Halpern"],
"Publisher": "Snow Lion Publications",
"Edition": "(1991)",
"Notes": "In this bi-lingual book, two Tibetan refugee children living in India search for their homeland, and find it within their hearts and minds. Richly illustrated in Tibetan style, it encourages materials for children to explore Tibetan letters.",
"Access": "This book can be ordered online and is also available in the TKL library, call number PZ90 .T58.",
"Url": "images/05-wherestibet.png",
"id": 5
},
{
"ISBN": "9780898005134 / 0898005132",
"Name": "A Friend to All",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Compassion and loving kindness", "Buddha's previous lives aka Jataka tales", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "second edition, revised and augmented (2009)",
"Notes": "This adaptation of a Jataka story of one of the Buddha's previous lives teaches that genuine loving kindness is extended even to those who are unpleasant and rude. A kind woodpecker saves the life of an ungrateful lion who later reviles him, but the woodpecker's kindness and friendship remains unchanged. At the end, there is a guide for parents and teachers on the story, bringing the story to life, teaching values through play, active reading, and daily activities.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5.",
"Url": "images/06-friendtoall.png",
"id": 6
},
{
"ISBN": "1559393858 / 9781559393850",
"Name": "The Life of the Great Mahasiddha Virupa",
"Author": ["HE Dagmo Kalden D. Sakya"],
"Tags": ["Book", "Great masters","Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 40,
"Illustrator": ["HE Dagmo Kalden D. Sakya"],
"Publisher": "Snow Lion Publications",
"Edition": "first edition (2011)",
"Notes": "This book was carefully produced by HE Dagmo Kalden D. Sakya, the wife of His Holiness the Ratna Vajra Sakya, to teach young children all over the world about Mahasiddha Virupa, one of the famous eighty-four great Indian Masters who attained great realizations in one lifetime. An explanation of terms and expressions, and a Q&A section, can be found at the end of the book.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ7672.4 .D63.",
"Url": "images/07-virupa.png",
"id": 7
},
{
"ISBN": "9780861716531 / 9780861719884",
"Name": "Prince Siddhartha: the story of Buddha",
"Author": ["Jonathan Landaw"],
"Tags": ["Book", "Life of the Buddha", "Great masters", "Nonviolence", "Compassion and loving kindness", "Death and rebirth", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 143,
"Illustrator": ["Janet Brooke"],
"Publisher": "Wisdom Publications",
"Edition": "2nd edition (2011)",
"Notes": "In the graceful telling of Siddhartha’s life - his childhood, his awakening and his teachings - sensitive issues such as death and suffering are touched upon. Learning about Buddha can help children become more thoughtful and aware of altruism, nonviolence and loving-kindness. The publisher, Wisdom Publications, is affiliated with the Foundation for the Preservation of Mahayana Tradition.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ892 .L36.",
"Url": "images/08-siddhartha.png",
"id": 8
},
{
"ISBN": "9788175082885",
"Name": "Buddhist Stories - Pancharatna Series No. 1017",
"Author": ["Anant Pai (editor)"],
"Tags": ["Book", "Life of the Buddha", "Nonviolence", "Age 6-8"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 164,
"Illustrator": ["Souren Roy", "Pratap Mulick", "H.S. Chavan & Ranjana", "Dilip Kadam"],
"Publisher": "India Book House",
"Edition": "Reprinted (August, 2001)",
"Notes": "This is a compilation of several Amar Chitra Katha titles (Buddha; Angulimala; Amrapali and Upagupta; King Kusha; and The Acrobat), stories that teach about right conduct, good deeds, nonviolence, devotion and skillfulness. The comic-book style of the compilation is an interesting and fun way to learn about Indian mythology and the Buddha's teachings.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ882 .P35.",
"Url": "images/09-buddhiststories.png",
"id": 9
},
{
"ISBN": "8186230343 / 9788186230343",
"Name": "Sras mo Me-tog-lha-mdzes = Princess Metok Lhazey",
"Author": ["Kalsang Khedup"],
"Tags": ["Book", "Folktales", "Age 6-8"],
"Language": ["Tibetan", "English"],
"CoverType": "Paperback",
"Pages": 20,
"Illustrator": ["Jamzang"],
"Publisher": "Paljor Publications",
"Edition": "revised edition (2001)",
"Notes": "A Tibetan folk tale about the blessings of prayers to Tara that turn sadness to happiness for a king, his beautiful daughter, and her true love. In Tibetan and English with illustrations in the Tibetan style.",
"Access": "This book can be ordered online and is also available in the TKL library, call number GR337 .S56.",
"Url": "images/10-princessmetok.png",
"id": 10
},
{
"ISBN": "9780898006018 / 0898006015",
"Name": "Heart of Gold",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Wisdom", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "second edition, revised and augmented (2010)",
"Notes": "This adaptation of a Jataka story of one of the Buddha's previous lives explains how the merit of generosity brings both temporary and ultimate happiness. A generous rich man loses his possessions but becomes even more generous, eventually attaining the perfection of wisdom. At the end, there is a guide for parents and teachers on the story, bringing the story to life, active reading and playing, daily activities, and vocabulary.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5H43.",
"Url": "images/11-heartofgold.png",
"id": 11
},
{
"ISBN": "-",
"Name": "Dazhun Gongkar Choede School Magazine",
"Author": ["Gongkar Choede Monastery"],
"Tags": ["Book", "Other", "Age 9-12"],
"Language": ["Tibetan", "English"],
"CoverType": "Paperback",
"Pages": 98,
"Illustrator": ["Unknown"],
"Publisher": "Gongkar Choede Monastery",
"Edition": "(2017)",
"Notes": "A collection of short essays by young monks in Sakya Gongkar Choede Monastery on topics that inspire them: 'The most unforgettable day in my life,' 'Monastery Life,' 'My root guru,' etc. Provides a sweet and poignant look inside the lives and thoughts of youth growing up in a monastery in India.",
"Access": "This book is out of print. A copy is available for review in the Tsechen Kunchab Ling Library, 12 Edmunds Lane, Walden NY.",
"Url": "images/12-gongkar.jpg",
"id": 12
},
{
"ISBN": "-",
"Name": "Milarepa - a great saint of Tibet - Wisdom of Tibet series",
"Author": ["the Council for Tibetan Education"],
"Tags": ["Book", "Great masters", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Page": 32,
"Illustrator": ["Unknown"],
"Publisher": "Council for Tibetan Education",
"Edition": "(2017)",
"Notes": "The life of the great master Milarepa comes up as a comic book as a initiative of the Council for Tibetan Education in order to bring out more general reading materials for Tibetan readers particularly children.",
"Access": "The book is available in both Tibetan and English, it can be ordered online and is also available in the TKL library, call number BQ7950 .M557 198.",
"Url": "images/13-milarepa.jpg",
"id": 13
},
{
"ISBN": "0382069285 / 9780382069284",
"Name": "The Buddhist World",
"Author": ["Anne Bancroft"],
"Tags": ["Book", "Life of the Buddha", "Buddhist holy days", "Age 9-12"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 47,
"Illustrator": ["-"],
"Publisher": "Silver Burdett Co.",
"Edition": "U.S. edition (1985)",
"Notes": "This entertaining encyclopedia provides an overview of a myriad number of topics in Buddhism, such as the differentiation between Buddha and Buddhists, Buddha's life and teachings, teachings on living and dying, holy dates and places, and more. A glossary, as well as suggested books for further reading, are included at the end of the encyclopedia.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ4035 .B36.",
"Url": "images/14-buddhistworld.jpg",
"id": 14
},
{
"ISBN": "9810402821 / 9789810402822",
"Name": "The greatest man who ever lived: the Supreme Buddha",
"Author": ["Ven. Weragoda Sarada Maha Thero"],
"Tags": ["Book", "Life of the Buddha", "Karma, virtues and non-virtues", "Buddha's teachings aka Four Noble Truths, Eightfold Path, interdependent origination, five aggregates, etc.", "Nonviolence",
"Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 228,
"Illustrator": ["P. Wickramanayake"],
"Publisher": "Signapore Buddhist Meditation Centre",
"Edition": "first edition (May 10, 1998)",
"Notes": "This illustrated book by a Thai monastic scholar presents thought-provoking perspectives on the Buddha's life and activities, relating them to the concerns of contemporary society. It contains many little-known facts about the Buddha's life combined with quotations from the sutras and contemporary illustrations.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ882 .W67.",
"Url": "images/15-greatestman.png",
"id": 15
},
{
"ISBN": "9780898005141 / 0898005140",
"Name": "The Monster of Lotus Lake",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Wisdom", "Compassion and loving kindness", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Sherri Nestorowich"],
"Publisher": "Dharma Publishing",
"Edition": "second edition revised and augmented (2009)",
"Notes": "This adaptation of a Jataka story of one of the Buddha's previous lives teaches how decisions about the choices we make are best when filled with both wisdom and compassion. A wise brother saves his brother and step-brother from a demon by careful analysis of right and wrong and ultimately converts the demon who threatened them into a friend. The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5W56.",
"Url": "images/16-monsteroflotuslake.png",
"id": 16
},
{
"ISBN": "0060391162 / 9780060391164",
"Name": "Freedom in Exile: the autobiography of the Dalai Lama",
"Author": ["the XIV Dalai Lama", "Tenzin Gyatso"],
"Tags": ["Book", "Great masters", "Nonviolence", "Age 13+"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 304,
"Illustrator": ["- (black and white photographs)"],
"Publisher": "HarperCollins Publishers",
"Edition": "first edition (1990)",
"Notes": "Read the story of this great master, told by the 14th Dalai Lama himself, a brilliant, noble and humble human being with a keen sense of humor. The autobiography unearths Tibetan culture and the historic events which brought remarkable Buddhist teachers to the West, and also focuses on the Dalai Lama’s philosophy on tradition, environment, science and world conflicts.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ7935 .B777.",
"Url": "images/17-dalailama.png",
"id": 17
},
{
"ISBN": "0938077406 / 9780938077404",
"Name": "Old path white clouds: walking in the footsteps of the Buddha",
"Author": ["Thich Nhat Hanh"],
"Tags": ["Book", "Life of the Buddha", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 608,
"Illustrator": ["Nguyen Thi Hop"],
"Publisher": "Parallax Press",
"Edition": "(1991)",
"Notes": "This is an in-depth recount of the life of the great master Gautama Buddha over the course of his 80 years. Written by Thich Nhat Hanh, a renowned Zen master, poet, and peace activist. The Appendix contains helpful abbreviations used for sutras.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ882 .N4813.",
"Url": "images/18-thichnhathanh.png",
"id": 18
},
{
"ISBN": "-",
"Name": "The Tree of Enlightenment: an introduction to the major traditions of Buddhism",
"Author": ["Peter Della Santina"],
"Tags": ["Book", "Life of the Buddha", "Buddha's teachings aka Four Noble Truths, Eightfold Path, interdependent origination, five aggregates, etc.", "Karma, virtues and non-virtues", "Wisdom", "Death and rebirth",
"Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 363,
"Illustrator": ["-"],
"Publisher": "Singapore Buddhist Mediation Centre",
"Edition": "(1997)",
"Notes": "The book is a very clear and interesting introduction to Tibetan Buddhism by a Western scholar who became a Sakyapa monk. The forty-one chapters explain the basics of Buddhism, Mahayana, Vajrayana, and the abhidharma, deftly combining Tibetan and Western approaches." ,
"Access": "It can be ordered online and is also available in the TKL library, call number BQ4165 .D45.",
"Url": "images/19-treeofenlightenment.png",
"id": 19
},
{
"ISBN": "-",
"Name": "The Beautiful Garland of White Lotuses An Account of the Life of the Great Vajradhara Kyabgön Gongma Trichen Rinpoche",
"Author": ["Khenpo Palden Gyatso"],
"Tags": ["Book", "Great masters", "Age 6-8", "Age 9-12"],
"Language": ["Tibetan", "Mandarim", "English"],
"CoverType": "Paperback",
"Pages": 68,
"Illustrator": ["unknown"],
"Publisher": "Khenpo Palden Gyatso's Monastery",
"Edition": "(2018)",
"Notes": "Learn about the inspiring life of the 41st Sakya Trizin, head of the Sakya Order of Tibetan Buddhism, through the depiction of his devoted scholar, Khenpo Palden Gyatso. Beautiful illustrations portray elements such as Tibetan culture, lineage gurus, Sakya main deities, and more.",
"Access": "This book is available from address: Xiang Qing Tang Street 15-4 , Aba Town, Aba County, Aba Prefecture, Sichuan Province, People's Republic of China(中国四川省阿坝藏族羌族自治州阿坝县阿坝镇阿坝县香清塘街15-4 感恩吃素食), zipcode:624600, receiver: Tang Ka Jia Cuo(唐卡加措), contact number: 0086-13438790259. And a copy is available for review in the Tsechen Kunchab Ling Library, 12 Edmunds Lane, Walden NY.",
"Url": "images/20-beautifulgarland.png",
"id": 20
},
{
"ISBN": "9781524588014",
"Name": "The Boy Who Understood Animals",
"Author": ["Yeshi Dorjee", "John S Major"],
"Tags": ["Book", "Compassion and loving kindness", "Folktales", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 27,
"Illustrator": ["unknown"],
"Publisher": "Xlibris Publishing House",
"Edition": "(July 19, 2017)",
"Notes": "This illustrated short tale presents Tenzin's compassionate efforts to help a sheep and a sick girl, with whom he ends up getting married to. This story is an adaptation from The Three Boys and Other Buddhist Folktales from Tibet, written by the same authors. Highlights of the book include a citation of a sutra at the beginning, and a list of suggested discussion questions at the end.",
"Access": "This book can be ordered online.",
"Url": "images/21-boywhounderstoodanimals.png",
"id": 21
},
{
"ISBN": "-",
"Name": "The Fundamentals of Buddhism",
"Author": ["Peter Della Santina"],
"Tags": ["Book", "Life of the Buddha", "Buddha's teachings aka Four Noble Truths, Eightfold Path, interdependent origination, five aggregates, etc.", "Karma, virtues and non-virtues", "Wisdom", "Death and rebirth",
"Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 128,
"Illustrator": ["-"],
"Publisher": "Chico Dharma Study Foundation",
"Edition": "(1997)",
"Notes": "The book is a very clear and interesting introduction to Tibetan Buddhism by a Western scholar who became a Sakyapa monk. The forty-one chapters explain the basics of Buddhism, Mahayana, Vajrayana, and the abhidharma, deftly combining Tibetan and Western approaches.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ4055 .D44.",
"Url": "images/22-fundamentals.png",
"id": 22
},
{
"ISBN": "9748346854",
"Name": "The Life of The Buddha According to Thai Temple Paintings",
"Author": ["The Council of Thai Bhikkhus in the U.S.A."],
"Tags": ["Book", "Life of the Buddha", "Great masters", "Age 9-12", "Age 13+"],
"Language": ["Thai", "English"],
"CoverType": "Paperback",
"Pages": 192,
"Illustrator": ["Rudolf Hampe"],
"Publisher": "The Council of Thai Bhikkhus in the U.S.A.",
"Edition": "(2000)",
"Notes": "A collection of mural paintings from several temples in Thailand, arranged chronologically with commentaries by ecclesiastical leaders and members of the Thai Theravada Sangha. A masterpiece!",
"Access": "This book can be ordered online.",
"Url": "images/23-thaipaintings.jpg",
"id": 23
},
{
"ISBN": "0877734739 / 9780877734734",
"Name": "The magic life of Milarepa, Tibet's great yogi",
"Author": ["Eva Van Dam"],
"Tags": ["Book", "Meditation", "Great masters", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 80,
"Illustrator": ["Eva Van Dam"],
"Publisher": "Shambhala Publications, Inc.",
"Edition": "first edition (1991)",
"Notes" : "Written in comic book-style, this is the classical story of the life of the great Kagyu master Milarepa. It demonstrates that black deeds such as jealousy and hatred perpetuate destruction, fear, and unhappiness, and that white deeds accumulated on the Dharma path, especially diligence, meditation, and most importantly, following the guru's advice, bring happiness and eventual liberation from samsara. A dramatic story filled with miraculous deeds and accomplishments, it is sure to inspire youth to virtue.",
"Access": "This book can be ordered online.",
"Url": "images/24-magiclifeofmilarepa.jpg",
"id": 24
},
{
"ISBN": "1881847004 / 9781881847007",
"Name": "Lord of the dance: the autobiography of a Tibetan lama",
"Author": ["Chagdud Tulku"],
"Tags": ["Book", "Great masters", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 268,
"Illustrator": ["-"],
"Publisher": "Padma Publishing",
"Edition": "first edition (1992)",
"Notes": "The biography of the Nyingma master, Chagdud Tulku, the great lama Sherab Gyaltsen in his previous life, is an inspirational story. Through this book, one can explore Chagdud's life as a human being who experienced situations of desire and aversion, yet always applied Dharma practices in order to purify the obstacles he faced. His life demonstrates that one can still improve and prevail amidst the difficulties that arise in samsara.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ946 .A345.",
"Url": "images/25-lordofthedance.png",
"id": 25
},
{
"ISBN": "9781606436912",
"Name": "Morals in The Life Story of the Buddha",
"Author": ["Margaret Lisa Knight"],
"Tags": ["Book", "Life of the Buddha", "Karma, virtues and non-virtues", "Age 9-12", "Age 13+", "For Teachers"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 160,
"Illustrator": ["Margaret Lisa Knight"],
"Publisher" : "International Buddhist Society of Pennsylvania",
"Edition": "first edition (2008)",
"Notes": "Inspired by Theravada teachings, this is a collection of lesson plans based on moral values demonstrated by the life of Buddha. This is a great resource for Dharma centers or for homeschooling dharma studies. Lessons are skillfully organized in the following structure: - Opening chants, meditation and review of last lesson - Question to think about before the story - The story - Questions about the story - Quotation from the Buddha about the moral of the story - Application of the moral of the story to our daily lives - Activity to reinforce the lesson - Closing chant",
"Access": "This book can be ordered online.",
"Url": "images/26-morals.jpg",
"id": 26
},
{
"ISBN": "0898002168 / 0898002176",
"Name": "Secret of the Healing Treasures",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Folktales", "Compassion and loving kindness", "Karma, virtues and non-virtues", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Julia Witwer"],
"Publisher": "Dharma Publishing",
"Edition": "(1996)",
"Notes": "This ancient Tibetan tale follows King Gesar as he frees an enslaved kingdom from evil magicians, saves his people and others by releasing magical herbs to all, and shows people how to live with compassion and peace. Read about how peace, harmony, and enlightenment will prevail in the world! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BL 1950 .T5S34.",
"Url": "images/27-secretofhealing.png",
"id": 27
},
{
"ISBN": "9780898004915",
"Name": "The Fish King",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Bradley Clemmons", "Julia Witwer"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "When the lake creatures are endangered, the king of the fishes successfully uses his past virtuous actions to beseech higher powers to save them. How can being virtuous help us in our own lives? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5C66.",
"Url": "images/28-fishking.png",
"id": 28
},
{
"ISBN": "9780898004274",
"Name": "The Magic of Patience",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "Despite the fact that the mischievous monkey constantly teases the buffalo, the buffalo remains patient. His continued compassion eventually teaches the monkey the values of kindness, patience, and sensitivity. When can patience help us in our own lives? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5M34.",
"Url": "images/29-magicofpatience.png",
"id": 29
},
{
"ISBN": "0898002532 / 0898002524 / 9780898005172",
"Name": "Golden Foot",
"Author":["Dharma Publishing", "Nazli Gellek", "Karen Stone"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "third edition (2009)",
"Notes": "A noble doe named Graceful offers her life to save her mate Golden Foot, the king of the deer, when he is caught in a hunter’s snare. This act of loving kindness changes the hunter who then releases Golden Foot. Golden Foot and Graceful set a wise and compassionate example for us all! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5M36.",
"Url": "images/30-goldenfoot.png",
"id": 30
},
{
"ISBN": "9780898004939",
"Name": "The Value of Friends",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Eric Meller"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "In this story about the importance of friends, a hawk, following his wife’s advice, becomes friends with an osprey, a tortoise, and a lion. When hunters try to capture their children, the friends come together and save the baby birds. How can you help your friends? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5N35.",
"Url": "images/31-valueoffriends.png",
"id": 31
},
{
"ISBN": "9780898005127",
"Name": "A Precious Life",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "A king becomes trapped in a deep ravine, while trying to hunt a deer. The deer risks his own life to save his hunter. The grateful king renounces hunting and resolves to protect all the lives of all the forest creatures. How can we protect the lives of animals around us? This book serves as an inspiration for life practices. The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5P54.",
"Url": "images/32-preciouslife.png",
"id": 32
},
{
"ISBN": "9780898004304",
"Name": "The Parrot and the Fig Tree",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Micheal Harman"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "A parrot lives in a fig tree surrounded by many other birds who continually search for better trees with the best fruit. However the parrot remains loyal to his friend, the tree, even when he is tested by the king of the gods. Let’s all become true, devoted friends like the parrot! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5P54",
"Url": "images/33-parrotandfigtree.png",
"id": 33
},
{
"ISBN": "9780898004342",
"Name": "Wisdom of the Golden Goose",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Sherri Nestorowich"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "After a king sends his hunters to trap him as a gift to his sick wife, the Golden Goose chooses to willingly go to the palace and teaches the king about compassion and goodness. We should all follow Golden Goose’s wise advice! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5.",
"Url": "images/34-wisdomofgoldengoose.png",
"id": 34
},
{
"ISBN": "9780898006025",
"Name": "The Hunter and the Quail",
"Author": ["Dharma Publishing", "Nazli Gellek", "Trudy Crofts", "Ken McKeon"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator" : ["Rachel Garbett"],
"Publisher" : "Dharma Publishing",
"Edition": "third edition (2010)",
"Notes" : "A wise quail teaches the other birds how to escape a hunter’s net through teamwork. The birds who learn to cooperate live in safety, while those who quarrel are caught. Let’s all learn how to work together! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5H76.",
"Url": "images/35-thehunter-quail.png",
"id": 35
},
{
"ISBN": "9780898004328",
"Name": "Pieces of Gold",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Family relationships", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType":"Paperback",
"Pages": 32,
"Illustrator": ["Emily Jan"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes": "A young man realizes that his greed and dishonesty only harms himself after he unsuccessfully tries to cheat his older brother out of his inheritance. In the end the older brother shows his generosity and brotherly spirit by still sharing the inheritance with him. How does selfiness hurt us in our own lives? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5M5.",
"Url": "images/36-piecesofgold.png",
"id": 36
},
{
"ISBN" : "9780898005196",
"Name": "A Wise Ape Teaches Kindness",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Andrea Kassof"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes" : "A kind ape rescues a hungry farmer trapped in a ravine. However when the ape rests, the farmer tries to kill him. Nonetheless, the ape continues to be compassionate and brings the farmer to safety, teaching him a lesson. How can we be compassionate towards difficult people? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5W57.",
"Url": "images/37-awiseape.png",
"id":37
},
{
"ISBN": "9780898005219",
"Name": "Three Wise Birds",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Wisdom", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Zohra Kalinkowitz"],
"Publisher": "Dharma Publishing",
"Edition": "third edition (2009)",
"Notes" : "A king without an heir chooses to raise three birds as his children, but is mocked for doing so. In response, the king has the birds demonstrate their wisdom to the public. Their teachings are honored and heeded by all the people, who realize wisdom can come unusual sources. True leadership requires standing up for your beliefs and heeding the advice of wise counselors. The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5Z68.",
"Url": "images/38-threewisebirds.png",
"id": 38
},
{
"ISBN": "0898002117",
"Name": "The Rabbit Who Overcame Fear",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType":"Paperback",
"Pages": 36,
"Illustrator": ["Eric Meller"],
"Publisher": "Dharma Publishing",
"Edition": "first edition (1991)",
"Notes" : "A wise lion saves the forest animals from disaster after a young rabbit’s blind fear endangered them all. The rabbit and the other animals all learn how to cope with fear better. Learning how to deal with emotions such as fear is a step forward to become wiser. The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5C66.",
"Url": "images/39-rabbit-fear.png",
"id": 39
},
{
"ISBN": "0898001919",
"Name": "The Rabbit in the Moon",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "(1989)",
"Notes": "A rabbit offers his own body as food to a hungry stranger in an act of compassion. The rabbit is rewarded by being placed in the moon, where he remains to this day, reminding the world of the power of selflessness. After reading, look up at the moon and find the shape of the noble rabbit! The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5R33.",
"Url": "images/40-rabbit-moon.png",
"id": 40
},
{
"ISBN": "9780898001951",
"Name": "The Courageous Captain",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Rosalyn White"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes" : "A famous retired sea captain accompanies a ship of young sailors who are searching for treasure and teaches them that good actions are more reliable than hopes. The sailors succeed when they finally follow the elderly captain’s advice. Whose advice should we listen to when we need help? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5C68.",
"Url": "images/41-courageouscaptain.png",
"id": 41
},
{
"ISBN": "9780898005202",
"Name": "The King Who Understood Animals",
"Author": ["Dharma Publishing"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Compassion and loving kindness","Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Magdalena Duran"],
"Publisher": "Dharma Publishing",
"Edition": "second edition (2009)",
"Notes" : "In return for saving a snake’s life, King Senaka is given a charm that allows him to understand him the speech of animals which he must keep secret on the cost of his life. However, he later endangers himself by agreeing to disclose it. In the end, King Senaka realizes the dangers of thoughtless promises, selfishness, and greed after being counseled by a wise goat. What must we consider when making a promise? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Recent editions are accompanied with lesson suggestions for parents and teachers in the back.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5M34.",
"Url": "images/42-kingwhounderstoodanimals.png",
"id": 42
},
{
"ISBN": "9780374335486",
"Name": "I Once Was a Monkey: Stories Buddha Told",
"Author": ["Jeanne M. Lee"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 40,
"Illustrator": ["Filomena Tuosto"],
"Publisher": "Farrar, Straus, and Giroux",
"Edition":"(1999)",
"Notes": "A statue of Buddha comes to life to tell a group of animals stuck in a cave six stories of his past lives, known as Jataka tales. These stories teach the animals some of the central tenets of Buddhist teachings, such as compassion, honesty, and thinking before acting. Let’s pass our time with these animals and learn from the Buddha’s example!",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5L44.",
"Url": "images/43-iwasamonkey.png",
"id": 43
},
{
"ISBN": "9780893469566",
"Name": "Becoming Buddha the Story of Siddhartha",
"Author": ["Whitney Stewart"],
"Tags": ["Book", "Life of the Buddha", "Meditation", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 32,
"Illustrator": ["Sally Rippin"],
"Publisher": "Stone Bridge Press",
"Edition": "(2009)",
"Notes": "This picture book tells the story of Gautma Buddha’s life from birth to enlightenment in a simple and understandable manner for children. HH the 14th Dalai Lama wrote the foreword to the book and at the end of the book HH has advice geared towards children on how to meditate. After reading the Buddha’s story, let’s all follow his example and learn how to meditate!",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ882 .S74.",
"Url": "images/44-becomingbuddha.png",
"id": 44
},
{
"ISBN": "0898001439",
"Name": "Great Gift and the Wish-Fulfilling Gem",
"Author": ["Lama Mipham"],
"Tags": ["Book", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 36,
"Illustrator": ["Terry McSweeney"],
"Publisher": "Dharma Publishing",
"Edition": "first edition (1990)",
"Notes" : "In a past life the Buddha was reincarnated as a Great Gift, a kind-hearted child of a minister. Great Gift seeing the problems of the poor seeks out a wish-fulfilling gem to help them. What can we do in our own lives to help the poor? The publishing company and writing group behind this book was founded by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ1462 .E5G74.",
"Url": "images/45-greatgift.png",
"id": 45
},
{
"ISBN": "9781571747013",
"Name": "The Dalai Lama on What Matters Most, Conversations on Anger, Compassion, and Action",
"Author": ["Noriyuki Ueda"],
"Tags": ["Book", "Compassion and loving kindness", "Great masters", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 311,
"Illustrator": ["-"],
"Publisher": "Hampton Roads Publishing",
"Edition": "(2013)",
"Notes" : "The book is a record of author’s interview with HH Dalai Lama. Short chapters on “What Can Buddhism Offer”, “Compassionate Anger”, “Love vs Attachment” and, “Enlightened Buddhism in Modern World.” Very accessible, friendly format not difficult language. Author teaches cultural anthropology and social reform theory at Tokyo Institute of Technology. Author has personal history of social activism and has been disappointed by his experience. He found those working for inner peace suffering inner turmoil. And that the turmoil was what informed their work in the world. Even though all members of his group preached peace and espoused the same goals, they could not work together harmoniously or peacefully. Author also experienced disappointment with traditional Japanese Buddhist practices labeling it “funeral buddhism” Author found Japanese monks preached compassion but failed in its practice. He brought these concerns and asked the HH Dalai Lama, how to create an altruistic society.",
"Access": "This book can be ordered online and is also available in the TKL library, call number BQ7935 .B774.",
"Url": "images/46-dalailama-whatmattersmost.png",
"id": 46
},
{
"ISBN": "-",
"Name": "Buddhist Sunday School Lessons",
"Author": ["Venerable Sumangalo"],
"Tags": ["Book", "Compassion and loving kindness", "Life of the Buddha", "Karma, virtues and non-virtues","Meditation", "Refuge", "Age 6-8", "Age 9-12", "Age 13+", "For Teachers"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 144,
"Illustrator": ["-"],
"Publisher": "Penang Buddhist Association",
"Edition": "(1958)",
"Notes" : "This book was made to be used in Sunday schools, in primary and secondary schools, and for home-instruction of children by parents. It includes prayers, stories, and test questions to accompany the major Buddhist teachings. The book was published by a group of Straits Chinese Buddhists.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ7935 .B774.",
"Url": "images/47-buddhistsundayschool.png",
"id": 47
},
{
"ISBN": "9789381607350",
"Name": "101 Jataka Tales",
"Author": ["Om Books International"],
"Tags": ["Book", "Family relationships", "Buddha's previous lives aka Jataka tales", "Karma, virtues and non-virtues", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 128,
"Illustrator": ["Shraboni Roy"],
"Publisher": "Om Books International",
"Edition": "(2012)",
"Notes": "This book is a compilation of Jataka tales, stories of the Buddha’s previous lives. Each tale is only one page long, includes an important lesson, and is accompanied by a beautiful illustration making them perfect short stories for children. You can make reading a tale or two part of your bedtime routine!",
"Access": "It can be ordered online.",
"Url": "images/48-101jatakatales.png",
"id": 48
},
{
"ISBN": "1559390204",
"Name": "The Buddha’s Question",
"Author": ["W.W. Rowe"],
"Tags": ["Book", "Compassion and loving kindness", "Life of the Buddha", "Karma, virtues and non-virtues","Buddha's previous lives aka Jataka tales", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 24,
"Illustrator": ["Pamlyn Grider"],
"Publisher": "Snow Lion Publications",
"Edition": "(1994)",
"Notes": "The Buddha teaches a group of children about loving kindness by recounting a story from his past life. This book is based on chapter thirty of Vietanmese Zen Buddhist teacher Thich Nhat Hanh’s recounting of the life and teachings of Gautama Buddha Old Path White Clouds. This version of the story is rhymed and has wonderful illustrations to make it more appealing to young children. The fun rhymes will make this your children’s favorite book in no time!",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ1462 .E5R69.",
"Url": "images/49-thebuddhasquestion.png",
"id": 49
},
{
"ISBN": "1574160818",
"Name": "Tibetan Tales for Little Buddha",
"Author": ["Naomi C. Rose"],
"Tags": ["Book", "Folktales", "Refuge", "Family relationships", "Age 6-8", "Age 9-12"],
"Language": ["Tibetan", "English"],
"CoverType": "Paperback",
"Pages": 63,
"Illustrator": ["Naomi C. Rose"],
"Publisher": "Clear Light Publishing",
"Edition": "(2004)",
"Notes" : "With stories written in both English and Tibetan, this collection of three traditional tales include great insight into Tibetan culture and wisdom. The beginning of the book includes information on Tibet, a traditional mantra children can use, and has a list of vocabulary words relating to Buddhism and Tibet. HH the Dalai Lama wrote the foreword to the book.",
"Access": "It can be ordered online and is also available in the TKL library, call number PZ90 .T58R67.",
"Url": "images/50-tibetantalesforlitttlebuddhas.png",
"id": 50
},
{
"ISBN": "0740746898",
"Name": "Baby Buddhas",
"Author": ["Lisa Desmond"],
"Tags":["Book", "Meditation", "Compassion and loving kindness", "Family relationships", "Age 2-5", "Age 6-8", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 142,
"Illustrator": ["Kelly Ludden"],
"Publisher": "Andrew McMeel Publishing",
"Edition": "(2004)",
"Notes": "This book can help children as young as eighteen months to learn how to meditate. The book includes full explanations, instructional illustrations, and testimonials from parents. With different meditation practices for various ages, abilities, and goals there is something here for everyone. Let’s learn how to meditate as a family!",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ5436 .D47.",
"Url": "images/51-babybuddhas.png",
"id": 51
},
{
"ISBN": "9780977333875",
"Name": "Words of Wisdom",
"Author": ["Lama Surya Das"],
"Tags": ["Book", "Wisdom", "Compassion and loving kindness", "Karma, virtues and non-virtues", "Age 6-8", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 143,
"Illustrator": ["-"],
"Publisher": "Koa Books",
"Edition": "(2008)",
"Notes": "This collection of maxims by non-sectarian Tibetan Buddhist teacher Lama Surya Das is a great source of advice for people of all ages. Pick up the book whenever you need a quick dose of wisdom.",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ5660 .S87.",
"Url": "images/52-wordsofwisdom.png",
"id": 52
},
{
"ISBN": "-",
"Name": "How Will I Behave Today and the Rest of My Life?",
"Author": ["Venerable Wuling"],
"Tags": ["Book", "Compassion and loving kindness", "Karma, virtues and non-virtues", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 208,
"Illustrator": ["-"],
"Publisher": "Pure Land College Press",
"Edition": "(2009)",
"Notes" : "This book is based around maxims from the book Guidelines for Being a Good Person, which were inspired by translations of Di Zi Gui, a centuries old children’s book based on ancient Confucian classics. It shows how to and why we should carry out these maxims, in an easily understandable manner for children. The author, Venerable Wuling, is an American Buddhist nun of the Pure Land school of Mahayana Buddhism.",
"Access": "This book can be ordered online.",
"Url": "images/53-howwillibehavetoday.png",
"id": 53
},
{
"ISBN": "0553363854",
"Name": "Buddha’s Little Instruction Book",
"Author": ["Jack Kornfield"],
"Tags": ["Book", "Compassion and loving kindness", "Refuge", "Karma, virtues and non-virtues", "Meditation", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 151,
"Illustrator": ["-"],
"Publisher": "Bantam Books",
"Edition": "(1994)",
"Notes": "This book includes practical Buddhist teachings and meditation practices for people of all ages. Let’s apply these maxims and methods in our own lives!",
"Access": "It can be ordered online and is also available in the TKL library, call number BQ5405 .K67.",
"Url": "images/54-buddhaslittlebook.png",
"id": 54
},
{
"ISBN": "9781844836239",
"Name": "Buddha at Bedtime",
"Author": ["Dharmachari Nagaraja"],
"Tags": ["Book", "Compassion and loving kindness", "Life of the Buddha", "Karma, virtues and non-virtues", "Buddha's previous lives aka Jataka tales", "Meditation", "Family relationships", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 144,
"Illustrator": ["-"],
"Publisher": "Watkins Publishing",
"Edition": "(2008)",
"Notes" : "This book is great for Buddhist beginners. It includes an introduction for parents and children on the origins and key concepts of Buddhism, a step-by-step meditation guide suitable for children, and twenty Jataka tales with their key Buddhist teachings highlighted at the end of the stories. Let’s all lay the foundation for a more compassionate life!",
"Access": "It can be ordered online and is also available in the TKL library, call number J294.38 .N13B.",
"Url": "images/55-buddhaatbedtime.png",
"id": 55
},
{
"ISBN": "9781933605517",
"Name": "Samsara Dog",
"Author": ["Helen Manos"],
"Tags": ["Book", "Compassion and loving kindness", "Karma, virtues and non-virtues", "Death and rebirth", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 20,
"Illustrator": ["Julie Vivas"],
"Publisher": "Kane Miller EDC Publishing",
"Edition": "American edition (2007)",
"Notes": "This book is a great natural way to introduce young children to the ideas of death, reincarnation, Samsara, Nirvana, and loving kindness. It follows a dog throughout his many reincarnations, until he finally is free from Samsara after understanding loving kindness. What are some of our own experiences with death?",
"Access": "It can be ordered online and is also available in the TKL library, call number PZ7 .M3166.",
"Url": "images/56-samsaradog.png",
"id": 56
},
{
"ISBN": "0152344659",
"Name": "Himalaya Vanishing Cultures",
"Author": ["Jan Reynolds"],
"Tags": ["Book", "Other", "Age 2-5", "Age 6-8"],
"Language": ["English"],
"CoverType": "Hardcover",
"Pages": 30,
"Illustrator": ["-"],
"Publisher": "Harcourt Brace Jovanovich, Publishers",
"Edition": "(1991)",
"Notes": "This book is a great introduction for children into the Sherpa way of life. What can we learn from these Buddhist Himilayan people?",
"Access": "It can be ordered online and is also available in the TKL library, call number DS485 .H6R48.",
"Url": "images/57-himalayavanishingcultures.png",
"id": 57
},
{
"ISBN": "1577314670",
"Name": "Tibetan Buddhist Altars A Pop-Up Gallery of Traditional Art and Wisdom",
"Author": ["Robert Beer"],
"Tags": ["Book", "Refuge", "Meditation", "Age 2-5", "Age 6-8", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 7,
"Illustrator": ["Robert Beer"],
"Publisher": "New World Library",
"Edition": "(2004)",
"Notes" : "This book is perfect for an addition to or the beginning of your family shrine. It includes pop-up versions of traditional thangkas for five deities. Each altar image of the deity is accompanied by a mantra for and basic information about said deity. It’s design makes it great for mantra recitation, meditation, and travel. Start your own altar at home!",
"Access": "It can be ordered online.",
"Url": "images/58-tibetanaltars.png",
"id": 58
},
{
"ISBN": "9780898000580",
"Name": "The Fourth of July New Dimensions of Freedom",
"Author": ["Tarthang Tulku Rinpoche"],
"Tags": ["Book", "Other","Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 125,
"Illustrator": ["-"],
"Publisher": "Dharma Publishing",
"Edition": "(2015)",
"Notes": "This collection of essays is perfect for any Buddhist American who is wondering about the connection between America and Buddhism. It highlights and celebrates the shared values and symbols between both heritages. It also documents the spread of dharma in the US. The essays were originally speeches given on Fourth of July celebrations by Tibetan Nyingma Buddhist Lama Tarthang Tulku Rinpoche. Why should Buddhist Americans feel proud and grateful for their forefathers?",
"Access": "This book can be ordered online.",
"Url": "images/59-fourthofjuly.png",
"id": 59
},
{
"ISBN": "9781561012725",
"Name": "Five Voices Five Faiths An Interfaith Primer",
"Author": ["Book", "Anantanand Rambachan", "Yaakov Ariel", "Patricia Phelan", "Amanda Millay Hughes", "Amy Nelson"],
"Tags":["Other", "Age 9-12", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 125,
"Illustrator": ["-"],
"Publisher": "Cowley Publications",
"Edition": "second edition (2010)",
"Notes": "This primer shows what is special about The Dharma, amongst the major religions of the world. Designed to teach people about religions they may have no experience with, it is a great way to learn about the differences and similarities between various faiths. The Abbess of the Chapel Hill Zen Center wrote the section on Buddhism. Let’s be tolerant of other religions and remember the uniqueness of The Dharma!",
"Access": "This book can be ordered online.",
"Url": "images/60-fivevoices.png",
"id": 60
},
{
"ISBN": "0877734933 / 9780877734932",
"Name": "The Heart Treasure of the Enlightened Ones",
"Author": ["Patrul Rinpoche", "with commentary by Dilgo Khyentse"],
"Tags": ["Book", "Compassion and loving kindness", "Meditation", "Age 13+"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 290,
"Illustrator": ["-"],
"Publisher": "Shambhala Publications",
"Edition": "(1992)",
"Notes" : "A beautiful lyric poem by the great 17th century Nyingma Saint Patrul Rinpoche extolling the true meaning of compassion and how to practice it in our daily lives. The commentary is made by the great Nyingma master Dilgo Khyentse Rinpoche.",
"Access":"This book can be ordered online and is also available in the TKL library, call number BQ4138 .T55.",
"Url": "images/61-hearttreasure.png",
"id": 61
},
{
"ISBN": "0980711436 / 9780980711431",
"Name": "Lundeeria: The Tale of a Journey to Another Land, Courage, and Compassion",
"Author": ["Venerable Wuling"],
"Tags": ["Book", "Compassion and loving kindness", "Karma, virtues and non-virtues", "Age 6-8", "Age 9-12"],
"Language": ["English"],
"CoverType": "Paperback",
"Pages": 80,
"Illustrator": ["Ann Marie Napoli"],
"Publisher": "Pure Land College Press",
"Edition": "(2011)",
"Notes": "This fictional tale by Venerable Wuling, an American Buddhist nun of the Pure Land school of Mahayana Buddhism, advocates that children have compassion for animals. It presents all animals as fully sentient beings who are worthy of respect and encourages going vegetarian. What can we do to help alleviate the suffering of animals?",
"Access": "This book can be ordered online.",
"Url": "images/62-lundeeria.png",
"id": 62
},
{
"ISBN": "9780545104623",