forked from skandragon/thing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpennsic-book.csv
We can't make this file beautiful and searchable because it's too large.
2012 lines (1950 loc) · 897 KB
/
pennsic-book.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id,location,start_time,end_time,instructor,instructor_kingdom,instance_id,name,track,culture,topic_and_subtopic,adult_only,description_book,description_web,duration,fee_itemization,handout_fee,handout_limit,material_fee,material_limit,repeat_count,updated_at
2440,Denys the Decadent (Denys the Decadent's Camp),2015-07-27 08:00:00 -0400,2015-07-27 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3604,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
3085,Encampment of Erica Paige (W10),2015-07-27 11:00:00 -0400,2015-07-27 12:00:00 -0400,Erica Paige,east,4469,Introduction to Spinning *Poi*,Pennsic University,Other,,false,Learn some of the basic *poi* movements and terminology necessary to get you started.,"In this one-hour workshop, you will learn some of the basic *poi* movements and terminology necessary to get you started. *Poi* spinning is a great low-impact workout that will help you to improve your coordination and give your fitness routine some ""flare""! $20 Material Fee includes your choice of Home of Poi - Sock Poi and a storage pouch. Handout with class review & contacts. Refreshments are also served. ",1.0,"$20.00 Material Fee covers handout, poi, and refreshments",,,20.0,,3,2015-05-06 13:48:04 -0400
2540,Archery,2015-07-27 12:00:00 -0400,2015-07-27 14:30:00 -0400,Master Godric of Hamtun,east,3770,Range Set-up,Archery,"",,false,"Volunteers are requested to help set up the Archery Range on Monday, July 27, starting at 9 am. Archery marshals and non-marshals alike are welcome.","Volunteers are requested to help set up the Archery Range on Monday, July 27, starting at 9 am. Archery marshals and non-marshals alike are welcome.",2.5,"",,,,,1,2015-04-26 18:23:29 -0400
3079,A&S 2,2015-07-27 15:00:00 -0400,2015-07-27 16:30:00 -0400,THL Sciath ingen Chaennaig,ealdormere,4458,Heraldry Design Basics,Heraldry,Other,,false,"What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. ","What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. This class will include an introduction to device design, based on the SCA rules of Heraldry. Some one-on-one assistance will be provided. ",1.5,Handouts: $2,2.0,10,,,3,2015-05-06 00:51:36 -0400
2243,Livonia Smithery (170),2015-07-27 15:00:00 -0400,2015-07-27 16:00:00 -0400,Lord T W,æthelmearc,3430,Advanced Engraving,Pennsic University,"",,true,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,1.0,handout,5.0,12,,,5,2015-04-08 17:51:30 -0400
3152,A&S 2,2015-07-27 18:00:00 -0400,2015-07-27 19:00:00 -0400,Lady Arastorm ,east,4550,Anglo-Saxon Context: Late Roman World ,Pennsic University,European,,false,"Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the late Roman world, both survivals of the Romano-British and Roman/Byzantine.","To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. This workshop focuses on the the continuing influence of Rome. We'll cover the Romano-British culture and the cultures of the Mediterranean: Lombard, Visigoth, and other heirs to the Roman Empire, especially Constantinople.",1.0,"",,15,,,1,2015-06-09 21:28:16 -0400
2361,A&S 13,2015-07-27 19:00:00 -0400,2015-07-27 19:45:00 -0400,Lord Jacob the Wanderer,east,3469,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-07-28 08:00:00 -0400,2015-07-28 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3605,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2477,Rapier List 2,2015-07-28 08:00:00 -0400,2015-07-28 09:00:00 -0400,Countess Elena d'Artois,æthelmearc,3644,*Études* 1 and 2 for Single Sword (Fencing),Rapier Activities,European,,false,"For all levels and teachers. Drills focus on form, balance, movement and coordination. *Études* for drill; elements from drill used to work in groups.","For beginner and intermediate fencers and those who teach them. These drills will focus on form, balance, movement and coordination. *Étude*1 (first week) is more linear; *Étude* 2 (second week) adds off line/lateral movement. Emphasis will be on learning the *études* for home drill, as well as taking elements out of the drill for more focused work in groups. ",1.0,"",,,,,7,2015-05-14 19:19:33 -0400
2267,A&S 1,2015-07-28 09:00:00 -0400,2015-07-28 11:00:00 -0400,Lady Gwen Blackthorne MacGriogair,meridies,3311,Beginning Kumihimo,Pennsic University,Far Eastern,,false,"Part 1: Learn the basics of Japanese braiding using the modern foam disk. Students will learn a round, square and flat braid.","Part 1: Learn the basics of Japanese braiding using the modern foam disk. Students will learn a round, square and flat braid. Uses for, history and names of braids will be discussed. Students may bring own equipment if desired.",2.0,total class is 10.00 if just handout 3.00,3.0,20,10.0,20,2,2015-03-25 19:16:19 -0400
3019,A&S 2,2015-07-28 09:00:00 -0400,2015-07-28 11:00:00 -0400,Mistress Alicia Langland,æthelmearc,4420,Thorsberg Trousers: Pants That Last!,Pennsic University,European,,false,Tired of repairing pants that rip in unmentionable places? Then you’ll love these pants based on trousers from an Iron Age burial!,"Tired of repairing pants that rip in unmentionable places? Then you’ll love these pants based on trousers from an Iron Age burial! Learn what you’ll need to make them yourself: fabrics, seams, pattern, and construction.",2.0,Handout is 11 pages long.,3.0,35,,,2,2015-05-03 20:56:11 -0400
2252,A&S 3,2015-07-28 09:00:00 -0400,2015-07-28 11:00:00 -0400,THL Amanita Villarosa,middle,3297,Beginner Knitting,Pennsic University,Other,,false,"Learn how to cast on, knit, purl, and cast off. Feel free to bring your own needles and yarn.","",2.0,"$2.50 - needles
$2.50 - yarn",,,5.0,10,2,2015-03-25 17:49:40 -0400
3153,A&S 12,2015-07-28 09:00:00 -0400,2015-07-28 10:00:00 -0400,Lady Arastorm ,east,4547,Anglo-Saxon Context: Celts: Wales Ireland Scotland,Pennsic University,European,,false,"Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the Celtic kingdoms of Wales, Ireland and Scotland's interactions with England.","To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. This workshop focuses on the Celtic kingdoms of Wales, Ireland and Scotland: how they interacted with the English - and were changed by them.",1.0,"",,15,,,1,2015-06-10 04:34:44 -0400
2866,Dance Tent,2015-07-28 09:00:00 -0400,2015-07-28 10:00:00 -0400,Lady Rebecca da Firenze,west,4161,Children's Dance: Branles and More!,European Dance,European,,false,It's never too early to learn to dance! Expect branles; other dances as time allows! (Any youth in attendance require a responsible adult present.),"It's never too early to learn to dance! Come learn dances fun for all ages. This class will have a focus on branles, both miming and tangle, but will include other dances as time allows! Parents are welcome and, indeed, encouraged to attend. For children under 12, Pennsic rules require a responsible adult to accompany them.",1.0,"",,,,,1,2015-05-07 20:44:20 -0400
2348,Hus Faerhaga (N08),2015-07-28 09:00:00 -0400,2015-07-28 12:00:00 -0400,THL Kai SaerPren,east,3456,Intro to Woodworking,Pennsic University,European,,true,Introduction to woodworking with only hand tools. Includes modern SOPs and safe practices for the purposes of building medieval-style furniture.,"Two half days Tuesday and Wednesday; an overview of hand wood work, with an opportunity to try things out. We will start on Tuesday morning with a chunk of a log and by noon we should have some boards or other furniture parts using wedges, axes, froes, drawknives, spokeshaves and wood planes. On Wednesday we will look at making joints, boring, and maybe a bit of carving. Covers saws, chisels, and planes. Extensive instructions on the selection, use and maintenance of all these tools will be covered. The class will be taught both first week and again second week. Students who cannot attend the whole class are encouraged to drop in or out at their convenience.",3.0,"",,,,,2,2015-06-28 21:28:57 -0400
2173,Amphitheater,2015-07-28 10:00:00 -0400,2015-07-28 11:00:00 -0400,Lady Noelle de la Plume,middle,3184,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
2892,A&S 6,2015-07-28 10:00:00 -0400,2015-07-28 12:00:00 -0400,Mistress Isabel Ximenex de Gaucin,east,4201,Beautiful Neckline Finishing,Pennsic University,European,,false,Hands-on class. Learn how to finish a neckline based on extant examples from the 13th century. Technique uses a bias-cut strip.,"Hands-on class. Learn how to finish a neckline based on extant examples from the 13th century. Technique uses a bias-cut strip and makes a beautifully finished neckline. If you have needle, thread and scissors, please bring them. If there is time remaining, we will also go over a seam finishing technique.",2.0,"",,,,10,2,2015-05-01 19:15:14 -0400
2611,A&S 7,2015-07-28 10:00:00 -0400,2015-07-28 11:00:00 -0400,Instructor Gin,æthelmearc,3856,Ninja: Truth from Shadows,Pennsic University,Far Eastern,,false,Dare you look into the shadows of history to find the truth? Come to discover both the legends and real history of Japan's famed assassins. New info!,Dare you look into the shadows of history to find the truth? Come to discuss and discover both legends and the real history of Japan's famed spies and assassins. This class will examine the romanticized image of the Ninja and discuss the actual history of the world's most famous spies.,1.0,"",,20,,,4,2015-04-26 14:17:14 -0400
2169,A&S 8,2015-07-28 10:00:00 -0400,2015-07-28 11:00:00 -0400,Mistress Rhiannon y Bwa,æthelmearc,3180,Wool Spinning on Many Distaffs: Hands-On,Pennsic University,European,,false,Learn the use of the iconic distaff. Distaffs are not just for flax! Learn how to prepare wool to spin and mount it on various styles of distaffs. ,"Learn the use of the iconic distaff. Distaffs are not just for flax! To a spinster, a distaff functions as a third hand, holding a large quantity of fiber in orderly condition as she pulls down fiber to fill her spindle. Come and learn about several types of distaff designs and how to mount wool prepared in various ways on them. Great for hot, sticky or windy weather. Keep the wool on the distaff, not on you!!!! Spinsters often find the evenness of their yarn improves when mounted on a distaff. And if you walk around a lot…. 'porting your distaff with spindle tucked into the cross lacing is so easy. Improve your Pennsic spinning experience. Loaner spindles and distaffs are available for students who don't wish to purchase them.
I have just produced some YouTube videos on Medieval Spinning that you might enjoy before coming to Pennsic, but not required! http://www.youtube.com/playlist?list=PLjUCUOUGq_WC-sv2N_qfIhpJDi8LbR-9U, or just search YouTube for ""missingspindle"". Discussion of medieval spinning info is on my blog here: ""missingspindle.blogspot.com""",1.0,"Loaner Distaff=$0.00
Purchased distaffs=$35.00",1.0,15,,15,2,2015-03-01 14:33:13 -0500
3157,A&S 12,2015-07-28 10:00:00 -0400,2015-07-28 11:00:00 -0400,Lady Arastorm ,east,4556,Anglo-Saxon Medicine ,Pennsic University,European,,false,"The Anglo-Saxons used herbs, surgery, and magick to deal with chronic and acute illness and injury. What did they use, and what can we safely use now?","Anglo-Saxons' medicine included herbs, surgery, and magick. They dealt with injuries, chronic and acute illness. Recent tests showed some receipts from their leech books effective, although clearly some remedies are better to read about than try. We'll look at sources, herbal remedies, healing magick, and other techniques (like surgery), who practitioners were, and what self treatment was like. You may find something you can use, you will find many things to amuse.",1.0,"",,15,,,1,2015-05-27 18:59:48 -0400
2725,Dance Tent,2015-07-28 10:00:00 -0400,2015-07-28 11:00:00 -0400,THL Gianna Vettori,middle,3955,"Italian Dance for English Feet: *Anello, Fedelta*",European Dance,European,,false,Don't let Italian dances intimidate you! Come to learn two simple Italian dances taught with the English Country dancer in mind.,"Italian dances can often seem quite intimidating for dancers just getting steady on their English Country feet. Explore two of the more simple yet visually appealing Italian dances, *Anello* and *Fedelta*, taught with English Country terminology.",1.0,"",,20,,,1,2015-05-07 11:51:12 -0400
2209,Performing Arts Rehearsal Tent,2015-07-28 10:00:00 -0400,2015-07-28 13:00:00 -0400,Pennsic Performing Arts,"",3246,Set-up: Rehearsal and Class Tent,Performing Arts and Music,"",,false,"Set-up Rehearsal and Class Tent: signs, chairs, and other necessary Performing Arts properties for classes and events.","Set-up Rehearsal and Class Tent: signs, chairs, and other necessary Performing Arts properties for classes and events.",3.0,"",,,,,1,2015-04-30 20:44:54 -0400
2399,University Point,2015-07-28 10:00:00 -0400,2015-07-28 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3519,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2941,Middle Eastern Tent,2015-07-28 10:30:00 -0400,2015-07-28 11:45:00 -0400,Christy Fricks,atlantia,4242,Belly Dance for Girls and Teens,Middle Eastern,Middle Eastern,,false,Basic belly dance for girls and teens. Parents may attend with children. Learn basic movements and some cultural background. All levels welcome,"Basic belly dance for girls and teens. Parents may attend with their children. Teens are welcome to attend both this and my adult class. Learn fun easy-to-do basic movements of belly dance...along with the cultural historical background of belly dance. All levels of ability welcome.
",1.25,"",,,,,1,2015-05-04 19:07:37 -0400
2208,Performing Arts Tent,2015-07-28 10:30:00 -0400,2015-07-28 20:30:00 -0400,Pennsic Performing Arts,"",3248,Set-up: Performing Arts Tent,Performing Arts and Music,"",,false,"Set-up in Performing Arts Tent: stage decks and tops, stage back drop, curtains, backstage area, signs, lights, and other PA properties.","On Tuesday and Wednesday of Land Grab Week, we build the stage, hang curtains, rig the house and backstage lights, and set up the chairs. This starts at about 10 am each day and continues until we are done. Come help us make the tent into a theater worthy of the name! Bring your cordless drills and other hand tools. On Tuesday we also set up the Amphitheater and the Performing Arts Rehearsal Tent. ",10.0,"",,,,,2,2015-03-26 20:33:43 -0400
2437,Amphitheater,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,Lord William Kilmaron,middle,3595,Juggling 101 (Beginner),Performing Arts and Music,"",,false,Learn to juggle three balls in the simplest pattern. Equipment available for use or purchase. ,The most basic 3-ball cascade juggling. Juggling balls will be made available for use by the class and may be bought afterward from the instructor. ,1.0,"",,,,,3,2015-05-01 00:06:45 -0400
2374,A&S 1,2015-07-28 11:00:00 -0400,2015-07-28 13:00:00 -0400,Master Elias Gedney,east,3508,Ships in the SCA Period: A Chronological Overview,Pennsic University,European,,false,A comprehensive overview of the development of ships in western Europe between 600 and 1600.,A comprehensive overview of the development of ships in western Europe between 600 and 1600.,2.0,"",,,,,2,2015-04-06 17:30:13 -0400
3115,A&S 2,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,Lord Alaxandr,east,4510,HS Summer Math Help and Challenge Problems,Pennsic University,"",,false,"Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems.","Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems. Don't make your parents have to remind you to open the book you carried to Pennsic. ;-)
",1.0,"",,,,,3,2015-05-08 19:43:53 -0400
3002,A&S 3,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,THL Arianwen o Wyndham,middle,4361,Medieval Papercutting,Pennsic University,Multiple Cultures,,true,History and technique of decorative papercutting from 6th-century China to 15th-century Germany.,"",1.0,Covers cost of printing handouts.,1.0,20,,,2,2015-05-01 19:29:15 -0400
3003,A&S 7,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,Lord Luca Sogliano,middle,4363,*Zibaldone da Canal*: The Book of a 14th-C Trader,Pennsic University,European,,false,"The daily life of a 14th-century man, geared towards the fun and insightful bits that animate. Also a great look at a contemporary view on Islam.","A look into the daily life of a 14th-century merchant named Canal, through diary and ledger, geared towards the fun and insightful bits that bring him to life. Watch him fail at learning algebra. Learn how he feels about Islam. You may never get a better look at the personal thoughts of someone who lived 600 years ago.",1.0,For the handout,1.0,20,,,2,2015-05-01 19:43:41 -0400
2606,A&S 8,2015-07-28 11:00:00 -0400,2015-07-28 11:30:00 -0400,Lady Jeneur le Geline,lochac,3825,The Market Wallet: A Form of Period Luggage,Pennsic University,European,,false,The market wallet is an alternative to the shoulder bag in use from Anglo-Saxon to 19th-C Europe. Construction and period evidence will be discussed.,"",0.5,N/A,,20,,20,2,2015-04-25 20:25:40 -0400
2673,A&S 11,2015-07-28 11:00:00 -0400,2015-07-28 13:00:00 -0400,Lady Angharad verch Glyndwr O Llang,middle,3977,Basic Bookbinding,Pennsic University,"",,false,"Basic binding of books, history, hands-on, practical application. Learn different stitches and page attachment; leave with a small bound book.","Basic binding of books, a bit of history, hands-on, and practical application. Participants will learn different types of stitching and page attachment, plus covers, and will leave with a small bound book and/or a girdlebook cover.",2.0,"Paper, leather, wax,thread, cloth, ",,,5.0,,2,2015-04-29 12:30:22 -0400
2976,A&S 12,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,THL Philippa Montague,middle,4351,Designing and Building a Pavilion,Pennsic University,European,,false,"An overview of pavilion styles, followed by detailed discussions of design considerations for several different styles.","This class will present an overview of medieval and Renaissance tent and pavilion styles, based on what we see in period portraits and in a few surviving examples. The presenters will discuss their experience in building a variety of pavilions. After the class period, students are welcome to visit several pavilions on-site to continue discussion of design details and challenges.",1.0,"",,15,,,2,2015-05-01 18:49:18 -0400
2603,Dance Tent,2015-07-28 11:00:00 -0400,2015-07-28 12:00:00 -0400,Lady Rebecca da Firenze,west,3854,*Gracca Amorosa* for Beginners,European Dance,European,,false,"Come learn *Gracca Amorosa*, one of the most popular 16th-C. *cascarde*. Dancers of all ages welcome. Prior dance experience helpful but not required.","",1.0,"",,,,,1,2015-05-07 11:49:37 -0400
3042,A&S 3,2015-07-28 12:00:00 -0400,2015-07-28 13:00:00 -0400,Viscountess Ísgerðr Gulkárr,middle,4435,Viking: The Next Step...,Pennsic University,European,,false,Taking your basic Viking/Norse to the next level. This class includes accessories and covers head to toe. Male and female. ,Taking your basic Viking/Norse to the next level. How to make small changes to polish your overall Norse look. This class includes accessories and covers head to toe. Male and female attire will be covered. This is not a sewing or persona-specific class. ,1.0,"",,30,,,1,2015-05-04 07:55:07 -0400
2115,A&S 8,2015-07-28 12:00:00 -0400,2015-07-28 13:00:00 -0400,THL Vincenzo da Brescia,ealdormere,3103,The Medievalist Abroad: What to See in Italy,Pennsic University,European,,false,"A tourist itinerary of medieval attractions, based on extensive personal experience, starting with Venice, Florence, and Rome, and going on.","Medieval Italy is sadly neglected by tourism bureaus that emphasize classical and Renaissance attractions. This class will highlight some of Italy's many medieval glories, financed by a golden age of profiteering from the crusades and crusaders.",1.0,"",,30,,,1,2015-02-21 16:44:06 -0500
2436,Dance Tent,2015-07-28 12:00:00 -0400,2015-07-28 13:00:00 -0400,Duchess Branwyn ferch Gwythyr,æthelmearc,3592,European Sword Dancing,European Dance,European,,false,"An overview of hilt and point sword dances in period, and a chance to learn a more modern, though quite similar, version.","An overview of hilt and point sword dances in period, and a chance to learn a more modern, though quite similar, version.",1.0,"Handout. Materials are limited because I only have 12 ""swords"" to dance with.",1.0,25,,12,2,2015-05-11 13:42:06 -0400
2246,Livonia Smithery (170),2015-07-28 12:00:00 -0400,2015-07-28 13:00:00 -0400,Lord T W,æthelmearc,3447,Beginning *Repoussé* and Chasing,Pennsic University,"",,true,Hands-on class; will make a copper foil rose.,Hands-on class; will make a copper foil rose.,1.0,Hand out,5.0,12,,,8,2015-04-08 17:58:40 -0400
2943,Middle Eastern Tent,2015-07-28 12:30:00 -0400,2015-07-28 13:30:00 -0400,Mistress Scheherazade al-Zahira,east,4246,Middle Eastern Dancing for All Shapes and Sizes,Middle Eastern,Middle Eastern,,false,"If you love to shake your shimmy or want to try dancing for the first time, come out and join us.","",1.0,"",,,,,2,2015-05-04 18:27:44 -0400
2368,A&S 1,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,Mistress Safiya bint Suleiman,trimaris,3485,Indian Kutchwork / Marash Embroidery I,Pennsic University,Middle Eastern,,false,Basic interlaced herringbone stitch: a complex multi-step stitch used primarily in northern Indian and Armenian embroidery dating from the 13th C. ,Interlaced herringbone stitch is a complex multi-step stitch used primarily in northern Indian and Armenian embroidery dating from the 13th C. This class teaches the basics of layout and work from which more complex patterns can be built.,1.0,"Handout packet includes hoop, fabric, floss, needle, instruction, research CD",5.0,10,,10,1,2015-04-06 17:27:30 -0400
2656,A&S 5,2015-07-28 13:00:00 -0400,2015-07-28 15:00:00 -0400,THL Bojei Temur,middle,3970,Exchequer 101,Pennsic University,"",,false,"Were you told, “Just put expense A on line 15 – it’s easy!”? Have you ever been confused by SCA financial reports? Would you like to understand them?","",2.0,"",,15,,,2,2015-04-29 12:10:11 -0400
2278,A&S 7,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,Lady Faye de Trees,atlantia,3321,Are You Wearing a Tablecloth? Greek Clothing!,Pennsic University,"",,false,"Learn how to create Greek garb easily, accurately, and with style! Meet Greek style, form, and ideals for the easiest garb ever!","We all deal with hot weather in the summer. Learn how to do so easily, accurately, and with style! We will cover basic Greek style, form, and ideals, then go into fabrics, colors, trims, and accessories to create a great classical and cool look.",1.0,"",,30,,,2,2015-03-25 20:40:10 -0400
2288,A&S 8,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,Lady Maggie Rue,east,3331,Historical Uses of Poisons,Pennsic University,"",,false,A rundown of the weaponization of poisons in history garnered from various resources.,"A review of the weaponization of poisonous plants (and two rocks) as recorded in history. A summary garnered from various resources, the compilation paints a unique picture of warfare and weaponization techniques from several cultures.",1.0,"",,20,,,2,2015-03-26 07:20:43 -0400
2524,A&S 11,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,THL Sæhildr barngóðr,middle,3744,Midrealm Youth A&S 50 Activity,Pennsic University,"",,false,"Kids! Come by for a few minutes, sign your name to the list and help with the Midrealm Youth A&S 50 project! (You don't have to be from the Midrealm.)","Kids, Youth, and Teens! Come by for a few minutes, sign your name to the list, and help out with the Midrealm Youth A&S 50 project! (You don't have to be from the Midrealm, but you will learn a little about the Dragon Heraldry!) This is open to anyone old enough to hold a crayon and only takes as long as you want!",1.0,"",,,,,1,2015-05-03 21:14:25 -0400
2104,A&S 13,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,Duchess Siobhán inghean uí Liatháin,drachenwald,3085,Heavy Metal Embroidery: Finnish Style!,Pennsic University,"",,false,A brief history about Finnish Iron Age Bronze Spirals and how to create the decorations yourself. ,"",1.0,Paper,3.0,20,,,2,2015-05-06 19:54:06 -0400
2888,Dance Tent,2015-07-28 13:00:00 -0400,2015-07-28 14:00:00 -0400,Baroness Gwenllyen the Minstrel,middle,4189,Penta Pentamere Dances,European Dance,European,,false,"Learn five easy dances that require no more than two couples: Petite Rose, Montarde Bransle, Grene Gynger, Black Alman and Rufty Tufty.","Learn five easy dances that require no more than two couples: Petite Rose, Montarde Bransle, Grene Gynger, Black Alman and Rufty Tufty. Buy a step-by-step dance guide and the music if you want or download here. http://www.michiganleftturn.org/Penta-Pentamere-Dances.htm
",1.0,"$2 - Dance steps
$10 - 6 song CD
Purchase not required",2.0,20,10.0,20,1,2015-05-07 11:55:02 -0400
2695,Performing Arts Rehearsal Tent,2015-07-28 13:00:00 -0400,2015-07-28 14:30:00 -0400,THL Breddelwyn ap Taliesin,middle,3937,Introduction to Harp,Performing Arts and Music,"",,false,Offering a brief history of the harp and the chance to try one to see if you would like to pursue the harp further. I will have three harps with me.,"If you have an admiration for the harp and wondered what it would be like to play one, this class offering will give you an opportunity to try one. A brief history of the harp is given plus I will have two extra harps for you to try to help you decide if the harp is an instrument you would like to pursue further.",1.5,"",,,,,2,2015-04-30 02:16:58 -0400
2245,Livonia Smithery (170),2015-07-28 13:30:00 -0400,2015-07-28 14:30:00 -0400,Lord T W,æthelmearc,3440,Beginning Engraving,Pennsic University,"",,true,"Hands-on class. Intro to tools, first cuts, graver control, hammer use.","Hands-on class. Intro to tools, first cuts, graver control. Student will learn both hand-held and hammer-struck engraving.",1.0,printed handout,5.0,12,,,8,2015-04-08 17:56:19 -0400
2657,A&S 1,2015-07-28 14:00:00 -0400,2015-07-28 15:00:00 -0400,Baroness Cairistiona de Coueran,atlantia,3972,Pilgrim's Bag,Pennsic University,Multiple Cultures,,false,Thought about carrying a pilgrim's bag? Free up your hands; keep your modern items out of sight. Learn how to make a cloth or leather pilgrim's bag.,"Ever thought about carrying a pilgrim's bag instead of carrying a bulky basket? You can free up your hands, and it is a great way to keep your modern items out of sight. Learn how you can make a pilgrim's bag, out of cloth or leather. ",1.0,"",,,,,2,2015-04-30 20:31:26 -0400
2715,A&S 3,2015-07-28 14:00:00 -0400,2015-07-28 15:00:00 -0400,Lady Fiona the PRepared,æthelmearc,4002,Hounds Abound!,Pennsic University,"",,false,Interested in how hounds were kept? What were the different types of hounds? What is coursing? Come learn about all things canine!,"Come learn about hounds in the Middle Ages! We'll be looking at different types of hounds, how they were cared for, how they were hunted and how they fit into everyday life.",1.0,"",,,,,2,2015-04-29 13:39:33 -0400
2199,A&S 7,2015-07-28 14:00:00 -0400,2015-07-28 15:00:00 -0400,Mistress GraziaGeralda,middle,3227,Hand-Sewing 101,Pennsic University,"",,false,"A discussion and hands-on of hand-sewing of garb, etc. This is not embroidery, but useful stitches. Please bring needle, thread and light cloth.","",1.0,"",,,,,1,2015-03-07 17:24:48 -0500
2293,A&S 11,2015-07-28 14:00:00 -0400,2015-07-28 14:45:00 -0400,Lord Rauf le Brewere,lochac,3338,Pimp My Wine,Pennsic University,European,,false,"Learn how to ""Pimp My Wine"" and turn everyday wine into a period-style hypocras full of spice and yumminess. Tastings so bring ID. Age 21 and over.","Just like ""Pimp My Ride"" takes an ordinary old car and turns it into a masterpiece, this class will show you how to turn your normal everyday wine into a period-style hypocras full of spice and yumminess. Alcoholic and non-alcoholic version will be available for sample during the class so please remember your ID. Age 21 and over.",0.75,"",,,,,4,2015-03-26 15:52:31 -0400
3033,Battlefield,2015-07-28 14:00:00 -0400,2015-07-28 16:00:00 -0400,Duchess Elina of Beckenham,middle,4409,Armored Rose: Lecture,Pennsic University,"",,false,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA; a ""must"" for those who are or teach or fight women.","Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical, physiological and psychological differences between men and women and how these impact fighting, plus how to make the most of them. Tendons, adrenaline, hormones and society all have an impact. See how they play a part in changing the fight.",2.0,"",,,,,3,2015-05-03 17:55:28 -0400
2728,Dance Tent,2015-07-28 14:00:00 -0400,2015-07-28 15:00:00 -0400,Lord Maurin Lessault,east,3957,Beginner Dance: 15th-Century Italian A,European Dance,European,,false,"Never danced before? No problem! This class will start with basic steps and patterns, and then teach fun, simple dances from 15th-century Italy.","Never danced before? No problem! This class will start with basic steps and patterns, and then teach fun, simple dances from 15th-century Italy.",1.0,"",,,,,1,2015-05-03 13:49:55 -0400
2117,Performing Arts Rehearsal Tent,2015-07-28 14:30:00 -0400,2015-07-28 15:30:00 -0400,THL Vincenzo da Brescia,ealdormere,3095,30 Seconds and A Capo,Performing Arts and Music,European,,false,Convert your guitar into a lute! Includes a tutorial and examples of period tablature; feel free to bring your own instrument but it isn't required,"",1.0,"",,30,,,1,2015-05-05 23:46:07 -0400
2690,A&S 1,2015-07-28 15:00:00 -0400,2015-07-28 15:45:00 -0400,Baroness Annabelle Makmyllane ,ealdormere,3986,The Beauty of Brevity,Pennsic University,Multiple Cultures,,false,Speaking beautifully and inspirationally without taking hours to do it.,"Speaking beautifully and inspirationally without taking hours to do it. We will be exploring resources that inspire us and, hopefully, you as well.",0.75,"",,,,,2,2015-04-30 21:30:49 -0400
2677,A&S 3,2015-07-28 15:00:00 -0400,2015-07-28 16:30:00 -0400,THL Ambros Kyrielle,æthelmearc,3984,Intoduction to Labyrinths,Pennsic University,Multiple Cultures,,false,"Labyrinths wend through all of period. Learn the basic types and how to draw them. Explore their change over time. ”The Chalk Labyrinth Guy”, teacher.","It matters not if you are Tudor or Turk, Norseman or Nepalese, Breton or Borgia, labyrinths are a part of your world. Topics covered are ""What *is* a labyrinth?"" ; categories and types; how to draw one; and a whirlwind tour of labyrinths in period. From storytelling devices to dancing floors, from monster trap to heavenly road the labyrinth has meant many things to many peoples. Brought to you by ""That Chalk Labyrinth Guy.""",1.5,"",,,,,2,2015-04-29 12:44:33 -0400
2439,A&S 7,2015-07-28 15:00:00 -0400,2015-07-28 16:00:00 -0400,Baron Mael Eoin mac Echuid,east,3649,The Social: A Recurring Non-Activity,Pennsic University,"",,false,"How can a small, weekly canton social activity turn into something pulling 40-50+ members from four states on a regular basis, and what's next?","Modeled after something seen in the Canton of Whyt Whey some years ago, the Canton of Black Icorndall started a weekly ""Canton Social"" which has proven to be very successful in terms of general socializing, encouraging niche or not-quite-SCA (even non-SCA) activities as well as serving as a staging ground to relaunch a regional fighter practice, rekindle dance practice and more. It also serves as a good venue for newcomers with so much going on. Join us for a discussion of the model, our successes, some things to watch out for and more!
Learn what we've learned since starting to offer this class, and bring more ideas to the table!",1.0,"",,,,,1,2015-04-18 11:52:52 -0400
2130,A&S 8,2015-07-28 15:00:00 -0400,2015-07-28 16:30:00 -0400,Baron Eick der Rotnacken,middle,3122,"Making a Glastonbury ""Lite"" Chair",Pennsic University,European,,false,Learn the tips and techniques behind a folding chair with Glastonbury-style arms.,"Tired of the look and limited life span of Coleman chairs? Learn the tips and techniques you need to make a wooden folding chair with Glastonbury-style arms. It folds to 6"" thick, holds up to 300 lbs. (my wife and I tested it), and can be decorated.",1.5,$1.00 for optional handout,1.0,20,,,1,2015-02-21 16:22:21 -0500
2983,Dance Tent,2015-07-28 15:00:00 -0400,2015-07-28 16:00:00 -0400,Pennsic Dance Staff,"",4331,Beginner Dance: Branles A,European Dance,European,,false,"Never danced before? No problem! We'll start with basic steps and patterns, and then introduce you to fun branles from 16th-century France.","",1.0,"",,,,,1,2015-05-04 16:00:05 -0400
2244,Livonia Smithery (170),2015-07-28 15:00:00 -0400,2015-07-28 16:00:00 -0400,Lord T W,æthelmearc,3435,Advanced *Repoussé* and Chasing ,Pennsic University,"",,true,"Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.","Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.",1.0,handout,5.0,12,,,4,2015-04-08 17:53:28 -0400
2922,White List,2015-07-28 15:00:00 -0400,2015-07-28 16:00:00 -0400,Duke Vissevald Selkirksson,east,4462,The Poleax Techniques of Paulus Hector Mair,Martial Activities,European,,false,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,1.0,"",,,,,4,2015-05-05 16:38:49 -0400
2819,Performing Arts Rehearsal Tent,2015-07-28 15:30:00 -0400,2015-07-28 17:00:00 -0400,Lord Thomas Haworth,middle,4115,Being in Tune in Period,Performing Arts and Music,European,,false,"An introduction to the sound of tuning schemes using ratios, as used in medieval and Renaissance music. I use recorded sounds.","This class is an introduction to pitch and tuning in period. A was not 440, and equal temperament was only a (not very useful) theory. There were choices that had to be made in tuning fixed-pitch instruments like organs, harps, and fretted instruments. We will examine the theory and hear examples of four versions of the musical scale and the differences between them. These scales include the two musical tunings most commonly used in the medieval and Renaissance periods: Pythagorean and ¼-comma meantone. There will be no arithmetic required.",1.5,"",,20,,,2,2015-06-27 22:39:17 -0400
2445,A&S 7,2015-07-28 16:00:00 -0400,2015-07-28 17:00:00 -0400,THL Maleachi,middle,3652,Lunch Counters for Fun and Profit,Pennsic University,"",,false,Get the most out of your lunch counter and still make sure people are properly fed without having a lot left over while making money.,"How to get the most out of your lunch counter and still make sure people are properly fed without having a lot left over while making money. Sample recipes, portioning, cost breakdown and budgets will be discussed.",1.0,"",,,,,2,2015-04-16 18:17:04 -0400
3083,A&S 10,2015-07-28 16:00:00 -0400,2015-07-28 17:30:00 -0400,Lady Jocelyn of Black Diamond,atlantia,4465,Chainmaille for Beginners ,Pennsic University,"",,false,"An introduction to chainmaille. Students will learn European 4-in-1, Byzantine, and Half Persian 3-in-1. ","This is a simple introduction to chainmaille. In total, there will be three weaves taught on three separate days (one weave per day). Weaves taught will be European 4-in-1, Byzantine, and Half Persian 3-in-1. ",1.5,"
Practice Rings
Aluminum ring packet",1.0,20,4.0,15,3,2015-05-05 19:02:11 -0400
2484,A&S 12,2015-07-28 16:00:00 -0400,2015-07-28 18:00:00 -0400,Lady Magdalena la Sanguigni,atlantia,3697,Sex in SCA Period,Pennsic University,European,,true,"Not marriage, not birth, just sex. It's your Western Civ class with the juicy bits left in.","Not marriage, not birth, just sex. It's your Western Civ class with the juicy bits left in. From the illicit frescos of Pompeii to Aretino's invention of modern pornography. This year I will be adding a small section on sex crimes. Handouts are limited, but I will also have CDs of the material for $1.",2.0,Printing fees for 30 pg handouts including 7 color pages ,6.0,20,,,2,2015-05-05 06:38:02 -0400
3035,Blue List,2015-07-28 16:00:00 -0400,2015-07-28 17:30:00 -0400,Duchess Elina of Beckenham,middle,4408,Armored Rose: Field Class,Martial Activities,"",,false,On-the-field class teaching techniques from the Armored Rose lecture. Bring sword and shield. No armor needed. Covers stance and power generation.,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical differences between men and women and how these impact fighting, and how to make the most of them. Best taken in conjunction with the lecture course, this is a physical demonstration where students and teachers will try out the techniques covered in the lecture.",1.5,"",,,,,3,2015-05-04 16:40:35 -0400
2919,Performing Arts Rehearsal Tent,2015-07-28 17:00:00 -0400,2015-07-28 18:30:00 -0400,Lady Erlandr Nordenskald,east,4220,Recorder Jam Session,Performing Arts and Music,European,,false,Do you play the recorder? Would you like to play with others in a group setting? Read through music? Come join us. All ages welcome.,"Do you play the recorder? Would you like to play with others in a group setting? Read through Renaissance literature? Come join us. In the 90-minute session we will start with beginner/easy reading and then move towards harder music. If you're a youth player, then come at the beginning. If you're more advanced, then come halfway through. Bring your instrument or use one of ours. There will be soprano recorders available at $6.00 each, and alto recorders for $12.00.",1.5,"$3 is music for the class. There will be soprano recorders available at $6.00 each, and alto recorders for $12.",3.0,15,,,2,2015-05-05 19:04:41 -0400
2447,A&S 10,2015-07-28 18:00:00 -0400,2015-07-28 19:30:00 -0400,Lady Parvati Chandravanshi,middle,3657,Henna Body Art for Beginners,Pennsic University,Middle Eastern,,false,"From mixing paste from the best ingredients, to safety instruction and building your first designs, we will focus on the basics for great henna.","",1.5,$5 per henna cone provided to students. I sell mundanely at this rate.,,30,5.0,30,2,2015-04-16 18:28:24 -0400
3001,Middle Eastern Tent,2015-07-28 18:00:00 -0400,2015-07-28 20:00:00 -0400,Jowhara,middle,4350,*Chifting* to Sunset: Relaxing Belly Dance ,Middle Eastern,Middle Eastern,,false,"End the day with Moon Salute, *taqsim* belly dance, *chiftitelli* rhythm and yoga for floor work. Bring yoga mat, shoes, and veil! All ages welcome. ","Class includes *Chandra Namaskar* (Moon Salutation), *taqsim* belly dance, and yoga poses suitable for belly dance floor work. We will explore the *chiftitelli* rhythm with combinations and improvisation. A relaxing way to end the day and welcome evening. Please bring a yoga mat, shoes and a veil. All ages are welcome. Musicians are welcome! ",2.0,"",,,,,2,2015-05-04 16:51:33 -0400
2361,A&S 13,2015-07-28 19:00:00 -0400,2015-07-28 19:45:00 -0400,Lord Jacob the Wanderer,east,3470,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
3021,Dance Tent,2015-07-28 21:00:00 -0400,2015-07-29 00:00:00 -0400,Pennsic Dance Staff,"",4392,Open Dancing,European Dance,European,,false,Join us all evening for dancing by request.,"",3.0,"",,,,,5,2015-05-03 14:07:06 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-07-29 08:00:00 -0400,2015-07-29 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3606,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2477,Rapier List 2,2015-07-29 08:00:00 -0400,2015-07-29 09:00:00 -0400,Countess Elena d'Artois,æthelmearc,3643,*Études* 1 and 2 for Single Sword (Fencing),Rapier Activities,European,,false,"For all levels and teachers. Drills focus on form, balance, movement and coordination. *Études* for drill; elements from drill used to work in groups.","For beginner and intermediate fencers and those who teach them. These drills will focus on form, balance, movement and coordination. *Étude*1 (first week) is more linear; *Étude* 2 (second week) adds off line/lateral movement. Emphasis will be on learning the *études* for home drill, as well as taking elements out of the drill for more focused work in groups. ",1.0,"",,,,,7,2015-05-14 19:19:33 -0400
3138,Thunder Bird Atlatl (Thunder Bird Atlatl Booth #?),2015-07-29 08:00:00 -0400,2015-07-29 10:00:00 -0400,THL Grimolfr Ormalfrson,æthelmearc,4565,How to Make an Atlatl Dart,Pennsic University,Multiple Cultures,,true,How to make an atlatl dart from start to cast. Limit of 4 students participating in each class.,"",2.0,"",,,,,4,2015-05-27 19:02:19 -0400
2200,Artisan's Row B,2015-07-29 09:00:00 -0400,2015-07-29 16:00:00 -0400,Artisans Row,east,3224,Glass Day,Artisan's Row,"",,false,Working with glass to make handmade beads. Torches will be set up for demonstration and use; a display will showcase the various styles created.,"",7.0,"",,,,,2,2015-06-25 21:16:31 -0400
2506,Artisan's Row B,2015-07-29 09:00:00 -0400,2015-07-29 16:00:00 -0400,Artisans Row,east,3715,The Tournament: A Festival for All,Artisan's Row,"",,false,"Tournaments were a venue for spectators, musicians, dancers, cooks, heralds. In fact, they were a microcosm of the SCA in general. Join us to learn. ","In the SCA we often equate the word tournament to combat or competition ...
but that is just a small part of what tournaments were during most of the
Middle Ages. Non-combatant activities had a very important role and filled most of the time. Tournaments were a venue for spectators, musicians, dancers, cooks, heralds. In fact, they were a microcosm of the SCA in general. Join us to learn about ways to bring your persona's passion to the lists whether you are a fighter, consort, artist or herald... or stop by and share your experience with others.
Combat is not permitted in the University, but combatants will be there to
entertain and amuse the gallery as well as converse with and answer
questions for those who have interest in the martial aspect of tournaments.",7.0,"",,,,,1,2015-04-30 20:47:49 -0400
2598,Artisan's Row C,2015-07-29 09:00:00 -0400,2015-07-29 16:00:00 -0400,Artisans Row,east,3817,Cheesemakers / Dairy Arts Day,Artisan's Row,"",,false,"Blessed are the Cheesemakers who make tasty bits. Come play with us and experience some tasty, tantalizing treats. See what you can make.","Blessed are the Cheesemakers who make tasty bits. Come play with us and experience some tasty, tantalizing treats. See what you can make and learn how cheese is made.",7.0,"",,,,,1,2015-04-28 21:27:15 -0400
2268,A&S 1,2015-07-29 09:00:00 -0400,2015-07-29 11:00:00 -0400,Lady Gwen Blackthorne MacGriogair,meridies,3313,Intermediate Kumihimo,Pennsic University,Far Eastern,,false,Part 2: Students will continue to learn more braids on foam disk. There will be four new braids taught in this class.,Part 2: Students will continue to learn more braids on foam disk. There will be four new braids taught in this class. Students will also learn how to finish braids in many different styles.,2.0,"10.00 for materials & handout
3.00 for handout only",3.0,20,10.0,20,2,2015-03-25 19:14:33 -0400
2290,A&S 3,2015-07-29 09:00:00 -0400,2015-07-29 11:00:00 -0400,Lady Eadgyth aet Staeningum,east,3335,Lucet: Beyond Square Cord,Pennsic University,"",,false,You can make good square cord; what's next? Flat and multi-color cords. Bring your lucet. (We can slip a cord off and put it back on after class.),"You’re comfortable making square cord; what's next? We'll work on flat and multi-color cords. Please bring your lucet. We'll also demonstrate how to slip a cord off, and put it back on after class.",2.0,"(3) colors of floss on cards, and handout",,,1.0,15,2,2015-04-25 16:58:42 -0400
3115,A&S 4,2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,Lord Alaxandr,east,4504,HS Summer Math Help and Challenge Problems,Pennsic University,"",,false,"Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems.","Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems. Don't make your parents have to remind you to open the book you carried to Pennsic. ;-)
",1.0,"",,,,,3,2015-05-08 19:43:53 -0400
3175,A&S 6,2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,Berakha bat Mira v'Shlomo,east,4595,Introduction to Hebrew Language,Pennsic University,Multiple Cultures,,false,A discussion of Hebrew in the medieval period and introduction to the Hebrew alphabet.,"Hebrew is an ancient tongue, and underwent many permuations throughout its history before its modern revival. We will discuss some of the evolutions of Hebrew from the Iron Age through the medieval period, who was learning and speaking this language, and why. We will also look at some Hebrew scripts, and go through basic pronunciation exercises.",1.0,$1.50 to cover costs of printing the alphabet charts,1.5,10,,,2,2015-06-06 07:59:30 -0400
2397,A&S 7,2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,Lady Raziya Bint Rusa,east,3541,Gardening for Beginners,Pennsic University,"",,false,"Do you want to garden? Learn to grow your own food and herbs. We will discuss site choice, soils, sun, pollinators, pests, and more.","Do you want to garden, but don't know how? This class will cover the basics of how to grow your own food and herbs. We will discuss site choice, soils, sun, pollinators, pests, and more. ",1.0,Fee is for handout.,2.0,30,,,2,2015-04-10 18:53:49 -0400
2137,A&S 11,2015-07-29 09:00:00 -0400,2015-07-29 12:00:00 -0400,Cynthia du Pont,meridies,3133,"Small Silk Banner, 10"" x 10""",Pennsic University,European,,true,Learn how to make a small silk banner; handouts available plus material list if you wish to make more. Limit of 12 participants. Others may watch.,"Learn how to make a small silk banner using the Serti ('corral' the dye) style. There will be handouts, including a material list so you can make more banners/standards when you get home. Limit of 12 participants. Others may watch.",3.0,"",,12,,12,2,2015-02-22 10:11:10 -0500
3154,A&S 12,2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,Lady Arastorm ,east,4548,Anglo-Saxon Context: Franks Carolingia Merovingia,Pennsic University,European,,false,"Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the Merovingian, Carolingian and other Frankish interactions with England.","To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. This workshop focuses on the Merovingian, Carolingian, Holy Roman Empire, and other Frankish kingdoms, and how that interaction impacted the Anglo-Saxons.",1.0,"",,15,,,1,2015-05-27 19:00:56 -0400
2837,A&S 14,2015-07-29 09:00:00 -0400,2015-07-29 14:30:00 -0400,Chirurgeon Instructor,"",4137,ASHI Basic First Aid,First Aid,"",,false,"Created to help students develop basic first aid knowledge, skills, and the confidence to respond. Cost is $15 for card only, $20 including books.","Basic First Aid was created to help students develop basic first aid knowledge, skills, and the confidence to respond. The program is an excellent choice for both the community and workplace setting, and is consistent with recommendations of the 2010 National First Aid Science Advisory Board and OSHA’s best practices for first aid training programs in the workplace. Class length: 5 hours. Cost is $15 for card only, $20 including books.",5.5,Separate fee for card or course materials.,,,,,3,2015-04-30 22:35:37 -0400
3148,Cabochons (Bow Street),2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,Lady Arastorm ,east,4559,Introduction to Runes,Pennsic University,European,,false,Introduction to the *Futharc* and *Futhorc* runes for use in divination and magic (and *RúnValdr* q.v.) with resources for further study.,"Runes are a system of writing that is now best known as a tool for divination, but has been more, from basic communication to magickal practice. This workshop will give an overview of what the runes have been and can be, and give you direction on how to proceed in your studies. ",1.0,"",,20,,,2,2015-05-22 21:02:06 -0400
3105,Dance Tent,2015-07-29 09:00:00 -0400,2015-07-29 10:00:00 -0400,THL Henry of Maldon,æthelmearc,4490,Children's Dance: Old English Dances,European Dance,European,,false,It's never too early to learn to dance! Come learn old English dances fun for all ages. (Any youth in attendance require a responsible adult present.),"",1.0,"",,,,,1,2015-05-07 20:45:14 -0400
2173,Amphitheater,2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,Lady Noelle de la Plume,middle,3185,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
2539,A&S 4,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,Lady Mikalina Lydushka Pavlovna,east,3767,Teas and Why We Love Them!,Pennsic University,Multiple Cultures,,true,"Covers the history, the diversity and properties of the teas we love!","This class will cover the history, the diversity and properties of the teas we love! We will cover the many kinds of tea, from white to black, from whole leaf to dusting, the many health benefits, and the preparation the many different kinds of teas! We will have a tea party to enjoy a few of the diverse kinds of teas available. Sorry, due to dietary restrictions, bring your own cookies! There will be some recipes and brewing instructions in the handout.",2.0,"6 different types of teas to sample, cups and hot water, sweeteners, lemon and cream.",3.0,30,5.0,30,1,2015-04-23 17:15:40 -0400
2114,A&S 5,2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,Duke Finnvarr deTaahe,ealdormere,3101,What Knights Worried About,Pennsic University,European,,false,"In 1350, Geoffroi de Charny took the demoralized knights of France to school. See what Charny thought knights needed to re-learn about chivalry.","",1.0,"",,,,,2,2015-02-21 20:17:51 -0500
2582,A&S 6,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,Lady Dianimh Ban,middle,3805,Breastfeeding and Babywearing Support Group,Pennsic University,Multiple Cultures,,false,"If you are pregnant or breastfeeding and would like mom support, please come. Bring the kids. IBCLC, La Leche leaders, LCs, counselors. Late is ok.","Breastfeeders and babywearers, unite. Come join us If you are a babywearer, pregnant or nursing (any age child), if you are an exclusive pumper, or if you are a support person or educator. Everyone is welcome to come, hang out and learn about breastfeeding, babywearing and overcoming issues. Sometimes we all need help when we are working through issues like heat, growth spurts, teething, first foods and weaning, getting a good back carry. This is a casual group. If you have learned something about breastfeeding and babywearing, and you think it would benefit others, please feel free to share it. If you are an IBCLC, LC, Support Counselor, educator, La Leche League leader or associate, please come and provide your support. Bring your favourite baby carriers to show others. We can also talk about weaving carriers and traditional babywearing. ",2.0,"",,,,,3,2015-04-24 18:49:26 -0400
2095,A&S 7,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,Baroness Camilla de la Reynarde,middle,3074,"Beginning Tatting, Part 1",Pennsic University,Other,,false,"Tatting is a type of lacemaking. Supplies can be found at craft stores. Learn a craft that fits in a Ziploc bag, can be done in the car, or at court!","Tatting is a type of lacemaking. Supplies can be found at most craft stores. Learn a craft that fits in a Ziploc bag, and can be done in the car or at court! I will focus on learning how to make both parts of the double stitch flip every time, forming the double stitch and making a ring of double stitches.",2.0,I provide prewound shuttles and a handout with directions and projects.,3.0,20,2.0,20,1,2015-02-21 20:10:58 -0500
2168,A&S 8,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,Mistress Rhiannon y Bwa,æthelmearc,3178,"10th-17th-C. Spindle Sticks and Whorls, Hands-On",Pennsic University,European,,true,"Learn use of Viking, Anglo Norse and Netherlandish recreated spindle sticks and whorls, including 'tuning' spindle and whorl. Hands-on spinning.","Hands-on spinning includes a selection of re-created Anglo Norse spindle sticks from Coppergate, Viking spindles from Norse settlements of the 10th-17th centuries (including North Atlantic Saga type), and Netherlandish spindles/*Raeren* whorls from the 16th-17th century also used in England. Some examples different than last year will be available to test and to buy. Instructor will teach 'tuning' whorls to spindle sticks and is particularly interested in the spinability of surviving spindle sticks with the 'belly bump' on the shaft. Tapered whorl holes that match tapered spindle sticks will be explored. Students will spin wool (provided) on these re-creations in class. All levels welcome, though this is not a beginners' class. Note that this class has 'loaner' spindle sticks available for those who don't want to purchase them, or bring your own and some wool to spin if we run out.
I have just produced some YouTube videos on medieval spinning that you might enjoy before coming to Pennsic, but it is not required! http://www.youtube.com/playlist?list=PLjUCUOUGq_WC-sv2N_qfIhpJDi8LbR-9U, or just search YouTube for ""missingspindle"". And a blog on Viking /medieval spinning here: missingspindle.blogspot.com.",2.0,Dependent on whether student uses loaner spindle or purchases spindles in price range from $20.00-$40.00,1.0,15,,15,2,2015-03-01 16:27:25 -0500
2702,A&S 10,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,THL Eva vanOldebroek,middle,3967,Sprang: Basics and Beyond,Pennsic University,"",,false,Open to beginners and to all who would like to expand to new techniques as well. ,"Learn a new thread manipulation skill! Open to beginners and to all who would like to expand to new techniques as well.
",2.0,Sprang frame and yarn,,15,3.0,10,2,2015-05-26 13:36:36 -0400
3142,Cabochons (Bow Street),2015-07-29 10:00:00 -0400,2015-07-29 11:30:00 -0400,Lady Arastorm ,east,4561,*RúnValdr*,Pennsic University,European,,false,"In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. A modern system for rune magick.","In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. This is a system that shows, for example, how to use Norse or Anglo-Saxon runes to hear even at distance, or to awaken inanimate objects. This is a system of energy manipulation using runes and another set of symbols. This workshop introduces the symbols and what each of them is used for, and includes the attunement. It does *not* include introduction to runes. You may take this workshop without knowing the runes, but you will need to learn them to be able to use this system. You will be able to use this technique immediately. ",1.5,0,,15,,,4,2015-05-22 21:02:42 -0400
2356,Dance Tent,2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,THL Gianna Vettori,middle,3466,Italian Dance for English Feet:*Bizzarria d'Amore*,European Dance,European,,false,Don't be intimidated by Italian dance! Join us for Negri's *Bizzarria d'Amore* using English Country Dance terminology.,Italian dances can seem intimidating for dancers just getting steady on their English Country feet. Negri's *Bizzaria d'Amore* is a simple Italian dance for couples that translates easily into ECD terminology. For as many couples as will in sets of two.,1.0,"",,,,,1,2015-05-07 11:51:27 -0400
2668,Games Tent,2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,Lord István Nyiregyhazi,east,3913,Tarot and other Card Games,Games,European,,false,"A review of the card games previously taught, including the game of tarot. Practice playing them with an instructor's assistance.","This class will review the card games previously taught, including tarot. You can practice playing them with an instructor's assistance.",1.0,"",,,,,2,2015-05-07 18:20:46 -0400
2481,Minerva's Spindle (158),2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3666,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
2408,Performing Arts Rehearsal Tent,2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,Lady Siri Toivosdotter,middle,3535,Christmas (Music) in July,Performing Arts and Music,European,,false,"Music-reading session on period music for 12th Night or Wassail. Singers and instrumentalists welcome. Public domain music, handout, no charge. ","Bring your singing voice or instrument to a music-reading session featuring SCA-period Christmas/Yule music for 12th Night or Wassail. Public domain music, handout provided, no charge. This class is a repeat from Pennsic 42 and 43.",1.0,"",,30,,,1,2015-04-28 22:03:40 -0400
2925,Pine Box Traders (192),2015-07-29 10:00:00 -0400,2015-07-29 11:00:00 -0400,THL Egill the Loomwright,calontir,4283,Stick Weaving,Pennsic University,"",,false,"Stick weaving is a simple, weft-based weaving method.","Stick weaving is a simple, weft-based weaving method. Great for making belts and straps. Upgradable to make everything from shawls to rugs. Sticks and string provided; take your work home with you.",1.0,Sticks & string,,,6.0,,4,2015-05-03 14:11:56 -0400
2746,The Little Dragon's Hoard (Plunder lane),2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,Lord Drogo Rabenwald,æthelmearc,4030,How to Demonstrate Blacksmithing,Pennsic University,"",,false,A discussion for advanced to beginners on how to demonstrate blacksmithing in front of a crowd. Tips and tricks for a successful demo.,Discussion for advanced to beginners on how to do a successful demo. Tips and tricks on how to and not to make a fool of yourself for an entertaining and educational demonstration of blacksmithing.,2.0,"",,,,,2,2015-04-29 22:53:09 -0400
2399,University Point,2015-07-29 10:00:00 -0400,2015-07-29 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3520,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2940,Middle Eastern Tent,2015-07-29 10:30:00 -0400,2015-07-29 12:00:00 -0400,Christy Fricks,atlantia,4241,Silk Road Dance 101: Intro to Belly Dance,Middle Eastern,Middle Eastern,,false,"Part lecture, part dance class. All levels of ability welcome. ","Part lecture, part dance class. Christy Fricks of *Sulukule* introduces you to the cultural historical background of the dance we call belly dance and teach you some of the basic movements you need to begin confidently belly dancing around the campfire. All levels of ability welcome.
",1.5,"",,,,,1,2015-05-04 18:35:31 -0400
2208,Performing Arts Tent,2015-07-29 10:30:00 -0400,2015-07-29 20:30:00 -0400,Pennsic Performing Arts,"",3247,Set-up: Performing Arts Tent,Performing Arts and Music,"",,false,"Set-up in Performing Arts Tent: stage decks and tops, stage back drop, curtains, backstage area, signs, lights, and other PA properties.","On Tuesday and Wednesday of Land Grab Week, we build the stage, hang curtains, rig the house and backstage lights, and set up the chairs. This starts at about 10 am each day and continues until we are done. Come help us make the tent into a theater worthy of the name! Bring your cordless drills and other hand tools. On Tuesday we also set up the Amphitheater and the Performing Arts Rehearsal Tent. ",10.0,"",,,,,2,2015-03-26 20:33:43 -0400
2282,Æthelmearc 1,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Baroness Ekaterina Volkova,æthelmearc,3277,How to Draw Manuscript Flora,Æthelmearc Scribal,European,,false,"If you passed kindergarten art class, you can draw a 14th-century French scroll.","If you passed kindergarten art class, you can draw a 14th-century French scroll. This class will break down the elements and have you leaving confident and ready to illuminate.",1.0,cost of color copies,2.0,10,,,3,2015-04-30 19:59:55 -0400
2438,Amphitheater,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Lord William Kilmaron,middle,3598,Juggling 201 (Intermediate),Performing Arts and Music,"",,false,Intermediate 3-ball juggling: going beyond the simple cascade. We will touch briefly on 4 and 5 balls as well.,"Intermediate 3-ball juggling. Learn several basic tricks, such as crosses, snatches, and reverse cascade. We may work our way into basic 2-, 4-, and 5-ball juggling as they apply. Juggling balls will be available for use and purchase.",1.0,"",,,,,3,2015-05-01 00:06:29 -0400
2197,A&S 1,2015-07-29 11:00:00 -0400,2015-07-29 13:00:00 -0400,Lady Iofa merch Macsen,meridies,3225,Game of Thrones: The Bayeux Tapestry,Pennsic University,European,,false,"Discussion of the history and construction of the Bayeux Tapestry, followed by hands-on practice in the Bayeux techniques.","A discussion of the history and creation of the Bayeux Tapestry as well as a hands-on session where students will learn and practice the various stitches found in the Bayeux Tapestry. Hands-on session will be limited to 15 participants; however, the remainder of the class is open to any wishing to attend. ",2.0,"Handout, embroidery hoop, needles, needle threader, wool embroidery floss.",,25,3.0,15,2,2015-03-07 17:22:02 -0500
3079,A&S 2,2015-07-29 11:00:00 -0400,2015-07-29 12:30:00 -0400,THL Sciath ingen Chaennaig,ealdormere,4457,Heraldry Design Basics,Heraldry,Other,,false,"What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. ","What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. This class will include an introduction to device design, based on the SCA rules of Heraldry. Some one-on-one assistance will be provided. ",1.5,Handouts: $2,2.0,10,,,3,2015-05-06 00:51:36 -0400
2252,A&S 3,2015-07-29 11:00:00 -0400,2015-07-29 13:00:00 -0400,THL Amanita Villarosa,middle,3298,Beginner Knitting,Pennsic University,Other,,false,"Learn how to cast on, knit, purl, and cast off. Feel free to bring your own needles and yarn.","",2.0,"$2.50 - needles
$2.50 - yarn",,,5.0,10,2,2015-03-25 17:49:40 -0400
2375,A&S 5,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Master Caelin on Andrede,ansteorra,3510,Beekeeping 101,Pennsic University,Other,,false,"So you want to start keeping bees. We've been through it and will tell you what to do, what not to do, and give you a few hard won tips.","So you want to start keeping bees. We've been through it and will tell you what to do, what not to do, and give you a few hard won tips.We will have equipment (but no bees) for you to play. ",1.0,"",,15,,,2,2015-04-16 17:40:35 -0400
3086,A&S 12,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Mistress Rowena ni Dhonnchaidh,æthelmearc,4463,"Pennsic Homes, Part 1 - Wagon Homes",Pennsic University,Other,,false,"Period carts and wagons, what adaptations work to make it a Pennsic camping/storage wagon. Includes some of my available resources.","A discussion of period carts and wagons, what adaptations work to make it a Pennsic camping/storage wagon. Includes some of my available resources. Also, why these are *not* necessarily 'Gypsy' wagons. There are many different uses, from kitchens or showers to sleeping to 'gracious living'. Also, various building materials that work or don't work, etc. A look at my wagons and some of my neighbors after the class, and a map of others who are willing to let you look.",1.0,for a CD of the material,,,1.0,,1,2015-05-20 20:42:32 -0400
2635,Dance Tent,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,THL Henry of Maldon,æthelmearc,3881,All About Branles,European Dance,European,,false,"For those who have some orientation to Arbeau's branles, we'll be going over as much information about as many branles as we can get to in one class.","For those who have some orientation to Arbeau's branles, we'll be going over as much information about as many branles as we can get to in one class.",1.0,"",,,,,1,2015-05-07 11:35:28 -0400
3085,Encampment of Erica Paige (W10),2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Erica Paige,east,4470,Introduction to Spinning *Poi*,Pennsic University,Other,,false,Learn some of the basic *poi* movements and terminology necessary to get you started.,"In this one-hour workshop, you will learn some of the basic *poi* movements and terminology necessary to get you started. *Poi* spinning is a great low-impact workout that will help you to improve your coordination and give your fitness routine some ""flare""! $20 Material Fee includes your choice of Home of Poi - Sock Poi and a storage pouch. Handout with class review & contacts. Refreshments are also served. ",1.0,"$20.00 Material Fee covers handout, poi, and refreshments",,,20.0,,3,2015-05-06 13:48:04 -0400
2265,Performing Arts Rehearsal Tent,2015-07-29 11:00:00 -0400,2015-07-29 12:00:00 -0400,Lady Ursula Mortimer,middle,3281,Fundamentals of Voice Production,Performing Arts and Music,"",,false,"Learn the basics of vocal technique. This is an active, participatory class for those who have never had a voice lesson. ","Learn the basics of vocal technique. This is an active, participatory class for those who have never had a voice lesson. Those who can stand comfortably will be asked to do so for much of the class, but all the activities can be adapted to a seated position.",1.0,"",,,,,2,2015-04-28 22:10:14 -0400
2749,A&S 4,2015-07-29 12:00:00 -0400,2015-07-29 14:00:00 -0400,Lord Calvius Nero,east,4038,Enameling for Saxons,Glass,European,,false,A persona-focused introduction to the technical and artistic aspects of the Anglo-Saxon-style enameling. Will have finished item.,"A persona-focused introduction to the technical and artistic aspects of the Anglo-Saxon-style of enameling. If you have wire working tools, please bring them along. Will have finished item. Maximum of six participants.",2.0,$8 to recover cost of enameling ,,,8.0,,1,2015-04-30 19:56:38 -0400
2703,A&S 5,2015-07-29 12:00:00 -0400,2015-07-29 13:30:00 -0400,Master Duncan Blackwater,æthelmearc,3961,Introduction to Monumental Brasses,Pennsic University,European,,false,"An introduction to monumental brasses which will cover history of brasses, art and craftsmanship, types, historic workshops, evolution, rubbings. ","An introduction to monumental brasses which will cover history of brasses, art and craftsmanship, types, historic workshops, evolution, rubbings. ",1.5,"",,,,,2,2015-04-29 22:57:50 -0400
2238,A&S 7,2015-07-29 12:00:00 -0400,2015-07-29 14:00:00 -0400,Lord Tempus Peregrinator,ealdormere,3290,"Help Me, Tempus, You’re My Only Hope!",Pennsic University,Multiple Cultures,,false,"Two hours with Tempus, anything sewing. Trouble-shooting, problem-solving, garb problems diagnosed and solutions proffered. Maybe learn to sew...","(Garb Troubleshooting/Q&A Workshop)
This is a trouble-shooting and problem-solving class; garb problems diagnosed and solutions proffered. Bring to the class garb that went “wrong” or garb that didn’t “work” for you. We'll talk; it can be fixed. If you don’t have the garb here, bring your questions; we’ll do our best to solve your garb troubles. We’ll talk about gussets and how to use your seam ripper, too. This class can go on longer if needed. Also, this class will be offered next year.",2.0,"",,,,,2,2015-03-25 17:18:46 -0400
2401,A&S 8,2015-07-29 12:00:00 -0400,2015-07-29 14:00:00 -0400,Mistress Eirny Thorvaldsdottir,atenveldt,3545,Researching on the Internet,Pennsic University,"",,true,"How to use the Internet to find reliable, accurate information. If there is time we will try to solve individual research issues for the students.","How to use the Internet to find reliable, accurate information. If there is time, we will try to solve individual research issues for the students. Hints about how to use this info for documentation. Includes a handout of recommended URLs and techniques for locating more.",2.0,2 for handout,2.0,15,,,2,2015-04-10 18:58:31 -0400
2717,A&S 10,2015-07-29 12:00:00 -0400,2015-07-29 13:00:00 -0400,THL Asalah al-Hina,middle,4004,Henna 101,Pennsic University,Middle Eastern,,false,"A hands-on beginner look at henna history, application, and design. Participants will receive an instructional handout and henna cone.","A hands-on beginner look at henna history, application, and design. Participants will receive an instructional handout and henna cone.",1.0,$2 for henna cone and handout,,20,2.0,20,1,2015-04-29 20:09:58 -0400
2258,A&S 11,2015-07-29 12:00:00 -0400,2015-07-29 13:30:00 -0400,Mistress Arwen Evaine ferch Rhys ap Gwy,east,3303,Traditional Norwegian Brewing,Pennsic University,European,,true,Ale and beer...the joy of life! We will trace the evolution and brewing techniques used in rural Norway from the earliest records. Recipes included.,"Ale and beer: the joy of life! If one has bread, one also has beer, rich in vitamin B. We will explore the entire process from malting the grain to taking the first sip. Recipes, folklore, the tools used, brewing charms, and more will also be presented.",1.5,"",,20,,,2,2015-03-25 18:37:47 -0400
2867,Dance Tent,2015-07-29 12:00:00 -0400,2015-07-29 13:00:00 -0400,Lady Rebecca da Firenze,west,4166,English Country Dance from the West,European Dance,European,,false,"Come learn *Jack O'Lent*, an interesting, complex, and unusual English Country Dance for sets of three couples! *Stingo* will be added if time.","Come learn *Jack O'Lent*, a fun, complex, and *decidedly* non-typical English Country Dance for sets of three couples! *Stingo*, which is a little more typical but only so much so with a crazy fun last verse, will be added if time allows. This is an advanced class. ",1.0,"",,,,,1,2015-05-07 11:46:08 -0400
2359,Livonia Smithery (170),2015-07-29 12:00:00 -0400,2015-07-29 16:00:00 -0400,Lord T W,æthelmearc,3429,Tinsmithing,Pennsic University,European,,true,"A basic but complete course in the fundamentals of tinsmithing. Students will make a glass-globed hurricane lamp, with hand tools.","A basic but complete course in the fundamentals of tinsmithing. Students will make a glass-globed hurricane lamp, with hand tools.",4.0,Includes materials for project and handouts.,,,15.0,,2,2015-04-21 13:44:19 -0400
2419,Middle Eastern Tent,2015-07-29 12:00:00 -0400,2015-07-29 13:00:00 -0400,Rajni of Orluk Oasis,meridies,3568,Intro to Egyptian-Style Group Improvisation,Middle Eastern,Middle Eastern,,false,Learn Tribal Odyssey: Egyptian-based improvisational tribal-style with *beledi*-style combinations. ,"Rajni is a Certified Level 1 Tribal Odyssey dance leader, a group improvisational style developed by Kawakib of Fredericksburg, VA. In the words of Kawakib: “Tribal Odyssey uses natural posture and both sides of the body in combinations based primarily on Egyptian *beledi*-style movement. It's versatile enough to adapt to any size group.” Class will repeat to allow for several days of practice with a group, and will incorporate recorded Middle Eastern drumming as well as live music/ drumming as available. Learn moves that you and your dance friends can use at Pennsic haflas this year!",1.0,"",,,,,3,2015-05-04 18:36:44 -0400
2927,Performing Arts Rehearsal Tent,2015-07-29 12:00:00 -0400,2015-07-29 13:00:00 -0400,Lady Erlandr Nordenskald,east,4231,Mass Project,Performing Arts and Music,European,,false,Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement.,"Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement, starting with early period *Kyrie* and ending with a mid-15th-century *Agnus Dei*. While no performance has been scheduled, it won't be ruled out. These sessions are sponsored by the Known World Choir.
(Rehearsal Tent unless noted: 7/29@12pm; 7/30@5pm; 7/31@5pm; 8/2@2pm(*AMPI); 8/3@5pm)",1.0,For the 5 days of class,1.0,24,,,5,2015-05-04 16:05:14 -0400
2780,Æthelmearc 1,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,THL Subetei Al-Qulan,atlantia,4026,Mixing Paints for Scribes: Shading and Highlights,Æthelmearc Scribal,"",,false,An overview of basic color theory with a step-by-step process for mixing and applying gouache to show dimension using shadows and highlights. ,"An overview of basic color theory with a step-by-step process for mixing and applying gouache to show dimension using shadows and highlights. This class is designed to help those scribes who may not have taken basic art classes and who seek to understand how light affects the way colors are interpreted by our eyes.
Paint and mixing tools provided, bring your own brushes, I will have a small number on hand to borrow.",1.0,"",,20,,,2,2015-05-17 12:36:01 -0400
2088,Æthelmearc 2,2015-07-29 13:00:00 -0400,2015-07-29 17:00:00 -0400,Mistress Matilda Bosvyle,æthelmearc,3061,Scribal Playtime,Æthelmearc Scribal,"",,false,"Open space for scribes/artists to work on projects, ask questions or discuss their art. Some community-shared materials may be available for use.","The Æthelmearc Scribal College pavilion will be open for scribes to work on projects, ask questions of experienced scribes or discuss their art. One-on-one instruction may be available if space and resources allow. Some community-shared materials such as Paint-a-Blanks may be available.",4.0,"",,,,,4,2015-05-02 21:38:04 -0400
2416,A&S 1,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,Master Maximilian der Zauberer,middle,3562,Throw Away Your Wristwatch: Basic and Advanced,Pennsic University,Multiple Cultures,,false,"Period methods of timekeeping. First 10 minutes teaches several ways to tell time. Last 40 minutes teaches you how to tell time anywhere, anytime.","Learn period methods of timekeeping to tell time day and night at Pennsic. Basic course (first 10 minutes) teaches several ways to tell time. Advanced course delves into the science and teaches more ways to tell time so you can tell time anywhere, anytime.",1.0,"Basic Handout = $1
Advanced Handout = $5",5.0,30,,,2,2015-04-10 19:02:57 -0400
2472,A&S 2,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,Mistress Lillia de Vaux,east,3631,Intermediate Heraldic Research Roundtable,Heraldry,Multiple Cultures,,false,"Take your heraldic research to the next level, or come to share your favorite sources and tricks. Intended for heralds of all levels.",Where do you go when the usual sources just don't have what you need? Have skills you'd like to pass on to newer heralds? Come share your favorite sources and research tips in a roundtable format. Intended for heralds of all experience levels. Handout provided.,1.0,"",,,,,2,2015-04-26 22:23:49 -0400
2486,A&S 3,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,Lady Svea the Short-sighted,east,3701,Fun with Body Parts I: Relics,Pennsic University,European,,false,Miscellaneous body parts more precious than jewels? An irreverent look at the cult of the saints.,"Miscellaneous body parts more precious than jewels? An irreverent look at the cult of the saints, a phenomenon which led to an international business in bones, daring thefts and major con jobs.",1.0,"",,25,,,1,2015-04-18 11:34:20 -0400
2790,A&S 10,2015-07-29 13:00:00 -0400,2015-07-29 16:00:00 -0400,Master Gunnarr Alfljot,middle,4076,Use of Basic Silversmithing Tools,Pennsic University,Multiple Cultures,,false,Silversmithing on a budget. Survey and demonstration of tools for use with nonferrous metals. Soldering and fusing demonstrations will be included. ,"",3.0,$2 for handout,2.0,30,,,2,2015-04-30 21:40:10 -0400
2393,A&S 12,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,Master Basilius Phocas,middle,3515,"Tarts, Shells, and a Pie from the 1549 *Banchetti*",Pennsic University,European,,false,"Tart of milk, eggs, sugar and ginger, pastry shells of eggs and cheese, & a pie of marzipan, pine nuts and raisins from the 1549 Italian *Banchetti*.","",1.0,"",,,,,2,2015-04-10 21:11:26 -0400
2937,Dance Tent,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,THL Margherita Battistina,atlantia,4239,*Chigi* Dances,European Dance,European,,false,Come learn dances from one of the earliest manuals of 16th-century Italian dances. All experience levels welcome. ,"Come learn dances from one of the earliest manuals of 16th-century Italian dances. All experience levels welcome. Possible dances: *Rose E Viole, Spagnioletta, Contra Passo*.",1.0,"",,,,,1,2015-05-07 12:35:56 -0400
2669,Games Tent,2015-07-29 13:00:00 -0400,2015-07-29 14:00:00 -0400,Lord István Nyiregyhazi,east,3915,Board Games,Games,Multiple Cultures,,false,This class will review board games previously taught and provide opportunities to practice with a knowledgeable instructor's assistance.,"",1.0,"",,,,,3,2015-05-07 19:02:00 -0400
2909,House Stormhaven (N21),2015-07-29 13:00:00 -0400,2015-07-29 17:00:00 -0400,Mistress Mahin Banu Tabrizi,æthelmearc,4256,Weave and Sing,Pennsic University,Multiple Cultures,,false,Join us for an afternoon of weaving and singing. Bring your loom and song books. ,"Join us for an afternoon of weaving and singing. Bring your loom and song books. Weave, sing or both. ",4.0,"",,,,,1,2015-05-01 19:40:38 -0400
2727,Performing Arts Rehearsal Tent,2015-07-29 13:00:00 -0400,2015-07-29 15:00:00 -0400,Lady Bugga Bilibit,æthelmearc,4010,The Pilgrimage Project,Performing Arts and Music,European,,false,Learn the songs of our Pennsic Pilgrimage! Open to all! You may have heard us in past years. Take up your staff and join us. Period music provided.,"For the past two years at Pennsic we have gone on Pilgrimage one afternoon of War Week, singing songs from the *Llibre Vermell of Montserrat* and the *Cantigas of Santa Maria*. Come learn these songs and consider joining us this year! All are welcome! Music provided. Date of Pilgrimage TBD, an afternoon during War Week.",2.0,"",,30,,,1,2015-05-01 03:41:52 -0400
2913,Pine Box Traders (192),2015-07-29 13:00:00 -0400,2015-07-29 14:30:00 -0400,THL Egill the Loomwright,calontir,4259,Card-Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and, using cards, you will weave a trim strip.","Warp a loom and weave a small strap or trim piece. Using the continuous warping method, you will warp the loom and weave a trim strip. Classroom loaner looms available or bring your own. Fee covers string and cards; take your work home with you.",1.5,cards & string,,,5.0,,6,2015-05-01 09:00:42 -0400
2831,A&S 1,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Master Victor of Shrewsbury,æthelmearc,4127,Who Were the Cooks?,Pennsic University,European,,false,You’ve eaten food inspired by their recipes. But who were the cooks whose writings were popular in the MA? A whirlwind tour of the culinary masters.,You’ve eaten food inspired by their recipes. Perhaps you’ve even read their cookbooks. But who were those cooks whose writings were popular in the Middle Ages? A whirlwind tour of some of those fascinating individuals!,1.0,"",,25,,,2,2015-04-30 21:42:08 -0400
2568,A&S 3,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Master Cariadoc,west,3843,Running an In-Persona and/or Authentic Encampment,Pennsic University,Multiple Cultures,,false,"An open discussion of how to run and participate in an in-persona and/or authentic encampment, for those who have done it or might like to try.","An open discussion of how to run and participate in an in-persona and/or authentic encampment, for those who have done it or might like to try.",1.0,"",,50,,,1,2015-04-25 20:29:05 -0400
3044,A&S 4,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Viscountess Ísgerðr Gulkárr,middle,4436,Early Period Fire Starting,Pennsic University,European,,true,"Introduction to basic fire starting, using flint and steel and natural items found in the local area. This is a hands-on class. ","Introduction to basic fire starting using flint and steel along with natural items found in the local area. Primarily focused on Viking Era and how we can include this skill in our SCA and re-enactment settings. It will also include a history of primitive fire starting, what items were used, and how it has evolved. This is a hands-on class. ",1.0,"",,,,,1,2015-05-04 07:57:09 -0400
2868,A&S 5,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Lady Elisabetta Tempesta,æthelmearc,4172,You Are What You Eat: Humoural Doctrine,Pennsic University,"",,false,An overview of the theory of balancing the human condition through food.,An overview of the theory of balancing the human condition through food.,1.0,"",,25,,,2,2015-05-01 19:42:54 -0400
3207,A&S 6,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,THL Isabella della Rosa,ansteorra,4641,Cordial Making: Basics,Pennsic University,"",,true,Cordials had their beginning prior to the Middle Ages. Alcohol was used to extract the flavors from herbs and spices to create treasured potions.,"Cordials had their beginning prior to the Middle Ages when monks and alchemists went in search of a cure for man's many ills. They used alcohol to extract the flavors from herbs and spices. They discovered many wonderful potions treasured for their flavor. For the monks, their recipes became guarded secrets. ",1.0,"",,,,,1,2015-06-22 20:34:27 -0400
2125,A&S 7,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Duchess Melisande de Belvoir,atlantia,3115,Planning a Feast,Pennsic University,"",,false,"How to design a menu, figure out how much to cook, plan logistics, and everything else you need to consider to ensure a successful feast.","",1.0,"",,,,,2,2015-02-21 16:36:10 -0500
2641,A&S 8,2015-07-29 14:00:00 -0400,2015-07-29 16:00:00 -0400,Lady Droen O'Rourke,ansteorra,3887,Quick and Easy Handmade Largesse,Pennsic University,European,,false,"A discussion about largesse: why we should give it, why you should make it, and what options are out there. We will make a couple of examples.","A discussion about largesse: why we should give it, why you should make it, and what options are out there. We will make a couple of examples.",2.0,"Wire, beads, findings, ribbon, felt, thread",2.0,,5.0,15,3,2015-04-30 21:23:16 -0400
2467,A&S 12,2015-07-29 14:00:00 -0400,2015-07-29 15:30:00 -0400,Baron Fridrikr Tomasson,æthelmearc,3690,The *Draugar*: The Undead in Icelandic Sagas,Pennsic University,European,,false,The Walking Dead in the Sagas. An overview and discussion of revenants in Icelandic medieval literature.,"",1.5,"",,50,,,2,2015-04-25 19:45:58 -0400
2999,Dance Tent,2015-07-29 14:00:00 -0400,2015-07-29 15:00:00 -0400,Mistress Briana Douglas,east,4337,Beginner Dance: Absolute Beginner A,European Dance,European,,false,Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball!,"Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball!
",1.0,"",,,,,2,2015-05-03 13:50:33 -0400
3166,A&S 2,2015-07-29 15:00:00 -0400,2015-07-29 16:00:00 -0400,Lady Mariot Carllein,east,4581,Counted Work Not Displayed at the Met,Pennsic University,European,,false,The Metropolitan Museum has interesting embroideries rarely if ever seen by the public.,"The Metropolitan Museum has interesting embroideries not displayed to the public, but I was able to photograph some, including a few reverse sides. Since the Met does not allow copies of the photos to be given out, the handout will include some charts instead. These items and fragments sometimes have interesting differences from those the public sees.",1.0,"",,12,,,2,2015-05-27 19:01:48 -0400
2570,A&S 3,2015-07-29 15:00:00 -0400,2015-07-29 16:00:00 -0400,Master Cariadoc,west,3847,Telling Stories as Your Persona,Pennsic University,Multiple Cultures,,false,"How to tell stories in a way that creates the illusion of a period story being told to a period audience, along with a discussion of sources.","How to tell stories in a way that creates the illusion of a period story being told to a period audience, along with a discussion of sources.",1.0,"",,50,,,2,2015-04-25 20:50:45 -0400
3047,A&S 5,2015-07-29 15:00:00 -0400,2015-07-29 16:30:00 -0400,Lady Jael ben Ari,middle,4439,Imperial Roman Hairstyling ,Pennsic University,Other,,false,How did the Romans do their 'dos? ,"",1.5,"",,,,,1,2015-05-04 08:03:57 -0400
2126,A&S 7,2015-07-29 15:00:00 -0400,2015-07-29 16:00:00 -0400,Duchess Melisande de Belvoir,atlantia,3117,Reinventing the Wheel,Pennsic University,"",,false,"Why do we do things in the SCA the way we do them, and how could we do them differently? How can we stress the ""Creative"" part of our name?","Why do we do things in the SCA the way we do them, and how could we do them differently? How can we stress the ""Creative"" part of our name in the structure and planning of our events? Come prepared for active discussion and brainstorming!",1.0,"",,,,,2,2015-02-21 16:37:48 -0500
2711,Dance Tent,2015-07-29 15:00:00 -0400,2015-07-29 16:00:00 -0400,Lady Rebecca da Firenze,west,3929,Beginner Dance: 16th-Century Italian A,European Dance,European,,false,"Never danced before? No problem! This class will start with basic steps and patterns, and then teach simple late 16th-century Italian dances.","Never danced before? No problem! This class will start with basic steps and patterns, and then teach simple late 16th-century Italian dances.",1.0,"",,,,,1,2015-05-03 13:50:22 -0400
3215,Main Battlefield,2015-07-29 15:00:00 -0400,2015-07-29 18:00:00 -0400,Countess Rowan Berran McDowell,atlantia,4654,The First Inter-Kingdom Kite Flying,Martial Activities,Multiple Cultures,,false,An afternoon of camaraderie and kites sponsored by the Great Dark Horde. Bring your own kite. (It doesn't have to be period.),"An afternoon of camaraderie and kites sponsored by the Great Dark Horde. Bring your own kite. (It doesn't have to be period.) The First Inter-Kingdom Kite Flying Gathering is open to everyone; however, children must be accompanied by an adult. Please keep your kite Family Friendly! ",3.0,"",,,,,1,2015-06-26 09:21:48 -0400
2363,Performing Arts Rehearsal Tent,2015-07-29 15:00:00 -0400,2015-07-29 18:00:00 -0400,Master John Lyttleton,trimaris,3481,Bardic Coaching,Performing Arts and Music,"",,false,"Participants perform a piece of their choosing, 3 to 5 minutes long. They receive personal feedback and attention to enhance performance skills.","Participants perform a piece of their choosing, 3 to 5 minutes long. They receive personal feedback and attention to enhance performance skills. Any style of performance is acceptable.",3.0,"",,,,,1,2015-04-12 13:42:33 -0400
2922,White List,2015-07-29 15:00:00 -0400,2015-07-29 16:00:00 -0400,Duke Vissevald Selkirksson,east,4225,The Poleax Techniques of Paulus Hector Mair,Martial Activities,European,,false,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,1.0,"",,,,,4,2015-05-05 16:38:49 -0400
2787,A&S 3,2015-07-29 16:00:00 -0400,2015-07-29 17:00:00 -0400,Allys of Severn,atlantia,4071,Make-and-Take Bog Dress,Pennsic University,European,,false,"Learn some history; leave with a complete piece of lightweight garb with handmade fibulae, no sewing. Bring small pliers if you have them.","Learn some history; leave with a complete piece of lightweight garb with handmade fibulae, no sewing. Bring small pliers if you have them. Donations for materials gratefully accepted.",1.0,"Fabric, copper wire for pin.",,20,,20,1,2015-05-10 15:43:52 -0400
2674,A&S 11,2015-07-29 16:00:00 -0400,2015-07-29 18:00:00 -0400,Lady Angharad verch Glyndwr O Llang,middle,3979,"Basic Jewelry-Making, or How to Float a Pearl",Pennsic University,"",,false,"Basics on design/recreation of jewelry including closures, spacing, double/triple strands, scalloping, extra adornments, fixing broken items.","Basics on design or recreation of jewelry including closures, spacing, double/triple strands, achieving scalloping, adding extra adornments, fixing a broken item, making a floating bead necklace, dropping a knot where you want it.",2.0,"Kit with wire, string, beads, trinkets, closures ",,,5.0,,2,2015-04-29 12:32:28 -0400
2483,A&S 12,2015-07-29 16:00:00 -0400,2015-07-29 17:00:00 -0400,Lady Magdalena la Sanguigni,atlantia,3699,Prostitution in SCA Period,Pennsic University,European,,true,"History of prostitution, from the late Roman era to 1600 AD. Topics include contraception, garb, law, and the organization of brothels.","A survey of the history of prostitution, from the late Roman era to 1600 AD. We will be covering such topics as the formation of red light districts, brothel management, contraception, municipal laws, church law, and the garb and identification of a prostitute within this time period. ",1.0,2.00 printing fees including .70$ color page.,2.0,20,,,2,2015-04-29 18:50:29 -0400
2899,Dance Tent,2015-07-29 16:00:00 -0400,2015-07-29 18:00:00 -0400,Gregory Blount,west,4208,Four 15th-C Italian Dances You'll Want to Know,European Dance,European,,false,"Covers some of the most common, yet infrequently taught, dances from 15th-century Italy: *Amoroso, Anello, Gelosia*, and *Rostiboli*.","This class will cover some of the most common, yet infrequently taught, dances from 15th-century Italy: *Amoroso, Anello, Gelosia*, and *Rostiboli*. We'll learn the basics, and then learn how to play with the stories that all of these dances tell.",2.0,"",,,,,1,2015-05-07 12:36:08 -0400
2918,Pine Box Traders (192),2015-07-29 16:00:00 -0400,2015-07-29 17:00:00 -0400,THL Egill the Loomwright,calontir,4267,Inkle Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and weave an inkle strip.","Using the continuous warping method, you will warp the loom and weave an inkle strip. Classroom loaner looms available or bring your own.",1.0,"weaving materials, string",,,3.0,,6,2015-05-01 19:18:33 -0400
2541,Livonia Smithery (170),2015-07-29 16:30:00 -0400,2015-07-29 18:00:00 -0400,Lord T W,æthelmearc,3776,*Niello*: The Making and Applying,Pennsic University,Multiple Cultures,,true,"*Niello* is an ancient enamel-like material, applied to silver and gold work as metal decoration.","*Niello* is an ancient enamel-like material, applied to silver and gold work as metal decoration. It is used for background and highlighting engraving work.",1.5,Cost of the Silver,,,15.0,,2,2015-04-25 20:21:16 -0400
2840,A&S 14,2015-07-29 17:00:00 -0400,2015-07-29 18:00:00 -0400,Chirurgeon Instructor,"",4144,First Aid or CPR Challenges,First Aid,"",,false,Individuals can challenge to recertify by taking the written and physical tests. These will be ASHI challenges. Cost is $15 for card only.,"Individuals can challenge to recertify by taking the written and physical tests. If the challenge is unsuccessful, the recommendation is for the full class. These will be ASHI challenges, unless other instructors can be found. Individual challenges take approximately 1 hour. Cost is $15 for card only.",1.0,Fee per card achieved. ,,,,,3,2015-05-01 17:15:56 -0400
2453,A&S 4,2015-07-29 18:00:00 -0400,2015-07-29 19:00:00 -0400,Lady Moll Sotherden,middle,3618,Glass Painting,Glass,Multiple Cultures,,false,"Learn ""Basic Glass Painting"", the same technique found to do wording and faces in churches. Also, **scribes**! Learn how to put words on glass.","Learn ""Basic Glass Painting"", the same technique found to do wording and faces in churches. Also, **scribes**! Learn how to put words on glass. You'll work on a small piece that will get fired onsite. If you've seen any stained glass scrolls given out in court, this is the method I use! (Scribes, please bring a nib holder.)",1.0,Covers materials used and cost of printing.,2.0,10,2.0,6,1,2015-04-23 16:54:44 -0400
3083,A&S 10,2015-07-29 18:00:00 -0400,2015-07-29 19:30:00 -0400,Lady Jocelyn of Black Diamond,atlantia,4466,Chainmaille for Beginners ,Pennsic University,"",,false,"An introduction to chainmaille. Students will learn European 4-in-1, Byzantine, and Half Persian 3-in-1. ","This is a simple introduction to chainmaille. In total, there will be three weaves taught on three separate days (one weave per day). Weaves taught will be European 4-in-1, Byzantine, and Half Persian 3-in-1. ",1.5,"
Practice Rings
Aluminum ring packet",1.0,20,4.0,15,3,2015-05-05 19:02:11 -0400
2167,A&S 2,2015-07-29 19:00:00 -0400,2015-07-29 20:00:00 -0400,Master Bedwyr Danwyn,æthelmearc,3174,Stone Spinning Whorls Made with Simple Supplies,Pennsic University,European,,false,"How to make a common stone spinning whorl with tools and stone available at hardware stores. It's easy, inexpensive and period!","The most common 11th-14th-century Anglo-Norse spindle whorls were made of various types of soft stone with a tapered, centered hole. While stone appears intimidating to work with, choosing the correct stone makes it fairly simple to do. This class will reveal the secrets to making stone whorls with standard hardware store stone and tools! As a spindle spinner, making your own whorls allows you to produce various weights and sizes.",1.0,for copying handout,1.0,20,,,2,2015-03-01 14:30:53 -0500
2452,A&S 4,2015-07-29 19:00:00 -0400,2015-07-29 20:00:00 -0400,Lady Moll Sotherden,middle,3617,Glass Fusing for Total Beginners,Glass,Multiple Cultures,,true,"An intro to glass fusing, including some vocabulary associated with the art. Students will assemble a small piece to be fused on site. ","This class, which covers introductory glass fusing, is very, very basic. It is geared toward total beginners with no glass experience. Students will learn basic terminology as well as assemble a small piece to be fused on site. If you are taking the Stained Glass Track, the piece you make in this class can be included in your final piece!",1.0,Covers materials.,,,1.0,30,1,2015-04-23 16:54:57 -0400
2361,A&S 13,2015-07-29 19:00:00 -0400,2015-07-29 19:45:00 -0400,Lord Jacob the Wanderer,east,3471,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
2170,A&S 2,2015-07-29 20:00:00 -0400,2015-07-29 21:00:00 -0400,Mistress Rhiannon y Bwa,æthelmearc,3176,Carving Your Own Spindle Stick,Pennsic University,European,,false,"How to carve a medieval spindle stick: 'belly', tapered bottom, spindle top designs. **Demo only!** Learn how to size spindle to fit a whorl.","Demo and lecture on carving a wooden medieval spindle stick with simple tools. In period, at least half of spindle sticks found have been hand-carved, not lathe-turned. You'll learn how to assess straight grain in wood, the best method of using a carving knife, alternative methods using a draw shave or spokeshave. Difference between 'round' wood, riven wood and sawn lumber. How to choose a store-bought dowel and avoid the bad ones. Different weights of spindle sticks and their spinning properties with size of yarns made. Choose designs for top and bottoms of spindle sticks.",1.0,Multiple page copying fee,1.0,15,,,2,2015-03-01 16:27:50 -0500
3021,Dance Tent,2015-07-29 21:00:00 -0400,2015-07-30 00:00:00 -0400,Pennsic Dance Staff,"",4391,Open Dancing,European Dance,European,,false,Join us all evening for dancing by request.,"",3.0,"",,,,,5,2015-05-03 14:07:06 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-07-30 08:00:00 -0400,2015-07-30 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3607,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2477,Rapier List 2,2015-07-30 08:00:00 -0400,2015-07-30 09:00:00 -0400,Countess Elena d'Artois,æthelmearc,3642,*Études* 1 and 2 for Single Sword (Fencing),Rapier Activities,European,,false,"For all levels and teachers. Drills focus on form, balance, movement and coordination. *Études* for drill; elements from drill used to work in groups.","For beginner and intermediate fencers and those who teach them. These drills will focus on form, balance, movement and coordination. *Étude*1 (first week) is more linear; *Étude* 2 (second week) adds off line/lateral movement. Emphasis will be on learning the *études* for home drill, as well as taking elements out of the drill for more focused work in groups. ",1.0,"",,,,,7,2015-05-14 19:19:33 -0400
3132,Youth Combat List,2015-07-30 08:00:00 -0400,2015-07-30 10:30:00 -0400,Lord Sven,middle,4528,Youth Combat,Youth Combat,"",,false,Morning Youth Combat Session,Morning Youth Combat Session,2.5,"",,,,,8,2015-05-13 20:03:29 -0400
2186,Artisan's Row A,2015-07-30 09:00:00 -0400,2015-07-30 16:00:00 -0400,Artisans Row,east,3209,Period Sauces and Mustards,Artisan's Row,"",,false,Creation of period sauces and mustards.,"",7.0,"",,,,,1,2015-04-28 21:03:20 -0400
2507,Artisan's Row B,2015-07-30 09:00:00 -0400,2015-07-30 16:00:00 -0400,Artisans Row,east,3714,Wireworkers Day,Artisan's Row,"",,false,"Wire weaving, bead wrapping and more.","Wire weaving, bead wrapping and more.",7.0,"",,,,,2,2015-04-30 17:53:57 -0400
2178,Artisan's Row C,2015-07-30 09:00:00 -0400,2015-07-30 16:00:00 -0400,Artisans Row,east,3198,Leatherwork Day,Artisan's Row,"",,false,"A chance for leather workers of all skill levels to meet, share knowledge and work on projects as well as for novices to learn and ask questions.","Leatherwork Day is a place for leather workers of all skill levels to meet and share knowledge and work on projects, as well as a great learning opportunity for novices. Stop by any time to look around, ask questions, or just hang out and work on your own projects. We plan on being there from 9 to 5.",7.0,"",,,,,2,2015-03-01 14:27:07 -0500
3162,A&S 2,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Lord Godai Katsunaga,atlantia,4575,Japanese Archery,Pennsic University,Far Eastern,,false,A historical prospective on Japanese archery.,A historical prospective on the history of archery in Japan. Will discuss the history and equipment.,1.0,"",,16,,,1,2015-05-27 22:38:44 -0400
2450,A&S 4,2015-07-30 09:00:00 -0400,2015-07-30 10:30:00 -0400,Lady Moll Sotherden,middle,3616,Glass Cutting (and Basic Design),Glass,Other,,true,Learn to cut glass or improve your technique as well as glass design basics. This is **required** for the Stained Glass Track. Wear closed-toed shoes!,"You can't design a stained glass piece until you know how glass ""thinks"". So whether or not you have glass cutting experience, you can further your skills by taking this class! And wear closed-toed shoes, please. This is a rolling-style class, meaning it **will not** take every person 1.5 hours, but as there are only 2 of us, and we have limited cutters and tools, each person will get about 10 minutes of one-on-one time to learn how to cut glass. This class is **required** for the Stained Glass Track being offered this year.",1.5,Offsets the glass cut up during class. ,,,1.0,35,1,2015-04-21 14:15:53 -0400
2111,A&S 5,2015-07-30 09:00:00 -0400,2015-07-30 10:45:00 -0400,Viscount Edward Zifran of Gendy,east,3099,So... You Want to Be Mayor?,Pennsic University,Other,,false,"In-depth discussion of the requirements, needs, and time commitment for the position of Mayor of Pennsic War. ","",1.75,handouts will be gratis,,30,,30,1,2015-02-21 20:17:14 -0500
2228,A&S 6,2015-07-30 09:00:00 -0400,2015-07-30 10:30:00 -0400,THL Morien MacBain,æthelmearc,3259,The Way of Saint James: Pilgrims to Santiago,Pennsic University,European,,false,"We will examine the legends, history, battles, miracles, and lore of Spain's *Camino de Santiago*, in period and today, taught by former pilgrims. ","We will examine the legends, history, and lore of the *Camino de Santiago*, with special emphasis on the nature of medieval pilgrimage, sites of special historic, religious, and cultural importance along the route, plus advice for planning and completing the pilgrimage today. Taught by former pilgrims. ¡Buen camino!",1.5,"",,,,,1,2015-03-14 21:26:00 -0400
2398,A&S 7,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Lady Raziya Bint Rusa,east,3543,Intermediate Gardening,Pennsic University,"",,false,"Want to learn more about gardening? This class will continue where ""Gardening for Beginners"" left off: earthworms, composting, adaptation, and more.","If you know a few things about gardening, but feel you could learn some more, come and stop by. This class will continue where ""Gardening for Beginners"" left off. We will cover earthworm issues, plant adaptation, composting ratios, and more.",1.0,For handout.,2.0,,,,2,2015-04-10 18:54:59 -0400
2624,A&S 8,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Lady Tysha z Kieva,east,3870,Embroidery: How Do I Do That!?!,Pennsic University,"",,false,Embroidery for the absolute beginner. Come out and learn a few easy stitches and finish by decorating a small wool needle book! ,Embroidery for the absolute beginner. Do you want to decorate your garb or projects but aren't sure where to start? Come out and learn a few easy stitches. See some examples of basic embroidery projects. We'll finish class by decorating a small wool needle book! Please bring scissors and a small embroidery hoop if you have them.,1.0,"Embroidery floss
Needles
Hoops
Wool",,,3.0,10,1,2015-04-26 20:21:18 -0400
2875,A&S 11,2015-07-30 09:00:00 -0400,2015-07-30 13:00:00 -0400,Viscount Chandra Panthi,west,4183,Basic Coining,Pennsic University,European,,true,"Striking coins from punched dies. Die preparation, creating punches, using those punches to make dies, and striking coins. Slightly messy.","Striking basic coins from punched dies. Die preparation, creating punches, using those punches to make dies, and striking coins. Somewhat messy.",4.0,"Handout, dies, punches, sandpaper, and coin blanks.",3.0,5,5.0,5,1,2015-04-30 22:37:18 -0400
3155,A&S 12,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Lady Arastorm ,east,4552,"Anglo-Saxon Context: Scandinavia (""Vikings"") ",Pennsic University,European,,false,Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the the Scandinavian cultures and their interactions with England.,"To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. This workshop focuses on the Scandinavian cultures. It is too easy to consider them simply as the Vikings, either raiding the coasts, or inhabiting the Danelaw (or in the 11th century, ruling England). We'll try to differentiate between Norse and Danes; how they, from Vendel to Icelandic periods, dealt with the English.",1.0,"",,15,,,1,2015-06-10 04:34:58 -0400
2600,A&S 13,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Mistress Keely the Tinker,middle,3819,Tools of the Flame,Glass,Other,,false,"Discussion course designed to aid the beginning beadworker. Includes the tools, equipment and materials needed to begin making glass beads.","Discussion course designed to aid the beginning beadworker. We will discuss the tools, equipment and materials needed to begin making glass beads. Perfect for someone who may be thinking of flamework as a hobby, but unsure of the tools needed and their costs.",1.0,"",,,,,2,2015-04-29 17:15:37 -0400
2838,A&S 14,2015-07-30 09:00:00 -0400,2015-07-30 16:30:00 -0400,Chirurgeon Instructor,"",4140,ASHI CPR Pro for the Professional Rescuer ,First Aid,"",,false,Designed for individuals in the healthcare or professional rescuer field who are required to have a professional-level basic life support training. ,"CPR Pro for the Professional Rescuer program is designed for individuals in the healthcare or professional rescuer field who are required to have a professional-level basic life support training. Students learn how to recognize a life-threatening emergency, how to provide basic life support and what to do in case of an airway obstruction or choking. ASHI's CPR Pro for the Professional Rescuer has been approved for training for Emergency Medical Services personnel and is accepted by the National Registry of Emergency Medical Technicians (NREMT). Class length: 7 hours. Cost is $15 for card only, $20 including books.",7.5,Separate fee for certification card or course materials.,,,,,3,2015-04-30 22:36:10 -0400
2124,A&S 15,2015-07-30 09:00:00 -0400,2015-07-30 12:00:00 -0400,Lady Álfrún ketta,æthelmearc,3113,Viking Era Wool: Its Production and Use,Pennsic University,European,,true,"Learn about the evolution of wool, wool types and sheep. Participate in hands-on demos of how wool was processed and used in period.","This class will be a mix of discussion and demonstration, and will include hands-on components. Discussion will cover the evolution of wool, wool types (to aid in understanding archaeological texts) as well as sheep breeds descended from animals spread across Northern Europe by the Vikings. Following the discussion there will be a demonstration portion of the class showing how wool was processed and manufactured in the Viking age. During this time students will get to handle many different types of wool. The last hour of the class will offer the opportunity to try to comb, spin or weave fibers. There will be combs and spindles to test out different types of wool as well as a miniature warp-weighted loom for weaving.",3.0,"",,15,,,2,2015-04-30 18:22:08 -0400
2926,Dance Tent,2015-07-30 09:00:00 -0400,2015-07-30 10:00:00 -0400,Mistress Felice Debbage,middle,4226,Bouncy Dances for Squirrelly Children,European Dance,European,,false,Let's be frogs! Or kangaroos! Lively French dances creatively adapted for Pre-K crowd. (Any youth in attendance require a responsible adult present.),"Let's be frogs! Or kangaroos! Bring your little ones for lively French dances creatively adapted to entertain the pre-K crowd. *Pease Bransle, Double Bransle, Montard Bransle*, and others. Silly parents are welcome as well!",1.0,"",,,,,1,2015-05-07 20:43:22 -0400
2554,Æthelmearc 1,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,Baroness Emma Makilmone,east,3790,Beginning Illumination: Loving the Dot,Æthelmearc Scribal,Multiple Cultures,,true,"Let me show you that illumination doesn't have to be a daunting as it seems. Learn about layout, design elements and, yes, dots, Dots, *DOTS*!","So you've seen those beautiful manuscripts and thought you'd love to learn how to create one on your own, but surely they are too daunting! Well, I'd like to show you how to visually break down complicated scroll designs into more manageable and doable elements. You'll even try your hand at a few of them! Materials available for the fee, or bring your own.",2.0,"Unless you bring your own painting materials, you can get a kit with brushes, paper, and a small bit of gouache. If you don't use the kit, a few dollars donation for the paper and paint you will use would be helpful.",,20,4.0,20,2,2015-04-30 19:25:43 -0400
2173,Amphitheater,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Lady Noelle de la Plume,middle,3186,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
3122,A&S 1,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Lord Alaxandr,east,4509,Egyptian Fractions & Problems from Rhind Papyrus.,Pennsic University,Middle Eastern,,false,"The Egyptians didn't use 7/8, but rather unit fractions, e.g., 1/2 + 1/4 + 1/8. We'll explore this topic and math problems from the Rhind Papyrus.","The Egyptians didn't use 7/8, but rather unit fractions, e.g., 1/2 + 1/4 + 1/8. Why, and what are the benefits of that system? We'll explore this topic and see how to convert to and from the system we use today. Also, we'll look at a few of the math problems posed on a major piece of archaeological wonder, the Rhind Papyrus.
",1.0,"",,,,,1,2015-05-09 06:35:38 -0400
3191,A&S 2,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Master Alanus of Bunghea,an tir,4612,"Plagues of Europe: Really, There Was More Than One",Pennsic University,European,,false,"Focuses on the types of plagues, their origins, biological mechanisms, means of transmission and long term impact on the affected populations.","Measles, small pox, bubonic plague and leprosy each had a devastating impact on the affected population physically, psychologically, spiritually, and economically. This class focuses on the origins, biological mechanisms, means of transmission and long term impact on the affected populations. When early man lived in relatively isolated groups, contact between individuals was infrequent and short-lived diseases (for either the disease or the host) were not able to spread by direct contact or through intermediaries such as rats, mosquitoes, etc. As people began to live closer together in towns, later in cities, and when sanitation became more of a threat to health, transmission of diseases became easier and more common. Resistant individuals lived and the less-resistant died, thus selectively increasing resistance in the population as a whole. The gradually declining death toll seen in recurrences of a particular plague was due to an increase in resistance within the population due to several factors. Modern medical investigations indicate that the same genetic makeup that allowed some people to survive or avoid bubonic plague are the same genetic makeup that allows some people be HIV positive and not develop AIDS.
",1.0,Printed handouts of 16-18 pages includes some color pages,5.0,,,,2,2015-06-12 07:29:11 -0400
2251,A&S 3,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,THL Amanita Villarosa,middle,3296,Open Knit,Pennsic University,"",,false,"Stuck on a project, need help understanding a pattern or just want to knit and chat with others? Come and join a knitter's circle. ","",2.0,"",,,,,1,2015-03-25 17:46:06 -0400
2096,A&S 7,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,Baroness Camilla de la Reynarde,middle,3075,"Beginning Tatting, Part 2",Pennsic University,"",,false,Tatting is a type of lacemaking. Supplies can be found at craft stores. Learn a craft that fits in a Ziploc bag. Do it the car or at court!,"Part 2 will review the double stitch, learn how to use the picot as decorative element, and as a way to join rings. Time and energy permitting, we'll advance on to making chains between rings. Attendees from previous years are always welcome to come and refresh their memory.",2.0,"I provide a prewound shuttle, a handout with directions & projects.",2.0,20,3.0,20,1,2015-02-21 20:11:32 -0500
2090,A&S 8,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Mistress Morwenna Trevethan,atlantia,3067,Street Smarts,Pennsic University,"",,false,What's in a name? A folkloric history of Pennsic geography. How the streets and areas of Pennsic came by their distinctive designations.,What's in a name? A folkloric history of Pennsic geography. How the streets and areas of Pennsic came by their distinctive designations.,1.0,"",,,,,2,2015-02-21 16:42:16 -0500
2632,A&S 9,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Lady Maeve Ronan,æthelmearc,3878,Successful Bardic Circles from a Bard's POV,Performing Arts and Music,"",,false,Interested in running a bardic circle? Have questions? We'll outline and discuss hints and tips to running a circle that keeps the bards coming back.,"",1.0,"",,20,,,1,2015-05-02 02:03:53 -0400
2580,A&S 12,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,Baroness Genoveva von Lübeck,middle,3803,Pleatwork Apron Make-and-Take,Pennsic University,European,,false,Make your own honeycomb pleated apron similar to those seen in German Ren woodcuts. Bring 1 yard of linen or buy for $10 (limit 10 available). ,"A hands-on, instructional class on smocking, or honeycomb pleatwork, the gathering method commonly seen in German Renaissance clothing (but also popular for hundreds of years throughout Europe). You will make your own apron to wear around camp in style! We'll also discuss pleating in general as we work, and students can read my 30-page research paper on historical pleating techniques. Materials available for 10 people, or bring your own medium-weight, WHITE linen (1 yard).",2.0,Linen (1 yard) - $10,,25,10.0,10,1,2015-04-25 20:23:49 -0400
2182,A&S 13,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Baron Friderich Swartzwalder,æthelmearc,3203,Introduction to Combat Archery,Pennsic University,Multiple Cultures,,false,"Learn the basics of combat archery. Covers the basics of combat archery: what equipment you need, the rules and basic tactics.","Have you ever wanted to be a part of the action on the battlefield, but didn't want to swing a sword? Have you ever wanted to shoot back at that pesky archer who keeps killing you? Give combat archery a try. The class will cover the basics of combat archery: what equipment you need, the rules, and basic tactics.",1.0,"",,,,,3,2015-03-03 09:53:06 -0500
2998,Dance Tent,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,THL Gianna Vettori,middle,4346,Italian Dance for English Feet: Contrapasso en Due,European Dance,European,,false,Don't let Italian dances intimidate you! Take a chance with love and learn Caroso's *Contrapasso en Due* with the English Country dancer in mind.,Italian dances can often seem quite intimidating for dancers just getting steady on their English Country feet. Caroso's *Contrapasso en Due* is a simple Italian dance for couples that translates easily into English Country Dance terminology. For as many couples as will.,1.0,"",,20,,,1,2015-05-07 11:51:46 -0400
2953,Fiber Arts Pavilion (Flaming Gryphon Camp/W-07),2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,THL Fiadnata ó Gleann Àlainn,middle,4300,Warping a Warp-Weighted Loom,Pennsic University,"",,false,Warp-weighted looms can be imposingly large and strange. Let's learn how to warp one on a smaller and more human scale.,"A full-size warp-weighted loom, as built in period, can be imposingly large and strange. We're going to learn how to warp one on a smaller and more human scale. We'll be working in pairs, with space for up to 12 people working hands-on. We'll have a follow-up class with hands-on practice weaving on the warp we've created.",2.0,"",,12,,12,2,2015-05-05 19:05:24 -0400
2663,Games Tent,2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Lord István Nyiregyhazi,east,3906,Game of the Goose,Games,European,,false,"Period game in the style of Chutes and Ladders. We will review the rules and then play through a game, dice willing.","Period game in the style of Chutes and Ladders. The game is purely deterministic (dice-based) so it is suitable for children, but for adults it is often played with stakes to make repeated play more interesting. We will review the rules and then play through a game, dice willing.",1.0,"",,10,,,1,2015-05-07 18:22:08 -0400
3008,"Good Friends Camp (N-01, usually on St. Lawrence)",2015-07-30 10:00:00 -0400,2015-07-30 14:30:00 -0400,Mistress Katarina Helene von Schoenborn,middle,4369,Coptic Sketch Book,Pennsic University,Middle Eastern,,true,New this year: Learn to build a Coptic sketch book with wood covers and exposed spine.,New this year: Students will build a Coptic sketch book with wood covers and exposed spine using techniques used in Egypt in the 4th century.,4.5,"Fee includes leather, wood boards, paper, linen thread, and a handout.",3.0,6,7.0,6,2,2015-05-01 21:13:43 -0400
2938,Middle Eastern Tent,2015-07-30 10:00:00 -0400,2015-07-30 11:30:00 -0400,Christy Fricks,atlantia,4240,Zills Darling! Zills!,Middle Eastern,Middle Eastern,,false,"We are going to play them for an hour and dance, sweat, smile and Loove It! Bring your own. (I only have a few spares) ","This is going to be fabulous. We are going to play them for an hour and dance, sweat, smile and Loove It! Bring your own. (I only have a few spares to loan.) All levels of zill players are encouraged and welcome. At least basic to intermediate level belly dance experience is highly recommended. Bring water.
",1.5,"",,,,,1,2015-05-04 18:41:10 -0400
2481,Minerva's Spindle (158),2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3667,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
2332,Performing Arts Rehearsal Tent,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,Pennsic Performing Arts,"",3401,Pennsic Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Choir welcomes all interested singers! Songs in honor of the 500th anniversary of the Coronation of François I of France.,"The Pennsic Choir welcomes all interested singers! This year's concert features songs of the early to mid-16th century in honor of the 500th anniversary of the Coronation of François I of France. Singing in the Pennsic Choir is an intense and rewarding experience. We rehearse two hours each day for a week, then perform a concert on Thursday evening of War Week. The ability to read music and sight-sing is helpful, but not required if you learn the music in advance. Sheet music and audio tracks are available online now at https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsicxliiichoirs",2.0,"",,,,,7,2015-05-06 01:31:11 -0400
2923,Pine Box Traders (192),2015-07-30 10:00:00 -0400,2015-07-30 11:00:00 -0400,THL Egill the Loomwright,calontir,4278,Lucet Basics,Pennsic University,"",,false,Make a square cord and a two-color cord.,Make a square cord and a two-color cord. Classroom loaner lucets available or bring your own. No fee. String provided.,1.0,"",,,,,3,2015-05-01 19:26:59 -0400
2172,Rapier List 1,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,Master Maximilian der Zauberer,middle,3183,Early Bird Tournament,Rapier Activities,"",,false,"Pick fights, take names and get acquainted.","Pick fights, take names and get acquainted. The purpose of this tourney isn't to win the most bouts, but to find the most interesting facts about your opponents. **""More talk! Less fighting!""** Who will the MIC give the bird to this year?",2.0,"",,,,,1,2015-05-15 06:37:52 -0400
2399,University Point,2015-07-30 10:00:00 -0400,2015-07-30 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3521,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2502,A&S 4,2015-07-30 10:30:00 -0400,2015-07-30 12:30:00 -0400,Lady Moll Sotherden,middle,3713,"Glass Cutting ""Sheet to Shiny""",Glass,Other,,true,"This class is required for (and only open to) the ""Sheet to Shiny"" folks. We'll be cutting out your projects! Wear closed-toed shoes. ","This class is required for (and only open to) the ""Sheet to Shiny"" folks. We'll be cutting out your projects. Observers are welcome.",2.0,Covers cost of glass used.,,,5.0,10,1,2015-04-21 14:17:20 -0400
2103,Family Range,2015-07-30 10:30:00 -0400,2015-07-30 11:30:00 -0400,Lord Naran Numuchi,atlantia,3084,Thumb Ring Archery,Archery,Other,,true,"Learn how to shoot like a Mongol. Requires a horse bow and arrows at least 4"" longer than your finger draw. Some rings will be available for sale. ","Learn to shoot the way Mongols and other steppes and horse archers did. Lord Naran Numuchi, Bow Khan of the Great Dark Horde, Companion of the Order of the Yew Bow (Atlantia) and Ponte Alto Baronial Marshal and Archery Champion, has been shooting thumb ring since 1998, and has focused on the use and history of static-eared recurve bows the whole time.",1.0,"",,,,,2,2015-05-28 00:03:22 -0400
2437,Amphitheater,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Lord William Kilmaron,middle,3594,Juggling 101 (Beginner),Performing Arts and Music,"",,false,Learn to juggle three balls in the simplest pattern. Equipment available for use or purchase. ,The most basic 3-ball cascade juggling. Juggling balls will be made available for use by the class and may be bought afterward from the instructor. ,1.0,"",,,,,3,2015-05-01 00:06:45 -0400
2559,A&S 1,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Master Cariadoc,west,3846,Concerning Mohammed and the Well-Guided Caliphs,In Persona,Middle Eastern,,false,"A history of the early years of Islam, taught in persona from the standpoint of a later Muslim.
","Concerning Our Lord the Prophet Mohammed (Blessings upon Him, his Kindred and his Companion Train) and the Well-Guided Caliphs. A history of the early years of Islam, taught in persona from the standpoint of a later Muslim.",1.0,"",,,,,1,2015-05-02 07:40:30 -0400
2152,A&S 5,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Lady Muriel Zimmermannin,middle,3161,Very Basic Hand-Stitching,Pennsic University,"",,false,Learn the basic stitches and practice them in class. Please bring scissors if you have them. I will provide material to practice.,"I will show some of the very basic stitches of hand-sewing: running stitch and whip stitch among others. With this, you should be able to finally start that hand-sewing project you have always dreamed about. I will provide material for up to 50 people per class to have something to practice on.",1.0,"",,50,,50,2,2015-03-01 18:25:05 -0500
3013,A&S 6,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Lady Fionnghualla Mhic Cealleigh,east,4377,Fingerloop Braiding for Beginners,Pennsic University,"",,false,Hands-on; learn a five-loop braiding technique. Useful as decoration or cording. With slight variation it can be made into lanyard for tokens.,"",1.0,There is no fee. String is cheap!,,,,15,2,2015-05-03 13:54:29 -0400
2227,A&S 8,2015-07-30 11:00:00 -0400,2015-07-30 12:30:00 -0400,THL Morien MacBain,æthelmearc,3258,Hammer of the Witches: Witch Hunts and Trials,Pennsic University,European,,false,"Examines the various texts, tactics, and histories of witch-hunters, along with information on the enemies they believed they fought. ","",1.5,"",,,,,1,2015-03-11 21:34:26 -0400
2294,A&S 9,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Lord Richard Wyn,atlantia,3330,"The What, Where and When of Bards",Performing Arts and Music,"",,false,"What a bard was in period compared to other performance arts, and what a bard is in the current Middle Ages.","",1.0,"",,,,,1,2015-05-02 02:02:55 -0400
2599,A&S 13,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Mistress Keely the Tinker,middle,3821,If Looks Could Kill: Evil Eye Amulets,Glass,Multiple Cultures,,true,The history of amulets used against the Evil Eye through many cultures and time periods. ,"The history of amulets used against the Evil Eye through many cultures and time periods. Discussion of the amulet types plus scholars' deductions of why those amulets are the size, shape or color and style. Class for adults only. Reason: Some amulets are phallic in nature. Some discussion of male and female anatomy. Photos and objects of a phallic nature.",1.0,"",,,,,2,2015-04-29 17:16:17 -0400
2841,Dance Tent,2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Countess Mara Kolarova,east,4145,"Canary, With Training Wheels",European Dance,European,,false,The Canary is a 16th-century dance with swagger and foot-stamping. I will teach a simplified pattern that will let you start having fun with it.,"",1.0,"",,,,,1,2015-05-07 11:39:45 -0400
2422,Serenity Studio (208),2015-07-30 11:00:00 -0400,2015-07-30 12:00:00 -0400,Lady Christina Von Tannenbaum,middle,3575,Intro to 6-on-2 Chainmail,Pennsic University,Multiple Cultures,,false,This type of chainmail was prevalent in period across multiple cultures. All materials provided but bring two pairs of pliers. ,Intro class for 6-on-2 chainmail prevalent throughout period across multiple cultures. All materials necessary to complete class project provided but bring two pairs of standard box nose pliers if you have them. Tools are available for those who don't have them on a first-come first-served basis.,1.0,"Sufficient hand-turned & cut aluminum rings, 12ga 5/8 in diameter, to complete class project.",,,10.0,8,9,2015-04-13 23:23:33 -0400
2469,Æthelmearc Royal - Food Lab (N04),2015-07-30 12:00:00 -0400,2015-07-30 15:00:00 -0400,Lord Mykeal Halfdan,meridies,3665,Building a Bread Oven,Cooking Lab,Multiple Cultures,,false,Hands-on construction of a cob-style bread oven.,This hands-on class will cover the planning and building of a cob oven for camp use in baking bread. This will be a multi-day class of at least three days.,3.0,"",,,,,3,2015-05-03 21:30:14 -0400
3064,Amphitheater,2015-07-30 12:00:00 -0400,2015-07-30 14:00:00 -0400,THL Juliane Bechaumpe,middle,4416,Inner Motion-Physical Improvisation,Performing Arts and Music,Other,,false,"All physical abilities, welcome! Learn how to work with your body through a series of group improvisation exercises and explorations.","Remember rolling down the hill, splashing in the mud and dancing in the rain as a child? Where on earth did that spontaneity go? Spend some time finding it again in a supportive, no stress atmosphere through physical improvisational group games. Whether you act, sing, tell stories, dance, play a musical instrument, or just want to move in the most stunning manner possible in a houppelande, bring a new dimension to your art by exploring your own personal movement potential. All physical abilities welcome. There may be ground work involved, but all exercises can be adapted for chairs.",2.0,"",,,,,1,2015-05-04 16:04:04 -0400
2565,A&S 1,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Master Cariadoc,west,3844,Law in the Lands of Peace,In Persona,Middle Eastern,,false,"A class on *Fiqh*, Muslim law, taught in persona from the point of view of the Maliki school.","A class on *Fiqh*, Muslim law, taught in persona from the point of view of the Maliki school.",1.0,"",,50,,,1,2015-05-02 07:40:49 -0400
2098,A&S 2,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Brunissende Dragonette,east,3078,Commenting on Letter of Intent,Heraldry,"",,false,"Heraldic letters of intent (in and out of kingdoms) can always benefit from both trained and less-experienced, commenters. How can you help?","Commenting on letters of intent: How I learned to stop worrying and love heraldry.
Heraldic letters of intent (in and out of kingdoms) can always benefit from both trained and less-experienced commenters. We will discuss how to provide helpful commentary. For heralds or aspiring heralds.",1.0,"",,,,,2,2015-02-24 18:13:28 -0500
2660,A&S 3,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Lord Yaakov HaMizrachi,atlantia,3974,Jewish Astrology,Pennsic University,Other,,false,"An in-persona class teaching Avraham Ibn Ezra's classic 12th-century text on Jewish Astrology *Reishit Chachma* (trans. ""The Beginning of Wisdom""). ","Avraham Ibn Ezra, one of the great Jewish scholars of the first half of the 12th century, authored a classic textbook on Jewish astrology called *Reishit Chachma* (translation, ""The Foundation (lit. Beginning) of Wisdom."" In this text, Ibn Ezra details Jewish astrological theories and how they differ from the theories of the Greeks, the Arabs, and other astrological systems of the day.
The class will be taught in persona, and students are encouraged (but not required) to likewise remain ""in persona."" We will cover (a) why the study of astrology is a science, not a form of divination, and therefore permitted in Jewish law; (b) references to astrology in the prayers, laws and works of the sages -- further demonstrating that astrology is a science and not a prohibited form of divination; (c) the underlying relationship between the 12 classic astrological signs, the 12 tribes of Jacob, the 7 spheres, and the elements of creation; and (d) the uses of astrology for the casting of horoscopes for individuals, for places, for significant events, and other applications.",1.0,"",,,,,1,2015-04-30 21:03:49 -0400
2718,A&S 5,2015-07-30 12:00:00 -0400,2015-07-30 13:30:00 -0400,THL Asalah al-Hina,middle,4005,Intro to Safavid Women's Clothing and Accessories,Pennsic University,Middle Eastern,,false,"Learn the basics of Safavid Persian (16th C) dress and accessories, as well as the difference between Persian and Ottoman clothing.","Learn the basics of Safavid Persian (16th century) dress and accessories, as well as the difference between Persian and Ottoman clothing.",1.5,"",,15,,,1,2015-05-04 19:24:43 -0400
2852,A&S 6,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Mistress Catriona nicHugh Mclaey,middle,4154,The Letter of Prester John,Pennsic University,European,,false,It said Prester John would come aid the Crusaders. Believers continued to look for his kingdom up to the 16th century. Learn about this myth.,A legend of the early 12th century told of a Christian king/priest who presided over a kingdom surrounded by Muslims which was full of untold riches and strange creatures. Prester John would come to the aid of the Crusaders in Jerusalem. Believers continued to look for his kingdom up to the 16th century C.E. It was even thought that Prester John was the foster father of Genghis Khan! Come learn more about this fascinating and popular myth.,1.0,"",,,,,1,2015-04-30 21:36:52 -0400
2198,A&S 7,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Mistress GraziaGeralda,middle,3228,Feasts Are More Than Cooking,Pennsic University,"",,false,A discussion of the many things needed for a successful feast that are not in the kitchen.,"",1.0,"",,,,,1,2015-03-07 17:26:01 -0500
2696,A&S 9,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Mistress Amelie d'Anjou,middle,3938,Medieval Modes,Performing Arts and Music,European,,false,"Medieval music isn't just major and minor. Find out the other ""scales"" used then. Good for performing and writing your own music. Bring a pencil.","Wondering how to make a tune sound more medieval? Go beyond major and minor keys, and learn about modes. We'll start at Do-Re-Mi, then go on. Previous music theory not necessary. We'll learn how to figure out the mode of almost any pre-written song. Handout includes a period song in every mode. Bring a pencil.",1.0,"",,25,,,1,2015-05-03 19:49:48 -0400
2406,A&S 12,2015-07-30 12:00:00 -0400,2015-07-30 14:00:00 -0400,Mistress Blitha of Wolfhou,atlantia,3553,A History of Buttons,Pennsic University,Multiple Cultures,,false,"Learn about styles of buttons from the Bronze Age through our period. What did they look like, how were they used, and where were they worn?",We will look at the different buttons used from the Bronze Age through our period. What did they look like? How were they used? Where were they worn? What were they made from?,2.0,For a handout,5.0,25,,,1,2015-04-12 20:25:35 -0400
2259,A&S 15,2015-07-30 12:00:00 -0400,2015-07-30 13:30:00 -0400,Mistress Arwen Evaine ferch Rhys ap Gwy,east,3305,Traditional Norse Medical Practices,Pennsic University,European,,false,"Collecting, storing, and preparation techniques of herbs and other medicinals, some dating back to saga times.","Medicine in Norway was surprisingly sophisticated back into saga times, compared with the Continent. We will look at the herbs/roots/barks/berries/fungi, etc., used in traditional healing, including preparation and administration of salves, syrups, teas and washes, poultices, and lots more. Magical healing will also be presented, as well as diseases and other health problems as known at the time.",1.5,"",,20,,,2,2015-05-05 10:46:43 -0400
2596,Barony of Roaring Wastes (N18),2015-07-30 12:00:00 -0400,2015-07-30 13:30:00 -0400,Lord Eric Edwardson,middle,3816,An Organized Tent Is a Happy Tent,Pennsic University,"",,true,Discussion class with tips on organizing your tent for a more pleasurable Pennsic. ,"",1.5,"",,,,,1,2015-04-25 18:11:22 -0400
2644,Dance Tent,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Gregory Blount,west,3893,A History of Dance in the SCA,European Dance,European,,false,"The dance that we do in the SCA has changed dramatically over 50 years. Come learn how it used to be, and help fill in the gaps of history.","",1.0,"",,,,,1,2015-05-07 11:34:50 -0400
2246,Livonia Smithery (170),2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Lord T W,æthelmearc,3448,Beginning *Repoussé* and Chasing,Pennsic University,"",,true,Hands-on class; will make a copper foil rose.,Hands-on class; will make a copper foil rose.,1.0,Hand out,5.0,12,,,8,2015-04-08 17:58:40 -0400
2419,Middle Eastern Tent,2015-07-30 12:00:00 -0400,2015-07-30 13:00:00 -0400,Rajni of Orluk Oasis,meridies,3567,Intro to Egyptian-Style Group Improvisation,Middle Eastern,Middle Eastern,,false,Learn Tribal Odyssey: Egyptian-based improvisational tribal-style with *beledi*-style combinations. ,"Rajni is a Certified Level 1 Tribal Odyssey dance leader, a group improvisational style developed by Kawakib of Fredericksburg, VA. In the words of Kawakib: “Tribal Odyssey uses natural posture and both sides of the body in combinations based primarily on Egyptian *beledi*-style movement. It's versatile enough to adapt to any size group.” Class will repeat to allow for several days of practice with a group, and will incorporate recorded Middle Eastern drumming as well as live music/ drumming as available. Learn moves that you and your dance friends can use at Pennsic haflas this year!",1.0,"",,,,,3,2015-05-04 18:36:44 -0400
2319,Performing Arts Rehearsal Tent,2015-07-30 12:00:00 -0400,2015-07-30 14:00:00 -0400,Pennsic Performing Arts,"",3377,KWP Pennsic Readers' Theater: Youth Rehearsal,Performing Arts and Music,"",,false,Known World Players - Youth Readers' Theatre will give the youth (ages 10-17) of the SCA an opportunity to experience a low-stress theatre production.,"Known World Players - Youth Readers' Theatre will give the youth (ages 10-17) of the SCA an opportunity to experience a low-stress theatre experience and learn about a popular legend from the medieval time while creating a staged reading of *The Amazing First Voyage of Sara, Daughter of Sinbad (Based upon The Arabian Nights)* This script is written by a fellow SCAdian, John Inchingham the Fool. A staged reading means that the actors will be performing the play with the script in hand. To be performed Friday 7/31 in the Performing Arts Tent at 6:30 pm.",2.0,"",,,,,2,2015-03-30 15:45:02 -0400
2747,The Little Dragon's Hoard (Plunder Lane),2015-07-30 12:00:00 -0400,2015-07-30 14:00:00 -0400,Lord Drogo Rabenwald,æthelmearc,4032,A Blacksmith's Double Chamber Bellows,Pennsic University,European,,false,"A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. ","A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. Will also have descriptions of how the skin is attached and pattern-making of the whole process.",2.0,"",,,,,5,2015-04-30 19:43:29 -0400
2586,A&S 4,2015-07-30 12:30:00 -0400,2015-07-30 13:30:00 -0400,Lord Brynn Herleifsson,middle,3787,Period Stained Glass Basics,Glass,Multiple Cultures,,false,"Discussion of materials, techniques, and primary sources used in period stained glass work. This will not be hands-on, but many visual aids!","Discussion of materials, techniques, and primary sources used in period stained glass work, including vitreous paints, silver stain, design considerations, lead came technique, etc. Discussion will also include an overview of primary sources and other resources for research. Practical hands-on will not be available, but many examples will be available for viewing. This class intended for someone doing modern copper foil work who wants to try more period techniques.",1.0,"",,20,,20,1,2015-04-29 16:26:55 -0400
2780,Æthelmearc 1,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,THL Subetei Al-Qulan,atlantia,4025,Mixing Paints for Scribes: Shading and Highlights,Æthelmearc Scribal,"",,false,An overview of basic color theory with a step-by-step process for mixing and applying gouache to show dimension using shadows and highlights. ,"An overview of basic color theory with a step-by-step process for mixing and applying gouache to show dimension using shadows and highlights. This class is designed to help those scribes who may not have taken basic art classes and who seek to understand how light affects the way colors are interpreted by our eyes.
Paint and mixing tools provided, bring your own brushes, I will have a small number on hand to borrow.",1.0,"",,20,,,2,2015-05-17 12:36:01 -0400
2088,Æthelmearc 2,2015-07-30 13:00:00 -0400,2015-07-30 17:00:00 -0400,Mistress Matilda Bosvyle,æthelmearc,3060,Scribal Playtime,Æthelmearc Scribal,"",,false,"Open space for scribes/artists to work on projects, ask questions or discuss their art. Some community-shared materials may be available for use.","The Æthelmearc Scribal College pavilion will be open for scribes to work on projects, ask questions of experienced scribes or discuss their art. One-on-one instruction may be available if space and resources allow. Some community-shared materials such as Paint-a-Blanks may be available.",4.0,"",,,,,4,2015-05-02 21:38:04 -0400
3010,A&S 2,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,THL Wu Yun,meridies,4373,Heraldic Customer Service,Heraldry,"",,false,"How to be a better local officer/consultation herald with a few, relatively painless, changes.","Are you a new herald? Are you an extra-crispy herald? Either way, come hear about ways to better serve your group with a few simple changes in how you see the office.",1.0,"",,20,,,1,2015-05-03 16:22:19 -0400
2485,A&S 3,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Lady Svea the Short-sighted,east,3702,Fun with Body Parts II: Pilgrimage,Pennsic University,European,,false,Need the personal intervention of a saint? Pay him or her a visit! An irreverent look at the hundreds of thousands who left home on pilgrimage.,"Need the personal intervention of a saint? Pay him or her a visit! An irreverent look at the hundreds of thousands who left home on pilgrimage: who went, why, and where. Taught by someone who has been to the Big Three: Compostela, Rome, Jerusalem.",1.0,"",,25,,,1,2015-04-18 11:34:02 -0400
2626,A&S 6,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Alexander von Lübeck,middle,3872,Period Pavilion Paper Craft Make-and-Take,Parent/Child,Multiple Cultures,,false,Come learn how pavilions (tents) were made historically using basic construction techniques. Please bring scissors appropriate to your age. ,Come learn how pavilions (tents) were made historically using basic construction techniques. Students will make a paper craft pavilion in the shape of their choice to take back to their own camp. Please bring scissors appropriate to your age (no sewing will be done).,1.0,"$1 requested (but not required) for paper, tape, dowels, and decorations, and handout",,25,1.0,25,1,2015-04-30 21:21:57 -0400
2250,A&S 7,2015-07-30 13:00:00 -0400,2015-07-30 16:00:00 -0400,Lady Benedicta of Cynnabar,middle,3293,A Taste of Bobbin Lace,Pennsic University,European,,false,Sample simple bobbin lace techniques while making a bracelet! Ages 10+ welcome. Tools and thread provided during class; no investment needed!,"Sample simple bobbin lace techniques while making a bracelet! Ages 10+ are welcome. Tools, pattern, thread and clasps will be provided. This course is intended as a quick, no-investment introduction to the techniques of bobbin lace.",3.0,handout five pages @ .10 / page,0.5,15,,7,1,2015-05-04 16:12:28 -0400
2240,A&S 8,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Lord Tempus Peregrinator,ealdormere,3291,How To Make Fancy Pants,Pennsic University,European,,false,"The construction and wearing of Renaissance pants such as slops, “pumpkin pants,” and pluderhose. Just what every Landsknecht needs.","This class is about the construction and wearing of Renaissance pants such as slops, “pumpkin pants,” and pluderhose. Just what every Landsknecht needs, though it will help with any late period pants. Might talk about the famous Janet Arnold Upsala/Sture pluderhose with the “bum” as well as other cool pant stuff.",1.0,"",,,,,1,2015-03-25 17:19:06 -0400
2116,A&S 9,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,THL Vincenzo da Brescia,ealdormere,3096,Instrumental Music in the Sixteenth Century,Performing Arts and Music,European,,false,"An overview of instrumental repertoire, its styles, sources, performers, and composers in 16th-century Europe.","",1.0,"",,30,,,1,2015-05-01 03:26:04 -0400
2514,A&S 10,2015-07-30 13:00:00 -0400,2015-07-30 14:30:00 -0400,Lady Miriam bat Pessah,middle,3757,Adventure with Sourdough,Cooking Lab,Multiple Cultures,,false,Learn how to grow and maintain sourdough culture used to bake bread in period. Take home some starter for your own baking.,"",1.5,"To cover cost of handout, bread and starter.",,,1.0,,2,2015-05-03 17:50:01 -0400
2607,A&S 13,2015-07-30 13:00:00 -0400,2015-07-30 15:00:00 -0400,THL Catherine of deva,middle,3827,Learn to Drop Spin,Pennsic University,"",,false,Never spun or had a hard time learning? Learn to drop spin using a top whorl spindle. All supplies will be provided. Spindles can be purchased. ,"",2.0,"",,,,,1,2015-04-26 14:16:28 -0400
2602,Dance Tent,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Lady Rebecca da Firenze,west,3853,*Contentezza D'Amore*,European Dance,European,,false,"Come learn *Contentezza D'Amore*, a beautiful 16th-C *ballo* from *Nobiltà*! Dancers of all ages welcome. This is an advanced class.","Come learn *Contentezza D'Amore*, one of the most beautiful of the 16th-century *balli*! I will be teaching the version from *Nobiltà di Dame*, Master Caroso's second book, wherein he corrects all the errors of his first; if you think you already know it, be warned! Dancers of all ages welcome. This is an advanced class.",1.0,"",,,,,1,2015-05-07 11:42:45 -0400
2667,Games Tent,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Lord István Nyiregyhazi,east,3911,Tarot the Card Game,Games,European,,false,"The game of tarot, the trick-taking game. We will play it.","We will go over the rules of tarot, the card game, and play it.",1.0,"",,10,,,1,2015-05-07 18:20:06 -0400
2784,University Point,2015-07-30 13:00:00 -0400,2015-07-30 14:00:00 -0400,Allys of Severn,atlantia,4070,That Poysoned Weed,Pennsic University,"",,false,"Learn some history of poison ivy, then journey the grounds to learn to recognize and keep clear of it. Wear closed-toed shoes; dress for the weather.","Learn some of the period history of poison ivy, then journey the grounds to learn to recognize it and similar, but harmless, plants, and keep your campsite clear. Wear closed-toed shoes and dress for the weather. Teacher not responsible for any resulting itches.",1.0,"",,,,,1,2015-04-30 21:30:16 -0400
2587,A&S 4,2015-07-30 13:30:00 -0400,2015-07-30 15:00:00 -0400,Lord Brynn Herleifsson,middle,3786,Advanced Period Stained Glass,Glass,Multiple Cultures,,false,"A discussion of period silver stain formulas, construction, design considerations, and kiln building.","A discussion of period silver stain formulas, construction, design considerations, and kiln building. This is not hands-on, but there will be example pieces to examine.",1.5,"",,20,,20,1,2015-04-29 16:29:21 -0400
2245,Livonia Smithery (170),2015-07-30 13:30:00 -0400,2015-07-30 14:30:00 -0400,Lord T W,æthelmearc,3441,Beginning Engraving,Pennsic University,"",,true,"Hands-on class. Intro to tools, first cuts, graver control, hammer use.","Hands-on class. Intro to tools, first cuts, graver control. Student will learn both hand-held and hammer-struck engraving.",1.0,printed handout,5.0,12,,,8,2015-04-08 17:56:19 -0400
2369,A&S 1,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Mistress Safiya bint Suleiman,trimaris,3486,Indian Kutchwork / Marash Embroidery II,Pennsic University,Middle Eastern,,false,Interlaced herringbone medallions and complex borders. Pattern reading and making. Beginning class is required.,Interlaced herringbone medallions and complex borders. Pattern reading and making. Beginner class or prior experience required,1.0,"Handout packet includes hoop, fabric, needle, floss, instructions, research CD",5.0,10,,10,1,2015-04-06 17:32:23 -0400
2473,A&S 2,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Mistress Lillia de Vaux,east,3633,"Resubs, Appeals, and Requests for Reconsideration",Heraldry,Multiple Cultures,,false,"If your or your submitter's heraldic submission has been returned, what's the next step?","When a name or armory submission is returned, submitters have several options: resubmitting, sending an appeal, and requesting reconsideration. This class will discuss how to read and interpret a return decision, the differences between the options and when to use them, and resources that can help. In addition, we will discuss other administrative actions, such as heraldic wills, transfers, and permissions to conflict, as well as what is needed to use the grandfather clause and legal name allowance.",1.0,"",,,,,2,2015-07-01 19:46:56 -0400
2147,A&S 3,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Mistress Hilderun Hugelmann,æthelmearc,3145,Livery Collars,Pennsic University,European,,false,"An exploration of this elite accessory, with a focus on earlier examples and historical significance, plus a discussion of how to adapt to SCA use. ","An exploration of this elite accessory, with a focus on earlier examples and historical significance, plus a discussion of how to adapt to SCA use. Some new information from previous years' classes. ",1.0,"",,10,,,2,2015-04-30 11:25:42 -0400
2970,A&S 5,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Lady Fritha Eikbrandrsdottir,middle,4311,Norse Underdress Drafting: Basic Pieced Style,Pennsic University,European,,false,"Pattern drafting of early period underdress. Conserve fabric, make well-fitted dress and hand finish seams. Bring paper, pencil, and measuring tape","Drafting of early period pieced-style underdress. Learn how to conserve fabric and make a well-fitted dress. Pattern drafting. Learn how to hand finish visible seams as well. Bring paper, pencil, and measuring tape.",1.0,"",,20,,,1,2015-05-01 19:32:17 -0400
2846,A&S 6,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Mistress Catriona nicHugh Mclaey,middle,4153,Unsolved Mysteries of the Middle Ages,Pennsic University,European,,false,"This is a lighthearted look at the hoaxes, conundrums, and mysteries from and about the Middle Ages.","Did Marco Polo actually travel to Cathay? Who **is** buried at Glastonbury? There was a pregnant Pope? And, just when was the Cerne Abbas Giant carved into the side of a hill? This is a lighthearted look at the hoaxes, conundrums, and mysteries from and about the Middle Ages.",1.0,"",,,,,1,2015-04-30 21:39:59 -0400
2403,A&S 8,2015-07-30 14:00:00 -0400,2015-07-30 16:00:00 -0400,Mistress Eirny Thorvaldsdottir,atenveldt,3547,Closing Your Clothes,Pennsic University,Multiple Cultures,,false,"Survey of period clothing closures and how to use them. Covers antiquity to 1600, and all the cultures that I have time for. ","Survey of period clothing closures and how to use them. Covers antiquity to 1600, and all the cultures that I have time for. Includes information on where to purchase these items. I will pass around actual closures and demonstrate their use.",2.0,$3 for handout,,15,,,2,2015-04-10 18:52:38 -0400
2681,A&S 9,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,Master Ruaidhri an Cu,atlantia,3920,Improvised Storytelling,Performing Arts and Music,Other,,false,Learn techniques for creating entertaining stories off the top of your head.,"Have you ever been asked to tell a story but the person before you in the circle just told the only one you know? Have you ever forgotten your tale in the midst of telling? Well, worry no more! This class will focus on the development of quick thinking and creative story composition.",1.0,"",,30,,,1,2015-04-29 22:53:29 -0400
2847,A&S 12,2015-07-30 14:00:00 -0400,2015-07-30 16:00:00 -0400,Lady Crimson Kate McPhee,east,4156,Hand and Foot Massage for Lovers and Others,Pennsic University,Other,,true,Be the most popular gentle in camp! Learn simple massage techniques to relax loved ones. Wear comfortable clothes and bring a mat to lie on.,"Be the most popular gentle in camp! Learn simple techniques to relax friends and loved ones. Pennsic is hard on the body, particularly the feet. This is the perfect opportunity to hone your innate massage skills. Bring a partner, but If you don't have one, you will be paired up with a fellow classmate. Wear comfortable clothing and easy-to-remove footwear. Also, bring a towel or mat to lie on the floor.",2.0,"",,,,,1,2015-04-30 20:00:11 -0400
3033,Battlefield,2015-07-30 14:00:00 -0400,2015-07-30 16:00:00 -0400,Duchess Elina of Beckenham,middle,4410,Armored Rose: Lecture,Pennsic University,"",,false,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA; a ""must"" for those who are or teach or fight women.","Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical, physiological and psychological differences between men and women and how these impact fighting, plus how to make the most of them. Tendons, adrenaline, hormones and society all have an impact. See how they play a part in changing the fight.",2.0,"",,,,,3,2015-05-03 17:55:28 -0400
3072,Dance Tent,2015-07-30 14:00:00 -0400,2015-07-30 15:00:00 -0400,THL Henry of Maldon,æthelmearc,4425,Beginner Dance: Measures A (Inns of Court),European Dance,European,,false,"Never danced before? No problem! Start with basic steps and patterns. Then, learn simple middle class dances from Elizabethan England.","Never danced before? No problem! This class will start with basic steps and patterns, and then teach simple middle class dances from Elizabethan England.",1.0,"",,,,,1,2015-05-04 16:00:53 -0400
2434,Middle Eastern Tent,2015-07-30 14:00:00 -0400,2015-07-30 15:30:00 -0400,Lady Nina Amaya of Bright Hills,atlantia,3589,Enchant with Your Dance,Middle Eastern,Middle Eastern,,false,"All levels. How to be an enchanting and memorable performer. Breath, movement, stillness, emotion, weight, tension... Write a visual poem in dance!","For all levels. How to be an enchanting and memorable performer. Exercises in breath, movement, stillness, emotion, weight, tension... Use the moves you already know to best effect. Write a visual poem in dance!",1.5,"",,,,,1,2015-05-04 18:32:44 -0400
2320,Performing Arts Rehearsal Tent,2015-07-30 14:00:00 -0400,2015-07-30 16:00:00 -0400,Pennsic Performing Arts,"",3379,KWP Pennsic Readers' Theater: Adult Rehearsal,Performing Arts and Music,"",,false,"A low-stress opportunity and theatre experience by KWP Readers' Theatre, creating a staged reading of *The Belle of Battle* by Don Orlando Sforza.",Known World Players Readers' Theatre provides a low-stress opportunity and theatre experience creating a staged reading of *The Belle of Battle* by fellow SCAdian Don Orlando Sforza. A staged reading means that the actors will be performing the play with the script in hand. To be performed Friday 7/31 in the Performing Arts Tent at 7:00 pm.,2.0,"",,,,,2,2015-03-30 15:39:46 -0400
2929,Pine Box Traders (192),2015-07-30 14:00:00 -0400,2015-07-30 15:30:00 -0400,THL Egill the Loomwright,calontir,4281,Needle-Woven Pouch,Pennsic University,"",,false,A simple needle-weaving method and loom for creating a woven pouch or bag.,A simple needle-weaving method and loom for creating a woven pouch or bag. Loom and string provided; take your work home with you. ,1.5,loom and supplies,,,10.0,,2,2015-05-03 14:06:56 -0400
3126,South Battlefield,2015-07-30 14:00:00 -0400,2015-07-30 16:00:00 -0400,Sir Gregory of Loch Swan,lochac,4514,Whack-a-Roo Tourney,Martial Activities,"",,true,"This is a “Meet, Greet and Bash” Tourney. Lochac Kingdom rules. No killing from behind; must engage the fighter to fight. ","Meet and beat on Lochac heavy fighters. A record number of Lochac heavy fighters will be attending Pennsic this year. This is a “Meet, Greet and Bash” Tourney. No prizes other than the prize of testing your mettle against Lochac’s finest. Single- or three-person teams, single-kill tourney. Lochac Kingdom rules. No killing from behind; must engage the fighter to fight. ",2.0,N/A,,1,,1,1,2015-05-22 21:04:34 -0400
2589,A&S 4,2015-07-30 15:00:00 -0400,2015-07-30 18:30:00 -0400,Lord Brynn Herleifsson,middle,3812,Assembling Stained Glass Panels,Glass,Multiple Cultures,,false,"The last step of the ""Sheet to Shiny"" track: assembling your stained glass panel! Must have participated in previous classes.","The last step of the ""Sheet to Shiny"" track: assembling your stained glass panel! Must have participated in previous classes.",3.5,Solder and copper foil,,,10.0,,1,2015-04-29 16:30:13 -0400
3167,A&S 5,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,Lady Mariot Carllein,east,4583,Late Period Cross Sititch and Variations,Pennsic University,European,,false,"Examines how cross stitch was used, alone and with other stitches, plus a brief look at long-armed cross and reversible cross stitch.","Examines examples of extant pieces and images, as well as how cross stitch was used, alone and with other stitches, plus a brief look at long-armed cross and reversible cross stitch.",1.0,"",,12,,,2,2015-05-27 19:06:46 -0400
2655,A&S 6,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,THL Bojei Temur,middle,3969,What’s So Great About the Mongols?,Pennsic University,Far Eastern,,false,And why are they so exciting to study and recreate? Learn fascinating facts about the Mongolian Empire and how this culture still affects us.,"",1.0,"",,,,,1,2015-05-04 16:11:21 -0400
2277,A&S 9,2015-07-30 15:00:00 -0400,2015-07-30 18:00:00 -0400,Lady Faye de Trees,atlantia,3282,Interpretive Skills for Bards,Performing Arts and Music,"",,false,Interpretation is a communication process connecting to the hearts and minds of your audience. Learn tricks from this profession for your performance!,A few years ago I had a bardic *aha!* moment. I could use my mundane skills as an interpreter to be a better bard! Come and learn from a Certified Interpretive Trainer about how interpretation connects the hearts and minds of your audience to the story you share. You can adapt these skills for any type of performance or better staying in persona.,3.0,"",,30,,,1,2015-06-18 03:37:48 -0400
3045,A&S 10,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,Viscountess Ísgerðr Gulkárr,middle,4437,Wet Felting - Viking style,Pennsic University,European,,false,Come learn how to use wool roving to make felt sheets or a small felt pouch. ,Wool was used for many things during the Viking Era. Come play with wool and water and learn the art of felting wool. Make sure you wear clothes that you can get wet and soapy. ,1.0,Materials to make a felt pouch or sheet of felt. ,,15,5.0,15,1,2015-05-04 07:58:20 -0400
3211,A&S 13,2015-07-30 15:00:00 -0400,2015-07-30 18:00:00 -0400,Lady Bianca Cantacuzene,middle,4646,Herjolfesnes Gowns: A 20th-Century Perspective,Pennsic University,European,,true,"Adapting modern commercial women's dress patterns to make a Herjolfesnes-style gown, late 13th C to early 14th C.",I will assist people to adapt a modern commercial dress pattern into a pattern for a gown in the style of Herjolfsnes gown G.38 or G.39. I will show you how to alter the modern pattern and then you can trace all pattern pieces onto plain white paper I will provide. There will also be a handout with some historical details and finishing suggestions. ,3.0,"To cover the cost of patterns, pens and paper.",,,,,3,2015-07-02 19:32:49 -0400
3074,Dance Tent,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,THL Henry of Maldon,æthelmearc,4427,Beginner Dance: English Country A,European Dance,European,,false,"Never danced before? No problem! Start with basic steps and patterns, and then learn simple English Country Dances.","Never danced before? No problem! This class will start with basic steps and patterns, and then teach simple English Country Dances.",1.0,"",,,,,1,2015-05-07 20:42:46 -0400
2966,Games Tent,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,THL Louis Xavier de Navarre,middle,4254,*Tafl* Games,Games,"",,false,"The *Tafl* family of games were played through the Norse lands. The rules are simple and easy to learn, and the game play can be quick or complex.","The *Tafl* family of games were played through the Norse lands. The rules are simple and easy to learn, and the game play can be quick or complex.",1.0,"",,,,,2,2015-05-07 18:43:45 -0400
3161,General Archery,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,Lord Godai Katsunaga,atlantia,4576,Applied Japanese Archery ,Archery,Far Eastern,,true,Learn to shoot the Japanese longbow.,Learn to shoot the Japanese longbow.,1.0,"",,12,,,1,2015-05-27 19:01:04 -0400
2244,Livonia Smithery (170),2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,Lord T W,æthelmearc,3436,Advanced *Repoussé* and Chasing ,Pennsic University,"",,true,"Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.","Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.",1.0,handout,5.0,12,,,4,2015-04-08 17:53:28 -0400
2922,White List,2015-07-30 15:00:00 -0400,2015-07-30 16:00:00 -0400,Duke Vissevald Selkirksson,east,4224,The Poleax Techniques of Paulus Hector Mair,Martial Activities,European,,false,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,1.0,"",,,,,4,2015-05-05 16:38:49 -0400
3134,Youth Combat List,2015-07-30 15:00:00 -0400,2015-07-30 17:00:00 -0400,Lord Sven,middle,4530,Afternoon Youth Combat,Youth Combat,"",,false,Afternoon Youth Combat,Afternoon Youth Combat,2.0,"",,,,,8,2015-05-13 19:59:52 -0400
2373,A&S 1,2015-07-30 16:00:00 -0400,2015-07-30 18:00:00 -0400,Master Elias Gedney,east,3506,Mythbusting Period Piracy,Pennsic University,European,,false,The differences between period and non-period piratical portrayals will be outlined.,The differences between period and non-period piratical portrayals will be outlined. Common myths and mistakes about piracy in the SCA period will be highlighted.,2.0,"",,,,,2,2015-04-06 17:31:33 -0400
2569,A&S 3,2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,Master Cariadoc,west,3849,Sources for Islamic Persona: A Discussion,Pennsic University,Middle Eastern,,false,Anyone who has suggestions for sources for developing such a persona is welcome to join in.,"Anyone with such a persona, interested in developing one, or with suggestions of how to develop one, is welcome to join in.",1.0,"",,,,,1,2015-04-26 11:14:01 -0400
3048,A&S 6,2015-07-30 16:00:00 -0400,2015-07-30 17:30:00 -0400,Lady Jael ben Ari,middle,4440,Simplified Roman Garb for Ladies (On the Cheap),Pennsic University,Other,,false,"Basic Roman garb: light-weight clothing that looks great on anyone, on the cheap.","",1.5,"",,,,,1,2015-05-04 08:05:48 -0400
2175,A&S 7,2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,Lord Lucas Livingston,middle,3194,Top Ten Ancient Egyptian Myths & Misconceptions,Pennsic University,Multiple Cultures,,false,"Who really built the pyramids? Were the Egyptians obsessed with death? And was Cleopatra black or white? That & more! You asked for it, so here it is!","Who really built the pyramids and what are their hidden secrets? Why were the Egyptians obsessed with death? And was Cleopatra black or white? With a nod to the venerable Top Ten list and a hearty dose of scholastic irreverence, we'll tackle some of the most popular myths perpetuated today about ancient Egyptian civilization and explore some of the ways this ancient culture has lived on through late antiquity, into the medieval era and beyond. Adapted by the author from a series of Ancient Art Podcast episodes.",1.0,"",,20,,,1,2015-03-25 12:12:49 -0400
2990,A&S 8,2015-07-30 16:00:00 -0400,2015-07-30 18:00:00 -0400,Lady B'Gen Van der Sterren,middle,4356,Beaded Flowers,Pennsic University,European,,false,Make a miniature tea rose in the style of the beaded flowers of 15th-century Venice.,"",2.0,"",,25,,6,2,2015-06-11 20:07:47 -0400
3035,Blue List,2015-07-30 16:00:00 -0400,2015-07-30 17:30:00 -0400,Duchess Elina of Beckenham,middle,4407,Armored Rose: Field Class,Martial Activities,"",,false,On-the-field class teaching techniques from the Armored Rose lecture. Bring sword and shield. No armor needed. Covers stance and power generation.,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical differences between men and women and how these impact fighting, and how to make the most of them. Best taken in conjunction with the lecture course, this is a physical demonstration where students and teachers will try out the techniques covered in the lecture.",1.5,"",,,,,3,2015-05-04 16:40:35 -0400
2974,Cynnabar (W02),2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,Lord Gregor Reinhardt von Holstein,middle,4316,Enhance Your Camp,Pennsic University,European,,false,Learn how to make personal camp improvements that enhance its appearance and your quality of life with a variety of wood and craft projects.,"Join us at our camp to learn about how to make personal camp improvements that can enhance both its appearance as well as your own quality of life. Most projects are made from wood with basic tools and do not require special knowledge, skills, or equipment. Handouts will be available for each camp project ($1/handout), including our camp cart, kitchen worktable, sink with foot pump, trestle table, benches, chairs, clothes rack, armor stand, canvas organizer, and more.",1.0,copying handouts,1.0,25,,,1,2015-05-01 21:04:31 -0400
2355,Dance Tent,2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,THL Gianna Vettori,middle,3465,Whose Partner Am I Anyway?,European Dance,European,,false,"Why settle for one when you can have both? Three fun, flirty, and fickle Playford dances: *Rufty Tufty, Heart's Ease*, and *Cuckolds All in a Row.*","Why settle for dancing with one partner when you can dance with both! Learn three fun, flirty, and fickle four-person Playford dances including *Rufty Tufty*, *Heart's Ease,* and *Cuckolds All in A Row.* Basic ECD steps will be reviewed. Beginner+.",1.0,"",,20,,,1,2015-05-07 11:57:01 -0400
2643,Performing Arts Rehearsal Tent,2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,Gregory Blount,west,3892,Folk Tunes of the Elizabethan Era,Performing Arts and Music,European,,false,Learn to sing some broadside ballads and tunes collected by Thomas Ravenscroft.,"Learn to sing some Elizabethan music, including various broadside ballads and tunes collected by Thomas Ravenscroft, the first collector and publisher of folk music.",1.0,"",,,,,2,2015-05-02 01:48:13 -0400
3197,Thrown Weapons Range,2015-07-30 16:00:00 -0400,2015-07-30 17:00:00 -0400,Baron Kryss Kostarev,atlantia,4623,Atlatls of the World,Thrown Weapons,Multiple Cultures,,false,Atlatls (spear/dart throwers) have been found on every continent except Antarctica. Come see their wide variety and try them out.,"Atlatls (spear throwers, *woomeras, speerschleuders*, etc.) have been found on every continent except Antarctica. They have been used from 30,000 years ago up to the present day in some areas. Come see their wide variety and actually try them out on the atlatl range.",1.0,A limited number of atlatls and darts will be available for sale to the students who attend this class. Variable costs $15-$50.,,25,,,2,2015-06-17 20:39:59 -0400
2690,A&S 3,2015-07-30 17:00:00 -0400,2015-07-30 17:45:00 -0400,Baroness Annabelle Makmyllane ,ealdormere,3987,The Beauty of Brevity,Pennsic University,Multiple Cultures,,false,Speaking beautifully and inspirationally without taking hours to do it.,"Speaking beautifully and inspirationally without taking hours to do it. We will be exploring resources that inspire us and, hopefully, you as well.",0.75,"",,,,,2,2015-04-30 21:30:49 -0400
2927,Performing Arts Rehearsal Tent,2015-07-30 17:00:00 -0400,2015-07-30 18:00:00 -0400,Lady Erlandr Nordenskald,east,4230,Mass Project,Performing Arts and Music,European,,false,Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement.,"Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement, starting with early period *Kyrie* and ending with a mid-15th-century *Agnus Dei*. While no performance has been scheduled, it won't be ruled out. These sessions are sponsored by the Known World Choir.
(Rehearsal Tent unless noted: 7/29@12pm; 7/30@5pm; 7/31@5pm; 8/2@2pm(*AMPI); 8/3@5pm)",1.0,For the 5 days of class,1.0,24,,,5,2015-05-04 16:05:14 -0400
2446,A&S 1,2015-07-30 18:00:00 -0400,2015-07-30 19:00:00 -0400,THL Maleachi,middle,3654,Practical Feast Stewarding,Pennsic University,"",,false,"A discussion on how to plan, price, budget, portion and execute a feast. ","A discussion on how to plan, price, budget, portion and execute a feast. We will go over budgeting, scheduling, portion control, things that can (and probably will) go wrong, and timing. ",1.0,"",,,,,2,2015-04-18 14:02:02 -0400
3142,Cabochons (Bow Street),2015-07-30 18:00:00 -0400,2015-07-30 19:30:00 -0400,Lady Arastorm ,east,4562,*RúnValdr*,Pennsic University,European,,false,"In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. A modern system for rune magick.","In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. This is a system that shows, for example, how to use Norse or Anglo-Saxon runes to hear even at distance, or to awaken inanimate objects. This is a system of energy manipulation using runes and another set of symbols. This workshop introduces the symbols and what each of them is used for, and includes the attunement. It does *not* include introduction to runes. You may take this workshop without knowing the runes, but you will need to learn them to be able to use this system. You will be able to use this technique immediately. ",1.5,0,,15,,,4,2015-05-22 21:02:42 -0400
2648,Amphitheater,2015-07-30 18:30:00 -0400,2015-07-30 19:30:00 -0400,Pennsic Performing Arts,"",3898,The Creepy Bard at the Ampitheater,Performing Arts and Music,"",,false,"Gather round to hear as The Creepy Bard and Eva Sutherland regale you with songs of drinking, roving, fighting, and things to keep secret from mother.","Gather round to hear as David Anthony, The Creepy Bard, and Eva Sutherland, his apprentice, regale you with songs of drinking, roving, fighting, and things to keep secret from your mother. You will laugh, cry, blush and wonder where you left the whiskey. **Some material may be inappropriate for children under 12.**",1.0,"",,,,,1,2015-05-06 03:51:35 -0400
2601,A&S 4,2015-07-30 18:30:00 -0400,2015-07-30 20:30:00 -0400,Mistress Keely the Tinker,middle,3822,Glass Amulets,Glass,Multiple Cultures,,false,"Demonstration of sculptural techniques to make amphora and juglet amulets, Byzantine stamped amulets, Thor’s hammers and Phoenician head beads. ","Demonstration of sculptural techniques to make amphora and juglet amulets, Byzantine stamped amulets, Thor’s hammers and Phoenician head beads. **Not** a hands-on course. Designed for intermediate to advanced level bead makers. Will demonstrate how to make each bead and discuss the history of each type of amulet. ",2.0,"",,,,,1,2015-04-30 20:45:36 -0400
2361,A&S 13,2015-07-30 19:00:00 -0400,2015-07-30 19:45:00 -0400,Lord Jacob the Wanderer,east,3472,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
2652,Amphitheater,2015-07-30 19:30:00 -0400,2015-07-30 20:30:00 -0400,Pennsic Performing Arts,"",3900,Richard Wyn: Bardic at the Amphitheater ,Performing Arts and Music,"",,false,"Richard Wyn: A Bardic in miniature. A little period, a little SCA, a little fun, and some of my own thrown in because people told me to.","A Bardic in miniature at the Amphitheater. A little period, a little SCA, a little fun, and some of my own thrown in because people told me to. **Show contains adult-themed content.**",1.0,"",,,,,1,2015-06-18 01:47:50 -0400
2166,A&S 10,2015-07-30 20:00:00 -0400,2015-07-30 21:00:00 -0400,Master Bedwyr Danwyn,æthelmearc,3173,Medieval Oil Lamps,Pennsic University,Multiple Cultures,,false,"Oils were used to light lamps by all cultures throughout the Middle Ages. Learn how easy, inexpensive and, best of all, *safe* oil lamps are!","Oils were used to light lamps by all cultures throughout the Middle Ages. Learn how easy, inexpensive, compact and, best of all, *safe* oil lamps still are! Learn how to light your camp with just one bottle of cooking oil. New this year: a brief mention of 'fat' lamps will be included.",1.0,copying cost for handout and wick kit materials.,3.0,50,,,1,2015-03-01 16:29:39 -0500
2433,Middle Eastern Tent,2015-07-30 20:00:00 -0400,2015-07-30 22:00:00 -0400,Lady Nina Amaya of Bright Hills,atlantia,3590,Middle Eastern Music and Dance Party!,Middle Eastern,Middle Eastern,,false,"Start with **music** jam & **dancing**! Really, that's it. Show up with your instruments and your hips! Wear period M.E. garb: bonus points!","Start your evening off with a **music** jam and **dancing**! Really, that's it. Show up with your instruments and your hips! Wear period Middle Eastern garb for bonus points!
",2.0,"",,,,,1,2015-05-04 18:23:03 -0400
3021,Dance Tent,2015-07-30 21:00:00 -0400,2015-07-31 00:00:00 -0400,Pennsic Dance Staff,"",4390,Open Dancing,European Dance,European,,false,Join us all evening for dancing by request.,"",3.0,"",,,,,5,2015-05-03 14:07:06 -0400
2135,Chirurgeons' Point,2015-07-31 08:00:00 -0400,2015-07-31 10:30:00 -0400,Thora Heri,atlantia,3131,3rd Annual Unofficial Pennsic Half-Marathon,Pennsic University,Other,,false,Thora Heri and Signy Heri will lead a run of roughly 13.1 miles around the Pennsic campground. All are welcome to join for all or part of the course.,"The estimated 13-mile course (it is medievally inexact!) will consist of three loops around the entire Pennsic campground, plus one smaller loop around the Serengeti. Runners will meet in front of Chirurgeons' Point at 8 a.m. Water is available from the chirurgeons, but runners are encouraged to supply their own water/sports drink/snack needs. We will pass the Chirurgeons' Point three times, at roughly 4.5-mile intervals. Note: this is a group run, not a race. No times will be kept, though there will be some participant awards. The goal is fitness as part of the SCAdian lifestyle. All are welcome. Wearing medieval-style tunics instead of modern running clothing is encouraged.
",2.5,"",,,,,1,2015-02-21 16:00:37 -0500
2713,Dance Tent,2015-07-31 08:00:00 -0400,2015-07-31 09:00:00 -0400,Baroness Nadezda ze Zastrizl,middle,3954,"Yoga for Dancers, Fighters, or Pretty Much Anyone",European Dance,Other,,false,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. ,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. Children may attend with a parent/guardian if they both participate. ,1.0,"",,,,,7,2015-05-07 19:27:13 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-07-31 08:00:00 -0400,2015-07-31 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3608,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2477,Rapier List 2,2015-07-31 08:00:00 -0400,2015-07-31 09:00:00 -0400,Countess Elena d'Artois,æthelmearc,3641,*Études* 1 and 2 for Single Sword (Fencing),Rapier Activities,European,,false,"For all levels and teachers. Drills focus on form, balance, movement and coordination. *Études* for drill; elements from drill used to work in groups.","For beginner and intermediate fencers and those who teach them. These drills will focus on form, balance, movement and coordination. *Étude*1 (first week) is more linear; *Étude* 2 (second week) adds off line/lateral movement. Emphasis will be on learning the *études* for home drill, as well as taking elements out of the drill for more focused work in groups. ",1.0,"",,,,,7,2015-05-14 19:19:33 -0400
3138,Thunder Bird Atlatl (Thunder Bird Atlatl Booth #?),2015-07-31 08:00:00 -0400,2015-07-31 10:00:00 -0400,THL Grimolfr Ormalfrson,æthelmearc,4566,How to Make an Atlatl Dart,Pennsic University,Multiple Cultures,,true,How to make an atlatl dart from start to cast. Limit of 4 students participating in each class.,"",2.0,"",,,,,4,2015-05-27 19:02:19 -0400
3132,Youth Combat List,2015-07-31 08:00:00 -0400,2015-07-31 10:30:00 -0400,Lord Sven,middle,4527,Youth Combat,Youth Combat,"",,false,Morning Youth Combat Session,Morning Youth Combat Session,2.5,"",,,,,8,2015-05-13 20:03:29 -0400
2460,Artisan's Row B,2015-07-31 09:00:00 -0400,2015-07-31 16:00:00 -0400,Artisans Row,east,3622,Music Day,Artisan's Row,"",,false,"Come and make music. Instrumental and vocal performers welcome. Novices, interested folk as well as experienced, all are welcome.","",7.0,"",,,,,1,2015-04-30 17:50:41 -0400
2269,A&S 1,2015-07-31 09:00:00 -0400,2015-07-31 11:00:00 -0400,Lady Gwen Blackthorne MacGriogair,meridies,3315,Advanced Kumihimo,Pennsic University,Far Eastern,,false,Part 3: New foam loom is taught with new braid structures. Square loom used.,Part 3: New foam loom is taught with new braid structures. Square loom used.,2.0,"Class & Handout is 10.00
handout only 3.00",3.0,20,10.0,20,2,2015-04-08 19:42:42 -0400
2764,A&S 3,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Master Sigulf Karlnar,middle,4053,Period Sources for Viking Bead Makers,Glass,European,,false,"Learn where to find period examples of Viking beads to replicate. We will discuss web sources, books and glass sources. ","Learn where to find period examples of Viking beads to replicate. We will discuss web sources, books and glass sources. We will also discuss ""period vs. period-like"" beads.",1.0,"",,,,,2,2015-04-30 20:30:56 -0400
2801,A&S 5,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Lord Manus MacDhai,atlantia,4099,Roses: Then and Now,Pennsic University,"",,false,A survey of roses that were available and/or cultivated during our period and how they compare to roses commonly grown today.,"",1.0,Handouts are in color so fee to cover that expense,2.0,15,,,1,2015-04-30 20:43:31 -0400
2969,A&S 6,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Lady Irene von Lassan,east,4314,History of Stained Glass,Pennsic University,"",,false,We'll explore the history of of various techniques of stained glass in SCA period.,"",1.0,"",,,,,1,2015-05-01 17:21:50 -0400
3013,A&S 8,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Lady Fionnghualla Mhic Cealleigh,east,4378,Fingerloop Braiding for Beginners,Pennsic University,"",,false,Hands-on; learn a five-loop braiding technique. Useful as decoration or cording. With slight variation it can be made into lanyard for tokens.,"",1.0,There is no fee. String is cheap!,,,,15,2,2015-05-03 13:54:29 -0400
2730,A&S 10,2015-07-31 09:00:00 -0400,2015-07-31 11:00:00 -0400,THL Cristina inghean Ghriogair,æthelmearc,4012,Loo-Braided Purse Strings: It Takes **Two**,Pennsic University,"",,false,"Advanced: two-person purse strings for cloth purses, 12-17 C. Will start with a refresher on a single braid pattern before pairing braiders together.","Drawstring cloth purses from the 12th-17th centuries often used two braided silk purse strings to pull them open and closed. These strings were made with silk finger loop braided lengths made by two braiders working side-by-side. The pair of purse strings were then inserted into the tops of the cloth purses in a special method that avoided the use of a casing.
We will be hands-on in this class, pairing braiding students up to learn the cooperative braiding method used. While this class is not for beginners, the first 20 minutes will start with a warm-up/refresher of the single braid patterns before pairing braiders together.
We will be using the doubled version of No. 2, *Pursestringe- 3 Bos Reed, 2 Bos White*-C.1600, 1630 OR No. 5, *A Lace Baston* - C.1475; *A Stringe that Every Edge Shall Keepe His Collor* -C.1600. Found in CA 108 or on the web at www.fingerloop.org.
We will have handouts in class to detail and explain the joining moves not covered in CA 108. The class will start with a warm-up in braiding this 'round' braid as single braiders, then proceed to pairing up braiders to make a 'real' purse string. We have left extra braiding time for completion of one or two purse strings to make and take, hopefully. Embroidery thread/crochet cotton provided, or bring your own. Silk is used in the originals (mainly reeled silk), but embroidery thread is best to learn on if you are not totally proficient. ",2.0,"",,,,,2,2015-05-01 19:24:52 -0400
3156,A&S 12,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Lady Arastorm ,east,4554,Anglo-Saxon Context: the Normans ,Pennsic University,European,,false,Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the Norman/Saxon cultural conflict that created Medieval England.,"To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. The infamous problems that arose after the Norman Conquest went beyond the accommodations needed in the Danelaw or even under the rule of Cnut, We'll look at the Norman/Saxon cultural conflict that only gradually resolved to create Medieval England.",1.0,"",,15,,,1,2015-06-09 21:30:07 -0400
3080,A&S 13,2015-07-31 09:00:00 -0400,2015-07-31 10:30:00 -0400,THL Sciath ingen Chaennaig,ealdormere,4459,Reliquaries: Boxes for Bones,Pennsic University,European,,false,This class introduces the history of the Cult of the Saints from the perspective of reliquaries. ,"This class introduces the history of the Cult of the Saints from the perspective of reliquaries. The focus will include the development of reliquaries, their decoration and techniques used to create them. ",1.5,Handout: $2,2.0,,,,1,2015-05-04 16:08:18 -0400
3106,Dance Tent,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,THL Darius the Dancer,ealdormere,4488,Children's Dance: Fun Circle and Line Dances!,European Dance,European,,false,It's never too early to learn to dance! Come learn dances fun for all ages. (Any youth in attendance require a responsible adult present.),It's never too early to learn to dance! Come learn dances fun for all ages. (Any youth in attendance require a responsible adult present.) This class will teach French bransles and English almans.,1.0,"",,,,,1,2015-05-07 20:44:34 -0400
2376,Middle Eastern Tent,2015-07-31 09:00:00 -0400,2015-07-31 10:00:00 -0400,Olah Erzebet,atlantia,3513,Intro to Middle Eastern Dance for Every Body,Middle Eastern,"",,false,"Exploring motion for the purposes of dance, and applying our discoveries to bellydance basics. ","Embracing bodies of all types and mobilities, this low-key dance class will go from an accounting of your resources to introducing a range of bellydance basics. We will be moving what can be moved, and shaking what we’ve got, so please dress comfortably!",1.0,"",,,,,2,2015-05-04 17:59:10 -0400
2273,Æthelmearc 1,2015-07-31 10:00:00 -0400,2015-07-31 11:30:00 -0400,Lady Gwenhwyvar verch Owen apMorgan,northshield,3273,Cadels and Flourishes for Late Period Scrolls,Æthelmearc Scribal,"",,false,Hands-on class for learning how to create cadels and flourishes for late period scrolls. Learn the tips and tricks and try it out!,Hands-on class for learning how to easily create cadels and florishes for late period scrolls. View many examples from different countries and learn the difference between the two types of embellishment. I will have some easy-to-use guides and grid paper so we can work together and try things out. Please bring a calligraphy pen if you have one.,1.5,"",,,,,1,2015-04-30 19:41:17 -0400
2554,Æthelmearc 2,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Baroness Emma Makilmone,east,3789,Beginning Illumination: Loving the Dot,Æthelmearc Scribal,Multiple Cultures,,true,"Let me show you that illumination doesn't have to be a daunting as it seems. Learn about layout, design elements and, yes, dots, Dots, *DOTS*!","So you've seen those beautiful manuscripts and thought you'd love to learn how to create one on your own, but surely they are too daunting! Well, I'd like to show you how to visually break down complicated scroll designs into more manageable and doable elements. You'll even try your hand at a few of them! Materials available for the fee, or bring your own.",2.0,"Unless you bring your own painting materials, you can get a kit with brushes, paper, and a small bit of gouache. If you don't use the kit, a few dollars donation for the paper and paint you will use would be helpful.",,20,4.0,20,2,2015-04-30 19:25:43 -0400
2173,Amphitheater,2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Lady Noelle de la Plume,middle,3187,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
3115,A&S 2,2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Lord Alaxandr,east,4511,HS Summer Math Help and Challenge Problems,Pennsic University,"",,false,"Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems.","Teenagers (and others)! Do you have summer math work? Algebra through AP calculus. Get some help, help one another, or try the challenge problems. Don't make your parents have to remind you to open the book you carried to Pennsic. ;-)
",1.0,"",,,,,3,2015-05-08 19:43:53 -0400
2858,A&S 3,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Mistress Helen of Greyfells,ealdormere,4168,Planning and Cooking an SCA Feast,Pennsic University,Multiple Cultures,,false,"Learn about choosing recipes, budgeting, and organizing your time and resources. A service-oriented class, using medieval recipes.","",2.0,50-page handout in booklet form,3.0,15,,,2,2015-05-07 12:10:44 -0400
2151,A&S 5,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Lady Muriel Zimmermannin,middle,3159,Make Your Own Drawstring Bag,Pennsic University,"",,false,"Using period methods, hand sew your very own drawstring bag. Everything needed to complete your very own bag. Please bring scissors.","Using period stitches, you will learn to hand sew your own drawstring bag. All materials will be provided for you as well as a handout with instructions. If you have scissors, please bring them to the class. I will provide enough materials for up to 50 people per session. ",2.0,A total of 100 kits and handouts will be available at no cost. (50 per class),,100,,100,2,2015-03-01 18:22:38 -0500
2582,A&S 6,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Lady Dianimh Ban,middle,3806,Breastfeeding and Babywearing Support Group,Pennsic University,Multiple Cultures,,false,"If you are pregnant or breastfeeding and would like mom support, please come. Bring the kids. IBCLC, La Leche leaders, LCs, counselors. Late is ok.","Breastfeeders and babywearers, unite. Come join us If you are a babywearer, pregnant or nursing (any age child), if you are an exclusive pumper, or if you are a support person or educator. Everyone is welcome to come, hang out and learn about breastfeeding, babywearing and overcoming issues. Sometimes we all need help when we are working through issues like heat, growth spurts, teething, first foods and weaning, getting a good back carry. This is a casual group. If you have learned something about breastfeeding and babywearing, and you think it would benefit others, please feel free to share it. If you are an IBCLC, LC, Support Counselor, educator, La Leche League leader or associate, please come and provide your support. Bring your favourite baby carriers to show others. We can also talk about weaving carriers and traditional babywearing. ",2.0,"",,,,,3,2015-04-24 18:49:26 -0400
2150,A&S 7,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Mistress Sigrid Briansdotter,atlantia,3157,The Lengberg Bras: Current Research and Roundtable,Pennsic University,European,,false,Current research on 15th-century bras found in Lengberg Castle in Austria; discuss what it tells us about construction methods. Bring yours to show.,Current research on the 15th-century bras found in the Lengberg Castle in Austria; discuss what it can tell us about construction methods. Bring your experiments for the roundtable portion. We'd love to see how people have tackled this garment.,2.0,Handout contains color photos and research details.,10.0,25,,,2,2015-02-23 18:18:58 -0500
2109,A&S 8,2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Lady Isabella Mea Caterina D'Angelo,atlantia,3097,Periodness of the Pennsic Homes,Pennsic University,European,,false,Did anything exist in the pre-17th-century European world that looked like a Pennsic House? Yes! Come to the class to find out when and where!,"Many people love to see the Pennsic homes - those houses built on trailers - but how ""period correct"" are they? Did anything even remotely similar exist in the pre-17th-century world? Yes, it did. Handouts will be given showing various depictions of homes on wheels in illuminations. ",1.0,$3 for paper printouts of illuminations in black and white with text descriptions,3.0,25,,,1,2015-02-21 16:36:00 -0500
2680,A&S 9,2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Master Ruaidhri an Cu,atlantia,3918,Basic Period Ballads,Performing Arts and Music,European,,false,Focuses on a small repertoire of period ballads from the British Isles. We will also explore elements of period ballads.,Learn some period ballads for your next bardic circle or your random stroll through the market place. Students will be provided with a small repertoire of ballads in the class handout (lyrics and sheet music). Recordings of ballads taught in the class and a collection of over 200 period songs will be available for purchase ($10 each).,1.0,"Optional - CD $10
Optional - Song Book $10",,30,,,2,2015-05-04 15:59:11 -0400
3192,A&S 12,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Master Alanus of Bunghea,an tir,4614,Viking Navigation and the Sunstone,Pennsic University,European,,false,"Early navigation methods up through Viking times, plus the use of sunstones. What the History Channel's 'Vikings' series almost got right - sort of.","The methods of navigation employed by the Viking navigators are slowly being verified by archaeological evidence. However, the search for answers goes on. This class will present early navigational aids based on discussions with two of the experts in this field: Soren Thirslund's research on the 'Viking Compass' at the Danish National Maritime Museum, and Leif Karlsen's and our own research into sunstones. The published works of Thirslund and Karlsen are available from the Viking Ship Museum in Roskilde, Denmark. We provide hands-on demonstrations and primary source documentation of these authors’ navigation theories.
",2.0,14 pages including 5 color pages,4.0,,,,2,2015-06-15 10:56:00 -0400
2898,Dance Tent,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Gregory Blount,west,4207,The Steps of 15th-Century Italian Dancing,European Dance,European,,false,"This class will teach you everything you ever wanted to know, and more, about 15th-century Italian dance steps.","This class will teach you everything you ever wanted to know, and more, about 15th-century Italian dance steps. We will cover all of the steps in all of the meters, and work on making them look good.",2.0,"",,,,,1,2015-05-07 11:56:04 -0400
2956,Fiber Arts Pavilion (Flaming Gryphon Camp/W-07),2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,THL Fiadnata ó Gleann Àlainn,middle,4302,Weaving on a Warp-Weighted Loom,Pennsic University,"",,false,"Warp-weighted looms can be large and strange. Let's learn how to weave on one on a smaller scale. (Follow-up to ""Warping"" class. Others welcome!)","A full-size warp-weighted loom, as built in period, can be imposingly large and strange. We're going to learn how to weave on one on a smaller and more human scale. Using the warp we created in the previous class, we'll be working in pairs, learning how to weave a tabby weave, with discussions on working with more complex weaves. We'll have space for up to 12 people working hands-on. This is a follow-up class for the ""Warping a Warp-Weighted Loom"" class.",2.0,"",,12,,12,2,2015-05-01 19:41:00 -0400
2669,Games Tent,2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Lord István Nyiregyhazi,east,3916,Board Games,Games,Multiple Cultures,,false,This class will review board games previously taught and provide opportunities to practice with a knowledgeable instructor's assistance.,"",1.0,"",,,,,3,2015-05-07 19:02:00 -0400
2481,Minerva's Spindle (158),2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3668,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
2332,Performing Arts Rehearsal Tent,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Pennsic Performing Arts,"",3402,Pennsic Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Choir welcomes all interested singers! Songs in honor of the 500th anniversary of the Coronation of François I of France.,"The Pennsic Choir welcomes all interested singers! This year's concert features songs of the early to mid-16th century in honor of the 500th anniversary of the Coronation of François I of France. Singing in the Pennsic Choir is an intense and rewarding experience. We rehearse two hours each day for a week, then perform a concert on Thursday evening of War Week. The ability to read music and sight-sing is helpful, but not required if you learn the music in advance. Sheet music and audio tracks are available online now at https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsicxliiichoirs",2.0,"",,,,,7,2015-05-06 01:31:11 -0400
2320,Performing Arts Tent,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,Pennsic Performing Arts,"",3380,KWP Pennsic Readers' Theater: Adult Rehearsal,Performing Arts and Music,"",,false,"A low-stress opportunity and theatre experience by KWP Readers' Theatre, creating a staged reading of *The Belle of Battle* by Don Orlando Sforza.",Known World Players Readers' Theatre provides a low-stress opportunity and theatre experience creating a staged reading of *The Belle of Battle* by fellow SCAdian Don Orlando Sforza. A staged reading means that the actors will be performing the play with the script in hand. To be performed Friday 7/31 in the Performing Arts Tent at 7:00 pm.,2.0,"",,,,,2,2015-03-30 15:39:46 -0400
2918,Pine Box Traders (192),2015-07-31 10:00:00 -0400,2015-07-31 11:00:00 -0400,THL Egill the Loomwright,calontir,4268,Inkle Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and weave an inkle strip.","Using the continuous warping method, you will warp the loom and weave an inkle strip. Classroom loaner looms available or bring your own.",1.0,"weaving materials, string",,,3.0,,6,2015-05-01 19:18:33 -0400
2399,University Point,2015-07-31 10:00:00 -0400,2015-07-31 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3522,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2438,Amphitheater,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,Lord William Kilmaron,middle,3597,Juggling 201 (Intermediate),Performing Arts and Music,"",,false,Intermediate 3-ball juggling: going beyond the simple cascade. We will touch briefly on 4 and 5 balls as well.,"Intermediate 3-ball juggling. Learn several basic tricks, such as crosses, snatches, and reverse cascade. We may work our way into basic 2-, 4-, and 5-ball juggling as they apply. Juggling balls will be available for use and purchase.",1.0,"",,,,,3,2015-05-01 00:06:29 -0400
2525,A&S 1,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,Lothar,atlantia,3760,Let's Be Frank: Improving Your Carolingian Persona,Pennsic University,European,,false,Tips for making and acquiring the appropriate clothing and accessories for a Carolingian Frankish persona (both male and female).,"Tips for making and acquiring the appropriate items for a Carolingian Frankish persona. Focuses on clothing (male and female), but also includes accessories, weapons, and armor. Even Charlemagne himself will be envious after you take this class. ",1.0,"",,,,,1,2015-04-23 16:46:11 -0400
2099,A&S 2,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,Brunissende Dragonette,east,3079,Causes for Armory Returns and How to Avoid Them ,Heraldry,"",,false,A few common problems cause 90% of the returns for armory. We'll see what these are in order to avoid or solve them.,It is always disappointing to see a heraldic submission returned. A few common problems cause most of the armory returns. We will see what these frequent problems are in order to avoid them. For heralds and non-heralds.,1.0,"",,,,,1,2015-04-15 21:32:26 -0400
2187,A&S 8,2015-07-31 11:00:00 -0400,2015-07-31 13:00:00 -0400,THL Heodez Di Talento Minottoi,middle,3212,Grooming: Medieval-Style,Pennsic University,European,,false,Want to enhance your SCA experience? Try some period grooming recipes. This class gives you an opportunity to try period beauty/hygiene products.,"",2.0,Donations to cover costs of herbs are appreciated but not required.,5.0,12,,,2,2015-03-03 16:24:45 -0500
2400,A&S 9,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,THL Juliane Bechaumpe,middle,3530,Broadside Ballads and Ballad Mongers,Performing Arts and Music,"",,true,"An overview of the rise of the Broadside Ballad in Elizabethan England. Main focus will be content, techniques and tricks. ","An overview of the rise of the Broadside Ballad in Elizabethan England.Our main focus will be ballad content, Ballad Mongers' techniques,tricks and other elements that make Broadsides a window on the commoner's life at that time. ",1.0,"",,,,,1,2015-04-29 21:26:58 -0400
2731,A&S 10,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,THL Cristina inghean Ghriogair,æthelmearc,4014,Beginner's Fingerloop Braiding,Pennsic University,"",,false,It’s easier than you think. Anyone from 5 to 90 can do it. So come learn how to make a spiral braid.,"It’s easier than you think. Anyone from 5 to 90 can do it. So come learn how to make a spiral braid. (www.fingerloop.org. A lace bend rounde of eight bowes-circa 1475). Time allowing, I‘ll also demonstrate a simple braid great for medallion cords. Young children may need assistance but are welcome. Materials and handouts provided.
THL Cristina inghean Ghriogair (donnamac123@hotmail.com)",1.0,no fees,,,,,2,2015-04-29 14:12:28 -0400
3160,Middle Eastern Tent,2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,Viscountess Kamiilah al Sudanii um Zoom,west,4570,Beginning Middle Eastern Dance,Middle Eastern,Middle Eastern,,false,"Covering the basic movements that this lovely art form is based on, including drills! Intermediate and Advanced welcome. I'll make it harder for you!","Covering the basic movements that this lovely art form is based on, including drills! Intermediate and Advanced welcome. Kamiilah will add layers and make it harder for you!",1.0,"",,,,,2,2015-06-09 07:32:51 -0400
2422,Serenity Studio (208),2015-07-31 11:00:00 -0400,2015-07-31 12:00:00 -0400,Lady Christina Von Tannenbaum,middle,3576,Intro to 6-on-2 Chainmail,Pennsic University,Multiple Cultures,,false,This type of chainmail was prevalent in period across multiple cultures. All materials provided but bring two pairs of pliers. ,Intro class for 6-on-2 chainmail prevalent throughout period across multiple cultures. All materials necessary to complete class project provided but bring two pairs of standard box nose pliers if you have them. Tools are available for those who don't have them on a first-come first-served basis.,1.0,"Sufficient hand-turned & cut aluminum rings, 12ga 5/8 in diameter, to complete class project.",,,10.0,8,9,2015-04-13 23:23:33 -0400
2442,Teulu Trobwl (N36),2015-07-31 11:00:00 -0400,2015-07-31 15:00:00 -0400,THL Reyni-Hrefna,middle,3603,Viking Dairy Processing,Pennsic University,European,,false,A hands-on class to learn about milk processing and cheese making in the Viking age.,"Milk and milk products were essential to surviving Scandinavian winters and long sea voyages during the Viking era. Join us for a hands-on class which will focus on dairying and cheese products from the Norse world.
Starting with milk, which would go bad rather quickly, and using culture and equipment, we will turn it into four (or more) products that not only last well on their own, but can be used to preserve other food. Our *mjólk* (milk) will turn into: *skyr* (cheese), *mysa* (whey), *smjör* (butter), and *aft* (buttermilk). This will be done using period tools.",4.0,"",,,,,1,2015-04-18 11:55:47 -0400
2469,Æthelmearc Royal - Food Lab (N04),2015-07-31 12:00:00 -0400,2015-07-31 15:00:00 -0400,Lord Mykeal Halfdan,meridies,3664,Building a Bread Oven,Cooking Lab,Multiple Cultures,,false,Hands-on construction of a cob-style bread oven.,This hands-on class will cover the planning and building of a cob oven for camp use in baking bread. This will be a multi-day class of at least three days.,3.0,"",,,,,3,2015-05-03 21:30:14 -0400
2536,Amphitheater,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Lord Niccolò Bartolazzi,middle,3740,*Commedia*: An Intro to Renaissance Improv Theatre,Performing Arts and Music,European,,false,"Fools, flirts, schemers, braggarts, and more! A *Commedia dell'Arte* 101 introduction to the improv comedy of the Italian Renaissance.","*Commedia dell’Arte* is a theatrical art form originating as sponsored performances of professional actors in sixteenth-century Renaissance Italy. *Commedia* employs masks, farce, and slapstick to create plays from brief outline scenarios to which the actors improvise the dialogue and action using stock characters of exaggerated stereotypes of human nature.",1.0,"",,,,,2,2015-05-01 00:15:14 -0400
2639,A&S 1,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,THL Henry of Maldon,æthelmearc,3886,Later Medieval English Feasts,Pennsic University,European,,false,"Not a service-oriented how-to, this class is about how feasts were structured and sequenced from the time of Richard II through Richard III.","Not a service-oriented how-to, this class is about how feasts were structured and sequenced from the time of Richard II through Richard III.",1.0,"",,,,,1,2015-04-30 20:07:10 -0400
2813,A&S 2,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Mistress Brita Mairi Svensdottir,east,4107,Voice Heraldry: More Than Being Loud,Heraldry,"",,false,What different things voice heralds do and some tips on how to be successful without blowing out your voice,What different things voice heralds do and some tips on how to be successful without blowing out your voice,1.0,"",,25,,,1,2015-05-02 13:31:54 -0400
2556,A&S 3,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Master Cariadoc,west,3839,Being Your Persona,Pennsic University,Multiple Cultures,,false,"How to maintain the illusion, at an event, that you are a period person interacting with other period people.","How to maintain the illusion, at an event, that you are a period person interacting with other period people.",1.0,"",,50,,,2,2015-04-25 20:42:47 -0400
2958,A&S 5,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Mistress Tirza bithe Reaboughes,east,4306,In Search of Anglo-Saxon Recipes,Pennsic University,European,,false,Is it possible to uncover Anglo-Saxon recipes in known manuscripts? I have a working theory to share.,"Is it possible to uncover Anglo-Saxon recipes in known manuscripts? I have a working theory I used this last fall to serve a feast reasonably representative of these people prior to the Norman conquest. A review of available food stuffs, cooking methods, and known habits that can point us to possible recipes.",1.0,"",,,,,1,2015-05-03 07:31:04 -0400
3009,A&S 6,2015-07-31 12:00:00 -0400,2015-07-31 14:00:00 -0400,Baroness Clarice Roan,æthelmearc,4371,Gluten-Free Recipes from Period Sources,Pennsic University,"",,false,Discuss gluten-free recipes from medieval cookbooks using period ingredients and substitutions. Food samples may be available!,"Discuss gluten-free recipes from medieval cookbooks, using period ingredients and substitutions. Food samples may be available!",2.0,"",,,,,2,2015-05-03 13:55:11 -0400
2225,A&S 7,2015-07-31 12:00:00 -0400,2015-07-31 13:30:00 -0400,THL Morien MacBain,æthelmearc,3256,Combat Archery Tactics from *The Senryaku*,Pennsic University,Far Eastern,,false,"A survey of stratagems and training methods for combat archers drawn from a classic of period strategy, with discussion of equipment and doctrine.","",1.5,"",,,,,1,2015-03-11 21:32:02 -0400
2870,A&S 9,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Mistress Jadwiga Krzyzanowska,middle,4175,Lads from the Low Countries: 15th-Century Music,Performing Arts and Music,European,,false,"Discussion of the contribution of the Franco-Flemish composers in the 1400s. Learn about *Melismas, Cantus Firmus*, Imitation, and more!","This class will discuss the contribution of the Franco-Flemish composers in the 1400s. Learn about *Melismas, Cantus Firmus*, Imitation, and where all the Italians went.",1.0,"",,,,,1,2015-05-01 19:23:29 -0400
2817,A&S 10,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Master Nigellus leHaie,middle,4112,Nigel's Fire-Starting Class,Pennsic University,European,,true,You too can start a fire with flint and steel. We will explore the history of fire and how to start a fire with flint and steel. You will make fire. ,"Formerly titled “How to Start a Fire Like a Moderately Intelligent Saxon”. Yes, you too can start a fire with flint and steel like a Saxon, Roman, Viking, or any other civilized culture in the Middle Ages. Includes history of fire and the flint-and-steel mechanics of starting a fire. Hands-on class: you will start a fire. You must be at least 14 years old and have your parents' or wife’s permission.",1.0,All provided free,,25,,6,2,2015-05-01 19:31:44 -0400
3083,A&S 11,2015-07-31 12:00:00 -0400,2015-07-31 13:30:00 -0400,Lady Jocelyn of Black Diamond,atlantia,4467,Chainmaille for Beginners ,Pennsic University,"",,false,"An introduction to chainmaille. Students will learn European 4-in-1, Byzantine, and Half Persian 3-in-1. ","This is a simple introduction to chainmaille. In total, there will be three weaves taught on three separate days (one weave per day). Weaves taught will be European 4-in-1, Byzantine, and Half Persian 3-in-1. ",1.5,"
Practice Rings
Aluminum ring packet",1.0,20,4.0,15,3,2015-05-05 19:02:11 -0400
2394,A&S 12,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Master Basilius Phocas,middle,3517,"*Banchetti*: Herb Pie, Almond Pie and Fruit Pies",Pennsic University,European,,false,"Herb pie (spinach, grapes, and figs), almond pie (wheat starch and raisins), and pies of grape, dates, and dried plums from the 1549 *Banchetti*.","Herb pie with spinach, grapes, and figs, an almond pie with wheat starch and raisins, and pies of grape, dates, and dried plums from the 1549 *Banchetti*.",1.0,"",,,,,2,2015-04-10 18:48:52 -0400
3049,A&S 14,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Lady Jael ben Ari,middle,4441,Latin Smack Talk,Pennsic University,Other,,false,Insult your friends and foes both on and off the field but be classy... Say it in Latin.,"",1.0,"",,,,,1,2015-05-04 08:07:46 -0400
2738,Dance Tent,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,THL Gianna Vettori,middle,3962,Italian Dance for English Feet: *La Castellana*,European Dance,European,,false,Don't be intimidated by Italian dance! Join us for Caroso's *La Castellana* using English Country Dance terminology.,Italian dances can seem intimidating for dancers just getting steady on their English Country feet. Caroso's *La Castellana* is a simple Italian dance for couples that translates easily into ECD terminology. For as many couples as will.,1.0,"",,,,,1,2015-05-07 11:52:26 -0400
3057,Guild of Limners (dir. across from Big Cooper Store (Old Barn's open side)),2015-07-31 12:00:00 -0400,2015-07-31 13:30:00 -0400,"Lord Aleksandr, a Chymist",east,4445,"Penmaking 102: Quills, Bamboo, Phragmites",Æthelmearc Scribal,Multiple Cultures,,false,"If you want to write, you're going to at least need a pen - and you need to make your own - from a pen, a bamboo point or a tiny ""brush"".","Classes will start with cutting a proper quill from a goose feather, then go on to cutting one from bamboo or using stiff grass to lay ink (not *paint*!) down as if using a tiny brush.",1.5,"Prepared quill or bamboo, $1 ea. ",,,1.0,50,2,2015-05-04 16:06:28 -0400
2246,Livonia Smithery (170),2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Lord T W,æthelmearc,3449,Beginning *Repoussé* and Chasing,Pennsic University,"",,true,Hands-on class; will make a copper foil rose.,Hands-on class; will make a copper foil rose.,1.0,Hand out,5.0,12,,,8,2015-04-08 17:58:40 -0400
2419,Middle Eastern Tent,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Rajni of Orluk Oasis,meridies,3566,Intro to Egyptian-Style Group Improvisation,Middle Eastern,Middle Eastern,,false,Learn Tribal Odyssey: Egyptian-based improvisational tribal-style with *beledi*-style combinations. ,"Rajni is a Certified Level 1 Tribal Odyssey dance leader, a group improvisational style developed by Kawakib of Fredericksburg, VA. In the words of Kawakib: “Tribal Odyssey uses natural posture and both sides of the body in combinations based primarily on Egyptian *beledi*-style movement. It's versatile enough to adapt to any size group.” Class will repeat to allow for several days of practice with a group, and will incorporate recorded Middle Eastern drumming as well as live music/ drumming as available. Learn moves that you and your dance friends can use at Pennsic haflas this year!",1.0,"",,,,,3,2015-05-04 18:36:44 -0400
2345,Performing Arts Rehearsal Tent,2015-07-31 12:00:00 -0400,2015-07-31 13:00:00 -0400,Mistress Arianna of Wynthrope,æthelmearc,3424,Choral Conducting,Performing Arts and Music,European,,false,"Hands-on training in conducting patterns, cueing, finding and fixing errors, and choral leadership. You will sing and direct with teacher mentoring.","Taught by a past Pennsic Choir director, this class covers conducting patterns, cueing, finding and fixing errors, and choral leadership. Participants will sing and direct the other students in a choral piece, with assistance and advice from the instructor.",1.0,"",,15,,15,1,2015-04-28 23:25:53 -0400
2319,Performing Arts Tent,2015-07-31 12:00:00 -0400,2015-07-31 14:00:00 -0400,Pennsic Performing Arts,"",3378,KWP Pennsic Readers' Theater: Youth Rehearsal,Performing Arts and Music,"",,false,Known World Players - Youth Readers' Theatre will give the youth (ages 10-17) of the SCA an opportunity to experience a low-stress theatre production.,"Known World Players - Youth Readers' Theatre will give the youth (ages 10-17) of the SCA an opportunity to experience a low-stress theatre experience and learn about a popular legend from the medieval time while creating a staged reading of *The Amazing First Voyage of Sara, Daughter of Sinbad (Based upon The Arabian Nights)* This script is written by a fellow SCAdian, John Inchingham the Fool. A staged reading means that the actors will be performing the play with the script in hand. To be performed Friday 7/31 in the Performing Arts Tent at 6:30 pm.",2.0,"",,,,,2,2015-03-30 15:45:02 -0400
2747,The Little Dragon's Hoard (Plunder Lane),2015-07-31 12:00:00 -0400,2015-07-31 14:00:00 -0400,Lord Drogo Rabenwald,æthelmearc,4033,A Blacksmith's Double Chamber Bellows,Pennsic University,European,,false,"A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. ","A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. Will also have descriptions of how the skin is attached and pattern-making of the whole process.",2.0,"",,,,,5,2015-04-30 19:43:29 -0400
2203,Æthelmearc 1,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Baroness Estelle de la Mer,middle,3230,Cutting a Quill Pen,Æthelmearc Scribal,European,,false,Learn how to take a plain feather and turn it into an instrument of writing. Sharp knives will be used; ages 10-14 need parental supervision.,"",1.0,For a quill to take home. No fee for those who bring their own quill to cut.,,,1.0,20,2,2015-04-30 19:50:41 -0400
3032,Æthelmearc 2,2015-07-31 13:00:00 -0400,2015-07-31 15:00:00 -0400,Solveig Throndardottir,æthelmearc,4396,Taking the Brush: Japanese Calligraphy,Æthelmearc Scribal,Far Eastern,,false,A hands-on introduction to Japanese calligraphy for official documents. Please bring large bamboo writing brushes if you have them. ,A hands-on introduction to designing and executing Japanese official documents. This class will introduce the role of the scribe in imperial and military government. Participants will also learn about the evolution of character styles and how documents were attested. Please bring large bamboo writing brushes if you have them. ,2.0,Cost of paper and ink,1.0,20,4.0,10,1,2015-05-03 14:14:08 -0400
2088,Æthelmearc 2,2015-07-31 13:00:00 -0400,2015-07-31 17:00:00 -0400,Mistress Matilda Bosvyle,æthelmearc,3059,Scribal Playtime,Æthelmearc Scribal,"",,false,"Open space for scribes/artists to work on projects, ask questions or discuss their art. Some community-shared materials may be available for use.","The Æthelmearc Scribal College pavilion will be open for scribes to work on projects, ask questions of experienced scribes or discuss their art. One-on-one instruction may be available if space and resources allow. Some community-shared materials such as Paint-a-Blanks may be available.",4.0,"",,,,,4,2015-05-02 21:38:04 -0400
2335,Amphitheater,2015-07-31 13:00:00 -0400,2015-07-31 18:00:00 -0400,Pennsic Performing Arts,"",3413,Iron *Commedia*: Creating a New 16th-Century Play,Performing Arts and Music,"",,false,"Join actors from your favorite improvisational *Commedia dell'Arte* troupes to craft, cast, perform, & premier a brand-new play in just one afternoon!","If you've ever laughed at the zany antics of improvisational *Commedia dell'Arte*, join members from your favorite troupes to craft, cast, and perform a brand new *Commedia* play in just one afternoon with its world premier at at Pennsic that same day! Two sessions, two performances, one each week. Find a mask, put it on, and see what happens!",5.0,"",,,,,2,2015-03-29 14:55:18 -0400
2233,A&S 1,2015-07-31 13:00:00 -0400,2015-07-31 15:00:00 -0400,Lady Mirabella Walmesley of Grimsby,atlantia,3264,Beginning Bobbin Lace,Pennsic University,European,,false,"A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. Please attend all sessions.","A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. We will start (and hopefully finish!?!) a bookmark. Please plan to attend all 3 sessions. Material fee will include a lace making pillow, bobbins, pins, thread, and pattern.",2.0,"bobbin lace pillow, bobbins, thread, pins, pattern",,,35.0,5,3,2015-03-14 14:13:45 -0400
2735,A&S 2,2015-07-31 13:00:00 -0400,2015-07-31 15:00:00 -0400,Lord Martyn de Halliwell,east,4016,Reading Foreign Language Scroll Texts,Heraldry,European,,false,"A brief introduction to foreign language diction. We will cover Latin, Italian, German, French, and Middle English in this class.","A brief introduction to foreign language diction. We will cover Latin, Italian, German, French, and Middle English pronunciations in this class.",2.0,"",,20,,,1,2015-05-02 13:42:35 -0400
2845,A&S 3,2015-07-31 13:00:00 -0400,2015-07-31 14:30:00 -0400,Lady Emengar la fileresse,east,4151,From Fiber to Garb,Pennsic University,Multiple Cultures,,false,"We will discuss fiber, prep, yarn and cloth-making choices in different periods and locations. Emphasis will be on techniques and fiber sources.","We will discuss fiber, prep, yarn and cloth-making choices in different periods and locations. Emphasis will be on available techniques and fiber sources. Examples will be provided, but please bring your own to share.",1.5,"",,,,,2,2015-04-30 19:59:26 -0400
2763,A&S 4,2015-07-31 13:00:00 -0400,2015-07-31 17:00:00 -0400,Vincent Von Waldheim,middle,4049,Silversmithing,Pennsic University,Multiple Cultures,,false,"Students will make a pendant using cabochon semi-precious stones, sterling silver sheet and wire. Techniques include forming, hard soldering, finish.","Students will make a pendant using cabochon semi-precious stones which would have been available in period, and sterling silver sheet and wire. The processes include forming, silver soldering, and finishing and bezel setting",4.0,"Stones, silver sheet, bezel wire, loop wire, sol and custom cut stones (all vary in price by piece) but an average of $40 for all combined.",,,40.0,12,4,2015-05-05 18:22:04 -0400
2241,A&S 8,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Lord Tempus Peregrinator,ealdormere,3292,Fit Your Neck Hole: Keyhole Neck,Pennsic University,"",,false,We’ll look at the placement and geometry of how the neck hole works. A look at how to make a keyhole neck.,"This class is all about the neck opening of any garment. We’ll look at the placement and geometry of how the neck hole works and get it to fit well every time. Primarily for keyhole necks, this works for the T-tunic, doublet, bodice, cotehardie, houppelande and even modern shirts.",1.0,"",,,,,1,2015-03-25 17:20:49 -0400
2661,A&S 9,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Lord Yaakov HaMizrachi,atlantia,3904,*Sefer HaShashuim*: Constructing A Period Tale,Performing Arts and Music,Other,,false,*Sefer HaShashuim* is a lesser-known 13th-century collection of Jewish stories. I describe how I found the collection and adapted it for SCA use.,"One of the challenges for those trying to find period sources for storytelling (or other bardic activity) is finding fresh period source material that resonates with SCA audiences. I describe how I found *Sefer HaShashuim* (""The Book of Delights"") by Joseph Zabara. It's a 13th-century collection of tales written in poetic form in Hebrew, containing several interesting stories, many of which are actually adaptations of stories from other cultures. Because the material contains a fair amount of extraneous detail, and has a high degree of misogyny, some adaptation was necessary to put it in a form suitable for telling. ",1.0,Cost to print handout,2.0,,,,1,2015-05-07 20:49:27 -0400
2248,A&S 10,2015-07-31 13:00:00 -0400,2015-07-31 14:30:00 -0400,Master Galefridus Peregrinus,east,3324,Olive Tasting and Discussion: 4 Medieval Cures,Pennsic University,Multiple Cultures,,false,"A tasting panel of several historic olive cures, and a discussion of many others. If you've been curing olives, bring some of your own!","A tasting panel of several historic olive cures, and a discussion of many others. If you've been curing olives, bring some of your own! We'll talk about how to use different curing methods to achieve different flavors.",1.5,Handout costs.,1.0,,,,2,2015-03-25 20:48:27 -0400
3178,A&S 12,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Tristan le Chanticler ,east,4597,Honor vs. Ethics vs. Law,Pennsic University,"",,false,A discussion facilitated by an attorney of how we approach challenging SCA situations. ,A discussion facilitated by an attorney of how we approach challenging situations in the current Middle Ages. ,1.0,"",,,,,1,2015-06-06 08:02:27 -0400
2573,Dance Tent,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Lord Dunstan Bramblette,middle,3782,English Country Dance for Six,European Dance,European,,false,"Come learn *Black Nag, Upon a Summer's Day*, and *Picking of Sticks.*","Come learn *Black Nag, Upon a Summer's Day*, and *Picking of Sticks.*",1.0,"",,,,,1,2015-05-07 12:35:18 -0400
2664,Games Tent,2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,Lord István Nyiregyhazi,east,3907,Multiplayer Period Chess,Games,Middle Eastern,,false,"Chess games for four players. We will review rules and variations, then provide time to play.","Chess games for four players. We will review rules and variations, then provide time to play.",1.0,"",,,,,1,2015-05-07 18:40:11 -0400
2695,Performing Arts Rehearsal Tent,2015-07-31 13:00:00 -0400,2015-07-31 14:30:00 -0400,THL Breddelwyn ap Taliesin,middle,3936,Introduction to Harp,Performing Arts and Music,"",,false,Offering a brief history of the harp and the chance to try one to see if you would like to pursue the harp further. I will have three harps with me.,"If you have an admiration for the harp and wondered what it would be like to play one, this class offering will give you an opportunity to try one. A brief history of the harp is given plus I will have two extra harps for you to try to help you decide if the harp is an instrument you would like to pursue further.",1.5,"",,,,,2,2015-04-30 02:16:58 -0400
2925,Pine Box Traders (192),2015-07-31 13:00:00 -0400,2015-07-31 14:00:00 -0400,THL Egill the Loomwright,calontir,4284,Stick Weaving,Pennsic University,"",,false,"Stick weaving is a simple, weft-based weaving method.","Stick weaving is a simple, weft-based weaving method. Great for making belts and straps. Upgradable to make everything from shawls to rugs. Sticks and string provided; take your work home with you.",1.0,Sticks & string,,,6.0,,4,2015-05-03 14:11:56 -0400
2148,Rapier List 1,2015-07-31 13:00:00 -0400,2015-07-31 15:00:00 -0400,Lord Ælfwine se Pyttel,middle,3147,Poker Card Tournament,Rapier Activities,"",,false,Bear pit format; loser stays a max of three. Fencers leaving the field receive a playing card up to 7. Winner is the fencer with the best 5-card hand.,This is a bear pit-style format where the loser of the bout stays to fight the next fencer. Fencers stay until they win or have 3 deaths. Double kills count towards the number of deaths. Fencers leaving the field shall receive a playing card and shall keep up to 7 cards. The winner of the tournament shall be determined by the best poker hand of 5 cards. This format will be run twice to determine two winners.,2.0,"",,,,,1,2015-05-15 16:50:54 -0400
2287,University Point,2015-07-31 13:00:00 -0400,2015-07-31 15:00:00 -0400,Lady Maggie Rue,east,3334,A Walkabout of the Poisons at Pennsic,Pennsic University,"",,false,Wandering throughout Pennsic identifying poisonous plants.,"",2.0,"",,,,,1,2015-03-26 07:23:52 -0400
2245,Livonia Smithery (170),2015-07-31 13:30:00 -0400,2015-07-31 14:30:00 -0400,Lord T W,æthelmearc,3442,Beginning Engraving,Pennsic University,"",,true,"Hands-on class. Intro to tools, first cuts, graver control, hammer use.","Hands-on class. Intro to tools, first cuts, graver control. Student will learn both hand-held and hammer-struck engraving.",1.0,printed handout,5.0,12,,,8,2015-04-08 17:56:19 -0400
2848,Middle Eastern Tent,2015-07-31 13:30:00 -0400,2015-07-31 14:30:00 -0400,Lady Crimson Kate McPhee,east,4157,Restorative Dance,Middle Eastern,Middle Eastern,,false,"For people who have undergone physical trauma, surgery, or other disabling event, this class will introduce gentle movement back into your life.","This is for anyone who is on a healing journey—any person who is recovering from cancer; has had a serious surgery or multiple reconstructive surgeries; women who have just given birth and/or have had rough childbirth/cesarean surgery; anyone who is suffering from an emotional and/or physical disconnect from her body as the result of debilitating illness.
Using the framework of Middle Eastern dance, we will gently introduce movement back into the lives of those who have suffered physical traumas that may prevent them from feeling both physically and emotionally comfortable in a traditional dance class. The class will consist of a gentle dance warm-up, gentle stretch, learning no more than two to three dance moves, slow and gentle cool-down stretch.",1.0,"",,,,,1,2015-05-04 18:24:46 -0400
2576,A&S 5,2015-07-31 14:00:00 -0400,2015-07-31 15:00:00 -0400,THL Roana Aldinoch,middle,3796,History of Hops,Pennsic University,European,,true,"Learn about the history of hops, where they grew, how they were used, and when they became a ""necessary"" ingredient in brewing. ","While hops are ubiquitous in modern beer brewing, that wasn't always the case. In fact, there were laws to prevent non-hop brewing pubsters from beating up hop-brewing pubsters in 15th-century England. Learn about the history of hops in Europe, where they grew, how they were used, and when they became a ""necessary"" ingredient in brewing. Hopless beer will be available for tasting for those 21 and older for $1.",1.0,Taste of homebrewed hopless beer,1.0,15,1.0,15,2,2015-04-25 20:18:22 -0400
2276,A&S 7,2015-07-31 14:00:00 -0400,2015-07-31 15:30:00 -0400,Lady Faye de Trees,atlantia,3323,Coaching and the Art of Constructive Criticism,Pennsic University,"",,false,Discover proven NPS Coaching techniques to cultivate critique that aids and inspires rather than crushing talent before it can bloom. Coach the dream!,We all hear the cries of the populace - or at least the artists-to-be and the volunteers-to-be - that they tried and were rendered low by sharp criticism. Here you can discover proven coaching techniques from a National Park Service Registered Coach. Learn to shape artistic performance and presentation or volunteer service into something that serves the dream rather than drives people away!,1.5,"",,30,,,1,2015-03-26 18:44:46 -0400
2242,A&S 8,2015-07-31 14:00:00 -0400,2015-07-31 15:00:00 -0400,Lord Tempus Peregrinator,ealdormere,3288,"Gussets, Godets and Gores “Oh My” 2",Pennsic University,"",,false,"A new class on gussets, godets and gores. With the keyhole neck class, this shows the easiest way to make a tunic, and more about sewing.","This is a new class on gussets, godets and gores. Combined with the keyhole neck class, this shows the easiest way to make a tunic, and more about sewing. How to cut and sew gussets, godets and gores, all devices to give your clothes better fit, more fullness and freedom of movement! We'll discuss how to cut and sew gussets, as found on the underarms of T-tunic, the fast and easy way. Also covers godets and gores, the difference and how easy they are, too. A lot of good advice about sewing in general.",1.0,"",,,,,1,2015-03-25 17:20:25 -0400
2196,A&S 9,2015-07-31 14:00:00 -0400,2015-07-31 15:00:00 -0400,Lord Drake Oranwood,east,3222,Songwriting to Tell a Story,Performing Arts and Music,"",,false,"Principles and guidelines for constructing tight, compelling, original SCA-appropriate songs that capture (and hold) an audience.","Principles and guidelines for constructing tight, compelling, original SCA-appropriate songs that capture (and hold) an audience. The focus is on lyrics, song and story structure. How is writing a good lyric different from writing a good poem? Create a singable story that is entertaining, engaging, and will hold the attention of a SCAdian audience (who enjoy period material, but still prefer a song that runs 5 minutes or under).",1.0,"",,,,,1,2015-04-29 21:58:12 -0400
2880,A&S 13,2015-07-31 14:00:00 -0400,2015-07-31 16:00:00 -0400,Baroness Gwenllyen the Minstrel,middle,4188,Book Lovers' Tea,Pennsic University,"",,false,Please bring your favorite book(s) to discuss. Books with medieval themes and topics are encouraged but not required. Be ready to take notes!,"Please bring your favorite book(s) to discuss. Books with medieval themes and topics are encouraged but not required. Bring paper and pencil to jot down new authors to check out. Iced tea, water and treats will be provided. ",2.0,"",,,,,1,2015-04-30 22:38:12 -0400
2608,Barony of Roaring Wastes (N08),2015-07-31 14:00:00 -0400,2015-07-31 17:00:00 -0400,THL Catherine of deva,middle,3828,Bag Cheese 101,Pennsic University,"",,false,We will make a soft cheese. While it is draining we will talk about what you can do with this cheese and touch on making hard cheeses. ,"",3.0,"",,,,,1,2015-04-26 17:21:55 -0400
2999,Dance Tent,2015-07-31 14:00:00 -0400,2015-07-31 15:00:00 -0400,Mistress Briana Douglas,east,4336,Beginner Dance: Absolute Beginner A,European Dance,European,,false,Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball!,"Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball!
",1.0,"",,,,,2,2015-05-03 13:50:33 -0400
3058,Guild of Limners (Opposite the Big Cooper Store (Old Barn)),2015-07-31 14:00:00 -0400,2015-07-31 16:00:00 -0400,"Lord Aleksandr, a Chymist",east,4447,Got Them Copper Ink Blues or Greens?,Æthelmearc Scribal,Multiple Cultures,,false,"How to make true transparent copper-acetate inks, covering the spectrum from blue-black to bright green. Other inkmakers invited to join in.","Despite claims to the contrary by alleged 'experts', the period illuminator had access to inks ranging from dark blue to bright green, and all shades in between, using commonly available goods. Vinegar and copper or brass (and time and patience) make the powder that can become a true transparent ink, something that ""burns"" its way permanently into parchment, paper or papyrus. These may change color with time, but will last a good century or two.",2.0,"Some inks MAY be available for purchase, entirely OPTIONAL; samples free",,25,,50,2,2015-05-04 10:46:15 -0400
2087,Gunnery Point (Top of Mt Eislinn),2015-07-31 14:00:00 -0400,2015-07-31 16:00:00 -0400,Lord Erich von Kleinfeld,atlantia,3062,Period Black Powder Firearms: Safety and Handling,Pennsic University,European,,true,"Firearm safety, handling, and shooting procedures for small arms and artillery, 1320-1600. Powder and match supplied by teacher. Ages 18+.","Firearm safety, handling, and shooting procedures for small arms and artillery, 1320-1600. Owners of period arms are requested/encouraged to bring them and help with coaching newer shooters. Powder and match are supplied by instructor. Ages 18+. Handouts for all classes: http://www.3fgburner.net/#info.",2.0,"",,20,,,1,2015-05-20 20:43:19 -0400
2489,Performing Arts Tent,2015-07-31 14:00:00 -0400,2015-07-31 15:30:00 -0400,Pennsic Performing Arts,"",3677,Sing We And Chant It: Madrigal and *A Capella* Jam,Performing Arts and Music,"",,false,"Meet-and-greet optional practice session for audience participation, ""Sing We and Chant It"" Madrigal and *A Capella* Jam.","Meet-and-greet optional practice session for audience participation, ""Sing We and Chant It V"", Madrigal, Part Song, and A Capella Jam, Monday, 8/4, at 6:00 pm in the Performing Arts Tent. All are welcome to come and make joyful music! Music will be available to share, or bring your own! (Material fee optional for a folder of this year's jam music)
Hosts: THL Lorelei Skye, Mistress Gianetta Andreini da Vicenza, Professor Pieter van Doorn
2015 current song list available here - please let us know if you have any suggestions to add to the mix!
https://docs.google.com/document/d/1N-pkg9zLigl06DTqzfQ9EM-7dZeALQl-oGxgSWDIL6s/edit?usp=sharing",1.5,Photocopy fee for public domain music handouts.,5.0,15,,,2,2015-05-03 14:10:31 -0400
2819,Performing Arts Rehearsal Tent,2015-07-31 14:30:00 -0400,2015-07-31 16:00:00 -0400,Lord Thomas Haworth,middle,4114,Being in Tune in Period,Performing Arts and Music,European,,false,"An introduction to the sound of tuning schemes using ratios, as used in medieval and Renaissance music. I use recorded sounds.","This class is an introduction to pitch and tuning in period. A was not 440, and equal temperament was only a (not very useful) theory. There were choices that had to be made in tuning fixed-pitch instruments like organs, harps, and fretted instruments. We will examine the theory and hear examples of four versions of the musical scale and the differences between them. These scales include the two musical tunings most commonly used in the medieval and Renaissance periods: Pythagorean and ¼-comma meantone. There will be no arithmetic required.",1.5,"",,20,,,2,2015-06-27 22:39:17 -0400
2575,A&S 1,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Lord Dunstan Bramblette,middle,3802,Keeping Bees in the Knowne World,Pennsic University,Multiple Cultures,,false,Get an idea of what is involved in keeping bees in the here and now. I'll walk you through a typical year.,Get an idea of what is involved in keeping bees in the here and now. I'll walk you through a typical year.,1.0,"",,,,,1,2015-04-25 20:19:59 -0400
2812,A&S 3,2015-07-31 15:00:00 -0400,2015-07-31 17:00:00 -0400,Baroness Betha Symonds,æthelmearc,4103,Beginning Wire Weaving,Pennsic University,"",,false,"Students will learn to make intricate chains in the manner of the Vikings and other cultures, without need for heat or complicated tools.","This class will teach beginning students to make intricate chains in the manner of the Vikings and other ancient cultures, without the need for heat or complicated tools. With the techniques presented, you will learn to create items like the ones found in Viking burials and treasure hoards across the Nordic countries dating from the 9th century to the late 12th century.
Wire chains made in this fashion have also been discovered in the British Isles (875 AD) and in the Roman, Greek and Byzantine civilizations from the 4th century BC to the 1st century AD. Timeless items can be created that are still beautiful and wearable today.
If you have needle-nose pliers and wire cutters, please bring them. If you need glasses for close or small work, please bring them. The fee for the class includes the materials needed to complete the leather cord necklace. To view this unique jewelry, please visit www.AncientWire.com/book.htm.",2.0,"wire, pencil, tape, leather",1.0,,2.0,10,4,2015-04-30 20:45:12 -0400
2611,A&S 5,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Instructor Gin,æthelmearc,3857,Ninja: Truth from Shadows,Pennsic University,Far Eastern,,false,Dare you look into the shadows of history to find the truth? Come to discover both the legends and real history of Japan's famed assassins. New info!,Dare you look into the shadows of history to find the truth? Come to discuss and discover both legends and the real history of Japan's famed spies and assassins. This class will examine the romanticized image of the Ninja and discuss the actual history of the world's most famous spies.,1.0,"",,20,,,4,2015-04-26 14:17:14 -0400
2402,A&S 8,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Master Richard Wymarc,atlantia,3549,Telling Time with Richard II,Pennsic University,"",,false,"The theory and use of a simple time-keeping device called a Horary Quadrant, in particular one based on several associated with King Richard II. ","The theory and use of a simple time-keeping device called a Horary Quadrant, in particular one based on several associated with King Richard II. This class will give the historical context for the horary quadrant and provide extensive hands-on, practical experience in using it. ",1.0,Covers the cost of handout and an example quadrant for each student,4.0,15,,,2,2015-04-10 19:01:44 -0400
2699,A&S 9,2015-07-31 15:00:00 -0400,2015-07-31 17:00:00 -0400,Mistress Amelie d'Anjou,middle,3939,Music Pre-1200,Performing Arts and Music,Multiple Cultures,,false,"We'll start at 1200 A.D. in Western Europe, then work our way backwards, including Tang Dynasty China and Ancient Egypt. Let's see what we can find! ","We'll start at 1200 A.D. in Western Europe (very traditional history), but then work our way backwards in a whirlwind tour of three continents and stretching back as far as we can -- we might even get to the Egyptians and Sumerians! There is definitely some Chinese music from the Tang Dynasty extant -- let's see what we can find! ",2.0,donation for handout,1.0,20,,,1,2015-04-30 20:19:12 -0400
3046,A&S 14,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Lady Jael ben Ari,middle,4438,When in Rome: The Odd and Risque ,Pennsic University,Other,,true,An overview of the more salacious aspects of Ancient Rome.,"",1.0,"",,20,,,1,2015-05-04 08:08:16 -0400
2985,Dance Tent,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Pennsic Dance Staff,"",4335,Beginner Dance: 15th-Century Italian B,European Dance,European,,false,"Never danced before? No problem! We'll start with basic steps and patterns, and then teach fun, simple dances from 15th-century Italy.","",1.0,"",,,,,1,2015-05-03 13:50:05 -0400
2226,East Battlefield,2015-07-31 15:00:00 -0400,2015-07-31 17:00:00 -0400,THL Morien MacBain,æthelmearc,3257,Fiore/Lichtenauer Longsword Tourney,Martial Activities,European,,true,"Longsword-only heavy tourney devoted to the masters of the two traditions. Prizes awarded for best technique, best 14th-15th-century kit, and victory!","Longsword-only heavy tourney devoted to the masters of the two traditions. Prizes awarded for best technique, best 14th-15th-century kit, and victory!",2.0,"",,,,,1,2015-03-11 21:34:14 -0400
2668,Games Tent,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Lord István Nyiregyhazi,east,3912,Tarot and other Card Games,Games,European,,false,"A review of the card games previously taught, including the game of tarot. Practice playing them with an instructor's assistance.","This class will review the card games previously taught, including tarot. You can practice playing them with an instructor's assistance.",1.0,"",,,,,2,2015-05-07 18:20:46 -0400
2243,Livonia Smithery (170),2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Lord T W,æthelmearc,3431,Advanced Engraving,Pennsic University,"",,true,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,1.0,handout,5.0,12,,,5,2015-04-08 17:51:30 -0400
3158,Manx Hall (E28),2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Aibinn ingen hui Ciardha ,middle,4572,"Spinners Anonymous, a.k.a Spinning for Cat-Herders",Pennsic University,Multiple Cultures,,false,"All spinners welcome to trade tips, learn technique and practice supported and drop spinning, with stone or clay whorl spindles; child-friendly camp. ","Wanted to take a spinning class, but couldn't find a sitter? Made it to that class, but want more practice with an experienced spinner? All spinners of all levels are invited to take part in this practicum on using the medieval spindle with clay or stone whorls for supported and drop spinning. Bring your own or use mine! Spindles, whorls, wool and hand distaffs available. Cotton and flax spinning may also be discussed if there is an interest. Children are welcome to come play with mine while you play with fiber! Located in cool, shaded E-28 block.",1.0,"",,,,15,3,2015-05-24 15:21:59 -0400
2942,Novelty Range,2015-07-31 15:00:00 -0400,2015-07-31 17:00:00 -0400,Lord Gehrig Reimundson,caid,4244,"Fast Archery, Toxic Arrows: Lars Andersen & Beyond",Archery,Multiple Cultures,,false,Learn to perform and understand various techniques of speed shooting from a student (& consultant) of Lars Andersen with a lecture on arrow poisons.,"Arrows Quick and Venomous: Speed Shooting and Archer's Poisons
We've all seen the videos... some of us love them, some of us hate them... so here is your chance to learn how to use the techniques shown by someone who learned from Lars Andersen himself. The class will cover various styles of speed shooting for both target and combat archery. It will involve some history but more instruction in the speed shooting section, plus some instruction but more history regarding arrow poisons. Hopefully, the class will help expand your understanding of historical archery and help you apply it to your own archery.
People of all levels are welcome, especially those who have never shot a bow before. Folks with no habits may find it easier to apply these techniques than those who already have muscle memory regarding archery.
Please bring whatever gloves, bows, and/or arrows you may have; a willingness to share will be appreciated. Strong preference for bows with no shelves.",2.0,"5 dollars handout, 10 dollars for materials with estimated room for about 30 students per class",5.0,,10.0,,2,2015-05-06 21:27:23 -0400
2922,White List,2015-07-31 15:00:00 -0400,2015-07-31 16:00:00 -0400,Duke Vissevald Selkirksson,east,4223,The Poleax Techniques of Paulus Hector Mair,Martial Activities,European,,false,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,Period poleax techniques that stress using the width of the ax in both defensive and offensive fashion applicable to SCA heavy list use.,1.0,"",,,,,4,2015-05-05 16:38:49 -0400
3134,Youth Combat List,2015-07-31 15:00:00 -0400,2015-07-31 17:00:00 -0400,Lord Sven,middle,4531,Afternoon Youth Combat,Youth Combat,"",,false,Afternoon Youth Combat,Afternoon Youth Combat,2.0,"",,,,,8,2015-05-13 19:59:52 -0400
3000,Middle Eastern Tent,2015-07-31 15:30:00 -0400,2015-07-31 17:30:00 -0400,Jowhara,middle,4348,ISIS Wings,Middle Eastern,Other,,false,Ancient belly dance myth meets contemporary pizzazz with ISIS wings! Wear your wings and learn Egyptian-style belly dance routines. All welcome! ,Ancient belly dance myth meets contemporary pizzazz with ISIS wings. Wear your wings and foot wear! You will learn Egyptian-style belly dance routines with wings and also improvise with wings. At the end of class we will float and fly the streets and hills of Pennsic on our Fabulous Wings. Traveling musicians welcome! ,2.0,donations ,,,,,2,2015-05-04 19:23:50 -0400
2492,Performing Arts Tent,2015-07-31 15:30:00 -0400,2015-07-31 16:30:00 -0400,Pennsic Performing Arts,"",3683,"Pennsic Technical Theater: Lights, Stage, Action!",Performing Arts and Music,"",,true,"Come and learn about the behind-the-scenes tech theater of the Performing Arts Tent: building the stage, rigging curtains, running lights, and more!","",1.0,"",,,,,2,2015-04-26 19:35:03 -0400
2519,Archery Tent,2015-07-31 16:00:00 -0400,2015-07-31 17:30:00 -0400,Master Godric of Hamtun,east,3755,Target Archery Marshals' Meeting,Archery,"",,false,"All target archery marshals should meet in the marshals' tent on the Archery Range. Repeats on Aug 2, 4 pm, for those who missed Friday's meeting.","There will a target archery marshals' meeting in the marshals' tent on the Archery Range on Friday, July 31, at 4 pm. There will also be an archery marshals' meeting on Sunday, August 2, at 4 pm, for all those marshals who did not or could not make the meeting on Thursday.",1.5,"",,,,,2,2015-04-26 18:24:11 -0400
3079,A&S 2,2015-07-31 16:00:00 -0400,2015-07-31 17:30:00 -0400,THL Sciath ingen Chaennaig,ealdormere,4456,Heraldry Design Basics,Heraldry,Other,,false,"What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. ","What better way to get your device submission in shape for Herald's Point, than by learning about heraldry design basics. This class will include an introduction to device design, based on the SCA rules of Heraldry. Some one-on-one assistance will be provided. ",1.5,Handouts: $2,2.0,10,,,3,2015-05-06 00:51:36 -0400
2789,A&S 5,2015-07-31 16:00:00 -0400,2015-07-31 18:00:00 -0400,Master Gunnarr Alfljot,middle,4078,Finishing Woven-Wire Chains,Pennsic University,European,,false,Discussion and demonstration includes drawing the chain and various end finishes and clasps.,"",2.0,"",,30,,,1,2015-04-29 22:51:18 -0400
2174,A&S 7,2015-07-31 16:00:00 -0400,2015-07-31 17:00:00 -0400,Lord Lucas Livingston,middle,3193,Binging with Bacchus or How to Be an Ass in Athens,Pennsic University,Multiple Cultures,,true,"Raise your *rhyton* to the art & culture of beer and wine, brewing and vintning, from Egyptian sands to Greek shores. Tasting & BYOB! Over 21 only.","Raise your *rhyton* to the ancient art and culture of beer and wine from the sands of Ancient Egypt to the salty shores of Classical Greece. See how the ancient culture of drink left its mark on medieval and modern times. We'll delve into the ancient processes of brewing and vintning, and explore exquisite works of ancient art celebrating the drinking culture from King Tut's tomb, Agamemnon's Mycenae, Plato's Athens, and more. BYOB & enjoy a tasting of some new selections this year of various ancient-inspired, home-brewed, mad fermentations! Note: Over 21 only.",1.0,0,,20,,,1,2015-03-01 14:20:19 -0500
2538,A&S 10,2015-07-31 16:00:00 -0400,2015-07-31 18:00:00 -0400,Lady Mikalina Lydushka Pavlovna,east,3768,"Salts, from White to Dark!",Pennsic University,Multiple Cultures,,false,"Covers the diverse range of salts, from shore to shore and from plain to smoked! ","This class covers the diverse range of salts, from shore to shore and from plain to smoked! This is a variation on the salt class I taught last year focusing mainly on the diverse types of salt as well as making smoked salts. This covers their different histories, uses in religious events and their many uses in food prep, drinks and sweets. Some recipes will be available in the handout. There will be salt tasting, plus cucumber and bread and water for palate cleansing. ",2.0,"Handout, cucumber, water and bread for palate cleansing. ",2.0,30,3.0,30,1,2015-04-23 17:21:24 -0400
2293,A&S 11,2015-07-31 16:00:00 -0400,2015-07-31 16:45:00 -0400,Lord Rauf le Brewere,lochac,3339,Pimp My Wine,Pennsic University,European,,false,"Learn how to ""Pimp My Wine"" and turn everyday wine into a period-style hypocras full of spice and yumminess. Tastings so bring ID. Age 21 and over.","Just like ""Pimp My Ride"" takes an ordinary old car and turns it into a masterpiece, this class will show you how to turn your normal everyday wine into a period-style hypocras full of spice and yumminess. Alcoholic and non-alcoholic version will be available for sample during the class so please remember your ID. Age 21 and over.",0.75,"",,,,,4,2015-03-26 15:52:31 -0400
3055,Caer Ciunniunt (E01),2015-07-31 16:00:00 -0400,2015-07-31 18:00:00 -0400,Mistress Rowena ni Dhonnchaidh,æthelmearc,4464,"Pennsic Homes, Part 2: Tour",Pennsic University,"",,false,"A tour of Pennsic homes, followed by a group discussion/meet & greet at a lovely private camp. Follow-up to slideshow class. Bring your Pennsic map.","A tour of some of the Pennsic homes, followed by a group discussion/meet & greet at a lovely private camp. Follow-up to slideshow class on Thursday. Please bring your Pennsic booklet/map to mark down locations that you can visit that we didn't see.",2.0,"",,,,,1,2015-05-20 20:42:59 -0400
2604,Dance Tent,2015-07-31 16:00:00 -0400,2015-07-31 17:30:00 -0400,Lady Rebecca da Firenze,west,3855,*Furioso all'Italiano*,European Dance,European,,false,"Come learn *Furioso all'Italiano*, a 16th-C Italian dance for sets of three couples. Dancers of all ages welcome. This is an advanced class.","",1.5,"",,,,,1,2015-05-07 12:35:27 -0400
2872,Performing Arts Rehearsal Tent,2015-07-31 16:00:00 -0400,2015-07-31 17:00:00 -0400,Mistress Jadwiga Krzyzanowska,middle,4179,Reading from Facsimile,Performing Arts and Music,"",,false,Bring your instruments and we'll play through some 16th-century music in facsimile. Get ready to read in C clefs! ,"",1.0,"copies
",1.0,10,,,3,2015-05-06 01:27:16 -0400
2913,Pine Box Traders (192),2015-07-31 16:00:00 -0400,2015-07-31 17:30:00 -0400,THL Egill the Loomwright,calontir,4260,Card-Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and, using cards, you will weave a trim strip.","Warp a loom and weave a small strap or trim piece. Using the continuous warping method, you will warp the loom and weave a trim strip. Classroom loaner looms available or bring your own. Fee covers string and cards; take your work home with you.",1.5,cards & string,,,5.0,,6,2015-05-01 09:00:42 -0400
2800,Performing Arts Tent,2015-07-31 16:30:00 -0400,2015-07-31 17:30:00 -0400,Lord Manus MacDhai,atlantia,4088,Engineering for a Mobile Theater Troupe,Performing Arts and Music,"",,false,"Methods for putting up a mobile stage, including a temporary backdrop curtain, footlights, signboards, and scenario boards.","So you have a troupe that goes to events and wants to present plays but you need to be able to have a stage setup that is transportable and relatively quick to set up and take down. This class is a presentation of how the *commedia* troupe *I Firenzi* handles those things, including an adjustable backdrop curtain, footlights (for playing in the dark), announcement signboards, etc.",1.0,"",,,,,1,2015-05-01 00:32:52 -0400
3213,A&S 9,2015-07-31 17:00:00 -0400,2015-07-31 18:00:00 -0400,Lord Magnus hvalmagi,east,4649,Applied Skaldic Poetry,Performing Arts and Music,European,,false,We often compose praise poetry and scroll texts for awards in the SCA. Learn the basics of skaldic poetry so you can apply it to practical purpose.,"In Norse culture, the skald was responsible for marking important events in the lives of people, as well as recalling the history of a people. In the SCA, we often engage in activities along these lines - writing scroll text for awards, providing praise poetry, writing in vigil books, and so forth. With a little bit of learning, we can do what the skalds did and write poetry that sounds period!
Come learn about the poetry of the skalds, and of a specific applied system that I employ when writing skaldic poetry for SCA purposes! You'll be writing historical-sounding poetry with ease!",1.0,"",,20,,,1,2015-06-27 22:38:37 -0400
2927,Performing Arts Rehearsal Tent,2015-07-31 17:00:00 -0400,2015-07-31 18:00:00 -0400,Lady Erlandr Nordenskald,east,4229,Mass Project,Performing Arts and Music,European,,false,Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement.,"Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement, starting with early period *Kyrie* and ending with a mid-15th-century *Agnus Dei*. While no performance has been scheduled, it won't be ruled out. These sessions are sponsored by the Known World Choir.
(Rehearsal Tent unless noted: 7/29@12pm; 7/30@5pm; 7/31@5pm; 8/2@2pm(*AMPI); 8/3@5pm)",1.0,For the 5 days of class,1.0,24,,,5,2015-05-04 16:05:14 -0400
3189,A&S 11,2015-07-31 18:00:00 -0400,2015-07-31 21:30:00 -0400,Lord Kveldulf Lohipoika,atenveldt,4611,From Bees to Booze (Part 1),Pennsic University,Multiple Cultures,,true,"Mead Making 101: Preparation, selection of materials, and records. Make your first batch of mead. Take home a 1-gallon batch home with you!","This class will be broken into three sections: preparation, selection of materials, and record keeping.
The preparation section will cover what materials are required, what equipment is essential vs. just convenient, as well an extensive ""what not to do"" list.
The selection of materials section: This section will cover where to get your honeys, how to source your fruit, how to score bargains or barter, as well as examples of which honeys blend well with one another and in what ratios.
And finally, we'll work on record keeping - simply suggestions on how to develop your own recipes.
Please bring notebook and pen/paper. Handouts can be written on, but it is not advised.
Each student will be asked to place their name in for a drawing at this class for a complete beginners brewing kit from MIdwest Brewing Supply. 1 kit given per class.",3.5,"Jugs+Airlocks $15
Yeast Packets $4 (2 types of yeast available.)
8 oz honey $10
1 Gal distilled water $1",15.0,30,30.0,15,2,2015-06-29 22:11:30 -0400
2334,Performing Arts Tent,2015-07-31 18:00:00 -0400,2015-07-31 18:30:00 -0400,Pennsic Performing Arts,"",3412,Iron *Commedia*: World Premiere,Performing Arts and Music,"",,false,"Earlier this same day, a group of foolish players came together to craft, cast, and create a brand-new ""16th-century"" *Commedia dell'Arte* play!","Earlier this same day, a group of foolish players came together to craft, cast, and create a brand new ""16th-century"" *Commedia dell'Arte* play to premiere before your very eyes! Sorry, we can't give you a plot synopsis because we only just built the plot a few hours before the performance! Come see the zany foolishness in extremely live theatre! *Possibly some material inappropriate for younger children* but it's unknown until the play is created at the workshop earlier that day.",0.5,"",,,,,1,2015-05-06 13:48:26 -0400
2315,Performing Arts Tent,2015-07-31 18:30:00 -0400,2015-07-31 19:00:00 -0400,Pennsic Performing Arts,"",3371,KWP Pennsic Readers' Theater Youth Performance,Performing Arts and Music,"",,false,"A staged reading of *The Amazing First Voyage of Sara, Daughter of Sinbad
(Based upon The Arabian Nights)* by Master John Inchingham the Fool.","A staged reading of *The Amazing First Voyage of Sara, Daughter of Sinbad
(Based upon The Arabian Nights)* by the youth of Readers' Theater. This script is written by a fellow SCAdian, Master John Inchingham the Fool. A staged reading means that the actors will be performing the play with the script in hand.",0.5,"",,,,,1,2015-03-30 15:40:06 -0400
2361,A&S 13,2015-07-31 19:00:00 -0400,2015-07-31 19:45:00 -0400,Lord Jacob the Wanderer,east,3473,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
3139,Fort,2015-07-31 19:00:00 -0400,2015-07-31 23:00:00 -0400,THL Grimolfr Ormalfrson,æthelmearc,4542,Atlatl Battle ,Martial Activities,"",,false,This will be an Atlatl battle on the battlefield near the castle.,"",4.0,"",,,,,2,2015-05-22 21:01:19 -0400
2314,Performing Arts Tent,2015-07-31 19:00:00 -0400,2015-07-31 20:30:00 -0400,Pennsic Performing Arts,"",3370,KWP Pennsic Readers' Theater,Performing Arts and Music,"",,false,KWP Pennsic Readers' Theater presents staged reading of *The Belle of Battle* by Don Orlando Sforza.,Pennsic Readers' Theater presents staged reading of *The Belle of Battle* by Don Orlando Sforza.,1.5,"",,,,,1,2015-03-30 15:39:26 -0400
2311,Performing Arts Tent,2015-07-31 20:30:00 -0400,2015-07-31 22:00:00 -0400,Pennsic Performing Arts,"",3361,Lorelei Skye and Emer Nic Aiden: Sea and Fire,Performing Arts and Music,"",,false,"Lorelei and Emer take the stage performing beautiful ballads and dynamic duets of SCA, yesteryear, and original works of wit, whimsy, and woe!","Lorelei and Emer take the stage performing beautiful ballads and dynamic duets of SCA, yesteryear, and original works of wit, whimsy, and woe for your enjoyment - including from Lorelei's CD's: ""Rosaleen Dhu"", ""Here There Be Dragons"", ""Bardic Fires"", and Emer's CD: ""Waves on the Shore""",1.5,"",,,,,1,2015-05-06 03:13:23 -0400
3021,Dance Tent,2015-07-31 21:00:00 -0400,2015-08-01 00:00:00 -0400,Pennsic Dance Staff,"",4389,Open Dancing,European Dance,European,,false,Join us all evening for dancing by request.,"",3.0,"",,,,,5,2015-05-03 14:07:06 -0400
3069,Performing Arts Tent,2015-07-31 22:00:00 -0400,2015-07-31 23:30:00 -0400,Pennsic Performing Arts,"",4418,DragonSong,Performing Arts and Music,"",,false,"DragonSong is a collaborative World Music & Dance Ensemble, performing both original music and traditional folk music from all around the Known World.","DragonSong is a collaborative World Music & Dance Ensemble, performing both original music and traditional folk music from all around the Known World.
DragonSong Ensemble:
Jeremy Zacherl: Guitar, Vocals, Percussion
Bridget Bystry: Violin, Vocals, Mandolin, Percussion
""Darbuka"" Dave Machek: Tupan, Darbuka, Percussion
Denys Proteau: Caval, Ude, Vocals
Billy Woods: Frame Drum, Cow Bell
Kylie Hilali: Kanun, Vocals
Mark Cheater: Rik
Dancers: Na'la & Mavi",1.5,"",,,,,1,2015-05-06 13:45:01 -0400
2713,Dance Tent,2015-08-01 08:00:00 -0400,2015-08-01 09:00:00 -0400,Baroness Nadezda ze Zastrizl,middle,3953,"Yoga for Dancers, Fighters, or Pretty Much Anyone",European Dance,Other,,false,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. ,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. Children may attend with a parent/guardian if they both participate. ,1.0,"",,,,,7,2015-05-07 19:27:13 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-08-01 08:00:00 -0400,2015-08-01 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3609,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
3132,Youth Combat List,2015-08-01 08:00:00 -0400,2015-08-01 10:30:00 -0400,Lord Sven,middle,4526,Youth Combat,Youth Combat,"",,false,Morning Youth Combat Session,Morning Youth Combat Session,2.5,"",,,,,8,2015-05-13 20:03:29 -0400
2275,Artisan's Row A,2015-08-01 09:00:00 -0400,2015-08-01 16:00:00 -0400,Artisans Row,east,3284,Confectionery Day,Artisan's Row,"",,false,"Working with period sugar paste and other confections. Demonstration, hands-on materials for sugar play for adults and children. Age 6 and up welcome.","A day of confectionery delights, working with period sugar paste and other confections. Demonstration, hands-on materials for sugar play. For adults and children age 6 and up.
Taught by Baroness Alesone Gray of Cranleigh",7.0,"",,,,,1,2015-04-12 01:02:36 -0400
2793,Artisan's Row B,2015-08-01 09:00:00 -0400,2015-08-01 16:00:00 -0400,Artisans Row,east,4082,Metalsmith Day,Artisan's Row,"",,false,"Small metals, jewelry, wire work, hard soldering, gemstone setting and more. Bring your tools, some metal and have some fun in the company of others.","This is the place for small metals and jewelry work, wire work, fabrication with nonferrous metals, hard soldering, gemstone setting and more. Bring your tools, some metal and have some fun in the company of others working with similar materials.",7.0,"",,,,,1,2015-04-30 20:16:39 -0400
2593,A&S 1,2015-08-01 09:00:00 -0400,2015-08-01 10:00:00 -0400,Masarrah bint Ma'mun,atlantia,3813,Mental Illness in Medieval Europe,Pennsic University,European,,false,"Discusses issues from diagnostic categories to treatment and care, court fools to the insanity defense, and medical melancholy to spirit possession.","How did medieval people -- including both educated specialists in law, medicine, religion, and more ordinary folks -- cope with the challenges of mental illness? This class discusses issues from diagnostic categories to treatment and care, from court fools to the insanity defense, and from medical melancholy to spirit possession.",1.0,"",,30,,30,1,2015-04-25 20:21:03 -0400
3206,A&S 4,2015-08-01 09:00:00 -0400,2015-08-01 10:00:00 -0400,THL Isabella della Rosa,ansteorra,4643,"Mozzarella, 30-Minute Process",Pennsic University,"",,false,Mozzarella is a fresh cheese requiring a few tools and ingredients. This cheese can be made in camp. I'll show you how.,Mozzarella is a fresh cheese requiring a few tools and ingredients. This cheese can be made in camp. I'll show you how.,1.0,"",,10,,,1,2015-06-22 20:35:01 -0400
2255,A&S 5,2015-08-01 09:00:00 -0400,2015-08-01 12:00:00 -0400,Viscountess Seelie Brianna,west,3300,Reconstructing Archaeological Textiles,Pennsic University,Multiple Cultures,,false,"In this 2-part, hands-on class, students weave several reconstructions of textiles from archaeological context. Fee includes use of loom and yarn.","In this 2-part, hands-on class, students will weave several reconstructions of textiles from archaeological context, illustrating structure, fibers and tools used, and time involved in creating textiles prior to industrialization. Use of loom and all supplies for completing samples included in class fee.",3.0,"handouts, supplies for completing woven samples",2.0,6,8.0,6,2,2015-03-25 18:30:00 -0400
2864,A&S 7,2015-08-01 09:00:00 -0400,2015-08-01 10:00:00 -0400,Lady Emengar la fileresse,east,4159,Spinning Clinic,Pennsic University,Multiple Cultures,,false,"Are you dissatisfied with the yarn you make, interested in spinning a different grist (thickness) or a multiple ply technique? Bring tools and fiber. ","",1.0,"",,,,,2,2015-04-30 20:47:32 -0400
3092,A&S 8,2015-08-01 09:00:00 -0400,2015-08-01 10:00:00 -0400,Baroness Aldermoureis Ventzke,middle,4477,Making Better T-Tunics,Pennsic University,European,,false,"Now that you have made your first t-tunic, learn some pointers for making the next one better.","Now that you have made your first t-tunic, learn some pointers for making the next one better.",1.0,"",,20,,,1,2015-05-06 20:44:34 -0400
3137,A&S 10,2015-08-01 09:00:00 -0400,2015-08-01 11:00:00 -0400,THL Ceara Shionnach,lochac,4540,Embroidery Circle and Learning Stitches,Pennsic University,Multiple Cultures,,false,Bring your current/recent embroidery projects and supplies for discussion plus your embroidery questions and stitch requests.,"Bring your current or recent embroidery projects and embroidery supplies for embroidery discussions. Come along if you have any embroidery questions, interest, or would like to learn a stitch from the list: split stitch, stem stitch, osenstitch, Bayeux stitch, Holbein stitch, kloster stitch, detached buttonhole stitch, couching, padded goldwork, Elizabethan plaited braid stitch, or other (requests welcome).",2.0,"",,,,,1,2015-05-22 16:07:16 -0400
2837,A&S 14,2015-08-01 09:00:00 -0400,2015-08-01 14:30:00 -0400,Chirurgeon Instructor,"",4136,ASHI Basic First Aid,First Aid,"",,false,"Created to help students develop basic first aid knowledge, skills, and the confidence to respond. Cost is $15 for card only, $20 including books.","Basic First Aid was created to help students develop basic first aid knowledge, skills, and the confidence to respond. The program is an excellent choice for both the community and workplace setting, and is consistent with recommendations of the 2010 National First Aid Science Advisory Board and OSHA’s best practices for first aid training programs in the workplace. Class length: 5 hours. Cost is $15 for card only, $20 including books.",5.5,Separate fee for card or course materials.,,,,,3,2015-04-30 22:35:37 -0400
2778,Battlefield,2015-08-01 09:00:00 -0400,2015-08-01 11:00:00 -0400,Master Robyn Solarius,middle,4063,Brass Band: Drop-In Playing,Performing Arts and Music,European,,false,Sackbut and cornetto drop-in playing. Tired of all of those crazy loud double reeds? Enjoy some sublime brass-only ensemble playing. Bring your chair.,Sackbut and cornetto drop-in playing. Tired of all of those crazy loud double reeds? Enjoy some sublime brass-only ensemble playing. High pitch sackbuts (alto) especially welcome. Bring music if you have any you would like to try.... Bring a chair.,2.0,"",,,,,2,2015-04-30 20:46:04 -0400
3109,Dance Tent,2015-08-01 09:00:00 -0400,2015-08-01 11:00:00 -0400,THL Darius the Dancer,ealdormere,4495,Children's Ball,European Dance,European,,false,"This is the perfect ball for children, beginners, and experts wanting to have fun. All youth in attendance require a responsible adult to be present.","Dance and be merry! This is the perfect ball for children, beginners, and experts wanting to have fun. Dances will have just enough instruction to keep everyone on the right foot. All youth in attendance require a responsible adult to be present.",2.0,"",,,,,1,2015-05-07 20:43:51 -0400
3113,Fort,2015-08-01 09:00:00 -0400,2015-08-01 11:00:00 -0400,Master Anton du Marais,middle,4499,Battle of La Rochelle,Martial Activities,"",,false,"The defenders of La Rochelle **will** die! The only question is, **when**? Join us at the Fort to find out. Heavy rapier and rubber band gun melée. ","The defenders of La Rochelle **will** die! The only question is, **when**? Join us at the Fort to find out. Heavy rapier and rubber band gun melée. Attackers will have unlimited resurrections, defenders will have limited resurrections. RBG cannon are welcome. No archery please. Pennsic standard rules for rapier apply. Don't have a heavy rapier? Bring a dagger or two. Bring a friend or 20. The more the merrier. Don't like to fight melée? Come and get close to the action and help marshal the battle. Please muster **at the Fort** half an hour before the start time, especially if you want to fight along with a particular group. Time permitting, we will let the holders of all the assembled kingdoms' and principalities' highest award for rapier, and kingdom and principality rapier champions see how long they can hold out against the Known World! Always a fan favorite.",2.0,"",,,,,1,2015-05-12 20:50:28 -0400
2141,Æthelmearc 1,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,THL Zofia Kowalewska,æthelmearc,3140,Scribal Wordsmithing 101,Æthelmearc Scribal,Multiple Cultures,,false,Learn the basic wording structure for scrolls across several Kingdoms. No experience necessary.,You may not be a bard but that shouldn't stop you from taking part in one of the most rewarding things the SCA.... Being a scribe! We always need words for our scrolls. We'll introduce you to the basic formula for wording and discuss ways to flourish it and make it your own.,1.0,"",,,,,1,2015-04-30 20:08:43 -0400
2173,Amphitheater,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Lady Noelle de la Plume,middle,3188,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
2542,Archery,2015-08-01 10:00:00 -0400,2015-08-01 17:00:00 -0400,Master Godric of Hamtun,east,3771,Atlantia St. Sebastian Shoot,Archery,"",,false,The Kingdom of Atlantia will once again host the St Sebastian Shoot. Prizes for many categories.,"The Kingdom of Atlantia will once again host the St Sebastian Shoot. Atlantia will put on an all-day shoot that will test all archers with many different skill levels. This shoot is on the middle Saturday, Aug 1st, from 10 am until 5 pm, with prizes for many different categories. Come out and spend a day of fun shooting on the Archery Range to test your skill.",7.0,"",,,,,1,2015-04-26 18:16:06 -0400
2360,A&S 1,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,THL Grey Oddsson,middle,3502,Archery for Non-Archers,Archery,"",,false,An introduction the the sport of SCA archery for people who have never held a bow.,"Grey Oddsson's mostly irreverent introduction to archery for the average person. This class makes no assumption of previous knowledge. Topics to be covered include but are not limited to these:
A 62-second history of world archery.
SCA range safety.
Biomechanics, romance, money, and bow selection.
An introduction to the dark side, or crossbows can be your friend.
Arrows 101 with examples of mistakes I have made.
Useful and silly stuff to own.
Questions, comments, complaints.
I intend to head out to the range immediately after the class. ",1.0,"",,,,,1,2015-04-06 17:17:19 -0400
2557,A&S 3,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Mistress Elizabeth of Dendermonde,west,3835,Babies at Pennsic: A Discussion,Pennsic University,"",,false,"How to deal with babies and small children at Pennsic: a discussion by and for those who have done it, are doing it, or will do it.","",1.0,"",,,,,1,2015-04-25 19:59:33 -0400
2748,A&S 4,2015-08-01 10:00:00 -0400,2015-08-01 12:00:00 -0400,Lord Calvius Nero,east,4037,Enameling for Byzantine,Glass,Far Eastern,,false,A persona-focused introduction to the technical and artistic aspects of the Byzantine style of enameling. Will have finished item.,A persona-focused introduction to the technical and artistic aspects of the Byzantine style of enameling. Will have finished item. Maximum of six participants.,2.0,$8 to recover cost of enameling ,,,8.0,,1,2015-04-30 19:56:21 -0400
2649,A&S 6,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Lord Robert MacEwin of Thornhill,æthelmearc,3965,Spinning for Kids,Pennsic University,Multiple Cultures,,false,"Kids! Learn how to turn wool into yarn! The instructor, a teen who's a lifelong Scadian, will teach kids to spin using a drop spindle.","Kids! Learn how to turn wool into yarn! The instructor, a teen who's a lifelong Scadian, will teach kids to spin using a drop spindle. Spindles and wool will be provided. There is no fee for the class but if you wish to keep the spindle, there is a charge of $5.",1.0,$5 if students will to keep their spindles,,,,,1,2015-05-03 14:11:29 -0400
2181,A&S 7,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Lady Anna Dokeianina Syrakousina,east,3202,The Orient Express: Did Byzantines wear Persian?,Pennsic University,Middle Eastern,,false,Follow the Silk Road from the Far East into Byzantium where Steppe Streetwear became Constantinople Couture. ,"Did the Byzantines actually wear Persian garments? YES! Follow the Silk Road from the Far East into Byzantium where Steppe Streetwear became Constantinople Couture, where the caftan may have ruled the courts more than we think.",1.0,"",,25,,,1,2015-03-14 21:25:21 -0400
2249,A&S 8,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Lady Benedicta of Cynnabar,middle,3294,Basic Hand Sewing,Pennsic University,"",,false,"Learn period methods of seaming and hemming, fabric traits, and how to reduce thread wear and tangling. Fabric, thread, needles supplied.","Learn period methods of seaming and hemming, fabric traits, and how to reduce thread wear and tangling. Fabric, thread, and needles will be supplied. Please bring scissors if you have them. This course is appropriate for adults, and for children the parents consider old enough to handle the needles safely. For children under 10, it would be helpful to have the parent present.",1.0,"5 pages @ .10 page
materials include fabric, needles, and thread",0.5,15,2.5,15,2,2015-03-25 17:38:30 -0400
2630,A&S 9,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Lady Maeve Ronan,æthelmearc,3876,Filking: Fun With Words,Performing Arts and Music,"",,false,"A little history, a little fun, and a little filking all in the same class.","A little history, a little fun, and a little filking all in the same class.",1.0,0,,15,,,1,2015-05-03 21:30:44 -0400
2584,A&S 12,2015-08-01 10:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Catalina Doro,east,3809,Garbing the Full-Sized Goddess,Pennsic University,European,,false,Historic fashions that favored women who weren't 'missing no meals' and instructions on how to create flattering garb for the larger lady. ,"In current fashion, we all know that thin is in. However, that wasn't always the case. This class will look at various historic periods when the ideal of beauty was ladies who weren't 'missing no meals'. The second half of the class will be instruction on how to create flattering garb for the larger lady.",2.0,"",,50,,,2,2015-04-25 20:15:40 -0400
2822,Games Tent,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,THL Louis Xavier de Navarre,middle,4118,Introduction to *Shogi*,Games,Far Eastern,,false,"We'll go over the basic rules of *Shogi* or ""Japanese Chess"", and describe a few historic variants.","We'll go over the basic rules of *Shogi* or ""Japanese Chess"", and describe a few historic variants.
",1.0,"",,,,,1,2015-05-07 18:38:13 -0400
2577,Good Friends Camp (N-01),2015-08-01 10:00:00 -0400,2015-08-01 17:00:00 -0400,THL Roana Aldinoch,middle,3795,Romanesque Leather-Bound Book,Pennsic University,European,,true,"You will create a beautiful, leather-bound 11th-13th-century blank book in one day.","A beginning-to-end class that will have you bringing home a beautiful, leather-bound 11th-13th-century blank book.
Part 1: Preparing the paper folios and oak boards. (Bring a bone folder, X-Acto knife, awl, ruler, and cutting mat.)
Part 2: Sewing book block and end-bands. (Bring leather-sewing needles.)
Part 3: Putting it all together and binding it with leather. (Bring scissors appropriate for thin leather.)",7.0,Oak boards - $5; Paper - $2; Linen thread - $1; Leather - $15; Glue: $2,1.0,10,25.0,6,1,2015-04-25 20:24:45 -0400
2481,Minerva's Spindle (158),2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3669,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
2332,Performing Arts Rehearsal Tent,2015-08-01 10:00:00 -0400,2015-08-01 12:00:00 -0400,Pennsic Performing Arts,"",3403,Pennsic Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Choir welcomes all interested singers! Songs in honor of the 500th anniversary of the Coronation of François I of France.,"The Pennsic Choir welcomes all interested singers! This year's concert features songs of the early to mid-16th century in honor of the 500th anniversary of the Coronation of François I of France. Singing in the Pennsic Choir is an intense and rewarding experience. We rehearse two hours each day for a week, then perform a concert on Thursday evening of War Week. The ability to read music and sight-sing is helpful, but not required if you learn the music in advance. Sheet music and audio tracks are available online now at https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsicxliiichoirs",2.0,"",,,,,7,2015-05-06 01:31:11 -0400
3217,Performing Arts Tent,2015-08-01 10:00:00 -0400,2015-08-01 11:00:00 -0400,THL Lorelei Skye,middle,4652,Bardic Circles as Theater in the Round,Performing Arts and Music,"",,false,"Rule 1: Don't fall in the fire! Performance techniques for bardic circles: how the audience sees you, how you see performers, working in the space.","Rule 1: Don't fall in the fire! Performance techniques for bardic circles: how the audience sees you, and how you see the performers. Class includes working with the space, using lyrics in low-light situations, performing sitting or standing, and more! Come to the 'Practice Safe Bardic Safe Practice' Circle, 2 pm at Runestone Park, apply your new knowledge and skills!",1.0,"",,,,,1,2015-06-27 22:38:49 -0400
2913,Pine Box Traders (192),2015-08-01 10:00:00 -0400,2015-08-01 11:30:00 -0400,THL Egill the Loomwright,calontir,4261,Card-Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and, using cards, you will weave a trim strip.","Warp a loom and weave a small strap or trim piece. Using the continuous warping method, you will warp the loom and weave a trim strip. Classroom loaner looms available or bring your own. Fee covers string and cards; take your work home with you.",1.5,cards & string,,,5.0,,6,2015-05-01 09:00:42 -0400
2399,University Point,2015-08-01 10:00:00 -0400,2015-08-01 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3523,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2108,Middle Eastern Tent,2015-08-01 10:30:00 -0400,2015-08-01 12:00:00 -0400,Ziggy,atlantia,3093,Beginning Drumming,Middle Eastern,Middle Eastern,,false,The basic rhythms used most often in drum circles and music within the SCA. A 4-part class that teaches different rhythms each day. BYO drum.,"Learn the basic rhythms used most often in drum circles and music within the SCA. This is a 4-part class that teaches different rhythms each day. BYO Drum.
Day 1- *Saidi, Beladi, Maqsum*
Day 2- *Chiftitelli, Masmoudi*
Day 3- *Ayub, Malfouf*
Day 4- *Kashlimah* and other strange stuff
",1.5,"",,,,,4,2015-05-01 13:03:04 -0400
2142,Æthelmearc 1,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,THL Zofia Kowalewska,æthelmearc,3139,Calligraphy 101,Æthelmearc Scribal,Multiple Cultures,,false,For teens through adult. We'll discuss the basics of calligraphy in the Scribal Arts. Some basic hands will be discussed with time to practice. ,For teens through adult. We'll discuss the basics of calligraphy in the Scribal Arts. Some basic hands will be discussed with time to try your hand at a hand. No experience is necessary. ,1.0,"",,,,,2,2015-04-30 19:43:29 -0400
2994,Æthelmearc 2,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Daniela Schwartzhaupt,atlantia,4343,Creating Armigerous Scrolls Without Tears,Æthelmearc Scribal,Multiple Cultures,,false,Need to do an armigious scroll? How not to go crazy adding devices to scrolls and all of the many awards the recipient may have or is receiving.,"Need to do an armigious scroll? How not to go crazy adding devices to scrolls and all of the many awards the recipient may have or is receiving. Learn why there are extra elements to heraldry, who gets what on their scrolls, what those elements are, when they are used, where to place them, and how to incorporate awards without overwhelming an illumination",1.0,photocopy fees,2.0,,,,1,2015-05-28 15:56:47 -0400
2313,Amphitheater,2015-08-01 11:00:00 -0400,2015-08-01 13:00:00 -0400,Pennsic Performing Arts,"",3364,Rehearsal (Closed): Pennsic *Commedia* All Stars,Performing Arts and Music,"",,false,Space in use.,Space in use.,2.0,"",,,,,6,2015-04-26 20:15:34 -0400
2595,A&S 1,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Elena Hylton,east,3815,Ghirlandaio Girl: Intro to 1480's Florentine Dress,Pennsic University,European,,false,Learn the basics of making women's 1480's Florentine fashion as seen in the paintings of Ghirlandaio: current research and how to make an outfit.,"Learn the basics (and more) of making women's 1480's Florentine fashion as seen in the paintings of Ghirlandaio. This class will cover an introduction to existing research on Florentine fashion (books, paintings, and statues mostly), followed by guides for various ways to start creating your own 1480's Italian garb. No sewing in class, lecture only. All levels welcome.",1.0,Handout fee $3 for printing costs,3.0,30,,,1,2015-04-25 20:16:06 -0400
2558,A&S 3,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Mistress Elizabeth of Dendermonde,west,3836,Pennsic Without a Cooler,Pennsic University,Multiple Cultures,,false,How to feed yourself period food at long camping events without the use of a cooler.,"",1.0,"",,50,,,1,2015-04-25 20:21:51 -0400
2683,A&S 6,2015-08-01 11:00:00 -0400,2015-08-01 13:00:00 -0400,THL Ambros Kyrielle,æthelmearc,3982,Labyrinths for a Younger Audience,Pennsic University,Multiple Cultures,,false,"Young ones run the chalk 'mazes' endlessly. Now they can make their own. Light on documentation, heavy on stories plus drawing. All ages welcome.","You see young ones run the chalk 'mazes' endlessly. Now they can make their own. Light on documentation, heavy on stories plus drawing. All ages welcome. Feel free to bring your own extra paper and coloring supplies. The two-hour window allows small ones to come and go as needed. ",2.0,"",,,,,1,2015-04-30 20:06:55 -0400
2193,A&S 7,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Elysabeth Underhill,east,3219,Recreating Historic Beads as a Beginner,Glass,"",,false,Creating historically accurate glass beads is not as hard as you might think. You can make period beads at any skill level! (Lecture/Discussion),"Creating historically accurate glass beads is not as hard as you might think. You can make period beads at any skill level! Resources and strategies will be shared with attendees in this lecture/discussion class to help get you on the path to making beads that you can enter in A&S displays and competitions. We will discuss good starting points and first projects. The instructor will use her knowledge of Anglo-Saxon glass beads as an example, and share research and projects that others are invited to use and make their own.
This class is appropriate for beginning bead makers and intermediate bead makers who have not done much research into period beads or entered their beads into A&S competitions before. Experienced bead makers are invited to attend to discuss their own first projects and to share additional resources and strategies.",1.0,"",,,,,1,2015-03-08 13:42:01 -0400
2234,A&S 8,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Anna Dokeianina Syrakousina,east,3268,"Deconstructing the Met's ""Tunic Under the Stairs""",Pennsic University,Middle Eastern,,false,This class will pattern the tunic and talk about the Persian-influenced 7th-century Byzantine tunic at the Metropolitan Museum of Art. ,Under the grand staircase at the Metropolitan Museum of Art is the often overlooked Byzantine collection. Nestled beneath the steps is a well-preserved tunic from the early Byzantine period with elements of Persian and Coptic origin. This class will pattern the tunic and talk about the contents from an observer's point of view. Handouts will be provided.,1.0,"",,25,,,1,2015-03-14 21:12:06 -0400
2776,A&S 9,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,THL Lucia Elena Braganza,middle,4022,Bardic Circles 101,Performing Arts and Music,"",,false,"Entertainment for the people, by the people! Find out what a bardic circle is, etiquette, where to find material, and how to participate. ","Entertainment for the people, by the people! Find out what a bardic circle is, etiquette, where to find material, and how to participate. We won't actually be performing, but we will play a game to give you an idea of how they work. Conveniently, there's the Least Intimidating Bardic Circle at 2 pm at the Runestone, so you can put your new knowledge and skills to use!",1.0,"",,15,,,1,2015-04-30 19:46:28 -0400
3170,A&S 10,2015-08-01 11:00:00 -0400,2015-08-01 13:00:00 -0400,Lady Marieta Charay,east,4585,Intro to Free Embroidery ,Pennsic University,European,,false,"Hands-on kit class. Learn to sew outlines, filling techniques and decorative stitches. No experience whatsoever required! ","This is an introduction to decorative embroidery done in the ""free embroidery style"" (which means not counted work). Each student will get a piece of fabric with a design printed on it, floss, a needle and a hoop. If you have scissors or your own hoop (4-6""), please bring them. If you need reading glasses, please also bring those. Stitches covered include back stitch, chain stitch, reverse chain, split stitch, satin stitch, fly stitch, lazy daisy and, if we are feeling adventurous, french knots. No experience whatsoever required! ",2.0,"Kit includes: fabric, floss, needle, and wooden hoop.",,20,3.0,20,2,2015-05-27 22:38:25 -0400
2812,A&S 11,2015-08-01 11:00:00 -0400,2015-08-01 13:00:00 -0400,Baroness Betha Symonds,æthelmearc,4104,Beginning Wire Weaving,Pennsic University,"",,false,"Students will learn to make intricate chains in the manner of the Vikings and other cultures, without need for heat or complicated tools.","This class will teach beginning students to make intricate chains in the manner of the Vikings and other ancient cultures, without the need for heat or complicated tools. With the techniques presented, you will learn to create items like the ones found in Viking burials and treasure hoards across the Nordic countries dating from the 9th century to the late 12th century.
Wire chains made in this fashion have also been discovered in the British Isles (875 AD) and in the Roman, Greek and Byzantine civilizations from the 4th century BC to the 1st century AD. Timeless items can be created that are still beautiful and wearable today.
If you have needle-nose pliers and wire cutters, please bring them. If you need glasses for close or small work, please bring them. The fee for the class includes the materials needed to complete the leather cord necklace. To view this unique jewelry, please visit www.AncientWire.com/book.htm.",2.0,"wire, pencil, tape, leather",1.0,,2.0,10,4,2015-04-30 20:45:12 -0400
2873,Battlefield,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lord Jayme Hume of Berwyk,east,4181,"Longball, a Precursor to Baseball",Pennsic University,European,,false,"Stick and ball games are found in many medieval illuminations, and longball may have been one of them. Join us as we explain and play the game. ","Stick and ball games are found in many medieval illuminations, and longball may have been one of them. Join us as we explain and play the game. Wonderful game for adults and kids. Kids welcome, with a parent or guardian.",1.0,"",,20,,,1,2015-05-01 19:23:58 -0400
2574,Dance Tent,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lord Dunstan Bramblette,middle,3785,Joy and Jealousy,European Dance,European,,false,"We'll run through two Italian pieces, *Bizzaria D'Amore* and *Contrapasso En Due*.","We'll run through two Italian pieces, *Bizzaria D'Amore* and *Contrapasso En Due*.",1.0,"",,,,,1,2015-05-07 11:52:43 -0400
2627,Performing Arts Tent,2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Pennsic Performing Arts,"",3873,Rehearsal (Closed): *Psallite* Dress Rehearsal,Performing Arts and Music,"",,false,Rehearsal (closed): *Psallite* dress rehearsal; space in use,Rehearsal (closed): *Psallite* dress rehearsal; space in use,1.0,"",,,,,1,2015-04-30 20:39:32 -0400
2422,Serenity Studio (208),2015-08-01 11:00:00 -0400,2015-08-01 12:00:00 -0400,Lady Christina Von Tannenbaum,middle,3577,Intro to 6-on-2 Chainmail,Pennsic University,Multiple Cultures,,false,This type of chainmail was prevalent in period across multiple cultures. All materials provided but bring two pairs of pliers. ,Intro class for 6-on-2 chainmail prevalent throughout period across multiple cultures. All materials necessary to complete class project provided but bring two pairs of standard box nose pliers if you have them. Tools are available for those who don't have them on a first-come first-served basis.,1.0,"Sufficient hand-turned & cut aluminum rings, 12ga 5/8 in diameter, to complete class project.",,,10.0,8,9,2015-04-13 23:23:33 -0400
2469,Æthelmearc Royal - Food Lab (N04),2015-08-01 12:00:00 -0400,2015-08-01 15:00:00 -0400,Lord Mykeal Halfdan,meridies,3663,Building a Bread Oven,Cooking Lab,Multiple Cultures,,false,Hands-on construction of a cob-style bread oven.,This hands-on class will cover the planning and building of a cob oven for camp use in baking bread. This will be a multi-day class of at least three days.,3.0,"",,,,,3,2015-05-03 21:30:14 -0400
2462,A&S 2,2015-08-01 12:00:00 -0400,2015-08-01 14:00:00 -0400,Lady Beatrice Domenici dellaCampana,northshield,3625,Conflict Checking with the Complex Search,Heraldry,"",,false,"For heralds who already know the basics of conflict checking, this class will use the Complex Search to more quickly find potential conflicts.","",2.0,"",,,,,1,2015-04-26 22:21:47 -0400
2806,A&S 3,2015-08-01 12:00:00 -0400,2015-08-01 14:00:00 -0400,Mistress Eithni ingen Talorgain,northshield,4100,Adventures in Authenticity!,Pennsic University,"",,false,Developing an authentic kit is a journey. Interested in traveling this road? Learn about some strategies and resources to guide your way!,"Developing an authentic persona and kit can be a long journey, full of twists and turns and interesting adventures. If you are interested in traveling the road toward authenticity, come learn about some strategies and resources to guide you on your way!",2.0,Photocopying,1.0,20,,,1,2015-04-30 19:43:52 -0400
3038,A&S 4,2015-08-01 12:00:00 -0400,2015-08-01 13:30:00 -0400,Mistress Marsi of Hadley,æthelmearc,4431,Viking Hiking,Pennsic University,European,,false,Hike like a Viking: a discussion of our own experimental archaeology using the equipment and technology available to Norse culture areas. ,Hike like a Viking: a discussion of our own experimental archaeology using the equipment and technology available to Norse culture areas. We experiment by using the equipment and technology available to Norse cultures in the Viking Age. Our current primary area of exploration is in overland travel (i.e. hiking). ,1.5,"",,,,,2,2015-05-04 07:46:03 -0400
2183,A&S 7,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,THL Edward fitzRanaul,middle,3206,Seasons and Cycles of Medieval Life,Pennsic University,European,,false,"Examines the cycles which drove the medieval world: the seasons, the agricultural year, the church year, to show the broad outline of medieval life. ","Seasons and Cycles of Medieval Life, or ""The Rhythm Method"", examines the cycles which drove medieval life: the seasons, the agricultural year, the church year, light and dark, to show the broad outline of life in the medieval world.",1.0,"",,,,,1,2015-03-03 09:55:12 -0500
2261,A&S 8,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,Master Michael Graham,east,3307,History of Gunpowder and Gunpowder Weapons,Pennsic University,Multiple Cultures,,false,The instructor will document the origins and history of gunpowder and gunpowder weapons from their earliest use to ca. 1600 CE.,"",1.0,"",,,,,1,2015-03-25 18:48:39 -0400
2930,A&S 9,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,THL Emer ingen ui Aidan,ealdormere,4232,"""If You Build It..."" Creating Bardic Spaces",Performing Arts and Music,"",,false,"A successful venue for Bardic Arts--hall, classroom, circle, or court--can be planned and created to support both performers and audiences.","Hall or classroom, fire-circle or court, a successful venue for Bardic Arts can be created with a little careful pre-planning and an eye toward logistics. Learn and discuss the best ways to support both performers and audiences by crafting better bardic spaces.",1.0,"",,,,,1,2015-05-02 01:31:53 -0400
3194,A&S 12,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,Erik the Swede,"",4620,Know Your Knots!,Pennsic University,"",,false,"Learn five of the most common and useful knots to use around camp, at home, or anywhere else. Materials provided for up to 20.","Join this session to learn five of the most common and useful knots to use around camp, at home, or anywhere else. Materials provided for up to 20.",1.0,"",,20,,20,1,2015-06-15 10:54:51 -0400
2458,A&S 15,2015-08-01 12:00:00 -0400,2015-08-01 16:00:00 -0400,THL Desiderata Drake,æthelmearc,3684,Newcomers' Tent,Pennsic University,"",,false,"So, you're new to the SCA? What do you do? Where do you go? Stop in here at the Newcomers' Tent! We have answers and are here to help! ","So, you're new to the SCA? What do you do? Where do you go? Stop in here at the Newcomers' Tent! We have answers and are here to help! Come meet with newcomer guides from around the Knowne World and learn about the endless possibilities.",4.0,"",,,,,4,2015-04-23 17:03:09 -0400
3108,Dance Tent,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,THL Darius the Dancer,ealdormere,4492,Deconstructing Bransles,European Dance,European,,false,"Experimental class. This class will alter bransle structures, as a training exercise, and may culminate in choreographing a new bransle.","Experimental class. After going back through all of the bransles, I really wanted to look at them from a piece-wise perspective, and at the musical cues in each. This class will alter bransle structures, as a training exercise, and may culminate in choreographing a new bransle.",1.0,"",,,,,1,2015-05-07 20:46:10 -0400
2246,Livonia Smithery (170),2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,Lord T W,æthelmearc,3450,Beginning *Repoussé* and Chasing,Pennsic University,"",,true,Hands-on class; will make a copper foil rose.,Hands-on class; will make a copper foil rose.,1.0,Hand out,5.0,12,,,8,2015-04-08 17:58:40 -0400
2239,Performing Arts Rehearsal Tent,2015-08-01 12:00:00 -0400,2015-08-01 13:00:00 -0400,Lord Tempus Peregrinator,ealdormere,3283,Nap/Story Time with Tempus,Performing Arts and Music,"",,false,"This is an hour with Tempus. Good time to have a nap while he rambles on about anything. Adventure, excitement and really wild things...","This is an hour with Tempus. Good time to have a nap while he rambles on about anything. Adventure, excitement and really wild things... Maybe some hand-kissing and stories of travel, might do some science, or hear about his cabins. Or it may just be a good time for an afternoon nap.",1.0,"",,,,,1,2015-04-28 22:25:02 -0400
2213,Performing Arts Tent,2015-08-01 12:00:00 -0400,2015-08-01 14:00:00 -0400,Pennsic Performing Arts,"",3245,Rehearsal (Closed-PAT): *i Verdi Confusi*,Performing Arts and Music,"",,false,Space in use.,Space in use.,2.0,"",,,,,1,2015-03-26 22:44:23 -0400
3111,Red List,2015-08-01 12:00:00 -0400,2015-08-01 15:00:00 -0400,Count Ruslan Novgorodcev,east,4498,Greybeard Heavy Weapons Tourney,Martial Activities,"",,true,A tourney for heavy weapons fighters of either gender who are 50 years old or older.,A tourney for heavy weapons fighters of either gender who are 50 years old or older. The tourney shall either be a double elimination or a round robin depending on how many fighters take the field for this tourney that day. Beards grey or otherwise are optional (wink)!,3.0,"",,,,,1,2015-05-07 20:47:02 -0400
2688,Southwind,2015-08-01 12:00:00 -0400,2015-08-01 14:00:00 -0400,Master Ruaidhri an Cu,atlantia,3923,Writing Period-Style Ballads,Performing Arts and Music,European,,false,Students will learn about the elements of the period ballad and then write their own period-style ballad.,"Students will learn about the elements of the period ballad and then write their own period-style ballad. The class comprises three formal sessions. During the first session students will be taught how to recognize and employ the elements of period ballads. The second session will be a working session during which the students will be able to get assistance and advice in writing their ballads. In the final session, students will finish and present their ballads.",2.0,"",,,,,1,2015-05-04 16:11:47 -0400
2747,The Little Dragon's Hoard (Plunder Lane),2015-08-01 12:00:00 -0400,2015-08-01 14:00:00 -0400,Lord Drogo Rabenwald,æthelmearc,4034,A Blacksmith's Double Chamber Bellows,Pennsic University,European,,false,"A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. ","A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. Will also have descriptions of how the skin is attached and pattern-making of the whole process.",2.0,"",,,,,5,2015-04-30 19:43:29 -0400
2670,Middle Eastern Tent,2015-08-01 12:30:00 -0400,2015-08-01 14:00:00 -0400,Master Phillip the Pilgrim,middle,3922,*Bodhran* 101,Middle Eastern,Other,,false,Introduction to playing the Irish frame drum. No experience necessary. Please bring your drum.,"",1.5,"",,,,,1,2015-05-04 20:10:02 -0400
2204,Æthelmearc 1,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Baroness Estelle de la Mer,middle,3234,Script Analysis,Æthelmearc Scribal,"",,false,Toss away your modern calligraphy book! Learn how to analyze a script directly from your source and recreate it on your own page.,"",1.0,"",,,,,2,2015-04-30 20:11:08 -0400
2233,A&S 1,2015-08-01 13:00:00 -0400,2015-08-01 15:00:00 -0400,Lady Mirabella Walmesley of Grimsby,atlantia,3265,Beginning Bobbin Lace,Pennsic University,European,,false,"A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. Please attend all sessions.","A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. We will start (and hopefully finish!?!) a bookmark. Please plan to attend all 3 sessions. Material fee will include a lace making pillow, bobbins, pins, thread, and pattern.",2.0,"bobbin lace pillow, bobbins, thread, pins, pattern",,,35.0,5,3,2015-03-14 14:13:45 -0400
3212,A&S 5,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Lord Magnus hvalmagi,east,4650,A Sixth-Century Hopped Mead,Pennsic University,European,,true,An evidence-based reconstruction of a hopped mead from a 6th-century CE German grave find. Come learn about an early hopped mead!,"The Trosingen grave find contained numerous interesting artifacts, among them a bottle made of maple that contained the residue of what is believed to be a beer. I'll go over the find and delve into the specifics, then take you through my reconstruction. If you're interested in learning how to engage in period brewing without an explicit recipe, this is the class for you! ",1.0,"",,20,,,1,2015-06-24 19:58:20 -0400
3012,A&S 6,2015-08-01 13:00:00 -0400,2015-08-01 14:30:00 -0400,THL Wu Yun,meridies,4375,*Xia*: The Chinese Knight-Errant,Pennsic University,Far Eastern,,false,An examination of the history and motivations of Chinese *youxia*. ,"Join us for a discussion of how chivalry was practiced in China in the Middle Ages. This class will cover how *Xia* is different from Western chivalry, how it is the same, and ways to incorporate these into your persona.",1.5,"",,,,,1,2015-05-03 14:16:32 -0400
2281,A&S 7,2015-08-01 13:00:00 -0400,2015-08-01 15:00:00 -0400,Mistress Othindisa Bykona,æthelmearc,3327,Skep Beehive Making,Pennsic University,European,,false,Learn how to make a skep using pipe cleaners! The small scale model will allow the time to show the process from start to finish.,The skep is the coiled straw style of medieval beehive. Learn how to make one with pipe cleaners! Techniques will be demonstrated using pipe cleaners. Handout will give instructions on how to use straw to create a full scale replica.,2.0,Pipe cleaners and tools to keep,1.0,20,5.0,10,1,2015-03-25 21:00:22 -0400
2564,A&S 9,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Mistress Elizabeth of Dendermonde,west,3793,Late Period Rounds,Performing Arts and Music,European,,false,Come help sing through (or listen to) some late period rounds.,"",1.0,"",,,,,1,2015-04-25 20:20:34 -0400
2523,A&S 10,2015-08-01 13:00:00 -0400,2015-08-01 15:00:00 -0400,THL Sæhildr barngóðr,middle,3758,"Burn the Coloring Pages, Toss Out the Foam Crowns!",Pennsic University,"",,true,"Fun, hands-on youth activity ideas. This is an **adult class** on how to run activities.","Fun, hands-on activity ideas for running a youth point that shares knowledge about medieval life and/or life in our Society. If there is time, we will also cover ""How to Run 'It Takes My Child to Raze a Village'"". There is an optional $5 fee if you want to actually make and take samples. My book will be available for an as-yet-to-be-determined fee. (Have to calculate printing and binding costs for this year.) ",2.0,"Not required, but if you want to make and take samples, you can pay the fee.",,,5.0,15,2,2015-05-10 15:43:00 -0400
2833,Battlefield,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Mistress Sabine de Kerbriant,east,4130,Introduction to Crumhorns,Performing Arts and Music,European,,false,"Get started on this distinctively buzzy-sounding, capped double-reed instrument. Bring instruments if you have them (not required).","Curious about those weird buzzy instruments? Bring yours along if you have one or try out the instructor's, and we'll talk about playing techniques, instrument and sheet music sources, using crumhorns in performance, and other tips and tricks.",1.0,"",,,,,1,2015-05-03 18:23:47 -0400
2642,Dance Tent,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Gregory Blount,west,3890,Longways for as Many... Whut?,European Dance,European,,false,"First, we'll reconstruct Playford's actual Trenchmore, then we'll dance the *sciolta* of *Chiaranzana* - twins separated at birth? You be the judge.
","First, we'll reconstruct Playford's actual *Trenchmore*, then we'll dance the *sciolta* of *Chiaranzana* -- twins separated at birth? You be the judge.",1.0,"",,,,,1,2015-05-07 11:53:50 -0400
2362,Fort,2015-08-01 13:00:00 -0400,2015-08-01 16:00:00 -0400,Lord Benjamin Black,east,3480,Kamikaze Battle,Martial Activities,"",,false,"Three-hour unlimited resurrection battle. No War points, no prizes, just fighting.","Three-hour unlimited resurrection battle. No War points, no prizes, just fighting.",3.0,"",,,,,1,2015-04-18 14:15:01 -0400
2665,Games Tent,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Lord István Nyiregyhazi,east,3908,Morris Games,Games,Multiple Cultures,,false,We will teach Nine Man's Morris and other games of that family (which include the modern tic tac toe).,We will teach Nine Man's Morris and other games of that family (which include the modern tic tac toe).,1.0,"",,,,,2,2015-05-07 18:28:38 -0400
2265,Performing Arts Rehearsal Tent,2015-08-01 13:00:00 -0400,2015-08-01 14:00:00 -0400,Lady Ursula Mortimer,middle,3280,Fundamentals of Voice Production,Performing Arts and Music,"",,false,"Learn the basics of vocal technique. This is an active, participatory class for those who have never had a voice lesson. ","Learn the basics of vocal technique. This is an active, participatory class for those who have never had a voice lesson. Those who can stand comfortably will be asked to do so for much of the class, but all the activities can be adapted to a seated position.",1.0,"",,,,,2,2015-04-28 22:10:14 -0400
2245,Livonia Smithery (170),2015-08-01 13:30:00 -0400,2015-08-01 14:30:00 -0400,Lord T W,æthelmearc,3443,Beginning Engraving,Pennsic University,"",,true,"Hands-on class. Intro to tools, first cuts, graver control, hammer use.","Hands-on class. Intro to tools, first cuts, graver control. Student will learn both hand-held and hammer-struck engraving.",1.0,printed handout,5.0,12,,,8,2015-04-08 17:56:19 -0400
2282,Æthelmearc 1,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Baroness Ekaterina Volkova,æthelmearc,3276,How to Draw Manuscript Flora,Æthelmearc Scribal,European,,false,"If you passed kindergarten art class, you can draw a 14th-century French scroll.","If you passed kindergarten art class, you can draw a 14th-century French scroll. This class will break down the elements and have you leaving confident and ready to illuminate.",1.0,cost of color copies,2.0,10,,,3,2015-04-30 19:59:55 -0400
2825,A&S 2,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Lord Yehuda ben Moshe,east,4120,Book Heraldry 100,Heraldry,"",,false,"An introductory class for book heralds, covering topics such as the organization of the SCA heralds, becoming a herald, and the submission process.","An introductory class for book heralds, covering administrative matters and general principles, including the organization of the SCA heralds, becoming a herald, the submission process, and related topics.
",1.0,"",,,,,1,2015-05-03 16:25:11 -0400
2560,A&S 3,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Master Cariadoc,west,3837,Cooking from Period Sources,Pennsic University,Multiple Cultures,,false,How to start with a recipe that was written in period and end up with a dish that is consistent with that recipe and tastes good.,"How to start with a recipe that was written in period and end up with a dish that is consistent with that recipe and tastes good. Also, a discussion of available sources for recipes.",1.0,"",,40,,,1,2015-04-25 20:14:00 -0400
3040,A&S 4,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Sir Stefan Ulfkelsson,æthelmearc,4433,10th-Century Wilderness Survival,Pennsic University,European,,false,Covers basic items necessary to survive in most environments. Emphasis will be placed upon Norse and Norse-related cultures around the 10th century.,Covers basic items necessary to survive in most environments. Emphasis will be placed upon Norse and Norse-related cultures around the 10th century. The 10 areas of equipment with their Norse versions will be shown and discussed. This is an expansion of the experimental archaeology of the Viking Hiking class.,1.0,"",,20,,,2,2015-05-04 07:53:13 -0400
2968,A&S 5,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Lady Fritha Eikbrandrsdottir,middle,4312,Norse Apron Dresses,Pennsic University,European,,false,Study of the various styles of apron dresses from Norse finds. Not a hands-on class. Discussion of style types and construction.,"",1.0,Hand out.,1.0,30,,,1,2015-05-01 19:31:53 -0400
2184,A&S 11,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,THL Edward fitzRanaul,middle,3207,Period Mustards,Pennsic University,European,,false,"There will be a tasting of various medieval mustards, and a hands-on demonstration on how to make a simple mustard.","A brief class on the theory and practice of making and using medieval mustards. There will be a tasting of various medieval mustards, and a hands-on demonstration on how to make a simple mustard.",1.0,"",,,,,1,2015-03-03 09:57:12 -0500
3033,Battlefield,2015-08-01 14:00:00 -0400,2015-08-01 16:00:00 -0400,Duchess Elina of Beckenham,middle,4411,Armored Rose: Lecture,Pennsic University,"",,false,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA; a ""must"" for those who are or teach or fight women.","Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical, physiological and psychological differences between men and women and how these impact fighting, plus how to make the most of them. Tendons, adrenaline, hormones and society all have an impact. See how they play a part in changing the fight.",2.0,"",,,,,3,2015-05-03 17:55:28 -0400
2640,Dance Tent,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,THL Henry of Maldon,æthelmearc,3885,Beginner Dance: Branles B,European Dance,European,,false,"Never danced before? No problem! Start with basic steps and patterns, and then learn fun branles from 16th-century France.","Never danced before? No problem! This class will start with basic steps and patterns, and then introduce you to fun branles from 16th-century France.",1.0,"",,,,,1,2015-05-04 16:00:14 -0400
2330,Performing Arts Rehearsal Tent,2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,Pennsic Performing Arts,"",3635,Pennsic Children's Choir: Open Rehearsal,Performing Arts and Music,"",,false,Pennsic Children's Choir is open to children up to age 11 who love to sing. We will be performing as part of the Thursday Known World Choirs Concert.,"The Pennsic Children's Choir is open to children up to age 11 who love to sing. We will be performing as part of the Known World Choirs Concert on Thursday evening of War Week. (Dress rehearsal Thursday afternoon, 8/7, in the PAT; details TBA during regular rehearsals.) More information can be found here: https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsic-children-s-choir",1.0,"",,,,,5,2015-04-16 19:07:44 -0400
2305,Performing Arts Tent,2015-08-01 14:00:00 -0400,2015-08-01 17:00:00 -0400,Pennsic Performing Arts,"",3355,PA Afternoon Series: European Music Exhibition,Performing Arts and Music,"",,false,"Come experience the history of composers and variety of music from the 11th-16th centuries. Bring your voices, instruments, and play along!","Come and enjoy an afternoon of European music. Experience the history of composers and a variety of instruments and vocal music from the 11th-16th centuries. Bring your voices, instruments, and play along!",3.0,"",,,,,1,2015-03-30 15:50:40 -0400
2918,Pine Box Traders (192),2015-08-01 14:00:00 -0400,2015-08-01 15:00:00 -0400,THL Egill the Loomwright,calontir,4269,Inkle Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and weave an inkle strip.","Using the continuous warping method, you will warp the loom and weave an inkle strip. Classroom loaner looms available or bring your own.",1.0,"weaving materials, string",,,3.0,,6,2015-05-01 19:18:33 -0400
2777,Rune Stone Park,2015-08-01 14:00:00 -0400,2015-08-01 17:00:00 -0400,THL Lucia Elena Braganza,middle,4023,Practice Safe Bardic Safe Practice,Performing Arts and Music,"",,false,"Bardic Safe Zone! For first timers, rusty returners, nervous performers, and all seeking to enjoy a low-key bardic circle as performer or audience.","(Formally known as ""The Peerless Bardic Circle - the Tradition Continues"") Bardic Safe Zone! Welcome, first timers, rusty returners, nervous performers, and all seeking to enjoy a un-intimidating, low-key bardic circle as performer or audience! We invite all those new and exploring the bardic arts: singers, songwriters, poets, storytellers of all levels including apprentices, journeymen; and also anyone who may want to come listen and enjoy the gathering in the shade of the park. No judging rubrics; a few Peers have been known to sneak in, in disguise. If you want to learn more about bardic circles and what they're all about, come to Lucia's ""Bardic Circles 101"" class in AS9, Saturday, 8/1, at 11 am.
Hosted by THL Lucia Elena Braganza at Runestone Park.",3.0,"",,,,,1,2015-05-07 20:48:39 -0400
2501,Middle Eastern Tent,2015-08-01 14:30:00 -0400,2015-08-01 16:30:00 -0400,Lord Maraha Kahanikar,middle,3708,Basic *Ka-Kha-Ga-Gha*,Middle Eastern,Other,,false,"Written forms, pronunciations, and usage of *Devanagari* script used by Hindi, Sanskrit and other Indic languages.","Written forms, pronunciations, and usage of *Devanagari* script used by Hindi and other North Indian languages. While the focus of this class is on Hindi usage, the characters and pronunciation are nearly identical for others. There will be examples in Hindi.
1st hour: Basic characters and pronunciation.
2nd hour: Vowels and half-letters; more if time and student interest allow.",2.0,"",,,,,2,2015-05-04 20:54:27 -0400
2088,Æthelmearc 2,2015-08-01 15:00:00 -0400,2015-08-01 19:00:00 -0400,Mistress Matilda Bosvyle,æthelmearc,4169,Scribal Playtime,Æthelmearc Scribal,"",,false,"Open space for scribes/artists to work on projects, ask questions or discuss their art. Some community-shared materials may be available for use.","The Æthelmearc Scribal College pavilion will be open for scribes to work on projects, ask questions of experienced scribes or discuss their art. One-on-one instruction may be available if space and resources allow. Some community-shared materials such as Paint-a-Blanks may be available.",4.0,"",,,,,4,2015-05-02 21:38:04 -0400
2372,A&S 1,2015-08-01 15:00:00 -0400,2015-08-01 17:00:00 -0400,Master Elias Gedney,east,3505,Eight Essential Knots for the SCA Camper,Pennsic University,Other,,false,Hands-on class on how to tie eight basic and important knots that can make your camping life easier and safer.,Hands-on class on how to tie eight basic and important knots that can make your camping life easier and safer.,2.0,"",,,,,1,2015-04-06 17:30:49 -0400
3201,A&S 2,2015-08-01 15:00:00 -0400,2015-08-01 17:00:00 -0400,Lord Ælfwine se Pyttel,middle,4634,BYOB Rapier Spear Construction ,Pennsic University,European,,false,"Learn how to build a rapier spear using your pre-existing rapier blade. Class size is not limited, but there will be a limit of 5 rapier spears built.","Learn how to build a rapier spear using your pre-existing rapier blade. Class size is not limited, but there will be a limit of 5 rapier spears built. If you wish to have a rapier spear built, please show up to the class with a rapier blade that is at least 36 inches or longer that has a metric 6 mm thread on the tang.
",2.0,"Poplar dowel rod $7.00
1.25 End Cap $9.00
M6 threaded insert $2.00
1/4-20 brass insert $2.00
1/4-20 grub screw $2.00
1.5 aluminum tubing $8.00
",,10,30.0,5,1,2015-06-28 07:36:01 -0400
2566,A&S 3,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Master Cariadoc,west,3838,Period Islamic Cooking,Pennsic University,Middle Eastern,,false,"A description of a wide range of recipes from period Islamic cookbooks, along with a discussion of the available sources.","A description of a wide range of recipes from period Islamic cookbooks, along with a discussion of the available sources.",1.0,"",,30,,,1,2015-04-25 20:22:42 -0400
3174,A&S 5,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Lady Ceindrech verch Elidir,æthelmearc,4594,Heels and Toes: Knit Stockings in Period,Pennsic University,Multiple Cultures,,false,Knit stockings do exist in period in Europe and the Middle East. We'll review examples and discuss some unique heel and toe shapings. Bring knitting!,"",1.0,color handouts,1.0,20,,,1,2015-06-06 07:56:10 -0400
2349,A&S 7,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Lady Alicia of Cambion,atlantia,3457,Introduction to Beginning Period Cookery,Pennsic University,"",,false,Want to cook in period but don’t know where to start? No problem! For beginners who want a quick intro to some basics of modern period cookery.,"Want to cook in period, but don’t know where to start? Your apartment doesn't have a handy open fireplace? No idea what an *eyroun* is or where to buy one? No problem! This class is designed for those beginners who have never cooked a period recipe before but want a quick introduction into some of the basics of modern period cookery.",1.0,"",,20,,,1,2015-04-06 15:20:44 -0400
2551,A&S 10,2015-08-01 15:00:00 -0400,2015-08-01 17:00:00 -0400,Baroness Kaleeb the Green Eyed,atlantia,3799,Cold Water Dyeing,Pennsic University,European,,true,A hands-on beginning dye class. Experiment with three period dyes and several mordants. Modern safety precautions will be followed.,"A hands-on beginning dye class, where we will experiment with three period dyes and several mordants. Madder and walnut will be two of the dyes used. We will go over fiber preparation, mordants and a little bit of history on the three dyes. I recommend wearing older clothing. ",2.0,Wool yarn for embroidery; dye and mordant; handout,2.0,12,10.0,12,1,2015-04-30 19:50:57 -0400
2185,A&S 11,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,THL Edward fitzRanaul,middle,3208,Some Simple Period Sauces,Pennsic University,European,,false,"There will be a tasting of various sauces, and a hands-on demonstration on how to make a simple sauce.","A brief class on the theory and practice of making and using medieval sauces, with particular emphasis on the vinegar- and breadcrumb-based sauces. There will be a tasting of various sauces, and a hands-on demonstration on how to make a simple sauce.",1.0,"",,,,,1,2015-03-03 09:58:26 -0500
3052,Dance Tent,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Duchess Thyra Eiriksdottir,east,4397,Beginner Dance: Pavan and Galliard,European Dance,European,,false,All beginner dancers welcome! Learn skills for improvised 16th-century Italians. (Jumping optional!),"All beginner dancers welcome! Learn how to walk (and jump!) with style and rhythm; then use these skills for improvised dances of the 16th century.
",1.0,"",,,,,1,2015-05-03 17:14:38 -0400
2658,Games Tent,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,THL Louis Xavier de Navarre,middle,3902,Introduction to *Go*,Games,Far Eastern,,false,A basic introduction to the Japanese game of *Go*.,A basic introduction to the Japanese game of *Go*.,1.0,"",,,,,2,2015-05-07 18:42:41 -0400
2517,General Archery,2015-08-01 15:00:00 -0400,2015-08-01 17:00:00 -0400,Master Godric of Hamtun,east,3748,Pennsic Archery Champions Practice/Tryouts,Archery,"",,false,All archers wishing to make the Pennsic Archery Champions Teams should attend these practices.,All archers wishing to be on the Pennsic Archery Champions Teams should attend these practices. See either the East Kingdom Captain General or the Midrealm Archer General for more details.,2.0,"",,,,,4,2015-04-26 18:20:16 -0400
2244,Livonia Smithery (170),2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Lord T W,æthelmearc,3437,Advanced *Repoussé* and Chasing ,Pennsic University,"",,true,"Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.","Intro to pitch block working and forming, plus tool and hammer use. Produce a copper letter amulet.",1.0,handout,5.0,12,,,4,2015-04-08 17:53:28 -0400
2180,Performing Arts Rehearsal Tent,2015-08-01 15:00:00 -0400,2015-08-01 16:00:00 -0400,Lady Brigette de Sainte Mere-Eglise,æthelmearc,3201,A Brief History of the Hammered Dulcimer,Performing Arts and Music,European,,false,An introduction to the dulcimer with a little hands-on activity if time allows.,A brief introduction to the hammered dulcimer from its origins to its final fade from grace in the eyes of the nobility. There will be hands-on activity if time allows.,1.0,"",,,,,2,2015-04-28 22:30:48 -0400
3134,Youth Combat List,2015-08-01 15:00:00 -0400,2015-08-01 17:00:00 -0400,Lord Sven,middle,4532,Afternoon Youth Combat,Youth Combat,"",,false,Afternoon Youth Combat,Afternoon Youth Combat,2.0,"",,,,,8,2015-05-13 19:59:52 -0400
3025,Æthelmearc 1,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,Mistress Alicia Langland,æthelmearc,4395,*Mira Calligraphiae Monumenta*: A Masterful Model ,Æthelmearc Scribal,European,,false,"An overview of this virtuoso model book of calligraphy, written in 1561-62 by one Renaissance master and illuminated 30 years later by another.","Calligraphers gush when describing this virtuoso model book of calligraphy, written in 1561-62 by one Renaissance master and illuminated 30 years later by another. Find out why it’s so amazing and what it offers SCA scribes. ",1.0,"Handout
",3.0,20,,,1,2015-05-03 14:04:40 -0400
2721,A&S 3,2015-08-01 16:00:00 -0400,2015-08-01 17:30:00 -0400,Lord Tatsukawa Sarumaru Chisato,middle,4006,Developing Your Japanese Persona,Pennsic University,Far Eastern,,false,Designed to take an individual through the process of building and fully developing any Japanese persona.,Designed to take an individual through the process of building and fully developing any Japanese persona. Focuses on thinking through back story to add realism to one's SCA identity. Good for newcomers and old hands alike.,1.5,"",,,,,1,2015-04-29 13:54:05 -0400
3136,A&S 6,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,THL Ceara Shionnach,lochac,4539,Spined Thread-Wrapped Buttons,Pennsic University,Multiple Cultures,,false,"Participants will make their own button, made of a wooden core and wrapped in thread.","Buttons made of a wooden core, wrapped in silk thread, have been identified in 16th-century clothing across a variety of regions, including Italy, England, Turkey and Persia. These buttons are seen in clothing of both sexes, and are evident on (though not exclusive to) sleeves, doublet fronts, overgowns and sweet bags. Attendees will be taught to make their own button with materials provided.",1.0,"",,,,,1,2015-05-20 20:43:46 -0400
2278,A&S 7,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,Lady Faye de Trees,atlantia,3322,Are You Wearing a Tablecloth? Greek Clothing!,Pennsic University,"",,false,"Learn how to create Greek garb easily, accurately, and with style! Meet Greek style, form, and ideals for the easiest garb ever!","We all deal with hot weather in the summer. Learn how to do so easily, accurately, and with style! We will cover basic Greek style, form, and ideals, then go into fabrics, colors, trims, and accessories to create a great classical and cool look.",1.0,"",,30,,,2,2015-03-25 20:40:10 -0400
2411,A&S 8,2015-08-01 16:00:00 -0400,2015-08-01 18:00:00 -0400,Lady Mariss Ghijs,atlantia,3555,Stitches from Altenburg,Pennsic University,European,,false,"*Opus Teutonicum* embroidery. Discussion, project using stitches found on extant textiles (*Altenburg an der Lahn* Convent). All skill levels welcome.","A brief overview of five extant textiles from *Altenburg an der Lahn* Convent. Looking at German linen on linen white work embroidery, its techniques and uses. Followed by a hands-on tutorial and take-home project using chain and interwoven herringbone stitches.",2.0,"kit with take home project - linen cloth, thread and needles for a project utilizing the stitches learned in class.
",,,7.0,10,2,2015-04-18 17:44:14 -0400
2262,A&S 11,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,Master Michael Graham,east,3308,Create Reproduction Artifacts from Wire,Pennsic University,Multiple Cultures,,false,"Demonstration of techniques using basic tools to create historic wire-based
clothing accessories: hook and eye, eyelet rings, pins.","Demonstration of techniques using basic tools to create historic wire-based
clothing accessories: hook and eye, eyelet rings, pins.",1.0,"",,,,,1,2015-04-10 18:53:02 -0400
2976,A&S 12,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,THL Philippa Montague,middle,4352,Designing and Building a Pavilion,Pennsic University,European,,false,"An overview of pavilion styles, followed by detailed discussions of design considerations for several different styles.","This class will present an overview of medieval and Renaissance tent and pavilion styles, based on what we see in period portraits and in a few surviving examples. The presenters will discuss their experience in building a variety of pavilions. After the class period, students are welcome to visit several pavilions on-site to continue discussion of design details and challenges.",1.0,"",,15,,,2,2015-05-01 18:49:18 -0400
3035,Blue List,2015-08-01 16:00:00 -0400,2015-08-01 17:30:00 -0400,Duchess Elina of Beckenham,middle,4406,Armored Rose: Field Class,Martial Activities,"",,false,On-the-field class teaching techniques from the Armored Rose lecture. Bring sword and shield. No armor needed. Covers stance and power generation.,"Based on the book, ""The Armored Rose"", by Duchess Elina of Beckenham, OL, OP, OR, KSCA. The class covers the physical differences between men and women and how these impact fighting, and how to make the most of them. Best taken in conjunction with the lecture course, this is a physical demonstration where students and teachers will try out the techniques covered in the lecture.",1.5,"",,,,,3,2015-05-04 16:40:35 -0400
2636,Dance Tent,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,THL Henry of Maldon,æthelmearc,3882,Easy ECD for All Experience Levels,European Dance,European,,false,"Not only a beginner class, this is for anyone who would like to learn more in depth. Includes *Gathering Peascods, Half Hannikin, Sellenger's Round.*","Not only a beginner class, this is for anyone who would like to learn English Country Dance as reconstructed directly from Playford, and not necessarily as done in current tradition. Includes *Gathering Peascods, Half Hannikin, Sellenger's Round.*",1.0,"",,,,,1,2015-05-07 11:44:47 -0400
3177,Green List,2015-08-01 16:00:00 -0400,2015-08-01 18:00:00 -0400,Sir Tarl,æthelmearc,4592,Tarl's Little Pole-Arm Tourney,Martial Activities,"",,false,"Welcome to the 10th anniversary of the Little Pole-Arm Tourney! Tourney is open to all authorized fighters, using Pennsic-legal pole-arms only.","Welcome to the Tarl's Little Pole-Arm Tourney, 10th Anniversary Edition! Hard to believe all the fun started a decade ago! The tourney is open to all authorized fighters of any skill level. Beginners and Old Hands alike are encouraged to come and celebrate the joy and fun that is The One True Weapons Form! Pole-arms must conform to Pennsic weapon standards. The tourney is fought in a bear-pit format with multiple lists to maximize the fun. There will be two 45-minute sessions, with a small break in between. So grab a pole-arm or three and fight for Honor and Fun!",2.0,"",,,,,2,2015-06-10 04:36:12 -0400
2331,Performing Arts Rehearsal Tent,2015-08-01 16:00:00 -0400,2015-08-01 17:00:00 -0400,Pennsic Performing Arts,"",3634,Pennsic Youth Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Youth Choir is open to ages 12 - 18 to learn period vocal music and performing as part of the Known World Choirs Concert.,"The Pennsic Youth Choir Choir is open to youth ages 12 - 18 who enjoy learning and singing period vocal music *a cappella*. We will be performing as part of the Known World Choirs Concert on Thursday evening of War Week. (Dress rehearsal Thursday afternoon, 8/7, in the PAT; details TBA during regular rehearsals.) More information can be found here: https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsic-youth-choir",1.0,"",,,,,5,2015-04-16 19:06:27 -0400
3177,Red List,2015-08-01 16:00:00 -0400,2015-08-01 18:00:00 -0400,Sir Tarl,æthelmearc,4600,Tarl's Little Pole-Arm Tourney,Martial Activities,"",,false,"Welcome to the 10th anniversary of the Little Pole-Arm Tourney! Tourney is open to all authorized fighters, using Pennsic-legal pole-arms only.","Welcome to the Tarl's Little Pole-Arm Tourney, 10th Anniversary Edition! Hard to believe all the fun started a decade ago! The tourney is open to all authorized fighters of any skill level. Beginners and Old Hands alike are encouraged to come and celebrate the joy and fun that is The One True Weapons Form! Pole-arms must conform to Pennsic weapon standards. The tourney is fought in a bear-pit format with multiple lists to maximize the fun. There will be two 45-minute sessions, with a small break in between. So grab a pole-arm or three and fight for Honor and Fun!",2.0,"",,,,,2,2015-06-10 04:36:12 -0400
3135,Spekulian (W10),2015-08-01 16:00:00 -0400,2015-08-01 17:30:00 -0400,Lady Sinn Larensdotter,atlantia,4538,Pennsic Party University,Pennsic University,Other,,true,"Here several seasoned instructors wish to make sure you have the best bog and swamp party etiquette around. We want you safe, happy and respectful! ","This class is to attempt to show newcomers (to Pennsic, or the bog/swamp) how to deal with nightlife in the louder parts of Pennsic. We call this a primer for the lake after dark. We'll cover various topics, including Open Bar Etiquette; Visiting Other Camps; Tipping; Romance, Courting, and Your Significant Other; Chaperoning; Party Safety; **Hydrate**!; Love Your Feet; and How to Play the Game. ",1.5,"",,,,,1,2015-05-15 16:50:34 -0400
2759,Amphitheater,2015-08-01 16:30:00 -0400,2015-08-01 18:30:00 -0400,Pennsic Performing Arts,"",4045,Open Stage Shakespeare Night On The Green,Performing Arts and Music,"",,false,Welcome back Open Stage Shakespeare night! Bring your favorite Shakespeare work to share while you enjoy an evening *al fresco* with The Bard!,"Pennsic Performing Arts bids you welcome back Open Stage Shakespeare night! This year on the green of the Amphitheater all are welcome to bring a favorite Shakespeare sonnet or two, monologue under 5 minutes, or short scene (under 10 min.) to perform. Sign in with the hosts night of the show. Come enjoy an evening *al fresco* in company with the Bard!",2.0,"",,,,,1,2015-05-06 03:19:02 -0400
2773,Amphitheater,2015-08-01 17:00:00 -0400,2015-08-01 18:00:00 -0400,Rychard Kempe,æthelmearc,4021,The Elizabethan Stage Jig,Performing Arts and Music,European,,false,"We will discuss the Stage Jig: short comic drama that featured music and singing, and often included dancing. We will read and discuss an example.","At the end of the sixteenth century, audience members at the Globe Theater (or one of the other London theaters) might be treated to a Stage Jig after watching a play. A Stage Jig was a short comic drama that featured music and singing, and often included dancing. The jigs were often bawdy and farcical, and might be libelous as well. This class will discuss the Stage Jig and we will read an example of one from the period. At the end of the class, we will explore the possibilities for performing Stage Jigs in the SCA.",1.0,"",,15,,,1,2015-05-01 23:46:46 -0400
2840,A&S 14,2015-08-01 17:00:00 -0400,2015-08-01 18:00:00 -0400,Chirurgeon Instructor,"",4143,First Aid or CPR Challenges,First Aid,"",,false,Individuals can challenge to recertify by taking the written and physical tests. These will be ASHI challenges. Cost is $15 for card only.,"Individuals can challenge to recertify by taking the written and physical tests. If the challenge is unsuccessful, the recommendation is for the full class. These will be ASHI challenges, unless other instructors can be found. Individual challenges take approximately 1 hour. Cost is $15 for card only.",1.0,Fee per card achieved. ,,,,,3,2015-05-01 17:15:56 -0400
2312,Performing Arts Tent,2015-08-01 17:00:00 -0400,2015-08-01 21:00:00 -0400,Pennsic Performing Arts,"",3362,Tri-Kingdom Bardic Showcase,Performing Arts and Music,"",,false,"This is the yearly Bardic Showcase.This year it includes East, Æthelmearc and Midrealm. Six performers from each kingdom will perform.","This is the yearly Bardic Showcase. This year it includes East, Æthelmearc and Midrealm. Six performers from each kingdom will perform.",4.0,"",,,,,1,2015-04-06 15:27:59 -0400
3148,Cabochons (Bow Street),2015-08-01 18:00:00 -0400,2015-08-01 19:00:00 -0400,Lady Arastorm ,east,4560,Introduction to Runes,Pennsic University,European,,false,Introduction to the *Futharc* and *Futhorc* runes for use in divination and magic (and *RúnValdr* q.v.) with resources for further study.,"Runes are a system of writing that is now best known as a tool for divination, but has been more, from basic communication to magickal practice. This workshop will give an overview of what the runes have been and can be, and give you direction on how to proceed in your studies. ",1.0,"",,20,,,2,2015-05-22 21:02:06 -0400
2361,A&S 13,2015-08-01 19:00:00 -0400,2015-08-01 19:45:00 -0400,Lord Jacob the Wanderer,east,3474,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
3021,Dance Tent,2015-08-01 21:00:00 -0400,2015-08-02 00:00:00 -0400,Pennsic Dance Staff,"",4388,Open Dancing,European Dance,European,,false,Join us all evening for dancing by request.,"",3.0,"",,,,,5,2015-05-03 14:07:06 -0400
2212,Performing Arts Tent,2015-08-01 21:00:00 -0400,2015-08-01 22:30:00 -0400,Pennsic Performing Arts,"",3239,*i Verdi Confusi*,Performing Arts and Music,"",,false,Players' Patchwork returns with hilarious antics of *Commedia all'Improvviso*! Of Course! It All Makes Sense Now!,Players' Patchwork returns with hilarious antics of *Commedia all'Improvviso*! Of Course! It All Makes Sense Now! **Show contains adult-themed content**.,1.5,"",,,,,1,2015-04-30 20:04:31 -0400
2508,White List,2015-08-02 07:00:00 -0400,2015-08-02 08:00:00 -0400,Duke Paul of Bellatrix,an tir,3726,Bellatrix: Individual Session,Martial Activities,"",,true,"Individuals or small groups with Duke Paul, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org **to schedule** date/time. ","**Time/date not firm.** One to two hours with Duke Paul for individuals or small groups, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org to **schedule actual date/time**.",1.0,"",,,,,10,2015-06-09 21:30:53 -0400
2713,Dance Tent,2015-08-02 08:00:00 -0400,2015-08-02 09:00:00 -0400,Baroness Nadezda ze Zastrizl,middle,3952,"Yoga for Dancers, Fighters, or Pretty Much Anyone",European Dance,Other,,false,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. ,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. Children may attend with a parent/guardian if they both participate. ,1.0,"",,,,,7,2015-05-07 19:27:13 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-08-02 08:00:00 -0400,2015-08-02 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3610,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2322,Performing Arts Tent,2015-08-02 08:30:00 -0400,2015-08-02 12:00:00 -0400,Pennsic Performing Arts,"",3382,Rehearsal (Closed): KWP,Performing Arts and Music,"",,false,Space in use.,Space in use.,3.5,"",,,,,6,2015-03-30 15:55:26 -0400
2154,Amphitheater,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Lady Cael O'Conail,æthelmearc,3149,*Commedia dell'Arte* for Youth,Performing Arts and Music,European,,false,"Hands-on class giving the description and history of *Commedia*, before having the youth create and eventually perform their own skit. Ages 13-17.","",1.0,"",,,,,5,2015-03-26 20:17:26 -0400
2518,Archery,2015-08-02 09:00:00 -0400,2015-08-02 11:00:00 -0400,Master Godric of Hamtun,east,3752,Populace Archery War Point Practice,Archery,"",,false,"Come to the Archery Range; practice the War Point shoots from 9-11 am during War Week except for Wednesday, August 5.","All archers can come to the Archery Range and practice the War Point shoots from 9 am to 11 am during War Week except Wednesday, August 5th, when the range is closed except for Archery Champions.",2.0,"",,,,,4,2015-04-30 20:32:45 -0400
2753,Artisan's Row B,2015-08-02 09:00:00 -0400,2015-08-02 16:00:00 -0400,Artisans Row,east,4020,Enameled Jewelry Day,Artisan's Row,"",,false,"All day hands-on demo of both period and out-of-period methods of creating enameled jewelry for beginners, and a few tricks for more advanced student.",This will be an all day hands-on demo of both period and out-of-period methods of creating enameled jewelry. Will be covering methods for the absolute beginner plus a few tricks for the intermediate level student. Material cost of $8. ,7.0,enamel and material to enamel,,,8.0,,1,2015-05-01 18:40:53 -0400
2892,A&S 1,2015-08-02 09:00:00 -0400,2015-08-02 11:00:00 -0400,Mistress Isabel Ximenex de Gaucin,east,4202,Beautiful Neckline Finishing,Pennsic University,European,,false,Hands-on class. Learn how to finish a neckline based on extant examples from the 13th century. Technique uses a bias-cut strip.,"Hands-on class. Learn how to finish a neckline based on extant examples from the 13th century. Technique uses a bias-cut strip and makes a beautifully finished neckline. If you have needle, thread and scissors, please bring them. If there is time remaining, we will also go over a seam finishing technique.",2.0,"",,,,10,2,2015-05-01 19:15:14 -0400
2641,A&S 3,2015-08-02 09:00:00 -0400,2015-08-02 11:00:00 -0400,Lady Droen O'Rourke,ansteorra,3888,Quick and Easy Handmade Largesse,Pennsic University,European,,false,"A discussion about largesse: why we should give it, why you should make it, and what options are out there. We will make a couple of examples.","A discussion about largesse: why we should give it, why you should make it, and what options are out there. We will make a couple of examples.",2.0,"Wire, beads, findings, ribbon, felt, thread",2.0,,5.0,15,3,2015-04-30 21:23:16 -0400
2528,A&S 4,2015-08-02 09:00:00 -0400,2015-08-02 11:00:00 -0400,"Lady ""Izzy"" Isabella de Erbiere",calontir,3742,Dots,Glass,"",,true,Intermediate bead-making class. Come learn all the fun things you can do with dots!,"",2.0,Gas and glass,,,10.0,6,1,2015-04-21 20:31:40 -0400
2260,A&S 7,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Master Michael Graham,east,3309,The Humoral Doctrine,Pennsic University,European,,false,An explanation of the origins and structure of the prevailing doctrine of health in the medieval and Renaissance period.,"",1.0,"",,,,,1,2015-03-25 18:53:20 -0400
2169,A&S 8,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Mistress Rhiannon y Bwa,æthelmearc,3181,Wool Spinning on Many Distaffs: Hands-On,Pennsic University,European,,false,Learn the use of the iconic distaff. Distaffs are not just for flax! Learn how to prepare wool to spin and mount it on various styles of distaffs. ,"Learn the use of the iconic distaff. Distaffs are not just for flax! To a spinster, a distaff functions as a third hand, holding a large quantity of fiber in orderly condition as she pulls down fiber to fill her spindle. Come and learn about several types of distaff designs and how to mount wool prepared in various ways on them. Great for hot, sticky or windy weather. Keep the wool on the distaff, not on you!!!! Spinsters often find the evenness of their yarn improves when mounted on a distaff. And if you walk around a lot…. 'porting your distaff with spindle tucked into the cross lacing is so easy. Improve your Pennsic spinning experience. Loaner spindles and distaffs are available for students who don't wish to purchase them.
I have just produced some YouTube videos on Medieval Spinning that you might enjoy before coming to Pennsic, but not required! http://www.youtube.com/playlist?list=PLjUCUOUGq_WC-sv2N_qfIhpJDi8LbR-9U, or just search YouTube for ""missingspindle"". Discussion of medieval spinning info is on my blog here: ""missingspindle.blogspot.com""",1.0,"Loaner Distaff=$0.00
Purchased distaffs=$35.00",1.0,15,,15,2,2015-03-01 14:33:13 -0500
2945,A&S 10,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Jadwiga Zajaczkowa,east,4293,Medieval-Style Mustards,Pennsic University,"",,false,Learn to make your own mustard using period ingredients and methods. ,"Mustard was the main condiment of the Middle Ages. Using ingredients documented for period sauces, students will blend their own mustard sauces, as well as learning about medieval/Renaissance spices and ingredients.",1.0,".50 for container
.50 for supplies",1.0,30,1.0,30,2,2015-05-01 19:29:45 -0400
2091,A&S 12,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Mistress Sigrid Briansdotter,atlantia,3069,Medieval Pinwheels,Pennsic University,European,,false,"Depicted in illuminations of the 15th and 16th centuries. Fun for adults and children. To make one, basic hand tool use required.","Based on illuminations, pinwheels were a common toy of the 15th and 16th centuries. We will examine the various styles of pinwheels and make one to take home. Fun for adults and children. Children should be accompanied based on their tool-using skills.",1.0,"dowels, nail, paper, glue, paint",2.0,15,2.0,15,2,2015-02-21 16:33:26 -0500
2838,A&S 14,2015-08-02 09:00:00 -0400,2015-08-02 16:30:00 -0400,Chirurgeon Instructor,"",4139,ASHI CPR Pro for the Professional Rescuer ,First Aid,"",,false,Designed for individuals in the healthcare or professional rescuer field who are required to have a professional-level basic life support training. ,"CPR Pro for the Professional Rescuer program is designed for individuals in the healthcare or professional rescuer field who are required to have a professional-level basic life support training. Students learn how to recognize a life-threatening emergency, how to provide basic life support and what to do in case of an airway obstruction or choking. ASHI's CPR Pro for the Professional Rescuer has been approved for training for Emergency Medical Services personnel and is accepted by the National Registry of Emergency Medical Technicians (NREMT). Class length: 7 hours. Cost is $15 for card only, $20 including books.",7.5,Separate fee for certification card or course materials.,,,,,3,2015-04-30 22:36:10 -0400
2779,Battlefield,2015-08-02 09:00:00 -0400,2015-08-02 11:00:00 -0400,Master Robyn Solarius,middle,4065,Gathering of the Louds,Performing Arts and Music,European,,false,"Shawms, sackbuts and curtals - oh my! The traditional gathering of loud instruments for group ensemble playing continues. Not for beginners....","Shawms, sackbuts and curtals - oh my! The traditional gathering of loud instruments for group ensemble playing continues. Not for beginners.... Bring music if you have any ensemble pieces you might like to try. Bring a chair.",2.0,"",,,,,2,2015-05-06 00:44:43 -0400
3107,Dance Tent,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,THL Darius the Dancer,ealdormere,4489,Children's Dance: More Fun Dances!,European Dance,European,,false,It's never too early to learn to dance! Come learn dances fun for all ages. (Any youth in attendance require a responsible adult present.),"It's never too early to learn to dance! Come learn dances fun for all ages (Any youth in attendance require a responsible adult present.) This class will teach some early and some late dances in our period, from 15th-century Italy to 17th-century English country dances.",1.0,"",,,,,1,2015-05-07 20:45:07 -0400
3219,Fort,2015-08-02 09:00:00 -0400,2015-08-02 15:00:00 -0400,John Radburne,east,4657,Vigil (Fort - EAST TURRET),Martial Activities,"",,false,Vigil time-slot holder.,"",6.0,"",,,,,1,2015-07-02 19:33:00 -0400
3149,General Archery,2015-08-02 09:00:00 -0400,2015-08-02 13:00:00 -0400,Lord Janyn Fletcher,atlantia,4546,St. Sebastian's V Archery Shoot,Archery,"",,false,The novelty archery shoot hosted by the Kingdom of Atlantia.,"",4.0,"",,,,,1,2015-05-27 18:54:36 -0400
3071,Great Hall,2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,Pennsic Performing Arts,"",4423,Opening Ceremonies: In Front of Fort ,Event,"",,false,Opening Ceremonies: In front of Fort or in Great Hall if raining.,Opening Ceremonies: In front of Fort or in Great Hall if raining.,1.0,"",,,,,1,2015-05-06 19:26:40 -0400
2916,Pine Box Traders (192),2015-08-02 09:00:00 -0400,2015-08-02 10:00:00 -0400,THL Egill the Loomwright,calontir,4265,Family Stick Weaving ,Pennsic University,"",,false,Family-oriented stick weaving. Youth welcome with parent or guardian.,"Family-oriented stick weaving. Youth welcome with parent or guardian. Stick weaving is a simple, weft-based weaving method. Great for making belts and straps. Upgradable to make everything from shawls to rugs. Fee covers sticks and string; take your work home with you.",1.0,Sticks & string,,,6.0,,2,2015-05-01 09:01:27 -0400
2707,Æthelmearc 1,2015-08-02 10:00:00 -0400,2015-08-02 12:00:00 -0400,THL Zofia Kowalewska,æthelmearc,3934,Beginning Scribal Track,Æthelmearc Scribal,Multiple Cultures,,false,"Four-day scribal arts beginner track. Topics Include layout, calligraphy and painting. Must attend all 4 days. Kit provided. No experience necessary.","If you ever wanted to try the scribal arts, now is your chance. The Scribal Beginner Track will introduce you to the tools of the trade, design elements, layout, outlining, painting and calligraphy. We'll create a scroll from beginning to end. No experience necessary and a beginner kit is included with the class cost. ",2.0,Cost of beginning scribal kit.,,,10.0,10,4,2015-04-30 19:36:12 -0400
2431,Æthelmearc Royal - Food Lab (N04),2015-08-02 10:00:00 -0400,2015-08-02 12:00:00 -0400,Mistress Lidia Allen,æthelmearc,3587,Hard Cheese Is Easy,Cooking Lab,Multiple Cultures,,false,Most societies throughout history have found ways to turn milk into curds. This hands-on class will help you to learn to make your own cheese. ,Almost every society throughout history has developed a way to turn some kind of milk into curds. In this hands-on class we will take milk through the essential steps so you may come away with skills in place and an understanding of the cheesemaker's art so that you can continue to make your favorite cheese at home.,2.0,"",,,,,1,2015-05-03 21:31:22 -0400
2173,Amphitheater,2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Lady Noelle de la Plume,middle,3189,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
2119,A&S 5,2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Lady Katerin ferch Gwenllian,middle,3108,How Not to Make a 14th-Century Dress,Pennsic University,European,,false,"Learn about some common mistakes in making a 14th-century fitted dress, and how to avoid them. ","Learn about some common mistakes in making a 14th-century fitted dress, and how to avoid them. Students are invited to contribute stories and suggestions from their own experience as well.",1.0,"",,,,,1,2015-02-21 16:16:56 -0500
2127,A&S 7,2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Mistress Briony of Chatham,east,3120,Medieval Business Practices,Pennsic University,European,,false,Explore how modern accounting practices evolved following the changes in business during the Middle Ages and Renaissance.,"The most basic accounting techniques used by businesses worldwide today had their start in 12th- and 13th-century Europe, and continued being refined throughout the Renaissance. This class teaches about the sweeping changes in trade that made this evolution necessary...and also changed the face of Europe. ",1.0,"",,12,,,1,2015-02-21 16:23:38 -0500
2161,A&S 8,2015-08-02 10:00:00 -0400,2015-08-02 12:00:00 -0400,THL Elizabethe Alles,middle,3166,Roman Wire and Bead Jewelry,Pennsic University,European,,false,Examine Roman jewelry artifacts that can be recreated by using simple materials and tools. ,Examine Roman jewelry artifacts that can be recreated by using simple materials and tools. Kits and handouts available. Students encouraged to bring needle-nose pliers and wire cutters.,2.0,"Beads, wire",1.0,20,9.0,10,1,2015-03-01 14:30:01 -0500
2952,Dance Tent,2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Duchess Thyra Eiriksdottir,east,4248,Two Partners Are Better Than One!,European Dance,European,,false,"A few of the 15th-century Italian dances for three people: *Belfiore, Gioioso in Tre*, and *Vita di Cholino*.","Three is my favorite number, and several of my favorite dances are for three people! Come learn 15th-century Italian dances for three: *Belfiore, Gioioso in Tre*, and *Vita di Cholino*. All steps will be taught, and these dances are fairly easy to learn.",1.0,"",,,,,1,2015-05-07 11:56:43 -0400
2827,Games Tent,2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Lady Margaret of Enniscorthy,æthelmearc,4123,Period Card Games: *Losing Loadem*,Games,"",,false,"Do you like to play cards? Come learn to play this late-period, trick-avoidance card game. ",Looking for something to pass the time at events? Do you like to play cards? Come learn to play this late-period card game based on a reconstruction from Francis Willughby’s A Volume of Plaies (~1665). ,1.0,"",,20,,,1,2015-05-07 18:10:36 -0400
2384,Main Battlefield,2015-08-02 10:00:00 -0400,2015-08-02 14:00:00 -0400,Countess Joleicia of Litchfield,ealdormere,3490,"Armoured Champions: Unbelt, Belt, Matched, Century",Martial Activities,"",,false,"The order is Unbelts, Belts, Matched, and then Century Champions.","Armored Champions Battles: Unbelt/Belted/Matched/Century
10:00am Unbelted: 40 vs. 40 to the last fighter
11:00am Belted: 30 vs.30 to the last fighter. Crowns may not fight. Heirs may.
12:00pm Matched: 30 fighters, may not have participated in either the Belted or Unbelted Champions Battles. Alternating sides choose the number to send out from 1-5; opposing side must match. Crowns may not fight. Heirs may.
1:00pm Century: Format as traditional Allied Champions’ battle.
100-foot by 200-foot field with 30-foot “resurrection boxes” in opposite corners.
45-minute, timed-release resurrection battle. Clock stops for medical holds only. Clock does **not** stop for flag reset. Flags and flag staves to be provided by Principal Kingdoms. Staves must be made of rattan or fiberglass. Flags **must** be held over the head during transportation to the base for the point to be valid. *This battle is made up of the fighters from the previous three battles of the day.* Fighters are allowed to be replaced during the battle, but once out, they may not return.
• Resurrections are every 2 minutes.
",4.0,"",,,,,1,2015-04-16 01:29:23 -0400
2481,Minerva's Spindle (158),2015-08-02 10:00:00 -0400,2015-08-02 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3670,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
2332,Performing Arts Rehearsal Tent,2015-08-02 10:00:00 -0400,2015-08-02 12:00:00 -0400,Pennsic Performing Arts,"",3404,Pennsic Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Choir welcomes all interested singers! Songs in honor of the 500th anniversary of the Coronation of François I of France.,"The Pennsic Choir welcomes all interested singers! This year's concert features songs of the early to mid-16th century in honor of the 500th anniversary of the Coronation of François I of France. Singing in the Pennsic Choir is an intense and rewarding experience. We rehearse two hours each day for a week, then perform a concert on Thursday evening of War Week. The ability to read music and sight-sing is helpful, but not required if you learn the music in advance. Sheet music and audio tracks are available online now at https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsicxliiichoirs",2.0,"",,,,,7,2015-05-06 01:31:11 -0400
3120,Rapier List 1,2015-08-02 10:00:00 -0400,2015-08-02 11:30:00 -0400,Lord Velvet,middle,4508,Rapier Bear Pit Tourney,Rapier Activities,"",,false,"A no-frills classic bear pit. Three passes, winner stays, three fights maximum. Everyone welcome. Fight until you drop. Lots of prizes!","Nothing fancy here: a classic bear bit tourney. Three passes, winner stays, three fights maximum. Every skill level welcome. Bring your best, and fight until you can't fight any more. Prize for 1st, 2nd, and 3rd place. If you've ever felt like you didn't get enough fencing in at Pennsic, here's your answer.",1.5,"",,,,,1,2015-05-13 11:03:36 -0400
2399,University Point,2015-08-02 10:00:00 -0400,2015-08-02 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3524,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2631,A&S 9,2015-08-02 10:30:00 -0400,2015-08-02 12:00:00 -0400,Lady Maeve Ronan,æthelmearc,3877,The Minimalist Bard Book,Performing Arts and Music,"",,false,Discussion of the top 20 songs/song types for any bard's book. ,"Discussion of the top 20 songs/song types for any bard's book. Whether you are around a campfire, performing for royalty, joining in a competition, or singing in the shower, these few pieces will have you ready for anything, bardically speaking.",1.5,0,,20,,,1,2015-05-03 19:43:00 -0400
2108,Middle Eastern Tent,2015-08-02 10:30:00 -0400,2015-08-02 12:00:00 -0400,Ziggy,atlantia,3092,Beginning Drumming,Middle Eastern,Middle Eastern,,false,The basic rhythms used most often in drum circles and music within the SCA. A 4-part class that teaches different rhythms each day. BYO drum.,"Learn the basic rhythms used most often in drum circles and music within the SCA. This is a 4-part class that teaches different rhythms each day. BYO Drum.
Day 1- *Saidi, Beladi, Maqsum*
Day 2- *Chiftitelli, Masmoudi*
Day 3- *Ayub, Malfouf*
Day 4- *Kashlimah* and other strange stuff
",1.5,"",,,,,4,2015-05-01 13:03:04 -0400
2313,Amphitheater,2015-08-02 11:00:00 -0400,2015-08-02 13:00:00 -0400,Pennsic Performing Arts,"",3365,Rehearsal (Closed): Pennsic *Commedia* All Stars,Performing Arts and Music,"",,false,Space in use.,Space in use.,2.0,"",,,,,6,2015-04-26 20:15:34 -0400
2516,Archery,2015-08-02 11:00:00 -0400,2015-08-02 17:00:00 -0400,Master Godric of Hamtun,east,3736,Archery Populace War Point,Archery,"",,false,Archery Populace War Point,"All archers young and old are encouraged to come and lend their support to their kingdom's efforts, and to display their skill at archery. There will be three challenging populace shoots to test skills. Each Kingdom will be competing to earn the three War Points for each shoot. ",6.0,"",,,,,5,2015-06-18 08:13:03 -0400
3026,A&S 2,2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Baroness Ellesbeth Donofrey,east,4422,The Minister of the Lists Survival Kit,Pennsic University,Other,,false,"Tournament formats, creating and stocking your bag of tricks, the importance of communication, preparation tips and more.","Tournament formats, creating and stocking your bag of tricks, the importance of communication, preparation tips and more. Come share your knowledge and experience with other List Ministers from all Kingdoms.",1.0,"",,,,,1,2015-05-03 21:01:32 -0400
3028,A&S 4,2015-08-02 11:00:00 -0400,2015-08-02 12:30:00 -0400,THL Rois alann uiFhlaithbheartaigh,middle,4400,Beginning Glass Bead Making,Glass,"",,true,"Join us to learn how to make glass beads. This class is a hands-on, beginning course.","Join us to learn how to make glass beads using a hot head propane fueled torch. We will discuss how these beads were made in period and their significance. This is a hands-on class and all materials and equipment will be provided for use during this class. Required: hair pulled back; closed toe shoes; clothing appropriate for working with a flame, i.e., no hanging sleeves or bodice parts.",1.5,"fuel, glass",1.0,20,10.0,8,2,2015-06-24 09:07:09 -0400
3221,A&S 5,2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Lady Vika Grigina z Prahy,east,4659,Basic 14th-Century Tablet-Woven Edge,Pennsic University,European,,false,"How to work a basic tablet-woven braid directly onto a garment edge (gown center-front, buttoned sleeve, side of pouch, etc.).","One method of finishing edges, particularly load-bearing ones, in the 14th century was to tablet-weave a cord and sew it onto the piece as you worked. This sounds far more intimidating than it really is, even if you haven't picked up a set of tablets heretofore. There will be hands-on kits for 10 attendees; spectators are welcome.",1.0,No Fee,,15,,10,1,2015-07-03 12:45:17 -0400
2131,A&S 7,2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Mistress Giovanna Adimari,middle,3123,How to Run a Successful Event,Pennsic University,"",,false,Want to be an event steward? Want to be a better event steward? This class covers all aspects of running a new or an old event!,"Whether you are brand new to running SCA events, or have already run a variety of events, this class will help you plan more effectively to make your event a success and keep you from losing your mind! Topics that will be discussed will including budgets, staffing, sites, and Royalty, as well creating a Vision for your event, and creating meaningful and exciting activities.",1.0,"",,,,,1,2015-02-21 20:13:10 -0500
2618,A&S 12,2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Kuji Kaoni Musashi,middle,3865,Divination: Palm and Face Reading,Pennsic University,"",,false,"Divination based on examination of the human body, especially via palmistry and the asian art of face reading. ","Divination based on examination of signs on the human body, especially via palmistry and the asian art of face reading. To reduce the instructor’s out-of-pocket expenses, all students are requested to bring at least one hand and one face to class. ",1.0,"",,,,,1,2015-05-06 07:25:30 -0400
3066,A&S 13,2015-08-02 11:00:00 -0400,2015-08-02 12:30:00 -0400,THL Madoc Arundel,æthelmearc,4450,Gruit in Late-Period English Ale,Pennsic University,European,,true,Learn how the English flavored beer before hops became widely accepted.,"Before hops became popular in England, ale was flavored with proprietary blends of herbs, spices, or weeds. We will investigate some of the more common blends in use from the 14th through 16th century in the British Isles. Some tasting of gruit ales may be available.",1.5,"",,20,,,1,2015-06-17 07:15:40 -0400
2350,Battlefield,2015-08-02 11:00:00 -0400,2015-08-02 13:00:00 -0400,Mistress Faioltigearna Muirinn niArtain,east,3460,Harp Techniques,Performing Arts and Music,"",,false,"Historical info and techniques: Improve strength, speed, tone, musicality. Useful for all harpers, beginner to advanced. Chairs may not be available","Techniques to improve strength, speed, tone and musicality. Historical information about harps, the men and women who played them, and their music. Useful for all harpers, complete beginner to advanced. Learn how to get more out of your instrument and practice time, as well as practical approaches to performing. This is one of a 3-part course. We will build on information from each class, but students are not required to attend all three. Feel free to contact teacher in advance if you know you'll miss one. Chairs may not be available. Please bring chairs/harpstands if possible.",2.0,"Exercises for use in class, during Pennsic, and afterward. Reading music, counting, fingering, etc.",3.0,30,,,3,2015-05-12 21:33:51 -0400
2933,Dance Tent,2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Mistress Felice Debbage,middle,4235,Introduction to Pavan and Galliard,European Dance,European,,false,"Suitable for beginners, this class offers a walk-through of the pavan and galliard, two improvisational dances from the 16th century.","Suitable for beginners, this class offers a walk-through of the pavan and galliard, two improvisational dances from the 16th century. The pavan is extremely low-impact, but the galliard can rather unforgiving on one's knees and ankles. It can be modified somewhat to reduce impact, however. Please consider wearing close-fitting shoes, such as turn shoes, jazz oxfords, Keds, or ballet slippers, as tennis shoes or boots will impede movement. (In a pinch, you could go barefoot or in socks, but you'll want to be careful of splinters on the wood floor.) ",1.0,"",,,,,1,2015-05-07 11:50:25 -0400
2488,Great Hall,2015-08-02 11:00:00 -0400,2015-08-02 19:00:00 -0400,Pennsic Performing Arts,"",3675,Arts and Sciences Display,Event,"",,false,"Sunday, August 2nd, 1:00 - 6:00 pm.","Sunday, August 2nd
Artisans Set up: 12:30 pm - 1:00 pm
A&S Display: 1:00 - 6:00 pm
(Take down after 6:00 pm.)
Come and be part of the awesome display of craftsmanship from the Known World!
Pennsic 44 brings the 18th annual display of the talents and knowledge of the Known World's Artisans and Craftspeople. The variety and scope of work are always a wondrous spectacle of artistic talents and scientific skills.
The display is not a competition. Bring your completed items, works-in-progress, research, and discussion material so that you may share, inspire, and enrich our Society. See what others in your field are working on, discover a new passion, make new contacts, and most importantly, have fun!
I look forward to seeing you and your works.
Lady Adele Lochlane
A&S Display Coordinator ",8.0,"",,,,,1,2015-05-07 20:41:42 -0400
2923,Pine Box Traders (192),2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,THL Egill the Loomwright,calontir,4279,Lucet Basics,Pennsic University,"",,false,Make a square cord and a two-color cord.,Make a square cord and a two-color cord. Classroom loaner lucets available or bring your own. No fee. String provided.,1.0,"",,,,,3,2015-05-01 19:26:59 -0400
2422,Serenity Studio (208),2015-08-02 11:00:00 -0400,2015-08-02 12:00:00 -0400,Lady Christina Von Tannenbaum,middle,3578,Intro to 6-on-2 Chainmail,Pennsic University,Multiple Cultures,,false,This type of chainmail was prevalent in period across multiple cultures. All materials provided but bring two pairs of pliers. ,Intro class for 6-on-2 chainmail prevalent throughout period across multiple cultures. All materials necessary to complete class project provided but bring two pairs of standard box nose pliers if you have them. Tools are available for those who don't have them on a first-come first-served basis.,1.0,"Sufficient hand-turned & cut aluminum rings, 12ga 5/8 in diameter, to complete class project.",,,10.0,8,9,2015-04-13 23:23:33 -0400
2874,A&S 1,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Lord Jayme Hume of Berwyk,east,4182,"The Battle of Bannockburn, June 23 and 24, 1314",Pennsic University,European,,false,"What were the reasons behind the battle? Who were the principle protagonists? What really occurred, and what was the aftermath?","",1.0,"",,25,,,1,2015-04-30 21:34:12 -0400
2893,A&S 6,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Lady Ceara inghean Mhuirgheasa ,middle,4203,Hair Braiding I,Pennsic University,"",,false,Hair braiding for beginners: simple three-strand braid and French braid. Bring someone to braid their hair and a brush. ,"Hair braiding for beginners: simple three-strand braid and French braid. Bring someone to braid their hair and a brush. Limit 10 participants. Longer lengths encouraged. If there is enough interest, I will think about doing Hair Braiding II in the future! ",1.0,"",,,,,1,2015-05-01 17:18:59 -0400
2134,A&S 7,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Master Ulric von der Insel,east,3128,Ministerials: AoA for Service,Pennsic University,European,,false,The ministerials were Holy Roman folks who got and held arms by virtue of their usefulness as administrators. Learn more about these overlooked folks.,"Many assume that one received and held noble rank because of their use in war, or for holding lands. Not necessarily true! The ministerials were Holy Roman folks who got and held arms by virtue of their usefulness as administrators of empires, duchies and all. Learn more about these overlooked folks and how a non-combatant SCAdian can be just as fitting and proper as a noble as any fighter.",1.0,One handout of notes plus bibliography,0.25,25,,,3,2015-02-21 16:34:52 -0500
2957,A&S 8,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Lady Noelle de la Plume,middle,4304,Wire-Wrapped Jewelry,Pennsic University,European,,false,Learn the basics of wire-wrapped jewelry and make a bracelet or medallion hanger. Bring tools and materials if you have them.,"Learn the basics of wire-wrapped jewelry and make a bracelet or medallion hanger. Please bring tools, wire and beads if you have them. There will be some tools available to borrow and some to purchase at cost.",1.0,"$1 - handout.
$2 - beads, wire, clasp
$10 - Tools",1.0,,2.0,,2,2015-05-03 14:16:17 -0400
2295,A&S 9,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Lord Richard Wyn,atlantia,3329,"Bardic 101 (So I Want to Be a Bard, Um, What Next)",Performing Arts and Music,"",,false,"Some advice on getting started as a bard, from basic information to performance tips, and how to find pieces to perform. ","",1.0,"",,,,,1,2015-04-29 21:11:05 -0400
2396,A&S 10,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Countess Tangwystl Caterina D'Courci,middle,3539," Richard III, Death and Discovery",Pennsic University,European,,false,"In 2012 the mortal remains of King Richard III were discovered under a car park in Leicester. This is about his death, discovery and re-interment .","Return of the King. In 2012 the mortal remains of the last warrior King of England to die in battle were discovered under a car park in Leicester. This is about the king's death, discovery and re-interment .",1.0,"",,,,,2,2015-04-10 21:11:07 -0400
3067,A&S 11,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,THL Madoc Arundel,æthelmearc,4451,Brewing Sugars: Simple and Complex,Pennsic University,"",,false,"A brief discussion of the various sugars available to the brewer, how they react with yeast, and what characteristics they impart.","This is a discussion of simple sugars, starches, and fibers that the average brewer may encounter in the development of recipes and the preparation of ingredients. We will look at conversion of starches to fermentable sugars, how yeast breaks down sugars during fermentation, and some techniques for use of different sugar compounds. Note that the instructor is **not** a scientist, but some limited science is inevitable.",1.0,"",,,,,1,2015-05-04 11:33:27 -0400
2620,A&S 12,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Dr Henry Best,middle,3864,"Divination: Omens, Portents, Astrology",Pennsic University,"",,false,"Divination using omens, signs, and portents found in nature, with emphasis on the queen of the divinatory arts: astrology.","Divination using omens, signs, and portents found in nature, with emphasis on the queen of the divinatory arts: astrology.",1.0,"",,,,,1,2015-05-06 07:25:23 -0400
2532,A&S 15,2015-08-02 12:00:00 -0400,2015-08-02 14:00:00 -0400,THL Desiderata Drake,æthelmearc,3763,Newcomers' Tent,Pennsic University,"",,false,"So, you're new to the SCA? What do you do? Where do you go? Stop in here at the Newcomer's Tent! We have answers and are here to help!","So, you're new to the SCA? What do you do? Where do you go? Stop in here at the Newcomers' Tent! We have answers and are here to help! Come meet with newcomer guides from around the Knowne World and learn about the endless possibilities.",2.0,"",,,,,1,2015-04-23 17:03:37 -0400
2802,Dance Tent,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Master Stefan of Cambion,atlantia,4089,15th-Century Italian Dance Beginner: Part 1,European Dance,European,,false,"No experience necessary. Dances will include *Anello, Amoroso, Petit Riens, Rostiboli*.","",1.0,"",,,,,1,2015-05-07 10:20:50 -0400
2246,Livonia Smithery (170),2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Lord T W,æthelmearc,3451,Beginning *Repoussé* and Chasing,Pennsic University,"",,true,Hands-on class; will make a copper foil rose.,Hands-on class; will make a copper foil rose.,1.0,Hand out,5.0,12,,,8,2015-04-08 17:58:40 -0400
3160,Middle Eastern Tent,2015-08-02 12:00:00 -0400,2015-08-02 13:00:00 -0400,Viscountess Kamiilah al Sudanii um Zoom,west,4569,Beginning Middle Eastern Dance,Middle Eastern,Middle Eastern,,false,"Covering the basic movements that this lovely art form is based on, including drills! Intermediate and Advanced welcome. I'll make it harder for you!","Covering the basic movements that this lovely art form is based on, including drills! Intermediate and Advanced welcome. Kamiilah will add layers and make it harder for you!",1.0,"",,,,,2,2015-06-09 07:32:51 -0400
2220,Performing Arts Tent,2015-08-02 12:00:00 -0400,2015-08-02 13:30:00 -0400,Pennsic Performing Arts,"",3244,Rehearsal (Closed-PAT): *i Sebastiani*,Performing Arts and Music,"",,false,Space in use.,Space in use.,1.5,"",,,,,1,2015-03-26 20:42:48 -0400
2747,The Little Dragon's Hoard (Plunder Lane),2015-08-02 12:00:00 -0400,2015-08-02 14:00:00 -0400,Lord Drogo Rabenwald,æthelmearc,4035,A Blacksmith's Double Chamber Bellows,Pennsic University,European,,false,"A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. ","A display of the inner workings of a two-chamber blacksmith's bellows, including the valves and how they are made. Will also have descriptions of how the skin is attached and pattern-making of the whole process.",2.0,"",,,,,5,2015-04-30 19:43:29 -0400
3029,A&S 4,2015-08-02 12:30:00 -0400,2015-08-02 13:30:00 -0400,THL Rois alann uiFhlaithbheartaigh,middle,4401,Making Your Own Soapstone Glass Molds,Glass,"",,true,Join us to learn to make and use soapstone molds for your glass working. Advanced glass working methods required.,"In period, people could not order cool glass molds or tools from the local Internet website. Instead, they made their own. Come and learn how to make and use your own soapstone glass molds! This class is recommended for those already comfortable with basic beadmaking. ",1.0,"Glass, fuel, and soapstone",1.0,20,10.0,12,1,2015-05-05 16:36:45 -0400
2489,Performing Arts Rehearsal Tent,2015-08-02 12:30:00 -0400,2015-08-02 14:00:00 -0400,Pennsic Performing Arts,"",3676,Sing We And Chant It: Madrigal and *A Capella* Jam,Performing Arts and Music,"",,false,"Meet-and-greet optional practice session for audience participation, ""Sing We and Chant It"" Madrigal and *A Capella* Jam.","Meet-and-greet optional practice session for audience participation, ""Sing We and Chant It V"", Madrigal, Part Song, and A Capella Jam, Monday, 8/4, at 6:00 pm in the Performing Arts Tent. All are welcome to come and make joyful music! Music will be available to share, or bring your own! (Material fee optional for a folder of this year's jam music)
Hosts: THL Lorelei Skye, Mistress Gianetta Andreini da Vicenza, Professor Pieter van Doorn
2015 current song list available here - please let us know if you have any suggestions to add to the mix!
https://docs.google.com/document/d/1N-pkg9zLigl06DTqzfQ9EM-7dZeALQl-oGxgSWDIL6s/edit?usp=sharing",1.5,Photocopy fee for public domain music handouts.,5.0,15,,,2,2015-05-03 14:10:31 -0400
3091,Æthelmearc 1,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Baroness Aldermoureis Ventzke,middle,4478,Creating a Sampler of Medieval Pigments,Æthelmearc Scribal,European,,false,Create your own sampler using historical pigments.,Create your own sampler using historical pigments.,1.0,0,,20,,20,1,2015-05-07 20:45:41 -0400
2437,Amphitheater,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Lord William Kilmaron,middle,3593,Juggling 101 (Beginner),Performing Arts and Music,"",,false,Learn to juggle three balls in the simplest pattern. Equipment available for use or purchase. ,The most basic 3-ball cascade juggling. Juggling balls will be made available for use by the class and may be bought afterward from the instructor. ,1.0,"",,,,,3,2015-05-01 00:06:45 -0400
2233,A&S 1,2015-08-02 13:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Mirabella Walmesley of Grimsby,atlantia,3266,Beginning Bobbin Lace,Pennsic University,European,,false,"A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. Please attend all sessions.","A 3-part class teaching basic stitches as well as how to prepare bobbins, start and end a project, and construct a pillow. We will start (and hopefully finish!?!) a bookmark. Please plan to attend all 3 sessions. Material fee will include a lace making pillow, bobbins, pins, thread, and pattern.",2.0,"bobbin lace pillow, bobbins, thread, pins, pattern",,,35.0,5,3,2015-03-14 14:13:45 -0400
2614,A&S 2,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Lady Alana O'Keeve,east,3831,Helping at Herald's Point: Not Just for Heralds!,Heraldry,Other,,false,"We need more help at Herald's Point than just Heralds! We need artists, exchequers, colorists, etc. We have ice cream and phone chargers!","We need more help at Herald's Point than just Heralds! We need artists, exchequers, colorists, etc. We have ice cream and phone chargers! Possible tour of Herald's Point at the end of class depending on weather conditions. ",1.0,"",,,,,2,2015-06-23 01:08:46 -0400
2965,A&S 3,2015-08-02 13:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Piera da Ferrara,east,4310,Hand-Tied Pearl Necklaces,Pennsic University,Multiple Cultures,,false,Have you often admired the necklaces of pearls and gemstones worn in the portraits? Come learn about these necklaces and make your own.,Have you often admired the necklaces of pearls and gemstones worn in the portraits of the nobility and royalty? Come learn about these necklaces and make your own. This technique creates a durable and elegant necklace and adds that finishing touch to your finest garb.,2.0,$5 for handout and kit. ,,10,5.0,10,1,2015-05-01 18:42:07 -0400
2750,A&S 5,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Master Dani of the Seven Wells,æthelmearc,4039,The Heavy Plow,Pennsic University,European,,false,History teachers say that the invention of the heavy plow was significant in European history but seldom go into details. This class does.,"History teachers say that the invention of the heavy plow was significant in European history, but seldom go into details. This class does. How was it different and how did it make a difference - and how did it mold medieval society?",1.0,"",,,,,1,2015-04-30 21:36:06 -0400
2896,A&S 6,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Lady Ceara inghean Mhuirgheasa ,middle,4204,Retaining Teenagers,Pennsic University,"",,false,Known World Survey results of teenagers and what it takes to retain them. Will cover a wide range of concerns and topics.,"",1.0,"",,,,,1,2015-05-01 19:34:38 -0400
2189,A&S 7,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,THL Heodez Di Talento Minottoi,middle,3215,The Art of Making the Medieval Bed,Pennsic University,Multiple Cultures,,false,"Coverlets, foot sheets--how do these items make a proper medieval bed? This class will examine the pieces and let you practice on a scale model.","",1.0,"",,,,,1,2015-03-03 10:14:15 -0500
2416,A&S 8,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Master Maximilian der Zauberer,middle,3563,Throw Away Your Wristwatch: Basic and Advanced,Pennsic University,Multiple Cultures,,false,"Period methods of timekeeping. First 10 minutes teaches several ways to tell time. Last 40 minutes teaches you how to tell time anywhere, anytime.","Learn period methods of timekeeping to tell time day and night at Pennsic. Basic course (first 10 minutes) teaches several ways to tell time. Advanced course delves into the science and teaches more ways to tell time so you can tell time anywhere, anytime.",1.0,"Basic Handout = $1
Advanced Handout = $5",5.0,30,,,2,2015-04-10 19:02:57 -0400
2100,A&S 9,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Lady Avelina del Dolce,atlantia,3080,"Women, Music and Dance in *Commedia* Scenarios",Performing Arts and Music,European,,false,"Analyze *Commedia dell'Arte* in scope with other performing arts of the Renaissance such as courtly dance, theater, and bardic arts.","Have you ever wondered how *Commedia dell'Arte* influenced other performing arts of the Renaissance? Caroso, an Italian dance master, and other artisans alluded to *Commedia dell'Arte*. This class will feature related research and roundtable discussion about *Commedia dell'Arte* in scope with other performing arts of the Renaissance. New material has been added to the class based on analysis of the book, ""Music and Women of the *Commedia dell'Arte* in the Late Sixteenth Century"" by Anne MacNeil. ",1.0,"",,,,,1,2015-05-01 01:43:07 -0400
2698,A&S 10,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Baroness Verena Entenwirth,middle,3992,History of Drinking: Common Medieval Drinks,Pennsic University,"",,true,"History of drinks, how they affected society and culture. Includes samples and recipes of common drinks found in the Middle Age and SCA. Over 21 only.","A look at the history of drinks, especially those in the between 3rd-16th centuries and how they affected society and culture. Class will include samples (and recipes) of the most common drinks found in the Middle Ages (and in the SCA). No instruction on brewing provided. Over 21 only.",1.0,$5 for handout and samples,5.0,25,,,1,2015-06-17 07:11:52 -0400
2552,A&S 12,2015-08-02 13:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Ragnveig Snorradottir,atlantia,3801,Viking Civil Engineering: Theory and Practicum,Pennsic University,European,,false,"A survey of large-scale archaeological features in the Viking landscape. Learn about their metrology, and survey for a scale circular fortress.","A survey of large-scale archaeological features in the Viking Age landscape of Scandinavian-controlled areas. First hour is lecture: Learn about evidence for metrology, and construction of defensive barriers, canals, bridges, and fortifications. Second hour is hands-on, with surveying exercise on laying out a scale version of a circular fortress.",2.0,"",,,,,1,2015-04-25 20:26:50 -0400
2902,Battlefield,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Master Remus Fletcher,æthelmearc,4210,The Cornett and the Serpent: Renaissance Brass?,Performing Arts and Music,European,,false,"Made of wood, played with a brass-type mouth piece and fingered like a recorder. A hands-on discussion about the cornett and serpent.","Once a favorite of composers and now obscure, the cornett is a musical instrument with a trumpet-type mouth piece that is made of wood and fingered like a recorder. The larger serpent, which filled the need for a bass instrument, is a late-period ancestor of the modern tuba. Are they brass or woodwind? Join in for a hands-on discussion about these instruments, information on where to buy, and how to play. Several instruments will be available to try. Bring a chair.",1.0,"",,,,,1,2015-05-03 18:21:13 -0400
2803,Dance Tent,2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,Master Stefan of Cambion,atlantia,4090,15th-Century Italian Dance Beginner: Part 2,European Dance,European,,false,"No experience necessary. Dances to include *Petit Rose, Belfiore, Ballo del Fiore, Marchesana*.","",1.0,"",,,,,1,2015-05-07 10:20:59 -0400
2676,Games Tent,2015-08-02 13:00:00 -0400,2015-08-02 14:30:00 -0400,Lord Galen Mac Byrne,east,3946,*Xiang-qi* for Beginners (Chinese Chess),Games,Far Eastern,,false,"A 90-minute class in how to play *Xiang-qi* (Chinese Chess). History, rules, strategy and tactics; enough time left for students to play afterwards.","A 90-minute class in how to play *Xiang-qi* (Chinese Chess). History, rules, strategy and tactics; enough time left for students to play afterwards.",1.5,"",,20,,,1,2015-05-02 11:14:39 -0400
2920,Pine Box Traders (192),2015-08-02 13:00:00 -0400,2015-08-02 14:00:00 -0400,THL Egill the Loomwright,calontir,4273,*Kumihimo* Basics,Pennsic University,"",,false,*Kumihimo*: cord braiding on a disk.,Kumihimo: cord braiding on a disk. Make a basic round cord. Disk and string provided; take your work home with you.,1.0,"Disk, bobbins, string",,,6.0,,5,2015-05-01 19:22:26 -0400
2245,Livonia Smithery (170),2015-08-02 13:30:00 -0400,2015-08-02 14:30:00 -0400,Lord T W,æthelmearc,3444,Beginning Engraving,Pennsic University,"",,true,"Hands-on class. Intro to tools, first cuts, graver control, hammer use.","Hands-on class. Intro to tools, first cuts, graver control. Student will learn both hand-held and hammer-struck engraving.",1.0,printed handout,5.0,12,,,8,2015-04-08 17:56:19 -0400
2414,Æthelmearc 1,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Mistress Sthurrim Caithnes,æthelmearc,3559,Beginning Celtic Knotwork,Æthelmearc Scribal,European,,false,"Using 5-dot technique, students will be able to create knotwork. We'll look at examples and see patterns used. You get handout, pencils, graph paper.","",1.0,"handout, pencil, graph paper",2.0,20,,,1,2015-04-29 21:56:57 -0400
2377,Æthelmearc Royal - Food Lab (N04),2015-08-02 14:00:00 -0400,2015-08-02 15:30:00 -0400,THL Zofia Kowalewska,æthelmearc,3514,The Pierogi,Cooking Lab,European,,false,"Open discussion on some origin theories, history of and recipe versions of the pierogi (Polish dumpling).","Open discussion on some origin theories, history of and recipe versions of the pierogi (Polish dumpling). It's a standard Polish food deeply rooted in the culture of Poland and its proud people. ",1.5,"",,,,,1,2015-05-04 16:11:08 -0400
2927,Amphitheater,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Erlandr Nordenskald,east,4228,Mass Project,Performing Arts and Music,European,,false,Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement.,"Hands-on look into the Mass as a musical form and its importance in Renaissance vocal music. Each day we'll study and rehearse a different movement, starting with early period *Kyrie* and ending with a mid-15th-century *Agnus Dei*. While no performance has been scheduled, it won't be ruled out. These sessions are sponsored by the Known World Choir.
(Rehearsal Tent unless noted: 7/29@12pm; 7/30@5pm; 7/31@5pm; 8/2@2pm(*AMPI); 8/3@5pm)",1.0,For the 5 days of class,1.0,24,,,5,2015-05-04 16:05:14 -0400
3180,A&S 2,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,THL Rannvaeig orraärmr Eskilskona,middle,4601,Temple Rings and Tortoise Shell Brooches,Pennsic University,European,,false,Did the Norse and Slavic people hang out in the Viking Era? Come find out more. Extant examples from recent digs to be discussed.,"Come learn about the differences, similarities and cross cultural instances between the Norse (Viking) cultures, the Western Russian Slavic Tribes and what later became the Rus, focusing on the 8-10th centuries. Extant examples (male and female) from many recent archaeological digs will be discussed.",1.0,handouts,1.0,40,,,1,2015-06-23 12:12:16 -0400
2763,A&S 4,2015-08-02 14:00:00 -0400,2015-08-02 18:00:00 -0400,Vincent Von Waldheim,middle,4050,Silversmithing,Pennsic University,Multiple Cultures,,false,"Students will make a pendant using cabochon semi-precious stones, sterling silver sheet and wire. Techniques include forming, hard soldering, finish.","Students will make a pendant using cabochon semi-precious stones which would have been available in period, and sterling silver sheet and wire. The processes include forming, silver soldering, and finishing and bezel setting",4.0,"Stones, silver sheet, bezel wire, loop wire, sol and custom cut stones (all vary in price by piece) but an average of $40 for all combined.",,,40.0,12,4,2015-05-05 18:22:04 -0400
2971,A&S 5,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Fritha Eikbrandrsdottir,middle,4313,Norse Maternity and Nursing Garb,Pennsic University,European,,false,Discussion of how to deal with pregnancy and nursing garb issues in period clothing. Ideas based on period finds.,"",1.0,"",,15,,,1,2015-05-01 19:32:06 -0400
3011,A&S 6,2015-08-02 14:00:00 -0400,2015-08-02 15:30:00 -0400,THL Wu Yun,meridies,4374,History and Symbolism of the Unicorn Tapestries,Pennsic University,European,,false,"An examination of ""The Hunt for the Unicorn"", 15th-century Flemish tapestries widely regarded as the best example of tapestries of the age.","Join us for an examination of ""The Hunt for the Unicorn"", 15th-century Flemish tapestries widely regarded as the best example of tapestries of the age. Why does the unicorn lack ears in one tapestry? What happened to the pieces of the fifth tapestry? Where are they now? All these and more will be answered.",1.5,"Full color, line drawing and plant key copies of all the tapestries with corresponding plants highlighted.",2.0,15,,,1,2015-05-03 13:58:13 -0400
2236,A&S 7,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,"Lady Kataryn Mercer ""Kit""",east,3269,Garbing a Gentlewoman: 16th-C Florentine Fashion,Pennsic University,European,,false,"Introduction to 16th-C fashion in Florence, Italy. A review of the garments that make up a well-dressed lady's wardrobe, with pointers to get started.","An introduction to 16th-century upper class fashion in Florence, Italy. We will review the garments that make up a well-dressed lady's wardrobe, as well as discuss sources of information for patterning and sewing your own. Handouts will include images of extant garments, paintings, and reproductions. ",1.0,Handout,2.0,35,,,1,2015-05-12 21:33:00 -0400
2729,A&S 8,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Lady Fortune St Keyne,east,4011,Scandalously Practical: Italian Drawers,Pennsic University,European,,true,"A delicate conversation about an indelicate subject: underwear. We'll discuss the origins of the garment, references in period and construction. ","A delicate conversation about an indelicate subject: underwear. Several pairs of Renaissance Italian ""trousers"" are found in museums around the world. We'll discuss the origins of the garment, plus references in period and construction techniques using both period and modern patterning.",1.0,"",,15,,,2,2015-04-30 20:43:52 -0400
2782,A&S 9,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Master Grim the Skald,east,4068,Norse Poetry Overview,Performing Arts and Music,European,,false,"Talk like Egil Skalagrimson! We will go over rhythm and alliteration, how to write in Norse verse. We'll talk about the ways poetry was used.","Iambic pentameter got you down? Want to know what exactly a “ring giver” is? Do you want to write a line that ends with ""silver?"" Are you a fan of Egil Skalagrimson (who isn't?)? Come on over, and we’ll go over the basics of Viking poetry. I will explain how Norse poetry alliterates, talk about the types and ways Norse poetry was used, and go over poetic devices such as *kennings*. We'll then discuss style and format, and the specific forms Norse poetry takes. Whether you want to try your hand at writing it, or just want a better appreciation of the form, stop by!",1.0,"",,,,,1,2015-04-30 20:21:34 -0400
3165,A&S 13,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Master Donovan Shinnock,east,4579,Historic Rapier Roundtable,Pennsic University,"",,false,"A roundtable discussion on ideas, pitfalls, issues, and other topics surrounding the use of period rapier manuals in SCA rapier and C&T.","",1.0,"",,,,,1,2015-05-27 19:01:59 -0400
2531,A&S 15,2015-08-02 14:00:00 -0400,2015-08-02 16:00:00 -0400,THL Desiderata Drake,æthelmearc,3764,Newcomers' Social,Pennsic University,"",,false,New to the SCA? Come join us for some light refreshments and get to know our Chatelaines and other newcomers in this casual venue.,New to the SCA? Is this one of your first events? Come join us for some light refreshments and get to know our Chatelaines and other newcomers in this casual venue. ,2.0,"",,,,,1,2015-04-23 17:02:46 -0400
3125,Battlefield,2015-08-02 14:00:00 -0400,2015-08-02 16:00:00 -0400,Doroga Voronin,east,4513,Intro to Traditional Filipino Martial Arts,Pennsic University,Other,,true,"An Introduction to Filipino stick fighting patterns and concepts (including footwork, angles and distance) and their relation to SCA combat.","The Filipino martial arts go by the names *Arnis, Escrima*, and *Kali* and have a rich history. They primarily involve the use of single and double short sticks in their techniques, but concepts and skills can also be translated to knife and empty hand work. This seminar will provide an introduction to Filipino stick fighting and will give a hands-on experience in the patterns and concepts related to this art including footwork, angles, and distance while fighting. We will also relate these concepts and techniques to SCA combat (fencing and heavy list).",2.0,"",,25,,,1,2015-05-10 15:43:26 -0400
2548,Dance Tent,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Master Lorenzo Petrucci,meridies,3780,Beginner Dance: Absolute Beginner B,European Dance,European,,false,Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball!,Never danced before? This is the class for you! We’ll start from the very basics and soon you'll be on your way to the ball! No partners required.,1.0,"",,,,,1,2015-05-03 13:50:46 -0400
2543,General Archery,2015-08-02 14:00:00 -0400,2015-08-02 16:00:00 -0400,Master Godric of Hamtun,east,3772,KW Baronial Archery Championship Tournament,Archery,"",,false,"The Known World Baronial Archery Championship Tournament, hosted by the Barony of Roaring Wastes.","The Known World Baronial Archery Championship Tournament, hosted by the Barony of Roaring Wastes, Sunday, Aug 2, 2 pm to 4 pm, on the Archery Range.",2.0,"",,,,,1,2015-04-26 18:18:08 -0400
2330,Performing Arts Rehearsal Tent,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,Pennsic Performing Arts,"",3397,Pennsic Children's Choir: Open Rehearsal,Performing Arts and Music,"",,false,Pennsic Children's Choir is open to children up to age 11 who love to sing. We will be performing as part of the Thursday Known World Choirs Concert.,"The Pennsic Children's Choir is open to children up to age 11 who love to sing. We will be performing as part of the Known World Choirs Concert on Thursday evening of War Week. (Dress rehearsal Thursday afternoon, 8/7, in the PAT; details TBA during regular rehearsals.) More information can be found here: https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsic-children-s-choir",1.0,"",,,,,5,2015-04-16 19:07:44 -0400
2304,Performing Arts Tent,2015-08-02 14:00:00 -0400,2015-08-02 17:00:00 -0400,Pennsic Performing Arts,"",3354,PA Afternoon Series: *Commedia* Experience,Performing Arts and Music,"",,false,Come experience *Commedia dell'Arte*! Meet the characters and the actors behind them and learn to act in comic masked style.,"Come experience *Commedia dell'Arte*! Meet the characters and the actors behind them and learn to act in comic masked style (movement, vocalization, express funny ideas). Experienced actors/directors from several well-known *Commedia dell'Arte* troupes will guide you if you're new, or give you free advice that's definitely worth the price to veteran performers!",3.0,"",,,,,1,2015-03-30 15:50:31 -0400
2609,Thrown Weapons Tent,2015-08-02 14:00:00 -0400,2015-08-02 15:00:00 -0400,THL Colin MacKenzie,east,3829,"Making, Care and Feeding of Your Thrown Weapons",Thrown Weapons,"",,false,How to design and make basic weapons and how to keep them in good condition with a minimum of tools.,"How to design and make basic weapons as well as how to keep them in good condition. This teaches more than how to make weapons pass inspection, but also how to extend their life and improve performance with a minimum of tools.",1.0,"",,,,,1,2015-05-13 18:20:58 -0400
2471,A&S 1,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Lord Oswyn of Baðon,middle,3693,Using Psychographics in SCA Event Planning,Pennsic University,"",,false,A look at what psychographs are and how they can be applied to SCA event planning.,A look at what psychographs are and how they can be applied to SCA event planning.,1.0,"",,10,,,1,2015-04-18 11:55:07 -0400
3164,A&S 2,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Lady Miriam Ester bat Issachar,atlantia,4578,Jewish Folktales,Pennsic University,Other,,false,A review of Jewish folktales and motifs from Biblical times through 1600.,"",1.0,"",,,,,1,2015-05-27 19:06:28 -0400
2869,A&S 3,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Æðelwald Bald,northshield,4174,Men's Clothing in Anglo-Saxon England,Pennsic University,European,,false,A brief introduction to men's clothing in Anglo-Saxon England including period-appropriate fabrics and colours.,A brief introduction to men's clothing in Anglo-Saxon England including period-appropriate fabrics and colours.,1.0,"",,,,,1,2015-05-12 00:14:10 -0400
2256,A&S 5,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Viscountess Seelie Brianna,west,3299,Archaeological Textiles: Context and Provenance,Pennsic University,Multiple Cultures,,false,This class will look at textiles that have been recovered from numerous archaeological excavations from around Europe and the Mid-East.,"This class will look at textiles and textile production tools that been recovered from archaeological excavations, the structures and the fibers and tools used in their production. Sites include Northern Europe, British Islands, the Mediterranean and the Middle East prior to the Middle Ages.",2.0,handouts,2.0,25,,,1,2015-03-25 18:28:33 -0400
2978,A&S 7,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Mistress Eithni ingen Talorgain,northshield,4353,Decorative Seams in Early Britain and Scandinavia,Pennsic University,"",,false,See pictorial and archaeological evidence for decorative seam finishings in early Britain and Scandinavia to discover how they were actually used.,"You’ve seen them, you’ve loved them, but what is the actual evidence for decorative seam finishings in the early British and Scandinavian world? We will look at the pictorial and archeological evidence for seam treatments to discover how they were used and why. Please bring examples of your favorites and their sources!",1.0,photocopying,3.0,20,,,1,2015-05-01 21:03:57 -0400
3179,A&S 8,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Tristan le Chanticler ,east,4598,Leadership Theory,Pennsic University,"",,false,Applying an academic leadership scale to SCA groups. ,"We will discuss an academic model of leadership developed for the U.S. Navy admiralty, and the implications of situational leadership styles on the speed, cost, quality, and institutional impact of decision-making processes. ",1.0,"",,,,,1,2015-06-06 08:03:43 -0400
2298,A&S 9,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Pennsic Performing Arts,"",3348,Bardic Collegium #1: Welcome Home,Performing Arts and Music,"",,false,"Finally returned from the town run and ready to get back into the swing of all things bardic? This is our annual Meet and Greet. Come one, come all!","Finally returned from the town run and ready to get back into the swing of all things bardic? This meeting of the Collegium is for all bards and those who want to be bards - storytellers, singers, poets, all! Come to see who is here this year, meet new people, and renew old friendships, maybe even find a mentor for this War.",2.0,"",,,,,1,2015-03-29 16:01:58 -0400
2786,A&S 10,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Lady Rosina von Schaffhausen,east,4072,Period Drinking Songs,Performing Arts and Music,European,,true,"Sing a variety of period songs about drinking from across Europe, including easy unison and rounds, as well as harmony with up to four parts.","Learn to sing a variety of period songs about consuming alcoholic beverages from across Europe. The songs vary in difficulty from easy unison and rounds to harmony with up to four parts, so anyone can participate. Music will be available to take with you. If you have heard of the Pennsic Drinking and Singing Walk or the *Hymni Bacchi*, this is the music we sing.",2.0,"",,,,,1,2015-05-01 21:02:16 -0400
2201,A&S 11,2015-08-02 15:00:00 -0400,2015-08-02 19:00:00 -0400,Baroness Zuriel Nightshade,middle,3231,Interkingdom Brewers Guild Competition,Pennsic University,Multiple Cultures,,true,Brewers and vintners: Have your beverages evaluated by experts from across the Known World. Up to two entries per category. Over 21 only.,"An opportunity for brewers and vintners to have their beverages evaluated by experts from across the Known World. Up to two entries per category (wine/mead, beer, cordials/others) per participant. IKBG masters are asked to help judge. Entrants are responsible for the temperature/condition of their beverage(s) as it may be some time before a particular beverage is judged. Documentation is encouraged. Over 21 only.",4.0,"",,,,,1,2015-03-11 21:36:47 -0400
2202,A&S 12,2015-08-02 15:00:00 -0400,2015-08-02 19:00:00 -0400,Baroness Zuriel Nightshade,middle,3232,Interkingdom Brewers Guild Roundtable,Pennsic University,Multiple Cultures,,true,"This roundtable is designed to serve as both a place to discuss period beverages as well as hang out for the IKBG. Over 21, please.",This roundtable is designed to serve as both a place to discuss period beverages as well as hang out until your beverage is called to be judged with the IKBG. It is being held in conjunction with the IKBG. All entrants are asked to wait in this area. Someone will come call you when your entry is ready to be judged. Please bring something to do/drink/discuss until your entry is called. Over 21 only.,4.0,"",,,,,1,2015-03-11 21:37:08 -0400
3034,Clan Yama Kaminari (E03),2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Solveig Throndardottir,æthelmearc,4384,Leaves of Laughter: Comic Theatre Workshop,Performing Arts and Music,Far Eastern,,false,A participatory workshop introducing late-medieval improvisational Japanese comic theatre. We'll script short plays for performance later in the week.,"A participatory workshop introducing late-medieval improvisational Japanese comic theatre. Participants will be introduced to stock characters, theatrical devices, and comic theory. We will read several play synopses and script a short play for performance later in the week.",2.0,handout,1.0,12,,,1,2015-05-03 14:02:26 -0400
3059,Dance Tent,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Lord Richard de Troyes,east,4405,Beginner Dance: English Country B,European Dance,European,,false,Easy English Country Dances for two or three couples. No partner required; all steps will be taught.,"",1.0,"",,,,,1,2015-05-07 20:42:54 -0400
3186,East Battlefield,2015-08-02 15:00:00 -0400,2015-08-02 18:00:00 -0400,Baron Dankwert Bathory,east,4591,Known World Novice Championship,Martial Activities,"",,false,"Fighters from all over the Known World, with 2 years or less experience since their primary authorization, test their skills against each other.","",3.0,"",,,,,1,2015-06-09 21:32:26 -0400
2395,Family Range,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Countess Aibhilin ni Dhomhnaill,middle,3538,Known World Baronial Archer Champions Tourney,Archery,"",,false,"Calling all baronial archer champions to join us for a friendly competition. Bring a small patch representing your barony (1.5-2"" dia.).","Calling all baronial archer champions to join us for our Second Annual Known World Baronial Archer Champions Shoot-Off. This is a friendly competition among all current baronial archer champions. Open to Shire, Canton, Riding, Marche champions, as well.
No pre-registration is required.
Participants, please bring a small patch representing your barony (1.5-2"" diameter) to donate toward the prize.
Note: We will also be doing a tournament for all youth baronial champions at the same time, so please encourage your youth champions to come out. Same request: Please bring a small patch representing your barony to use toward the prize.",2.0,"",,,,,1,2015-04-18 13:22:44 -0400
2964,Games Tent,2015-08-02 15:00:00 -0400,2015-08-02 16:30:00 -0400,THL Yamamura Kitsune,middle,4252,Happy Japanese Games,Games,Far Eastern,,false,Leisure games of Japan will be discussed. Reproductions of each game will be available to play for the duration of class.,Leisure games of Japan will be discussed. Reproductions of each game will be available to play for the duration of class. May not be appropriate for small children; some game pieces can be a choking hazard.,1.5,"",,20,,,1,2015-05-07 18:09:34 -0400
2517,General Archery,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Master Godric of Hamtun,east,3747,Pennsic Archery Champions Practice/Tryouts,Archery,"",,false,All archers wishing to make the Pennsic Archery Champions Teams should attend these practices.,All archers wishing to be on the Pennsic Archery Champions Teams should attend these practices. See either the East Kingdom Captain General or the Midrealm Archer General for more details.,2.0,"",,,,,4,2015-04-26 18:20:16 -0400
2243,Livonia Smithery (170),2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Lord T W,æthelmearc,3432,Advanced Engraving,Pennsic University,"",,true,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,The continuation of the work begun in the beginning class. Hand-engraving on copper plate. Letters and design work.,1.0,handout,5.0,12,,,5,2015-04-08 17:51:30 -0400
2643,Performing Arts Rehearsal Tent,2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,Gregory Blount,west,3891,Folk Tunes of the Elizabethan Era,Performing Arts and Music,European,,false,Learn to sing some broadside ballads and tunes collected by Thomas Ravenscroft.,"Learn to sing some Elizabethan music, including various broadside ballads and tunes collected by Thomas Ravenscroft, the first collector and publisher of folk music.",1.0,"",,,,,2,2015-05-02 01:48:13 -0400
2912,Pine Box Traders (192),2015-08-02 15:00:00 -0400,2015-08-02 16:00:00 -0400,THL Egill the Loomwright,calontir,4257,Beyond Lucet Basics,Pennsic University,"",,false,"Variations, loops, and monkey wrenches.","Starts with a basic refresher class for everyone. We then proceed to variations, loops, and monkey wrenches. Classroom loaner lucets available or bring your own. String provided.",1.0,"",,,,,2,2015-05-01 08:57:56 -0400
2597,Rapier List 2,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Lord Orlando Sforza,east,3783,"""By the Book"" Tournament",Rapier Activities,"",,true,"Historical fencing tourney. Memorize Marozzo, review Ridolfo, study Saviolo, for the third annual tournament where book worms can be winners!","A historical fencing tourney; memorize your Marozzo, review your Ridolfo and study your Saviolo, for the third annual tournament where book worms can be winners! Period fencing forms and period dress as seen in the manuals will bring you success. As always, lavish prizes will be bestowed upon the competitor with the most wins, the best dressed, and the one who best adheres to the style of a given master.",2.0,"",,,,,1,2015-05-13 11:22:01 -0400
3134,Youth Combat List,2015-08-02 15:00:00 -0400,2015-08-02 17:00:00 -0400,Lord Sven,middle,4533,Afternoon Youth Combat,Youth Combat,"",,false,Afternoon Youth Combat,Afternoon Youth Combat,2.0,"",,,,,8,2015-05-13 19:59:52 -0400
2679,Æthelmearc 1,2015-08-02 16:00:00 -0400,2015-08-02 17:00:00 -0400,THL Kieran MacRae,æthelmearc,3917,Creating a Flourished Hand by Bocskay,Æthelmearc Scribal,European,,false,Recreate an ornate hand developed by Georg Bocskay based on folio 82 in the *Mira Calligraphiae Monumenta*. Students can create own examples.,Learn how to recreate a very ornate hand developed by Georg Bocskay based on folio 82 in the *Mira Calligraphiae Monumenta*. Students will have a chance to create their own examples.,1.0,"",,20,,,1,2015-04-30 19:52:15 -0400
2519,Archery Tent,2015-08-02 16:00:00 -0400,2015-08-02 17:30:00 -0400,Master Godric of Hamtun,east,3754,Target Archery Marshals' Meeting,Archery,"",,false,"All target archery marshals should meet in the marshals' tent on the Archery Range. Repeats on Aug 2, 4 pm, for those who missed Friday's meeting.","There will a target archery marshals' meeting in the marshals' tent on the Archery Range on Friday, July 31, at 4 pm. There will also be an archery marshals' meeting on Sunday, August 2, at 4 pm, for all those marshals who did not or could not make the meeting on Thursday.",1.5,"",,,,,2,2015-04-26 18:24:11 -0400
2772,A&S 1,2015-08-02 16:00:00 -0400,2015-08-02 18:00:00 -0400,Lord Vincenzo Martino Mazza,east,4059,Off-Grid Solutions for Disability Support,Pennsic University,Other,,false,Off-grid power solutions: class and discussion. Please bring a power adapter or clear picture. Solutions for specific needs will be created.,"",2.0,$1 for class handout,1.0,35,,,1,2015-04-30 20:21:45 -0400
2473,A&S 2,2015-08-02 16:00:00 -0400,2015-08-02 17:00:00 -0400,Mistress Lillia de Vaux,east,3632,"Resubs, Appeals, and Requests for Reconsideration",Heraldry,Multiple Cultures,,false,"If your or your submitter's heraldic submission has been returned, what's the next step?","When a name or armory submission is returned, submitters have several options: resubmitting, sending an appeal, and requesting reconsideration. This class will discuss how to read and interpret a return decision, the differences between the options and when to use them, and resources that can help. In addition, we will discuss other administrative actions, such as heraldic wills, transfers, and permissions to conflict, as well as what is needed to use the grandfather clause and legal name allowance.",1.0,"",,,,,2,2015-07-01 19:46:56 -0400
3022,Dance Tent,2015-08-02 16:00:00 -0400,2015-08-02 17:00:00 -0400,Pennsic Dance Staff,"",4393,Meet-the-Dance-Faculty Social,European Dance,European,,false,All are invited to meet the faculty and staff who make the School of European Dance happen! There will be light refreshments and a group picture.,"Everyone is invited to meet the people who make the Pennsic School of European Dance happen! This event is open for all students and dancers to meet this year's faculty and staff, and is another social event for our faculty and experienced dancers. We encourage all to attend. Light refreshments will be provided and a group picture of staff and teachers will be taken.",1.0,"",,,,,1,2015-05-03 14:04:05 -0400
2331,Performing Arts Rehearsal Tent,2015-08-02 16:00:00 -0400,2015-08-02 17:00:00 -0400,Pennsic Performing Arts,"",3393,Pennsic Youth Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Youth Choir is open to ages 12 - 18 to learn period vocal music and performing as part of the Known World Choirs Concert.,"The Pennsic Youth Choir Choir is open to youth ages 12 - 18 who enjoy learning and singing period vocal music *a cappella*. We will be performing as part of the Known World Choirs Concert on Thursday evening of War Week. (Dress rehearsal Thursday afternoon, 8/7, in the PAT; details TBA during regular rehearsals.) More information can be found here: https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsic-youth-choir",1.0,"",,,,,5,2015-04-16 19:06:27 -0400
2333,TBD,2015-08-02 16:00:00 -0400,2015-08-02 17:00:00 -0400,Pennsic Performing Arts,"",3408,Rehearsal (Closed): KWC Chorulus Pennsicus,Performing Arts and Music,"",,false,"Closed Rehearsals, by Audition Only.","Closed Rehearsals by Audition Only; FYI Only. Director, Lord Cailin mac Andreis.
Chorulus Pennsicus information available here: https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/chorulus-pennsicus",1.0,"",,,,,4,2015-05-07 14:33:15 -0400
2685,Middle Eastern Tent,2015-08-02 16:30:00 -0400,2015-08-02 17:30:00 -0400,Lalleshwari Sah,middle,3930,Beginning *Bhangra*,Middle Eastern,Middle Eastern,,false,"This high-energy dance hails from Punjab, India. It is joyful and celebratory, and a great way to stay in shape. Also included will be meditation.","",1.0,"",,,,,1,2015-05-04 21:36:42 -0400
2948,Amphitheater,2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,Mistress Judith Fitzhenry the Uncertain,east,4247,Mask Performance and Mumming,Performing Arts and Music,European,,false,"Brief overview of historical performances using masks, practice exercises using masks, and (weather permitting) a field trip ""in character"".","Masked performers appeared in a number of countries in medieval and Renaissance Europe, in mummings, masques and other performances. After an overview describing such performances, the class will practice performing in masks. (Masks will be available, or feel free to bring your own!) Weather permitting, the class will make a short field trip ""in character"" (wearing the masks) down a Pennsic thoroughfare.",1.0,"",,,,,1,2015-05-01 23:28:26 -0400
3037,A&S 2,2015-08-02 17:00:00 -0400,2015-08-02 18:30:00 -0400,Master Gunnar Sigurdsson,middle,4428,Engineering the Dream: SCA Event Planning,Pennsic University,"",,false,"Discussion of the nuts and bolts of event planning: site selection, budgeting, activities, schedules and staffing to help people design fun events.","Discussion of the nuts and bolts of event planning: site selection, budgeting, activities, schedules and staffing to help design fun events. Plan on 1 to 1.5 hours depending on the amount of discussion and Q&A. Master Gunnar has served as an event steward for local, kingdom and Known World events.",1.5,"",,,,,2,2015-05-04 07:42:14 -0400
2766,A&S 5,2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,Lady Grazia Morgano,atlantia,3995,Hand-Sewing Eyelets,Pennsic University,"",,false,Take your garb up a notch! Learn to use an awl and hand-sew eyelets to finish your bodice or to make lacing points. ,Take your garb up a notch! Metal grommets don't have the look and they result in less-durable clothing. Come learn how to use an awl and needle to hand-sew your own eyelets.,1.0,1 tailor's awl,1.0,10,5.0,10,1,2015-04-29 22:52:16 -0400
2720,A&S 9,2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,Lord Tatsukawa Sarumaru Chisato,middle,3940,"*Renga*: Linked Poetry, Part 1",Performing Arts and Music,Far Eastern,,false,Part 1: A survey on the history and creation of the traditional Japanese poetic form.,Part 1: A survey on the history and creation of the traditional Japanese poetic form.,1.0,"",,,,,1,2015-04-30 20:39:44 -0400
3218,A&S 13,2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,THL Lisabetta von Atzinger,middle,4656,SRM Moot,Pennsic University,"",,false,Roundtable discussion with the Society Rapier Marshal Master Laertes McBride,Roundtable discussion with the Society Rapier Marshal Master Laertes McBride,1.0,"",,,,,1,2015-07-01 19:12:55 -0400
3014,Dragonshade (N01),2015-08-02 17:00:00 -0400,2015-08-02 19:00:00 -0400,THL Wu Yun,meridies,4376,Asian Persona Tea,Pennsic University,Far Eastern,,false,A meet and greet for Asian personas. Come and share your experiences and learn from one another over a cup of tea. Bring something on which to sit.,"",2.0,"",,,,,1,2015-05-03 13:48:43 -0400
2919,Performing Arts Rehearsal Tent,2015-08-02 17:00:00 -0400,2015-08-02 18:30:00 -0400,Lady Erlandr Nordenskald,east,4221,Recorder Jam Session,Performing Arts and Music,European,,false,Do you play the recorder? Would you like to play with others in a group setting? Read through music? Come join us. All ages welcome.,"Do you play the recorder? Would you like to play with others in a group setting? Read through Renaissance literature? Come join us. In the 90-minute session we will start with beginner/easy reading and then move towards harder music. If you're a youth player, then come at the beginning. If you're more advanced, then come halfway through. Bring your instrument or use one of ours. There will be soprano recorders available at $6.00 each, and alto recorders for $12.00.",1.5,"$3 is music for the class. There will be soprano recorders available at $6.00 each, and alto recorders for $12.",3.0,15,,,2,2015-05-05 19:04:41 -0400
2625,Performing Arts Tent,2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,Pennsic Performing Arts,"",3871,*Psallite*: Medieval Music for Everyone,Performing Arts and Music,"",,false,"*Psallite* performs a variety of European pieces, including troubadour songs, *cantigas*, and motets. Most songs are sung in translation.","*Psallite's* goal is to bring medieval music to everyone, with a focus on the listener. The band performs a variety of European pieces, including troubadour songs, cantigas, and motets. Most songs are sung in translation. Featuring THL Kasha Alekseeva, Lady Jadwiga Krzyzanowska, and Lord Aaron Drummond.",1.0,"",,,,,1,2015-04-30 21:22:56 -0400
2916,Pine Box Traders (192),2015-08-02 17:00:00 -0400,2015-08-02 18:00:00 -0400,THL Egill the Loomwright,calontir,4266,Family Stick Weaving ,Pennsic University,"",,false,Family-oriented stick weaving. Youth welcome with parent or guardian.,"Family-oriented stick weaving. Youth welcome with parent or guardian. Stick weaving is a simple, weft-based weaving method. Great for making belts and straps. Upgradable to make everything from shawls to rugs. Fee covers sticks and string; take your work home with you.",1.0,Sticks & string,,,6.0,,2,2015-05-01 09:01:27 -0400
2908,A&S 1,2015-08-02 18:00:00 -0400,2015-08-02 19:30:00 -0400,Baroness Serafina Alamanni,meridies,4216,A New Way to Wire Weave: Anglo-Saxon Interweave,Pennsic University,European,,false,"Discussion and hands-on of a wire weaving technique unique to Anglo-Saxon areas. Knowledge of ""Viking"" wire weaving is assumed but not required. ","This will be a discussion of a historical wire weaving pattern and its differences from the Baltic area examples often called ""Viking"" wire weaving. We will be discussing the archaeological evidence for its construction and use. Ten kits will be available for $5 on a first-come basis for interested participants to practice the method and take home the materials to finish a chain. Observers are welcome.
The Baltic method, commonly known in the SCA as ""Viking"" wire weaving, will be discussed but not directly taught.",1.5,Kits include wire spool and tool for hands-on practice,,,5.0,10,1,2015-05-01 16:54:51 -0400
2710,A&S 5,2015-08-02 18:00:00 -0400,2015-08-02 19:30:00 -0400,Lady Albreda Aylese,east,3998,Arts and Sciences 50 Challenge Reception,Pennsic University,"",,false,"Anno Societatus 50 is here, so we're down to the final phase of the Challenge: celebrating!! ArtsAndSciences50.org","",1.5,"",,,,,1,2015-04-29 13:31:54 -0400
2309,Performing Arts Tent,2015-08-02 18:00:00 -0400,2015-08-02 19:00:00 -0400,Pennsic Performing Arts,"",3359,"Drake Oranwood, Singing Minstrel",Performing Arts and Music,"",,false,"Drake Oranwood, wandering minstrel, returns to the Pennsic stage to beguile you with tales boldly sung!","Drake Oranwood, wandering minstrel, returns to the Pennsic stage to beguile you with tales boldly sung and perform songs included on his first album, ʺHidden Goldʺ.
*Some material may be inappropriate for children under 12.*",1.0,"",,,,,1,2015-03-29 14:47:06 -0400
2515,South Battlefield,2015-08-02 18:00:00 -0400,2015-08-02 22:00:00 -0400,Mistress Ysemay Sterlyng,east,3739,Combat of the Thirty,Martial Activities,European,,false,This is a 30-versus-30 deed of arms inspired by the original Combat of the Thirty between French and English forces that occurred in 1351. ,"This is a 30-versus-30 deed of arms inspired by the original Combat of the Thirty between French and English forces that occurred in 1351. Combat standards are a modified counted-blows scenario that employs rules for capturing opponents and ransoming of captured parties. Participants must be acceptable to the captains of the French and English forces. Armour must be a reasonable attempt at a complete 14th-C harness, and weapons are restricted to ones that closely resemble their medieval counterparts. Final say on weapons and appropriate harness will be at the sole discretion of the captains.
Requirements: All participants must wear a 14th-C kit. Greaves are required and all are encouraged to wear chausses and braies. All weapons must closely resemble their medieval counterpart and are restricted to bastard swords, polearms of period design (axes, hammers, etc.), spears under 7', daggers and single-handed swords. All participants should be prepared to pay a ransom that they feel is appropriate to their station in the event that they are ""captured"" during this deed of arms. Rules of combat will be explained to all combatants before the CotT begins. ",4.0,"",,,,,1,2015-04-21 13:41:18 -0400
2361,A&S 13,2015-08-02 19:00:00 -0400,2015-08-02 19:45:00 -0400,Lord Jacob the Wanderer,east,3475,Bedtime Stories for Children,Pennsic University,Other,,false,Nightly telling of stories for children. ,7 pm nightly: Stories and fables for children. All are welcome to attend; must have adult escort.,0.75,"",,,,,11,2015-04-06 15:17:48 -0400
2310,Performing Arts Tent,2015-08-02 19:00:00 -0400,2015-08-02 20:00:00 -0400,Pennsic Performing Arts,"",3360,Duke Moonwulf and Michael Longcor,Performing Arts and Music,"",,false,"The concert that has become a Pennsic tradition! Songs, stories, history and hijinkery with Duke Moonwulf, Michael Longcor, and surprise friends.","The concert that has become a Pennsic tradition! Songs, stories, history and hijinkery with Duke Moonwulf Starkaadhersson along with his special guest/alter ego, Michael Longcor, and surprise friends.",1.0,"",,,,,1,2015-03-29 14:47:28 -0400
3110,Æthelmearc Royal (N04),2015-08-02 20:00:00 -0400,2015-08-02 22:00:00 -0400,Pennsic Performing Arts,"",4496,Known World Members of the Order of Defense ,Event,"",,false,"All members, and any who have received a writ for Known World Members of the Order of Defense, are invited to a simple gathering in Æthelmearc Royal.","All members of the Order of Defense from across the Known World, plus any who have received a writ to consider elevation to the Order, are invited to a simple gathering in Æthelmearc Royal so that we may meet each other and put names with faces. Light food and drink will be provided.",2.0,"",,,,,1,2015-05-07 20:47:41 -0400
2162,A&S 5,2015-08-02 20:00:00 -0400,2015-08-02 21:30:00 -0400,THL Elizabethe Alles,middle,3169,English Rosaries and Paternosters (with Slideshow),Pennsic University,European,,false,"Discusses prayer beads (paternosters) in England from the 11th to 16th centuries, especially the impact of the English Reformation. ","This class and slideshow focus on prayer beads (paternosters) in England from the 11th to 16th centuries, especially the impact of the English Reformation. ",1.5,"",,,,,1,2015-06-19 06:40:43 -0400
2546,Great Hall,2015-08-02 20:00:00 -0400,2015-08-03 00:00:00 -0400,THL James Blackcloak,ealdormere,3778,Beginner's Ball,Event,European,,false,"Not a dancer? Then this is the ball for you! Every dance will be taught, so no experience is required. Music and light refreshments will be provided.","Not a dancer? Or have two left feet? Then this is the ball for you! The Beginners' Ball lets you explore the joys of dance without needing any experience. This is a teaching ball, meaning every dance will be explained. And, like all the dance activities at Pennsic, you don't need to bring a partner! Music and light refreshments will be provided. ",4.0,"",,,,,1,2015-05-06 20:24:30 -0400
3056,Holt Heroetus (W01),2015-08-02 20:00:00 -0400,2015-08-02 22:00:00 -0400,THL Diccon de Reinport,middle,4444,Known World Siege Marshal Social,Pennsic University,"",,false,A social meeting for informal discussions about siege combat and marshaling.,"To promote convivial dialogue amongst the various groups of siege marshals in the Known World, THL Diccon de Reinport, former D.E.M. of Siege for the Middle Kingdom, is pleased to announce the 6th Annual Known World Siege Marshal Social to be hosted at the Holt Heroetus encampment at Pennsic War 43. Please join us for informal discussions about siege combat and marshaling and any other topics of interest.",2.0,"",,,,,1,2015-05-04 08:39:33 -0400
2291,Middle Eastern Tent,2015-08-02 20:00:00 -0400,2015-08-02 22:00:00 -0400,Lady Kharajin of Turku,atlantia,3287,*Guedra*: North African Trance Dance,Middle Eastern,Middle Eastern,,false,Brief instruction in dance followed by participation in *Guedra* ritual. All levels. Bring water. Bring a veil if you want to dance.,"Dance and chant will be taught, as well as some background info. (If you've heard the talk before, you can skip the first 30 minutes or so and come for the participation in the dance. Men must leave at that point.) Until our voices give out, we'll chant the *Guedra* for 1 to 4 dancers at a time. Bring a veil if you think you might want to dance. Everyone must participate in chant; no singing talent required, no dancing experience necessary. Bring water. Avoid wearing large jewelry.",2.0,"",,,,,1,2015-05-01 12:13:54 -0400
2223,Performing Arts Tent,2015-08-02 20:00:00 -0400,2015-08-02 21:30:00 -0400,Pennsic Performing Arts,"",3235,Efenwealt Wystle and Aénor d'Anjou,Performing Arts and Music,"",,false,For over 20 years these loopy Laurels have been making musical magic with their mix of sundry songs for SCAdians. Join in the annual concert fun!,"For over 20 years these loopy Laurels have been making musical magic with their mix of medieval melodies, bawdy ballads, terpsichorean tirades and sundry songs for SCAdians. Join in the fun for their annual Pennsic concert! *Some material may be inappropriate for children under 12.*",1.5,"",,,,,1,2015-03-26 19:43:52 -0400
2219,Performing Arts Tent,2015-08-02 21:30:00 -0400,2015-08-02 23:00:00 -0400,Pennsic Performing Arts,"",3237,*i Sebastiani!*,Performing Arts and Music,"",,false,"*i Sebastiani!* The greatest *Commedia dell'Arte* troupe in the entire world! Join us as we improvise, a wondrous entertainment in three acts!","Buon giorno! O, you lucky people! Truly you are blessed among the living, for into your lives has come *i Sebastiani*, the Greatest *Commedia dell'Arte* Troupe in the Entire World! Join us as we improvise, from the thinnest of outlines, a wondrous entertainment in three acts. You will be glad that you did! *Some material may be inappropriate for children under 12.*",1.5,"",,,,,1,2015-05-13 20:54:12 -0400
2303,Performing Arts Tent,2015-08-03 02:00:00 -0400,2015-08-03 05:00:00 -0400,Pennsic Performing Arts,"",3353,PA Afternoon Series: Bardic Arts Exhibition,Performing Arts and Music,"",,false,Come and enjoy an amazing afternoon display featuring a variety of bardic arts and artists from around the Known World!,Come and enjoy an amazing afternoon display featuring a variety of bardic arts and artists from around the Known World!,3.0,"",,,,,1,2015-03-30 15:50:20 -0400
2508,Blue List,2015-08-03 07:00:00 -0400,2015-08-03 08:00:00 -0400,Duke Paul of Bellatrix,an tir,3717,Bellatrix: Individual Session,Martial Activities,"",,true,"Individuals or small groups with Duke Paul, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org **to schedule** date/time. ","**Time/date not firm.** One to two hours with Duke Paul for individuals or small groups, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org to **schedule actual date/time**.",1.0,"",,,,,10,2015-06-09 21:30:53 -0400
2508,White List,2015-08-03 07:00:00 -0400,2015-08-03 08:00:00 -0400,Duke Paul of Bellatrix,an tir,3725,Bellatrix: Individual Session,Martial Activities,"",,true,"Individuals or small groups with Duke Paul, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org **to schedule** date/time. ","**Time/date not firm.** One to two hours with Duke Paul for individuals or small groups, covering any martial topic. **Contact Duke Paul** at paul@bellatrix.org to **schedule actual date/time**.",1.0,"",,,,,10,2015-06-09 21:30:53 -0400
2713,Dance Tent,2015-08-03 08:00:00 -0400,2015-08-03 09:00:00 -0400,Baroness Nadezda ze Zastrizl,middle,3951,"Yoga for Dancers, Fighters, or Pretty Much Anyone",European Dance,Other,,false,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. ,Yoga to help us through the rigors of war--regardless of our activities. Please bring a mat or towel and dress for modesty. Children may attend with a parent/guardian if they both participate. ,1.0,"",,,,,7,2015-05-07 19:27:13 -0400
2440,Denys the Decadent (Denys the Decadent's Camp),2015-08-03 08:00:00 -0400,2015-08-03 09:00:00 -0400,Master Denys the Decadent,æthelmearc,3611,12-Step Meetings,Pennsic University,Multiple Cultures,,false,"12-step meeting open to all recovery programs. AA, NA, OA, GA, SA, Alanon, etc.","Open meeting; all are welcome. 12-step meeting open to all recovery programs: AA, NA, OA, GA, SA, Alanon, etc.",1.0,"",,,,,11,2015-04-15 21:23:16 -0400
2477,Rapier List 2,2015-08-03 08:00:00 -0400,2015-08-03 09:00:00 -0400,Countess Elena d'Artois,æthelmearc,3640,*Études* 1 and 2 for Single Sword (Fencing),Rapier Activities,European,,false,"For all levels and teachers. Drills focus on form, balance, movement and coordination. *Études* for drill; elements from drill used to work in groups.","For beginner and intermediate fencers and those who teach them. These drills will focus on form, balance, movement and coordination. *Étude*1 (first week) is more linear; *Étude* 2 (second week) adds off line/lateral movement. Emphasis will be on learning the *études* for home drill, as well as taking elements out of the drill for more focused work in groups. ",1.0,"",,,,,7,2015-05-14 19:19:33 -0400
3138,Thunder Bird Atlatl (Thunder Bird Atlatl Booth #?),2015-08-03 08:00:00 -0400,2015-08-03 10:00:00 -0400,THL Grimolfr Ormalfrson,æthelmearc,4567,How to Make an Atlatl Dart,Pennsic University,Multiple Cultures,,true,How to make an atlatl dart from start to cast. Limit of 4 students participating in each class.,"",2.0,"",,,,,4,2015-05-27 19:02:19 -0400
3132,Youth Combat List,2015-08-03 08:00:00 -0400,2015-08-03 10:30:00 -0400,Lord Sven,middle,4525,Youth Combat,Youth Combat,"",,false,Morning Youth Combat Session,Morning Youth Combat Session,2.5,"",,,,,8,2015-05-13 20:03:29 -0400
2322,Performing Arts Tent,2015-08-03 08:30:00 -0400,2015-08-03 12:00:00 -0400,Pennsic Performing Arts,"",3383,Rehearsal (Closed): KWP,Performing Arts and Music,"",,false,Space in use.,Space in use.,3.5,"",,,,,6,2015-03-30 15:55:26 -0400
2154,Amphitheater,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Lady Cael O'Conail,æthelmearc,3150,*Commedia dell'Arte* for Youth,Performing Arts and Music,European,,false,"Hands-on class giving the description and history of *Commedia*, before having the youth create and eventually perform their own skit. Ages 13-17.","",1.0,"",,,,,5,2015-03-26 20:17:26 -0400
2518,Archery,2015-08-03 09:00:00 -0400,2015-08-03 11:00:00 -0400,Master Godric of Hamtun,east,3751,Populace Archery War Point Practice,Archery,"",,false,"Come to the Archery Range; practice the War Point shoots from 9-11 am during War Week except for Wednesday, August 5.","All archers can come to the Archery Range and practice the War Point shoots from 9 am to 11 am during War Week except Wednesday, August 5th, when the range is closed except for Archery Champions.",2.0,"",,,,,4,2015-04-30 20:32:45 -0400
2179,Artisan's Row A,2015-08-03 09:00:00 -0400,2015-08-03 16:00:00 -0400,Artisans Row,east,3199,Poetry Day,Artisan's Row,"",,false,Knowne World Poetry Competition. Demonstrations of styles of poetry used within our time period.,"",7.0,"",,,,,1,2015-03-01 14:29:05 -0500
2553,Artisan's Row B,2015-08-03 09:00:00 -0400,2015-08-03 16:00:00 -0400,Artisans Row,east,3800,Circa 1200 Day,Artisan's Row,European,,false,"Circa 1200 Day will feature a daily life exhibit. Activities planned for this day include a woodworker, glass worker and weaver.","Sponsored by House Yew-Bend, Circa 1200 Day will feature a daily life exhibit in the period that runs roughly from 1150 to 1250 CE in Western Europe. Scheduled demonstrators include a woodworker, glassworker, weaver, ""Daily Life on a Manor"", and more.",7.0,"",,,,,1,2015-04-25 18:13:40 -0400
2420,Artisan's Row C,2015-08-03 09:00:00 -0400,2015-08-03 16:00:00 -0400,Artisans Row,east,3573,Period Pigment Making Day,Artisan's Row,"",,false,"Learn how to make pigments - even ochre - from Pennsic mud.
","",7.0,"",,,,,1,2015-04-28 20:53:22 -0400
2197,A&S 1,2015-08-03 09:00:00 -0400,2015-08-03 11:00:00 -0400,Lady Iofa merch Macsen,meridies,3226,Game of Thrones: The Bayeux Tapestry,Pennsic University,European,,false,"Discussion of the history and construction of the Bayeux Tapestry, followed by hands-on practice in the Bayeux techniques.","A discussion of the history and creation of the Bayeux Tapestry as well as a hands-on session where students will learn and practice the various stitches found in the Bayeux Tapestry. Hands-on session will be limited to 15 participants; however, the remainder of the class is open to any wishing to attend. ",2.0,"Handout, embroidery hoop, needles, needle threader, wool embroidery floss.",,25,3.0,15,2,2015-03-07 17:22:02 -0500
2826,A&S 3,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,THL Helena Sibylla,middle,4122,Button Up!,Pennsic University,European,,false,Learn to make self-stuffed cloth buttons and hand-stitched buttonholes.,This class will cover the techniques used to make self-stuffed cloth buttons appropriate for clothing from the 14th century onward. We will also use the buttonhole stitch to make hand-sewn buttonholes.,1.0,"Kit contains materials to make several sample buttons (fabric, thread, and needle) as well as practice making buttonholes.",1.0,10,2.0,10,1,2015-05-06 13:43:27 -0400
3205,A&S 4,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,THL Isabella della Rosa,ansteorra,4642, Cheese from a Gallon of Milk: Feta Cheese,Pennsic University,"",,false,"From a gallon of milk a variety of cheeses can be made. When adding rennet and some bacteria cultures, you add feta.","From a gallon of milk a variety of cheeses can be made. When adding rennet and some bacteria cultures you select varieties such as cottage cheese, muenster, feta, or cream cheese. This project is to share how simple a fresh cheese is to make and how many variations can be made from a few kitchen items and a little extra kitchen equipment. ",1.0,"",,10,,,1,2015-06-23 12:09:41 -0400
2831,A&S 5,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Master Victor of Shrewsbury,æthelmearc,4128,Who Were the Cooks?,Pennsic University,European,,false,You’ve eaten food inspired by their recipes. But who were the cooks whose writings were popular in the MA? A whirlwind tour of the culinary masters.,You’ve eaten food inspired by their recipes. Perhaps you’ve even read their cookbooks. But who were those cooks whose writings were popular in the Middle Ages? A whirlwind tour of some of those fascinating individuals!,1.0,"",,25,,,2,2015-04-30 21:42:08 -0400
2147,A&S 7,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Mistress Hilderun Hugelmann,æthelmearc,3146,Livery Collars,Pennsic University,European,,false,"An exploration of this elite accessory, with a focus on earlier examples and historical significance, plus a discussion of how to adapt to SCA use. ","An exploration of this elite accessory, with a focus on earlier examples and historical significance, plus a discussion of how to adapt to SCA use. Some new information from previous years' classes. ",1.0,"",,10,,,2,2015-04-30 11:25:42 -0400
2550,A&S 11,2015-08-03 09:00:00 -0400,2015-08-03 11:00:00 -0400,Baroness Kaleeb the Green Eyed,atlantia,3798,Inlaid Patchwork,Pennsic University,European,,false,This class will investigate the wall-hanging technique of *intarsia* or inlaid patchwork. A small sample project will be worked in wool.,"This class will investigate the wall-hanging technique of *intarsia* or inlaid patchwork. A small sample project will be worked in wool. The project will be a pin cushion. This class is an intermediate stitching/embroidery class. Please bring small, wickedly-sharp fabric scissors and paper scissors.",2.0,"Wool fabric, handout and thread. Please bring small, wickedly-sharp fabric scissors and paper scissors.",2.0,12,5.0,12,1,2015-06-15 10:53:59 -0400
3004,A&S 13,2015-08-03 09:00:00 -0400,2015-08-03 10:30:00 -0400,Lady Mairin O'Cadhla,æthelmearc,4365,16th-Century Coif Make-and-Take,Pennsic University,European,,false,"A look at late Renaissance ladies' coifs and their basic construction. From a base pattern, we will take measurements to make a fitted coif in class.","A look at late Renaissance coifs and their basic construction. From a base pattern, we will take measurements to make a custom plain coif in class. Basic handsewing skills strongly recommended. Kit supplied with linen cloth, thread, needle, drawstring, base pattern, and handout.",1.5,"linen cloth, thread, needle, drawstring, base pattern, and handout.",1.0,8,4.0,8,2,2015-06-05 22:23:10 -0400
2890,A&S 15,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Lady Ester Pickering,atlantia,4197,Turk's Head Knot: Hands-On,Pennsic University,European,,false,A decorative knot used in Elizabethan times to hide the joining of threads such as on a sweet bag. Learn to create the flat and 3D versions hands-on. ,"The Turk's head knot, a decorative, yet challenging little knot. It was commonly used on sweet bags for decoration and to hide the joining of threads. Learn the flat and 3D versions of this knot in this hands-on class. Visit here for examples: http://traynedbandes.com/blog/2014/02/14/turks-head-knot-by-ester-pickering/",1.0,"Handout is in color
kit - faux gold & linen thread to practice with, chopstick and needle",2.0,20,2.0,12,1,2015-04-30 21:39:40 -0400
2505,Battlefield,2015-08-03 09:00:00 -0400,2015-08-03 12:00:00 -0400,Mistress Yvianne de Castel d'Avignon,æthelmearc,3716,Consorts' Info Point,Pennsic University,"",,false,A time and place for those who inspire or want to find out more about the rôle of consorts. Stop in for a visit and share information or ideas. ,"A time and place for those who inspire and those who want to find out more about the historic or modern rôle of consorts! Come and share information, stories and ideas. You do not have to attend the entire time. Drop in for as long as you'd like - a few minutes or couple of hours.",3.0,"",,,,,1,2015-05-01 01:43:40 -0400
3143,Cabochons (Bow Street),2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Lady Arastorm ,east,4551,Anglo-Saxon Context: Late Roman World ,Pennsic University,European,,false,"Neighboring cultures inform us about the Anglo-Saxons. We'll focus on the late Roman world, both survivals of the Romano-British and Roman/Byzantine.","To understand Anglo-Saxons we need to understand the people with whom they interacted, what came before and after. This series of workshops looks at the surrounding cultures through the lens of their interaction with the Anglo-Saxons. This workshop focuses on the the continuing influence of Rome. We'll cover the Romano-British culture and the cultures of the Mediterranean: Lombard, Visigoth, and other heirs to the Roman Empire, especially Constantinople.",1.0,"",,15,,,1,2015-05-29 21:19:58 -0400
3062,Dance Tent,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Lord Wilhelm,east,4414,Children's Dance: Italian Chaos,European Dance,European,,false,Come learn very simple dance steps that are all one needs to know to do a dance. (Any youth in attendance require a responsible adult present.),This is a chance to learn very simple dance steps that are all one needs to know to do a dance. They can be as simple or as complicated as the dancers desire. Knowing these allow the students to dance at balls and are starting points to learn other dances.,1.0,"",,,,,1,2015-05-07 20:44:47 -0400
2544,Family Range,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Master Godric of Hamtun,east,3774,Beginning Archery Classes: 12 and Under ,Archery,"",,false,"To all younger archers: Come to the archery range on Aug 3 and Aug 4 to be instructed in the art of archery, 9 am to 10 am","To all younger archers: Come to the archery range on Aug 3 and Aug 4 to be instructed in the art of archery, 9 am to 10 am. You must be 12 or under to participate.",1.0,"",,,,,2,2015-04-26 18:17:28 -0400
2463,Herald's Point (Herald's Point),2015-08-03 09:00:00 -0400,2015-08-03 12:00:00 -0400,Brunissende Dragonette,east,3626,Heraldic Road Show,Heraldry,"",,false,Come watch and participate as the Sovereigns of Arms decide a letter. This is highly entertaining and very educational. All are welcome.,Come watch and participate as the Sovereigns of Arms explain by examples how decisions are made for names and devices. This is highly entertaining and very educational for heralds of all levels. All are welcome.,3.0,"",,,,,1,2015-04-18 11:36:20 -0400
2824,Little Dragon's Hoard (214),2015-08-03 09:00:00 -0400,2015-08-03 12:00:00 -0400,Master Solvarr Hammarson,atlantia,4121,No Excuses Blacksmithing ,Pennsic University,Other,,false,No frills blacksmithing for people who want to get started on a shoestring budget.,"",3.0,"",,,,,1,2015-04-30 20:20:29 -0400
2376,Middle Eastern Tent,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Olah Erzebet,atlantia,3512,Intro to Middle Eastern Dance for Every Body,Middle Eastern,"",,false,"Exploring motion for the purposes of dance, and applying our discoveries to bellydance basics. ","Embracing bodies of all types and mobilities, this low-key dance class will go from an accounting of your resources to introducing a range of bellydance basics. We will be moving what can be moved, and shaking what we’ve got, so please dress comfortably!",1.0,"",,,,,2,2015-05-04 17:59:10 -0400
2918,Pine Box Traders (192),2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,THL Egill the Loomwright,calontir,4270,Inkle Weaving Basics,Pennsic University,"",,false,"Using the continuous warping method, you will warp the loom and weave an inkle strip.","Using the continuous warping method, you will warp the loom and weave an inkle strip. Classroom loaner looms available or bring your own.",1.0,"weaving materials, string",,,3.0,,6,2015-05-01 19:18:33 -0400
3121,Rapier List 1,2015-08-03 09:00:00 -0400,2015-08-03 12:00:00 -0400,Mistress Alyna of the Ilex,atlantia,4507,Freescholar Charity Tournament,Rapier Activities,"",,false,"Triple elimination, progressive weapons tournament with a donation ($5 recommended) to ""buy"" your place in the tournament.","The Freescholars of Atlantia invite you to participate in the 10th annual Freescholar Charity Tournament. A donation ($5 recommended) secures your place in this contest. The format will be triple elimination, with progressive weapons forms following Atlantian rapier conventions. Combatants start first with single sword. Upon taking a loss, the combatant may take up a defensive secondary. Upon taking a second loss, the combatant may take up an offensive secondary. All proceeds will be donated to Susan G. Komen for breast cancer research. ",3.0,"",,,,,1,2015-05-13 22:08:05 -0400
3197,Thrown Weapons Range,2015-08-03 09:00:00 -0400,2015-08-03 10:00:00 -0400,Baron Kryss Kostarev,atlantia,4624,Atlatls of the World,Thrown Weapons,Multiple Cultures,,false,Atlatls (spear/dart throwers) have been found on every continent except Antarctica. Come see their wide variety and try them out.,"Atlatls (spear throwers, *woomeras, speerschleuders*, etc.) have been found on every continent except Antarctica. They have been used from 30,000 years ago up to the present day in some areas. Come see their wide variety and actually try them out on the atlatl range.",1.0,A limited number of atlatls and darts will be available for sale to the students who attend this class. Variable costs $15-$50.,,25,,,2,2015-06-17 20:39:59 -0400
2707,Æthelmearc 1,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,THL Zofia Kowalewska,æthelmearc,3933,Beginning Scribal Track,Æthelmearc Scribal,Multiple Cultures,,false,"Four-day scribal arts beginner track. Topics Include layout, calligraphy and painting. Must attend all 4 days. Kit provided. No experience necessary.","If you ever wanted to try the scribal arts, now is your chance. The Scribal Beginner Track will introduce you to the tools of the trade, design elements, layout, outlining, painting and calligraphy. We'll create a scroll from beginning to end. No experience necessary and a beginner kit is included with the class cost. ",2.0,Cost of beginning scribal kit.,,,10.0,10,4,2015-04-30 19:36:12 -0400
2266,Æthelmearc 2,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lady Ursula Mortimer,middle,3279,The Calf-to-Codex Project ,Æthelmearc Scribal,"",,false,A panel discussion about the ongoing effort to prepare a bound book using entirely period methods and materials.,"“Calf-to-Codex” is a Middle Kingdom project to create a medieval book from the ground up, using entirely period methods and materials. We are looking to the SCA 50th Anniversary as our deadline. Eventually the finished volume is intended to be read from at events and gatherings. This session will feature reports of progress to date and what has been learned, and look ahead to the final steps.",1.0,"",,,,,1,2015-04-26 22:09:46 -0400
2173,Amphitheater,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lady Noelle de la Plume,middle,3190,Fool School,Performing Arts and Music,Other,,false,Are you a fool or a fool wannabe? Come to Fool School to share and learn. Prepare a 5-minute skit to perform. All ages/experience levels welcome.,"Are you a fool or a fool wannabe? Come to Fool School to share and learn. Fools/performers of all types and experience levels are welcome. Jugglers, magicians, singers, freaks and geeks. Get help creating or honing a skit of no more than 5 minutes to perform in the Amphitheater Wednesday 8/6 6-7 pm.
You might even become a “Licensed Fool.” Performing is not mandatory.",1.0,"",,,,,9,2015-05-04 22:26:09 -0400
3019,A&S 2,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Mistress Alicia Langland,æthelmearc,4421,Thorsberg Trousers: Pants That Last!,Pennsic University,European,,false,Tired of repairing pants that rip in unmentionable places? Then you’ll love these pants based on trousers from an Iron Age burial!,"Tired of repairing pants that rip in unmentionable places? Then you’ll love these pants based on trousers from an Iron Age burial! Learn what you’ll need to make them yourself: fabrics, seams, pattern, and construction.",2.0,Handout is 11 pages long.,3.0,35,,,2,2015-05-03 20:56:11 -0400
2677,A&S 3,2015-08-03 10:00:00 -0400,2015-08-03 11:30:00 -0400,THL Ambros Kyrielle,æthelmearc,3983,Intoduction to Labyrinths,Pennsic University,Multiple Cultures,,false,"Labyrinths wend through all of period. Learn the basic types and how to draw them. Explore their change over time. ”The Chalk Labyrinth Guy”, teacher.","It matters not if you are Tudor or Turk, Norseman or Nepalese, Breton or Borgia, labyrinths are a part of your world. Topics covered are ""What *is* a labyrinth?"" ; categories and types; how to draw one; and a whirlwind tour of labyrinths in period. From storytelling devices to dancing floors, from monster trap to heavenly road the labyrinth has meant many things to many peoples. Brought to you by ""That Chalk Labyrinth Guy.""",1.5,"",,,,,2,2015-04-29 12:44:33 -0400
2796,A&S 4,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Lady Margaret Wolseley,atlantia,4096,Period-ic Sewing Table: Choosing Material Elements,Pennsic University,"",,false,"Gather the best materials for great garb: fabrics, notions, and tools, both period and modern, noble and working class. Handout with samples.","Will this fabric drape the way the gown in that portrait does? What thread should I use for this garment? Gathering the right materials is essential to getting beautiful results from your costuming efforts. This class will cover terms for fabrics and notions and discuss the importance of using quality tools for sewing. We will consider outer layers, linings and interlinings, courtly garments and everyday clothes. We will discuss both period fabrics and modern substitutes. Students can purchase a materials sample card.",2.0,"Cardstock with labeled samples of different fabric and thread types attached - linen, wool, silk, cotton, synthetic. As many as I can fit.",3.0,20,,,1,2015-04-30 20:29:19 -0400
2480,A&S 5,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Mistress Anthoinette de Martel,middle,3647,Child's Play by Breughel,Pennsic University,European,,false,"Breughel's painting, *Children At Play*, has approximately 80 different games or childhood activities represented. Let's look and play.","Breughel's painting, *Children At Play*, has approximately 80 different games or childhood activities represented. Let's look at the many things he painted, play some games and perhaps make one.",1.0,"Materials for a game item.
",,20,2.0,10,1,2015-04-18 10:26:47 -0400
2168,A&S 6,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Mistress Rhiannon y Bwa,æthelmearc,3179,"10th-17th-C. Spindle Sticks and Whorls, Hands-On",Pennsic University,European,,true,"Learn use of Viking, Anglo Norse and Netherlandish recreated spindle sticks and whorls, including 'tuning' spindle and whorl. Hands-on spinning.","Hands-on spinning includes a selection of re-created Anglo Norse spindle sticks from Coppergate, Viking spindles from Norse settlements of the 10th-17th centuries (including North Atlantic Saga type), and Netherlandish spindles/*Raeren* whorls from the 16th-17th century also used in England. Some examples different than last year will be available to test and to buy. Instructor will teach 'tuning' whorls to spindle sticks and is particularly interested in the spinability of surviving spindle sticks with the 'belly bump' on the shaft. Tapered whorl holes that match tapered spindle sticks will be explored. Students will spin wool (provided) on these re-creations in class. All levels welcome, though this is not a beginners' class. Note that this class has 'loaner' spindle sticks available for those who don't want to purchase them, or bring your own and some wool to spin if we run out.
I have just produced some YouTube videos on medieval spinning that you might enjoy before coming to Pennsic, but it is not required! http://www.youtube.com/playlist?list=PLjUCUOUGq_WC-sv2N_qfIhpJDi8LbR-9U, or just search YouTube for ""missingspindle"". And a blog on Viking /medieval spinning here: missingspindle.blogspot.com.",2.0,Dependent on whether student uses loaner spindle or purchases spindles in price range from $20.00-$40.00,1.0,15,,15,2,2015-03-01 16:27:25 -0500
2133,A&S 7,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Master Ulric von der Insel,east,3127,The Very New Persona,Pennsic University,Multiple Cultures,,false,"You're brand, spanking new, and you don't know who you want to be? No worries! I'll talk through good starting points, and then we just chat. Relax!","You're brand, spanking new, and you don't know who or what you want to be? No worries! I'll talk through common considerations and good starting points for information. After we go through the basics, we just chat about our thoughts. Relax! It's not supposed to be work!",1.0,"",,,,,3,2015-02-21 16:45:22 -0500
2093,A&S 8,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lady Tilla Chandler,middle,3072,Children's Garb Roundtable,Pennsic University,"",,false,"A discussion on how to make inexpensive garb that can be modified as your child grows, including teen years. Share your tips, ideas and questions.","Join a discussion on how to make inexpensive garb for your child as they grow, that will grow with them. Share your tips, ideas and questions. Bring samples of your favorite go-to garb for your child. The handout will include ideas, websites, pictures that have been gleaned over the years. I will be including a Teen Edition as mine have gotten to that point.",1.0,1 for paper/color ink,1.0,20,,,1,2015-05-06 13:44:37 -0400
3031,A&S 9,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,THL Elsa von Heilbronn,middle,4394,Manuscripts and Motets: Western Music 1200-1300,Performing Arts and Music,European,,false,An overview of developments in Western European music 1200-1300. Listen to music while looking at manuscript facsimiles. No music background needed.,"An overview of developments in Western European music from 1200-1300, with plenty of listening examples. We’ll look at music from the great manuscript collections, such as *Carmina Burana* and the *Cantigas de Santa Maria*, as well as the dawn of music with multiple parts, including the French motet, and, just briefly, trends in music notation and theory. Color handout.",1.0,"Copy cost - 10-12 pages, many in color. ",2.0,25,,,1,2015-05-06 23:06:21 -0400
2537,A&S 10,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Lady Mikalina Lydushka Pavlovna,east,3769,Peppers Are Not Just Corns,Pennsic University,Multiple Cultures,,true,You think that peppers are just peppercorns? Nope! We will cover peppers from peppercorn to vine fruit! And how to use them!,"You think that peppers are just peppercorns? Think twice! Think three times! We will cover peppers from peppercorn to vine fruit, the different histories and uses! Add some spice to your life and your food! Become informed and adventurous!",2.0,"2 for the handout, 3 for the food tasting and cooling foods and water.",2.0,30,3.0,30,1,2015-04-30 17:54:16 -0400
2876,A&S 14,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lord Jayme Hume of Berwyk,east,4184,So You Want to Make a Cloister Garden?,Pennsic University,European,,false,What is a cloister garden? Where were they? What was in them? How were they made and kept up? Q&A-type session.,"",1.0,"",,,,,1,2015-05-01 19:37:54 -0400
2895,A&S 15,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lady Ester Pickering,atlantia,4198,Fingerweaving: The Greene Dorge,Pennsic University,European,,false,Finger weaving was a technique used to make purse strings and lacings in the 16th century. Basic finger weaving experience required. ,Finger weaving was a technique used to make purse strings and lacings in the 16th century. There are dozens of patterns created by this technique involving one or more workers. This class will teach the Greene Dorge pattern that I used on my sweet bag. Basic finger weaving experience required. To see how the weave looks: http://traynedbandes.com/blog/2014/02/09/fingerloop-braiding-for-my-sweete-bag/,1.0,"Handouts are printed in color.
Kits are thread to practice the weave with a safety pin. ",2.0,20,1.0,12,1,2015-05-01 17:14:50 -0400
3142,Cabochons (Bow Street),2015-08-03 10:00:00 -0400,2015-08-03 11:30:00 -0400,Lady Arastorm ,east,4563,*RúnValdr*,Pennsic University,European,,false,"In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. A modern system for rune magick.","In period, runes were very rarely used for divination, but there are many examples of runes being used for magic. This is a system that shows, for example, how to use Norse or Anglo-Saxon runes to hear even at distance, or to awaken inanimate objects. This is a system of energy manipulation using runes and another set of symbols. This workshop introduces the symbols and what each of them is used for, and includes the attunement. It does *not* include introduction to runes. You may take this workshop without knowing the runes, but you will need to learn them to be able to use this system. You will be able to use this technique immediately. ",1.5,0,,15,,,4,2015-05-22 21:02:42 -0400
2917,Dance Tent,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Mistress Felice Debbage,middle,4219,"Flash Mob Prep Class: *La Castellana, Petit Riens*",European Dance,European,,false,"Don't know the dances? Take this class to prepare! Mob is Tuesday, 8/4, noon, in grassy area near main gate.","Don't know the dances, *La Castellana* and *Petit Riens*? Want to be in a flash mob? Take this class to prepare. We will learn all the moves and practice how to start the flash mob so you'll look like a pro when we perform it for the lucky folks who happen to be strolling by. Musicians who can play the songs well are welcome, too! We will dance *La Castellana* first and then immediately jump into *Petit Riens.* Meet at noon on Tuesday, 8/4, in the wide, grassy south merchant area near the main gate for the flash mob. If you aren't able to join us for the rehearsal, then jump in on the dance during the first chorus of *La Castellana.* ",1.0,"One handout, front and back",0.25,,,,1,2015-05-07 12:36:44 -0400
2381,Fort,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Countess Joleicia of Litchfield,ealdormere,3489,Armoured Castle Battle,Martial Activities,"",,false,"Two 30-minute unlimited resurrection battles. Sides switch after the first battle. Includes combat archery and siege.
","Two 30-minute unlimited resurrection battles. Sides switch after the first battle. One point per battle.
• Middle/East start on the west side of the field, Æthelmearc and allies start on the east side of the field.
• Field Layout:
• 36'x36' tower 36' outside the gate, with an 18' doorway in both sides.
• 50' wall extending from tower south side to a 27' gap, then another 50' wall.
• Additional hay bales set up inside the castle on the east edge to mimic the actual fortifications on the west edge.
• Southern field edge will be 100' past the south flag.
• Edge of the world / start lines (east and west edges) and exact wall angle and placement will be determined by the DKEMs for Siege and Combat Archery to ensure a proper safety buffer.
• Resurrection occurs at the East and West edges of the world.
• Enemy troops may **not** move across the field and enter the castle from their opponents’ side from the south, though the main gate of the fort will be open for entering and exiting.
• Three banners; possession determined by the colored flag being raised above the 50% mark at time. Full gauntlets required to activate the flag.
• Banner #1 placed 50' past the end of the wall in the open field.
• Banner #2 in the center of the tower.
• Banner #3 in the center of the castle far enough in that it's not on the slope.
• One possession check at final cannon. Point awarded to side with majority possession.
• All holds will be local save in the event of a medical emergency. Only general holds will stop the clock.
• Combat archery and siege will be allowed in this battle. Gleaning of tubular and siege ammunition is allowed.
• Siege may move during the battle. Siege starting line will be determined on site.",2.0,"",,,,,1,2015-04-18 10:22:33 -0400
2662,Games Tent,2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Lord István Nyiregyhazi,east,3905,*Alquerques*,Games,Middle Eastern,,false,Period game from the Middle East in the family of checkers-style games. We will teach the rules and the play.,"Period game from the Middle East in the family of checkers-style games. We will review what is known, the rules, and the play through some games to learn the basic strategies.",1.0,"",,10,,,1,2015-05-07 18:36:20 -0400
2224,General Archery,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,THL Graem de Cherbourg,ealdormere,3255,Raise Your Archery Game,Archery,Multiple Cultures,,false,"A quick tutorial on the fundamentals of hand bows, arrows and archery as a discipline followed by on-range tutorial on shooting technique.","A quick tutorial on the fundamentals of hand bows, arrows and archery as a discipline followed by on-range tutorial on shooting technique. First time shooters welcome.",2.0,"",,,,,1,2015-04-18 13:28:59 -0400
3008,"Good Friends Camp (N-01, usually on St. Lawrence)",2015-08-03 10:00:00 -0400,2015-08-03 14:30:00 -0400,Mistress Katarina Helene von Schoenborn,middle,4370,Coptic Sketch Book,Pennsic University,Middle Eastern,,true,New this year: Learn to build a Coptic sketch book with wood covers and exposed spine.,New this year: Students will build a Coptic sketch book with wood covers and exposed spine using techniques used in Egypt in the 4th century.,4.5,"Fee includes leather, wood boards, paper, linen thread, and a handout.",3.0,6,7.0,6,2,2015-05-01 21:13:43 -0400
2481,Minerva's Spindle (158),2015-08-03 10:00:00 -0400,2015-08-03 11:00:00 -0400,Mistress Gabrielle d'Auvergne,æthelmearc,3671,Storytelling Academy,Performing Arts and Music,Multiple Cultures,,false,"Explore genres, tools, styles, and uses of storytelling. Cultural and medieval approaches, applications, performance coaching. New topics each day.","During this nine-day academy, students will gain knowledge about the history and techniques for storytelling both in the SCA and the modern world. Students may attend individual sessions or all of the academy. There will be guest teachers and time for students to practice and receive feedback. The academy will culminate in a student performance. No classes are repeated. The focus is on comfort, nurturing, and honing skills within the students’ capabilities. All levels are welcome. Students may pick up a class outline at the academy space, Minerva’s Spindle 158, where classes will also be listed on the message board. Seating is limited; feel free to bring your own chair.",1.0,"",,,,,9,2015-04-25 18:48:47 -0400
3193,"PA Tent, Backstage (St. Lily's Commons (in University))",2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Lady Carowyn Silveroak,east,4619,On Being a Prop Person,Performing Arts and Music,"",,false,Have you ever wanted to work behind the scenes of the theater? Come and learn all the hats a prop person wears! Meet backstage of the PA Tent.,"Have you ever wanted to work behind the scenes of the theater? Come and learn all the hats a prop person wears: making, maintaining, tips, tricks, and pointers! Rehearsals for the Pennsic play *The Merchant of Venice* start at 8:30 am Mon-Thu at the Performing Arts Pavilion. Find the prop person and see how it's done! We'll keep it quiet, since this is during rehearsals. Look for the lady with the light blue-and-white baldric. Meet backstage of the PA Tent.",2.0,0,,,,,3,2015-06-23 12:11:57 -0400
2332,Performing Arts Rehearsal Tent,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,Pennsic Performing Arts,"",3405,Pennsic Choir: Open Rehearsal,Performing Arts and Music,"",,false,The Pennsic Choir welcomes all interested singers! Songs in honor of the 500th anniversary of the Coronation of François I of France.,"The Pennsic Choir welcomes all interested singers! This year's concert features songs of the early to mid-16th century in honor of the 500th anniversary of the Coronation of François I of France. Singing in the Pennsic Choir is an intense and rewarding experience. We rehearse two hours each day for a week, then perform a concert on Thursday evening of War Week. The ability to read music and sight-sing is helpful, but not required if you learn the music in advance. Sheet music and audio tracks are available online now at https://sites.google.com/site/kwcpennsicchoir/home/pennsic-choir/pennsicxliiichoirs",2.0,"",,,,,7,2015-05-06 01:31:11 -0400
2399,University Point,2015-08-03 10:00:00 -0400,2015-08-03 12:00:00 -0400,"Master Emrys Eustace, yclept Broom",æthelmearc,3525,Weed Walk ,Pennsic University,Other,,false,Wild plant identification. Wear walking shoes and hat; leave from Univ. Point. Different teachers on different days; walk with us more than once!,"Cooper's Lake abounds with medicinal and food plants that were used by various primitive and medieval cultures. Learn to identify them during a walk around the campsite. The walk will take place rain or shine. Please wear sturdy shoes and a hat. Meet at University Point for the start of the class. We have three wonderful new teachers this year, enabling us to offer this class more times!",2.0,"",,,,,11,2015-04-12 20:27:32 -0400
2103,Family Range,2015-08-03 10:30:00 -0400,2015-08-03 11:30:00 -0400,Lord Naran Numuchi,atlantia,3083,Thumb Ring Archery,Archery,Other,,true,"Learn how to shoot like a Mongol. Requires a horse bow and arrows at least 4"" longer than your finger draw. Some rings will be available for sale. ","Learn to shoot the way Mongols and other steppes and horse archers did. Lord Naran Numuchi, Bow Khan of the Great Dark Horde, Companion of the Order of the Yew Bow (Atlantia) and Ponte Alto Baronial Marshal and Archery Champion, has been shooting thumb ring since 1998, and has focused on the use and history of static-eared recurve bows the whole time.",1.0,"",,,,,2,2015-05-28 00:03:22 -0400
2108,Middle Eastern Tent,2015-08-03 10:30:00 -0400,2015-08-03 12:00:00 -0400,Ziggy,atlantia,3091,Beginning Drumming,Middle Eastern,Middle Eastern,,false,The basic rhythms used most often in drum circles and music within the SCA. A 4-part class that teaches different rhythms each day. BYO drum.,"Learn the basic rhythms used most often in drum circles and music within the SCA. This is a 4-part class that teaches different rhythms each day. BYO Drum.
Day 1- *Saidi, Beladi, Maqsum*
Day 2- *Chiftitelli, Masmoudi*
Day 3- *Ayub, Malfouf*
Day 4- *Kashlimah* and other strange stuff
",1.5,"",,,,,4,2015-05-01 13:03:04 -0400
2997,Æthelmearc 2,2015-08-03 11:00:00 -0400,2015-08-03 12:00:00 -0400,Lady Daniela Schwartzhaupt,atlantia,4345,Gilding the Scroll,Æthelmearc Scribal,Multiple Cultures,,false,Hands-on class. Students will learn quick and inexpensive ways to create a gilded border using patent metal-leafing materials.,"Ever get a scroll assignment that you needed to get done quickly and still wanted it to look special or wanted to make something shine when held up in court? In this hands-on class, students will learn a quick and inexpensive way to create an illuminated border using patent metal-leafing materials that can be obtained at a local arts and crafts store. Students will leave the class with an illuminated note card.",1.0,"$2 handout fee
$10 kit fee for students to use in class and take away a starter gilding set.",2.0,20,10.0,10,1,2015-05-29 21:17:51 -0400