$rs = NULL; return $rs; } /* Form RS code generator polynomial from its roots */ $rs->genpoly = array_fill(0, $nroots+1, 0); $rs->fcr = $fcr; $rs->prim = $prim; $rs->nroots = $nroots; $rs->gfpoly = $gfpoly; /* Find prim-th root of 1, used in decoding */ for($iprim=1;($iprim % $prim) != 0;$iprim += $rs->nn) ; // intentional empty-body loop! $rs->iprim = (int)($iprim / $prim); $rs->genpoly[0] = 1; for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) { $rs->genpoly[$i+1] = 1; // Multiply rs->genpoly[] by @**(root + x) for ($j = $i; $j > 0; $j--) { if ($rs->genpoly[$j] != 0) { $rs->genpoly[$j] = $rs->genpoly[$j-1] ^ $rs->alpha_to[$rs->modnn($rs->index_of[$rs->genpoly[$j]] + $root)]; } else { $rs->genpoly[$j] = $rs->genpoly[$j-1]; } } // rs->genpoly[0] can never be zero $rs->genpoly[0] = $rs->alpha_to[$rs->modnn($rs->index_of[$rs->genpoly[0]] + $root)]; } // convert rs->genpoly[] to index form for quicker encoding for ($i = 0; $i <= $nroots; $i++) $rs->genpoly[$i] = $rs->index_of[$rs->genpoly[$i]]; return $rs; } //---------------------------------------------------------------------- public function encode_rs_char($data, &$parity) { $MM =& $this->mm; $NN =& $this->nn; $ALPHA_TO =& $this->alpha_to; $INDEX_OF =& $this->index_of; $GENPOLY =& $this->genpoly; $NROOTS =& $this->nroots; $FCR =& $this->fcr; $PRIM =& $this->prim; $IPRIM =& $this->iprim; $PAD =& $this->pad; $A0 =& $NN; $parity = array_fill(0, $NROOTS, 0); for($i=0; $i< ($NN-$NROOTS-$PAD); $i++) { $feedback = $INDEX_OF[$data[$i] ^ $parity[0]]; if($feedback != $A0) { // feedback term is non-zero // This line is unnecessary when GENPOLY[NROOTS] is unity, as it must // always be for the polynomials constructed by init_rs() $feedback = $this->modnn($NN - $GENPOLY[$NROOTS] + $feedback); for($j=1;$j<$NROOTS;$j++) { $parity[$j] ^= $ALPHA_TO[$this->modnn($feedback + $GENPOLY[$NROOTS-$j])]; } } // Shift array_shift($parity); if($feedback != $A0) { array_push($parity, $ALPHA_TO[$this->modnn($feedback + $GENPOLY[0])]); } else { array_push($parity, 0); } } } } //########################################################################## class QRrs { public static $items = array(); //---------------------------------------------------------------------- public static function init_rs($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) { foreach(self::$items as $rs) { if($rs->pad != $pad) continue; if($rs->nroots != $nroots) continue; if($rs->mm != $symsize) continue; if($rs->gfpoly != $gfpoly) continue; if($rs->fcr != $fcr) continue; if($rs->prim != $prim) continue; return $rs; } $rs = QRrsItem::init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad); array_unshift(self::$items, $rs); return $rs; } }
Warning: Cannot modify header information - headers already sent by (output started at /htdocs/wp-content/plugins/the-events-calendar/common/vendor/phpqrcode/qrrscode.php:1) in /htdocs/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/iCalendar/iCalendar_Handler.php on line 257

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/wp-content/plugins/the-events-calendar/common/vendor/phpqrcode/qrrscode.php:1) in /htdocs/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 511

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/wp-content/plugins/the-events-calendar/common/vendor/phpqrcode/qrrscode.php:1) in /htdocs/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 512

