<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Holiday Special 20 </title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/</link><description> Fill the world with Mirth &amp;amp; Merry! Your chance to win Tool Kits, Shopping Carts and Gifts to Give to Others!</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title /><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/b/blog/posts/victoria-s-secret-a-nervous-elf-can-lose-his-head?CommentId=b3197703-9edd-425b-a761-3a25c71d74cc</link><pubDate>Fri, 21 Oct 2022 13:51:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b3197703-9edd-425b-a761-3a25c71d74cc</guid><dc:creator>dougw</dc:creator><description>Cool comical elf.</description></item><item><title /><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/b/blog/posts/a-qt-py-christmas---add-sound?CommentId=2cce4819-ec63-401c-b1d5-7d269d559871</link><pubDate>Mon, 18 Jul 2022 23:24:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:2cce4819-ec63-401c-b1d5-7d269d559871</guid><dc:creator>sobellinni</dc:creator><description>/* I made my own sound driver because the one in this blog does not work this sketch will play random files labeled with numbers */ #include #include #include &amp;quot;SdFat.h&amp;quot; #include &amp;quot;Adafruit_SPIFlash.h&amp;quot; #include &amp;quot;Adafruit_ZeroTimer.h&amp;quot; // Uncomment to run example with custom SPI and SS e.g with FRAM breakout // #define CUSTOM_CS A5 // #define CUSTOM_SPI SPI #if defined(CUSTOM_CS) &amp;amp;&amp;amp; defined(CUSTOM_SPI) Adafruit_FlashTransport_SPI flashTransport(CUSTOM_CS, CUSTOM_SPI); #elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2 use same flash device that store code. // Therefore there is no need to specify the SPI and SS Adafruit_FlashTransport_ESP32 flashTransport; #else // On-board external flash (QSPI or SPI) macros should already // defined in your board variant if supported // - EXTERNAL_FLASH_USE_QSPI // - EXTERNAL_FLASH_USE_CS/EXTERNAL_FLASH_USE_SPI #if defined(EXTERNAL_FLASH_USE_QSPI) Adafruit_FlashTransport_QSPI flashTransport; #elif defined(EXTERNAL_FLASH_USE_SPI) Adafruit_FlashTransport_SPI flashTransport(EXTERNAL_FLASH_USE_CS, EXTERNAL_FLASH_USE_SPI); #else #error No QSPI/SPI flash are defined on your board variant.h ! #endif #endif Adafruit_SPIFlash flash(&amp;amp;flashTransport); // file system object from SdFat FatFileSystem fatfs; File myFile; // This example can have just about any frequency for the callback // automatically calculated! float freq = 8000.0; // 8 KHz int phase = 0; int fnote = 0; int val =0; int writebufcounter = 0; int writebufpointer = 0; int readbufcounter = 0; int readbufpointer = 0; byte bval=0; byte fval=0; byte soundbuffer[2][256]; bool bufferfull[2]; int soundbytes; int whichbuf =0; int filenumb; char filenumber[10]; char filename[10]; // timer tester Adafruit_ZeroTimer zerotimer = Adafruit_ZeroTimer(3); void TC3_Handler() { Adafruit_ZeroTimer::timerHandler(3); } // the timer callback void TimerCallback0(void){ digitalWrite(9, LOW); //read buffer till all read and make it not full if (bufferfull[readbufpointer]==true){ bval = soundbuffer[readbufpointer][readbufcounter]; readbufcounter++; if (readbufcounter&amp;gt;255){ bufferfull[readbufpointer] = false; //enable file to write if (readbufpointer==0) digitalWrite(6, LOW); if (readbufpointer==1) digitalWrite(7, LOW); readbufcounter = 0; readbufpointer = 1 &amp;amp; (readbufpointer ^1); // point to the other buffer } } else { bval = 0x80; } val = ((int)bval 255){ bufferfull[writebufpointer] = true; //stop file to write if (writebufpointer==0) digitalWrite(6, HIGH); if (writebufpointer==1) digitalWrite(7, HIGH); writebufcounter = 0; writebufpointer = 1 &amp;amp; (writebufpointer ^1);; // point to the other buffer } } } // file is done reading, see if there is still a buffer to fill while (bufferfull[writebufpointer]=false){ soundbuffer[writebufpointer][writebufcounter] = 0x80; // fill sound buffer with audio 0 writebufcounter++; if (writebufcounter&amp;gt;255){ bufferfull[writebufpointer] = true; if (writebufpointer==0) digitalWrite(6, HIGH); if (writebufpointer==1) digitalWrite(7, HIGH); writebufcounter = 0; } //DONE } digitalWrite(8, LOW); } void setup() { // Open serial communications and wait for port to open: Serial.begin(115200); while (!Serial) { delay(1); // wait for serial port to connect. Needed for native USB port only } Serial.print(&amp;quot;Initializing Filesystem on external flash...&amp;quot;); // Init external flash flash.begin(); // Open file system on the flash if ( !fatfs.begin(&amp;amp;flash) ) { Serial.println(&amp;quot;Error: filesystem is not existed. Please try SdFat_format example to make one.&amp;quot;); while(1) yield(); } Serial.println(&amp;quot;initialization done.&amp;quot;); pinMode(6, OUTPUT); pinMode(7, OUTPUT); pinMode(8, OUTPUT); pinMode(9, OUTPUT); tc_clock_prescaler prescaler = TC_CLOCK_PRESCALER_DIV1; zerotimer.enable(false); zerotimer.configure(prescaler, // prescaler =1 TC_COUNTER_SIZE_16BIT, // bit width of timer/counter TC_WAVE_GENERATION_MATCH_PWM // frequency or PWM mode ); zerotimer.setCompare(0, 6000); // 48000000/8000 = 6000 zerotimer.setCallback(true, TC_CALLBACK_CC_CHANNEL0, TimerCallback0); zerotimer.enable(true); } void loop() { filename[0]=0; filenumb = random(36); itoa(filenumb,filenumber,10); strcat(filename,filenumber); strcat(filename, &amp;quot;.wav&amp;quot;); Serial.println(filename); play(filename); delay(1000); }</description></item><item><title>File: elf14 presents: Project14 Build a Present</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/145565</link><pubDate>Thu, 28 Apr 2022 21:01:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:4d5d2713-736f-49b2-873a-d72e4b9a4866</guid><dc:creator>tariq.ahmad</dc:creator><description>Submit your holiday project for a chance to win cool prizes, shopping carts, and gifts to give other members!</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/holiday">holiday</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/project14">project14</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/20">20</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/special">special</category></item><item><title>Blog Post: Thanks Secret Santa! (and also Arduino)</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/b/blog/posts/thanks-secret-santa-and-also-arduino</link><pubDate>Tue, 08 Feb 2022 07:49:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:a4cac42a-122b-4c5d-a02d-eceefe111f41</guid><dc:creator>fmilburn</dc:creator><description>Secret Santa sent me a set of security bits. I also was fortunate enough to get one of the Arduino Limited Edition Uno Minis for placing an Arduino in my Robot Santa project... Thanks Element14 and Arduino!</description></item><item><title>Wiki Page: Featured Content Triptych Setup Doc</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/w/setup/26834/featured-content-triptych-setup-doc</link><pubDate>Sat, 04 Dec 2021 00:18:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:31a2820c-a14e-429f-991c-6ad704ffb797</guid><dc:creator>tariq.ahmad</dc:creator><description>A Lego Christmas game The Christmas Forest Victoria&amp;#39;s secret: A nervous Elf can lose his head Holiday Special 20: The Learning Stone Dog Shaped Arduinos. What could go wrong? Reach Out And Touch The World</description></item><item><title>Wiki: Setup</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/w/setup</link><pubDate>Sat, 04 Dec 2021 00:18:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3b957caa-b6bd-44b0-81a7-30afda5982af</guid><dc:creator /><description /></item><item><title>Wiki: Documents</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/w/documents</link><pubDate>Sat, 20 Nov 2021 00:58:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:e6dac8d3-c4e5-455b-8249-b7191d448ffa</guid><dc:creator /><description /></item><item><title>File: QT Py Christmas Ornament</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143719</link><pubDate>Wed, 10 Nov 2021 21:07:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b95dc88d-e4d3-4595-a0ad-273c0bdc9cbd</guid><dc:creator>ralphjy</dc:creator><description>Christmas ornament using Adafruit QT Py plus Neopixels, OLED and audio</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/oled">oled</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/audio">audio</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/neopixels">neopixels</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/memory">memory</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/qt">qt</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/flash">flash</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/playback">playback</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/adafruit">adafruit</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/py">py</category></item><item><title>File: Play WAV from SD card</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143691</link><pubDate>Wed, 10 Nov 2021 21:07:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5cc0e590-1a8d-45ef-baa9-57d8c3669906</guid><dc:creator>ralphjy</dc:creator><description>Playing Christmas song on Xiao Expansion board using SamdAudio library</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/samdaudio">samdaudio</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/WAV">WAV</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Xiao">Xiao</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/holidayspecial20ch">holidayspecial20ch</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/sd">sd</category></item><item><title>File: SCPI Test from C#</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143683</link><pubDate>Wed, 10 Nov 2021 21:07:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:3b573507-8667-470b-9c12-3080bfc78cee</guid><dc:creator>Fred27</dc:creator><description>Testing control of a power supply from C#</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/scpi">scpi</category></item><item><title>File: QT Py CapSense Button Demo</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143652</link><pubDate>Wed, 10 Nov 2021 21:06:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:23888d37-b411-4335-9d40-d4ac74d1a92d</guid><dc:creator>ralphjy</dc:creator><description>Use Capacitive Touch Button to switch NeoPixel patterns</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/oled">oled</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/adafruit_5F00_qt_5F00_py">adafruit_qt_py</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/holidayspecial20ch">holidayspecial20ch</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/adafruit_5F00_freetouch">adafruit_freetouch</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/neopixel_5F00_ring">neopixel_ring</category></item><item><title>File: QT Py Ornament</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143637</link><pubDate>Wed, 10 Nov 2021 21:06:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:44684faf-1ef3-4054-93af-0eedb7cc02fe</guid><dc:creator>ralphjy</dc:creator><description>Prototype of QT Py Ornament for 2020</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/oled">oled</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/adafruit_5F00_qt_5F00_py">adafruit_qt_py</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/holidayspecial20ch">holidayspecial20ch</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/neopixel_5F00_ring">neopixel_ring</category></item><item><title>File: Accidental giant Lego minifigures in VR</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/143659</link><pubDate>Wed, 10 Nov 2021 21:06:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:2b50c8a1-860e-4769-925f-dc23563d61b5</guid><dc:creator>Fred27</dc:creator><description>Whilst messing around with Unity and VR, I seem to have created a weird badly-scaled universe</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/LEGO">LEGO</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/vr">vr</category></item><item><title>Wiki Page: Setup</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/w/setup</link><pubDate>Wed, 10 Nov 2021 04:36:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:084680e0-e6ee-4a60-bc2d-edb7296d8e72</guid><dc:creator>ChristyZ</dc:creator><description>The documents in this Wiki can be used to populate widgets on the group home page. &amp;quot;Featured Content Triptych Setup Doc&amp;quot; contains the 3 featured items - image, descriptive text, and button, that you can edit to change the image, text and link/button text as appropriate for this group. If there isn&amp;#39;t already a 3-box widget showing on the home page for this group, to display the document, you will need to get someone with Admin rights (one of the Devs or Pauline&amp;#39;s team) to add a Wiki Viewer widget for you and insert the url to the document. From then on, you will be able to update the content of that widget by making changes to the document. &amp;quot;Featured Video Setup Doc&amp;quot; lets you embed a video - YouTube, Brightcove, or an image that links to a document somewhere on the site that contains the video - and that can also be put into a Wiki Viewer (in the skinny column) using the url. From then on, that widget can be updated by changing out the image/link or embedded video that is in that document.</description></item><item><title>Wiki Page: Featured Video Setup Doc</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/w/setup/26833/featured-video-setup-doc</link><pubDate>Wed, 10 Nov 2021 04:36:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:57bd1810-3ec0-4a23-b8fa-44a348d07166</guid><dc:creator>ChristyZ</dc:creator><description /><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/featuredVideo">featuredVideo</category></item><item><title>File: Corgi Arduino "corgi Blinky sketch"</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/90648</link><pubDate>Wed, 27 Oct 2021 15:46:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:2d720924-5c2b-4133-bf49-cdc155ee8fcf</guid><dc:creator>hugohu</dc:creator><description>d13 led and RXTX com. demo</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/arduino">arduino</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/corgi">corgi</category></item><item><title>File: Every day the clock radio from Groundhog Day!</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/37663</link><pubDate>Sun, 10 Oct 2021 09:20:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:e043512a-191d-4eab-bf27-f35ea529123f</guid><dc:creator>tariq.ahmad</dc:creator><description>Homage to the movie Groundhog Day from 1993! Eine Hommage an den Film &amp;quot;Und t&amp;#228;glich gr&amp;#252;&amp;#223;t das Murmeltier&amp;quot; von 1993! Movie info: http://www.imdb.com/title/tt0107048/</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/timetravel">timetravel</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/repeat">repeat</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/movie">movie</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/clock%2bradio">clock radio</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/film">film</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/radio">radio</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/day">day</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/wiederholung">wiederholung</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/time">time</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/1993">1993</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/radiowecker">radiowecker</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/immer%2bwieder">immer wieder</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Und%2bt_26002300_228_3B00_glich%2bgr_26002300_252_3B0026002300_223_3B00_t%2bdas%2bMurmeltier">Und t&amp;#228;glich gr&amp;#252;&amp;#223;t das Murmeltier</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Groundhog%2bDay">Groundhog Day</category></item><item><title>File: Bing Crosby - White Christmas (1942) Original Version</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/21044</link><pubDate>Sat, 09 Oct 2021 11:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:c2a1a2f3-ab84-4f29-a0bf-c1f02bfc979a</guid><dc:creator>phoenixcomm</dc:creator><description>&amp;quot;White Christmas&amp;quot; is an Irving Berlin song reminiscing about an old-fashioned Christmas setting. According to the Guinness Book of World Records, the version sung by Bing Crosby is the best-selling single of all time, with estimated sales in exces...</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Bing%2b_2800_Website_2900_">Bing (Website)</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/White%2bChristmas">White Christmas</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Sinatra">Sinatra</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Merry%2bChristmas">Merry Christmas</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/holiday">holiday</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Bing%2bCrosby">Bing Crosby</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Bing%2b1942">Bing 1942</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/christmas">christmas</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Jazz">Jazz</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Vocal">Vocal</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/White%2bChristmas%2bOriginal">White Christmas Original</category></item><item><title>File: Erran Baron Cohen - Dreidel</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/21043</link><pubDate>Sat, 09 Oct 2021 11:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:2bd5413b-f957-444c-8ea2-013a10a8558b</guid><dc:creator>phoenixcomm</dc:creator><description>Extrait de l&amp;#39;album &amp;#39;Songs in the Key of Hanukkah&amp;#39; (&amp;#224; para&amp;#238;tre en exclusivit&amp;#233; digitale le 08 d&amp;#233;cembre 2008). Inscrivez-vous &amp;#224; la newsletter ici : http://www.musicreg.net/checkform?force_form=1&amp;amp;form_id=5932</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/of">of</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/key">key</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Cohen">Cohen</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/in">in</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Baron">Baron</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/the">the</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/hanukkah">hanukkah</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Dreidel">Dreidel</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Songs">Songs</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Erran">Erran</category></item><item><title>File: Peter, Paul and Mary - Light One Candle (25th Anniversary Concert)</title><link>https://community.element14.com/challenges-projects/project14/holidayspecial20/m/managed-videos/21041</link><pubDate>Sat, 09 Oct 2021 11:38:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:442f1df8-23fc-45f2-9a64-0c8433de7085</guid><dc:creator>phoenixcomm</dc:creator><description>Peter, Paul and Mary perform &amp;quot;Light One Candle&amp;quot; live at their 25th anniversary concert in 1986. Now, two and a half decades later, in celebration of the 50th anniversary of the formation of the group in the famed Greenwich Village, this joyous yet...</description><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/folk">folk</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/25th%2banniversary">25th anniversary</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/blowin%2bin%2bthe%2bwind">blowin in the wind</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Grammy">Grammy</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/This%2bland%2bis%2byour%2bland">This land is your land</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Peter%2bSeeger">Peter Seeger</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Puff">Puff</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/acoustic">acoustic</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/trio">trio</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Bob%2bDylan">Bob Dylan</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/concert">concert</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/candle">candle</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Paul%2bStookey">Paul Stookey</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/reunion">reunion</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/light">light</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Woody%2bGuthrie">Woody Guthrie</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/paul">paul</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Leavin%2bon%2ba%2bjet%2bplane">Leavin on a jet plane</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/live">live</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/60s">60s</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Mary%2bTravers">Mary Travers</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/The%2bmagic%2bdragon">The magic dragon</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Album%2b1700">Album 1700</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/and%2bmary">and mary</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Peter%2bYarrow">Peter Yarrow</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Shout%2bFactory%2bMusic">Shout Factory Music</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Shout%2bFactory">Shout Factory</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/reunite">reunite</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/music">music</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/one">one</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Billboard">Billboard</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/protest%2bsongs">protest songs</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/peter">peter</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/INDMUSIC">INDMUSIC</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/performance">performance</category><category domain="https://community.element14.com/challenges-projects/project14/holidayspecial20/tags/Greenwich">Greenwich</category></item></channel></rss>