Warning: Cannot modify header information - headers already sent by (output started at /htdocs/wp-content/plugins/the-events-calendar/common/vendor/phpqrcode/qrrscode.php:1) in /htdocs/wp-content/plugins/the-events-calendar/src/Tribe/iCal.php on line 513
BEGIN:VCALENDAR VERSION:2.0 PRODID:-//The CandleLIT Experience - ECPv6.15.16.1//NONSGML v1.0//EN CALSCALE:GREGORIAN METHOD:PUBLISH X-WR-CALNAME:The CandleLIT Experience X-ORIGINAL-URL:https://candlelitexperience.com X-WR-CALDESC:Events for The CandleLIT Experience REFRESH-INTERVAL;VALUE=DURATION:PT1H X-Robots-Tag:noindex X-PUBLISHED-TTL:PT1H BEGIN:VTIMEZONE TZID:Europe/Paris BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:20240331T010000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:20241027T010000 END:STANDARD BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:20250330T010000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:20251026T010000 END:STANDARD BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:20260329T010000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:20261025T010000 END:STANDARD BEGIN:DAYLIGHT TZOFFSETFROM:+0100 TZOFFSETTO:+0200 TZNAME:CEST DTSTART:20270328T010000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:+0200 TZOFFSETTO:+0100 TZNAME:CET DTSTART:20271031T010000 END:STANDARD END:VTIMEZONE BEGIN:VTIMEZONE TZID:America/Chicago BEGIN:DAYLIGHT TZOFFSETFROM:-0600 TZOFFSETTO:-0500 TZNAME:CDT DTSTART:20250309T080000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:-0500 TZOFFSETTO:-0600 TZNAME:CST DTSTART:20251102T070000 END:STANDARD BEGIN:DAYLIGHT TZOFFSETFROM:-0600 TZOFFSETTO:-0500 TZNAME:CDT DTSTART:20260308T080000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:-0500 TZOFFSETTO:-0600 TZNAME:CST DTSTART:20261101T070000 END:STANDARD BEGIN:DAYLIGHT TZOFFSETFROM:-0600 TZOFFSETTO:-0500 TZNAME:CDT DTSTART:20270314T080000 END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:-0500 TZOFFSETTO:-0600 TZNAME:CST DTSTART:20271107T070000 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;VALUE=DATE:20250126 DTEND;VALUE=DATE:20250127 DTSTAMP:20260225T070700 CREATED:20251005T195920Z LAST-MODIFIED:20251005T200758Z UID:9454-1737849600-1737935999@candlelitexperience.com SUMMARY:Coffee & Candles DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/coffee-candles/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/IMG_9610.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20250210 DTEND;VALUE=DATE:20250211 DTSTAMP:20260225T070700 CREATED:20251005T195630Z LAST-MODIFIED:20251005T200758Z UID:9458-1739145600-1739231999@candlelitexperience.com SUMMARY:Cocktails and candles DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/cocktails-and-candles/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/IMG_9679.jpg END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20250417T080000 DTEND;TZID=Europe/Paris:20250417T170000 DTSTAMP:20260225T070700 CREATED:20251005T195720Z LAST-MODIFIED:20251005T200758Z UID:9457-1744876800-1744909200@candlelitexperience.com SUMMARY:Frost and Flame DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/frost-and-flame/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/IMG_9609.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20250522 DTEND;VALUE=DATE:20250523 DTSTAMP:20260225T070700 CREATED:20251005T195130Z LAST-MODIFIED:20251005T200758Z UID:9448-1747872000-1747958399@candlelitexperience.com SUMMARY:Lumiere and Luxe DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/lumiere-and-luxe/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/IMG_9788.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20250719 DTEND;VALUE=DATE:20250720 DTSTAMP:20260225T070700 CREATED:20251005T195759Z LAST-MODIFIED:20251005T200758Z UID:9456-1752883200-1752969599@candlelitexperience.com SUMMARY:Pressed and Poured DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/pressed-and-poured/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/IMG_9607.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20250913 DTEND;VALUE=DATE:20250914 DTSTAMP:20260225T070700 CREATED:20251005T195956Z LAST-MODIFIED:20251005T200758Z UID:9453-1757721600-1757807999@candlelitexperience.com SUMMARY:Workshop at Nkula DESCRIPTION:Our handcrafted candles bring a gentle glow and a captivating scent that creates the perfect cozy atmosphere. Ideal for quiet nights in or intimate gatherings\, each candle is a little touch of comfort for your everyday moments. URL:https://candlelitexperience.com/event/workshop-at-nkula/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/06/https___cdn.evbuc_.com_images_1102749373_567118670045_1_original.jpeg END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20251030T183000 DTEND;TZID=Europe/Paris:20251030T213000 DTSTAMP:20260225T070700 CREATED:20251005T191015Z LAST-MODIFIED:20251117T230554Z UID:9437-1761849000-1761859800@candlelitexperience.com SUMMARY:Petals & Flames DESCRIPTION:Join us for an intimate\, hands-on evening of creativity\, connection\, and cozy fall vibes. Petals & Flames brings together two timeless elements — flowers and candlelight — for a workshop designed to spark inspiration and community. \nHosted at COSIGN Studios\, this workshop is perfect for women and men who enjoy creative experiences\, networking\, and supporting local businesses. \nYour Ticket Includes: \nPetite Wrapped Bouquet – Craft your own hand-tied bouquet (10–12 stems) featuring seasonal blooms and greenery\, guided by Fleurish Bouquets & Occasions. \nCustom 8oz Candle – Pour and personalize your own fall-inspired candle with Veronica\, owner of The Candle Lit Experience. \nComplimentary Food & Drinks – Enjoy delicious light bites and beverages from local DFW restaurants. \nCommunity & Networking – Connect with like-minded creatives\, entrepreneurs\, and community members in a cozy\, welcoming setting. \nPhoto-Ready Moments – Capture your experience in a beautiful space designed for connection and creativity. URL:https://candlelitexperience.com/event/petals-flames/ LOCATION:Cosign Studio\, 126 glass st\, suite 110\, Dallas\, 75207\, United States ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2025/09/IMG_1221.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20251207 DTEND;VALUE=DATE:20251208 DTSTAMP:20260225T070700 CREATED:20251006T223247Z LAST-MODIFIED:20251117T230616Z UID:9539-1765065600-1765151999@candlelitexperience.com SUMMARY:CandleLIT Connection DESCRIPTION:Candlelit Connection: A Massage Candle & Wellness Experience \nJoin us for an intimate\, hands-on event of creativity\, sensuality\, and connection. Candlelit Connection blends the art of candle making with playful exploration\, designed to spark curiosity and confidence. \nHosted in a cozy\, welcoming space\, this workshop is perfect for anyone looking to unwind\, learn something new\, and embrace both wellness and pleasure in a fun\, approachable way. \nYour Ticket Includes: \nCustom Massage Candle – Craft your own body-safe massage candle with Veronica\, owner of The Candlelit Experience. \nWax Play Workshop– Learn fun\, safe ways to explore sensual wax play with Bre\, Certified Sexologist & Educator. Perfect for beginners or couples looking to add something new. \nLight Bites & Drinks – Enjoy complimentary food and beverages while you create and connect. \nPhoto-Ready Moments – Capture your experience in a beautifully curated space\, designed for connection and creativity. URL:https://candlelitexperience.com/event/candlelitconnection/ LOCATION:Body Jam Essentials\, 500 Singleton Blvd Unit 1109\, Dallas\, 75212\, United States CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/8B8A1990-2.jpg END:VEVENT BEGIN:VEVENT DTSTART;TZID=America/Chicago:20260201T133000 DTEND;TZID=America/Chicago:20260201T150000 DTSTAMP:20260225T070700 CREATED:20251218T033240Z LAST-MODIFIED:20260128T223756Z UID:10130-1769952600-1769958000@candlelitexperience.com SUMMARY:Candle Workshop @ Almost Home Taproom DESCRIPTION:Pour\, blend\, and create at our Candle Making Workshop hosted at Almost Home Taproom on February 1 from 1-3pm and February 21 from12-2pm . Guests will design a personalized candle in a cozy taproom setting\, making it the perfect mix of creativity and connection. Sip\, socialize\, and leave with a candle you made yourself.\nTicket includes: 1 Candle Making Session + $15 credit to the restaurant towards drinks/food \nTickets here: https://AlmostHomeTaphouse.eventbrite.com \n  URL:https://candlelitexperience.com/event/candle-workshop-almost-home-taproom/ LOCATION:Almost Home Taproom\, 850 W Eldorado Pkwy\, Little Elm\, TX\, 75068 CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2023/07/8B8A1990-1.jpg ORGANIZER;CN="Candlelit Experience":MAILTO:CampusCandlesco@gmail.com END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20260208T140000 DTEND;TZID=Europe/Paris:20260208T173000 DTSTAMP:20260225T070700 CREATED:20251005T195433Z LAST-MODIFIED:20260128T224750Z UID:9459-1770559200-1770571800@candlelitexperience.com SUMMARY:Fragrance & Flavors: A Tea Blending and Candle Making Workshop DESCRIPTION:Get creative and chill out blending teas and crafting candles in this fun\, hands-on workshop!\n\n\n\nFragrance & Flavors: Tea Blending + Candle Making Workshop\n\n\nRSVP Here \n\n\nJoin us for a super fun and immersive Fragrance & Flavors experience—where scent meets sip! This in-person workshop is perfect for anyone who loves cozy vibes\, beautiful aromas\, and delicious tea. \nDuring this hands-on class\, you’ll explore the art of tea blending and candle making\, guided by two expert-led experiences in one unforgettable session. \n✨ What You’ll Experience:\n\nCreate custom tea blends using premium loose-leaf teas\nPour 1 custom candle\, choosing from 5 signature fragrances\nLearn how to blend your own unique fragrance for your candle\nEnjoy the perfect pairing—light your candle while sipping your own tea\nConnect\, unwind\, and get creative in a relaxed\, welcoming atmosphere\n\n🍃 Tea Education by LEAFBERRI\nIn this hands-on experience\, guests will create one custom loose-leaf tea blend based on personal taste and caffeine preference. Choose your base — purple (low caffeine)\, yellow (medium)\, black (higher)\, or cacao (caffeine-free) — then layer it with aromatic botanicals like rose petals\, lavender\, peppermint\, and orange peel.Guests may blend a single base or combine cacao with a caffeinated tea for a richer\, chocolate-forward profile. Along the way\, you’ll learn how different teas and botanicals influence flavor\, aroma\, and overall experience.All ingredients and guidance are provided. No prior experience needed.✨ Includes: \n\nOne custom tea blend to take home\n\n\nGuided tea blending session\nA relaxed\, creative atmosphere\n\nYou’ll gain insight into tea origins\, flavor profiles\, and blending techniques you can enjoy long after the workshop. \n🕯️ Candle Making Instruction by The Candlelit Experience\nOur candle experts will guide you step-by-step through the candle-making process—from fragrance selection to pouring—so you leave with a candle that’s uniquely yours. \n🌿 Perfect For:\n\nGirls’ nights\nDate nights\nSelf-care lovers\nTea & candle enthusiasts\nAnyone looking for a creative\, sensory experience\n\n📍 Event Details:\nDate: February 8\, 2025\nTime: 2pm (Instruction begins at 2:30 pm)\nLocation: 1300 S Polk St #282\, Dallas\, TX 75224 (free visitor parking) \nAll materials are included—just bring your creativity and good vibes. You’ll leave with your handcrafted tea blends\, your custom candle\, and a whole new appreciation for fragrance and flavor. \n✨ Only 15 seats are currently available—reserve yours today. We can’t wait to create with you! \nPlease email info@candlelitexperience.com if you are no longer able to attend and an at home candle kit will be shipped to you. URL:https://candlelitexperience.com/event/candles-and-cocktails/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2025/09/8B8A1853.jpg END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20260213T183000 DTEND;TZID=Europe/Paris:20260213T210000 DTSTAMP:20260225T070700 CREATED:20251006T224340Z LAST-MODIFIED:20260128T230056Z UID:9547-1771007400-1771016400@candlelitexperience.com SUMMARY:Pink & Vino @ HALL Arts Hotel DESCRIPTION:Bring your girlfriends for rosé\, light bites\, and a hands-on candle-making experience with The CandleLIT Experience at HALL Arts Hotel.\n\n\n\nPink & Vino: A Creative Pour is an elevated girls’ night out at HALL Arts Hotel\, blending creativity\, connection\, and indulgence. Guests are invited to gather with friends for an intimate evening of rosé\, curated light bites\, and a hands-on candle-making workshop led by The CandleLIT Experience. \nParticipants will craft custom candles to take home as personalized keepsakes\, all while enjoying a stylish\, social atmosphere. The evening also features a signature welcome drink and a chic photo booth experience by Dear Lumière Studio\, perfect for capturing unforgettable moments in a beautifully curated setting. \nCelebrate friendship and love this Valentine’s season—Happy Valentine’s Day! 💖 \nTicket Cost: $40.00++ URL:https://candlelitexperience.com/event/driptherapy/ LOCATION:HALL Arts Hotel\, 1717 Leonard St\, Dallas\, TX\, 75201 CATEGORIES:Workshops ATTACH;FMTTYPE=image/png:https://candlelitexperience.com/wp-content/uploads/2023/06/Copilot_20250828_070510.png END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20260214T130000 DTEND;TZID=Europe/Paris:20260214T150000 DTSTAMP:20260225T070700 CREATED:20251007T003723Z LAST-MODIFIED:20260128T221740Z UID:9550-1771074000-1771081200@candlelitexperience.com SUMMARY:Cupid & Candles DESCRIPTION:The Creative Juices Group®️ x The Candlelit Experience present our 3rd Annual Cupid & Candles: A Valentine’s Candle-Making Experience\n\n\n\nThe Creative Juices Group®️ x The Candlelit Experience proudly present our 3rd Annual Cupid & Candles: A Valentine’s Candle-Making Experience for Couples and Friends! \nGrab your boo\, your bestie\, or your crew\, and join us for a night that blends romance\, creativity\, and pure fun! Let’s take Valentine’s vibes to the next level with: A hands-on candle-making class led by The Candlelit Experience\, Great music to set the mood\, Wine\, champagne\, light bites\, and decadent desserts. Whether you’re coming for the romance or just the vibes\, this will be a night to remember! Don’t miss your chance to create something special—and make lasting memories. \nEarly bird tickets & our 2 FOR 1 Special ends 1/29/2026. PLEASE NOTE THIS IS AN INTIMATE STYLE EVENT & SEATS ARE VERY LIMITED!! | (Our 2 For 1 Special will automatically add 2 tickets when selected at checkout for the special price shown) \nSaturday February 14\, 2026 | 1:00PM – 3:00PM \nLocation: 2009 S Ervay St. Dallas\, Texas 75215 | Solhaus Loft \n🎟️ WHAT YOUR TICKET INCLUDES: \n\nA Hands-on CANDLE-MAKING CLASS led by The Candlelit Experience\nCustomize your own 8oz candle—choose your candle color\, vessel\, and fragrance\nComplimentary champagne to sip while you create\nMusic\, Vibes\, and Fun all night long\nDelicious Light bites\, Desserts\, & Additional Refreshments\nTwo complimentary cocktails per guest (Must be 21+ to consume)\nAccess to a festive Valentine’s-themed backdrop for selfies\nAccess to on site vendor: Luxe Linx (Providing beautiful permanent jewelry services)\nDIY Valentine Cards Station\nTwo Raffles presented at the end of event\n\nPLEASE NOTE: SEATS ARE LIMITED AND THIS EVENT IS NON-REFUNDABLE!! – ALL SALES ARE FINAL \n\nGo back Your message has been sent\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n\nName(required)\n\n \n \n \n \n \n \n \n \n Warning\n \n \n \n \n\n\nEmail(required)\n\n \n \n \n \n \n \n \n \n Warning\n \n \n \n \n\n\nWebsite\n\n \n \n \n \n \n \n \n \n Warning\n \n \n \n \n\n\nMessage\n\n \n \n \n \n \n \n \n \n Warning\n \n \n \n \n \nWarning.\n \n \n \n \n \n Submit URL:https://candlelitexperience.com/event/cupid-candles/ LOCATION:Dallas\, Texas\, 500 Singleton blvdunit 1109\, Dallas\, TX\, 75212\, United States ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2025/09/8B8A1878.jpg ORGANIZER;CN="Candlelit Experience":MAILTO:CampusCandlesco@gmail.com END:VEVENT BEGIN:VEVENT DTSTART;TZID=Europe/Paris:20260228T120000 DTEND;TZID=Europe/Paris:20260228T145900 DTSTAMP:20260225T070700 CREATED:20251005T200110Z LAST-MODIFIED:20260128T224251Z UID:9452-1772280000-1772290740@candlelitexperience.com SUMMARY:Plant & Pour: Candle Making + Plant Terrarium Workshop DESCRIPTION:Join us for a fun Plant & Pour Workshop where you can create your own plant terrarium and hand-pour a candle to take home!\nRSVP Here\n\n\n\nWelcome to the Plant & Pour Workshop at Energy Gardens Terrariums! Join us for a fun-filled event where you can craft your very own plant terrarium and hand-pour a unique creation. Get your hands dirty while learning about plant care and design. This in-person workshop is perfect for plant lovers and craft enthusiasts alike. Don’t miss out on this opportunity to unleash your creativity and take home a beautiful piece of greenery + fill your home with the aromas of your new candle creation! \nWhen: Saturday\, January 31 at 12pm and Saturday\, February 28\, 2026 (pick one or pick both!) \n\nCandle Making begins at 12:30pm\nPlant Terrarium instruction begins at 1:30 pm\nAny remaining time will be for mingling!\n\nParking: Free street parking available \nCheck out our last Plant & Pour: https://www.instagram.com/reel/DQmo6Y-EUAj/?igsh=Z3c0aGl4N2dncGds \nTickets are non-refundable. If you are no loger able to attend in person please email Info@CandlelitExperience.com and an at home candle making kit will be shipped to you URL:https://candlelitexperience.com/event/plant-pour/ LOCATION:TX CATEGORIES:Workshops ATTACH;FMTTYPE=image/jpeg:https://candlelitexperience.com/wp-content/uploads/2025/09/IMG_1005-scaled.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20260510 DTEND;VALUE=DATE:20260511 DTSTAMP:20260225T070700 CREATED:20251007T004129Z LAST-MODIFIED:20260128T223611Z UID:9553-1778371200-1778457599@candlelitexperience.com SUMMARY:Hugs & Love: 3rd Annual Mothers Day Brunch DESCRIPTION:Join The Creative Juices Group and The Candlelit Experience May 9th to enjoy a hands on candle-making experience\n\n\n\nThe Creative Juices Group® & The Candlelit Experience Presents: 3rd Annual Hugs & Love | A Mother’s Day Brunch & Candle-Making Experience \nBring your mother\, wife\, sister\, aunt or friend! and come have fun with us as we make this Mother’s Day a special one yet again! Enjoy Brunch vibes + a Hands-on candle-making class led by The Candlelit Experience. In addition to Music\, Mimosa bar\, Catered Brunch and DIY Flower Bouquet Bar. \nPLEASE NOTE THIS IS AN INTIMATE STYLE EVENT & SEATS ARE VERY LIMITED!!… THIS IS AN ADULT EVENT 21+ \nSaturday May 9\, 2025 | 12:00PM – 3:00PM (Brunch) \nLocation: Dallas Texas\, 75215 \nTICKET INCLUDES: \n\nHands on CANDLE-MAKING CLASS led by The Candlelit Experience\nMeet Founder/CEO of The Creative Juices Group & The Creative Juices Group – Studio\nCreate your own 8oz Candle from choice of Candle color\, Vessel and Fragrance\nFlower Bar ( you may add flowers to your candle or leave as is once made)\n**Remeberance Candle Option Available: In honor of those who’ve lost their mothers or mother figures**\nMimosa Bar or Signature Cocktail\nMusic| Vibes | Fun\nCatered Brunch options (Includes 1 appetizer\, 1 main course\, and Dessert)\nAdditional Refreshments\nAccess to take selfies on event backdrop\nFree parking\n\nPLEASE NOTE: SEATS ARE LIMITED AND THIS EVENT IS NON-REFUNDABLE!! – ALL SALES ARE FINAL URL:https://candlelitexperience.com/event/hugs-love-3rd-annual-mothers-day-brunch/ LOCATION:Dallas\, Texas\, 500 Singleton blvdunit 1109\, Dallas\, TX\, 75212\, United States CATEGORIES:Workshops ATTACH;FMTTYPE=image/png:https://candlelitexperience.com/wp-content/uploads/2025/10/Screen-Shot-2026-01-28-at-4.14.08-PM.png END:VEVENT END:VCALENDAR