BCPS celebrates the 100th day of school (2024)

Back to homepage

Subscriber Login

Please subscribe to keep reading. You can cancel at any time.

Loading&hellp;

'; } else { var sFallBack = 'Click here to subscribe'; } $('#lee-services-list .loading').hide(); $('#lee-services-list').html('

'+sFallBack+'

'); $('.lee-featured-subscription').html(sFallBack); } function lee_formatPackage(oService){ try { var bOnlyModal = true; var oSettings = lee_getPackageSettings(oService.HomeMembership); var newService = {}; if(parseInt(oService.WebFeatureFG) === 2) return false; if(oService.WebStartPrice != ''){ var custom = JSON.parse(oService.WebStartPrice); $.each(custom, function(k,v){ newService[k] = v; }); } if(bOnlyModal && newService.in_modal && newService.in_modal.toLowerCase() === 'false') return false; if(!bOnlyModal && newService.not_members && newService.not_members.toLowerCase() === 'true') return false; newService.has_featured_class = newService.featured ? 'featured-package' : ''; newService.sort = parseInt((newService.sort) ? newService.sort : oSettings.sort); newService.title = (newService.package_title && newService.package_title != '') ? newService.package_title : oSettings.title; newService.level = oService.HomeMembership; newService.html = oService.WebOfferHTML; newService.disabled = newService.disable_purchase ? 'disabled' : ''; var price = lee_formatPackagePrice(newService.start_price); newService.start_price = price.cost; newService.format_dollars = (price.format_dollars) ? price.format_dollars : ''; newService.format_cents = (price.format_cents) ? price.format_cents : ''; newService.start_at_rate = (newService.fixed_rate === 'true') ? 'for the low price of' : 'starting at'; if( !newService.term ) newService.term = 'per month'; newService.has_promotion_class = ''; if( newService.promotional_price && newService.promotional_price != '' ){ newService.has_promotion_class = 'has-promotion'; var promotion = lee_formatPackagePrice(newService.promotional_price); newService.promotional_price = promotion.cost; newService.promotional_format_dollars = (promotion.format_dollars) ? promotion.format_dollars : ''; newService.promotional_format_cents = (promotion.format_cents) ? promotion.format_cents : ''; } newService.banner_class = ''; if( newService.banner && newService.banner != '' ){ newService.banner_class = 'has-banner'; } newService.description = (newService.description) ? newService.description : ''; newService.special_title_class = newService.special_title ? 'has-special-title' : ''; newService.special_label_class = newService.label ? 'has-label' : ''; newService.action_button = 'Sign Up'; if(newService.disabled === 'disabled'){ newService.start_at_rate = 'Call us at'; newService.start_price = '828-432-8970'; newService.term = 'to get started'; newService.action_button = 'Call Today'; } window.lee_service_impressions.push({ 'id': newService.level, 'name': newService.title, 'price': newService.start_price, 'brand': "morganton.com", 'category': 'subscription', 'list': 'Block', 'position': newService.sort }); return newService; } catch(e){ if(window.console) console.warn(e); return false; } } function lee_sortPackages(property) { var sortOrder = 1; if(property[0] === "-") { sortOrder = -1; property = property.substr(1); } return function (a,b) { var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0; return result * sortOrder; } } function lee_getPackageSettings(sPackage){ switch(sPackage.toLowerCase()){ case 'dob': return {title: 'Digital Basic', sort: 0}; break; case 'dop': return {title: 'Digital Plus', sort: 1}; break; case 'dopl': return {title: 'Digital Platinum', sort: 2}; break; case 'silv': return {title: 'Silver', sort: 3}; break; case 'gold': return {title: 'Gold', sort: 4}; break; case 'plat': return {title: 'Platinum', sort: 5}; break; } } function lee_replacePackageTokens(sPackage, oService, sCol){ var hasPromotion = false; $.each(oService, function(k,v){ if( k === 'html'){ v = v.replace(new RegExp('{{domain}}', 'gi'), 'morganton.com') .replace(new RegExp('{{site_name}}', 'gi'), 'News Herald') .replace(new RegExp('{{business_name}}', 'gi'), 'The Morganton News Herald') .replace(new RegExp('{{site_phone}}', 'gi'), '828-432-8970'); } sPackage = sPackage.replace(new RegExp('{{'+k+'}}', 'gi'), v); }); if(sCol) sPackage = sPackage.replace('{{col}}', sCol); return sPackage; } if(window.lee_services_active && window.lee_services_active != 'offline'){ try { var oPackages = [], oFeatured = false, sHtml = '', sTemplate = $('#lee-service-template').html(); $.each(window.leeMembershipPackages, function(i, oService){ var oService = lee_formatPackage(oService); if(oService){ oPackages.push(oService); if(oService.featured === 'true') oFeatured = oService; } }); if(oPackages.length === 0){ throw 'No packages defined'; } oPackages.sort(lee_sortPackages('sort')); if(!oFeatured) oFeatured = oPackages[0]; if(oPackages.length === 1){ window.lee_modal_service = oPackages[0]; sTemplate = $('#lee-service-template-single').html(); $('#lee-services-list').addClass('single'); } else { $('#lee-services-list').addClass('multiple'); } switch(oPackages.length){ case 6: var sCol = '2'; break; case 5: var sCol = '5ths'; break; case 4: var sCol = '3'; break; case 3: var sCol = '4'; break; case 2: var sCol = '6'; break; default: var sCol = '12'; break; } $('#lee-services-modal').addClass('packages_'+oPackages.length); $.each(oPackages, function(i, oService){ sHtml += lee_replacePackageTokens(sTemplate, oService, sCol); }); $('#lee-services-list .packages').html(sHtml).promise().then(function(){ $('#lee-services-list .loading').hide(); $('#lee-services-list .packages').css('opacity', 1); }); if(!__tnt.user.services){ if( $('.lee-featured-subscription').length > 0 && oFeatured ){ $('.lee-featured-subscription').each(function(){ var html = $(this).html(); if( !oFeatured.featured_button_text ){ if(oFeatured.promotional_price){ oFeatured.featured_button_text = oFeatured.promotional_format_dollars+oFeatured.promotional_price+oFeatured.promotional_format_cents+' '+oFeatured.term; } else { oFeatured.featured_button_text = 'Join for '+oFeatured.format_dollars+oFeatured.start_price+oFeatured.format_cents+' '+oFeatured.term; } } html = lee_replacePackageTokens(html, oFeatured); $(this).html(html); if(oFeatured.promotional_price) $(this).addClass('has-promotiom'); if( $(this).hasClass('show-after-loaded') ) $(this).show(); }); } } } catch (e) { if(window.console) console.warn(e); lee_serviceError(); } window.lee_fetched_services = true; } else { lee_serviceError('offline'); } });

Subscribe

Read Today's E-edition

BCPS celebrates the 100th day of school

0 Comments

Share this

alert featured top story

  • Updated
  • 0

BCPS celebrates the 100th day of school (7)

Thursday marked the 100th day of school for students at Burke County Public Schools. Schools around the county had special themes to help celebrate the milestone and encourage learning for their students. At Valdese, Icard and Drexel elementary schools, students dressed like they were 100 years old. Ray Childers and Valdese elementary students also got to search their schools for 100 hidden pirates and tigers, respectively. Valdese Elementary School teachers have been challenged to make 100 positive calls home this month.

BCPS celebrates the 100th day of school (8)

BCPS celebrates the 100th day of school (9)

BCPS celebrates the 100th day of school (10)

BCPS celebrates the 100th day of school (11)

0 Comments

Tags

  • School Systems
  • Education

Want to see more like this?

Get our local education coverage delivered directly to your inbox.

Related to this story

Most Popular

Freedom graduate's children's books donated to Burke schools

A Freedom High School graduate’s illustrated books have found themselves on the shelves of Burke County Public Schools elementary school media…

50 years later, former NCSD building gets new life at NCSSM

On a small hillside toward the back of the North Carolina School for the Deaf campus in Morganton, Jeter Hall was filled with cutting-edge tec…

Western Piedmont Community College, Leviton partner for new Open Project in Customized Training

Western Piedmont Community College has started a new Open Project in Customized Training in partnership with Leviton Manufacturing. The new pr…

Watch Now: Related Video

Target launches its cheapest private label yet

How women helped the U.S. economy avoid a recession

How women helped the U.S. economy avoid a recession

Shooting after Kansas City Chiefs parade seemed to stem from dispute, police say

Shooting after Kansas City Chiefs parade seemed to stem from dispute, police say

LIVE: Judge considers removal of Fani Willis from Trump's Georgia election interference case

LIVE: Judge considers removal of Fani Willis from Trump's Georgia election interference case

© Copyright 2024 The Morganton News Herald, PO Box 280 Morganton, NC 28680

Terms of Use | Privacy Policy | Advertising Terms of Use | Do Not Sell My Info | Cookie Preferences

BCPS celebrates the 100th day of school (2024)

FAQs

Why is it important to celebrate the 100th day of school? ›

Why do we celebrate 100 days of school? This marks a point in the year where students are more than half-way through the 180 day school year. It is a time to reflect on all the learning that has taken place so far.

Who celebrates 100 days of school? ›

The 100th Day of School is widely celebrated in preschools, kindergartens, and elementary schools as a fun milestone to break up the school year. Special lessons and activities are prepared to celebrate the day.

What do students reflect on during the 100th day of school? ›

Goal Setting: Reaching the 100th day illustrates the idea of setting and achieving goals, as many classes keep a count of the school days leading up to the event. Reflection: It offers a structured opportunity to look back at the achievements made over a significant period, fostering a sense of accomplishment.

What day is 100 days of school? ›

For most schools, the 100th day falls sometime in February or early March. Many teachers use the countdown in their lessons by having children tally the days on a whiteboard or by filling a countdown chart with numbers or stickers. Many wear special t-shirts to celebrate the 100th day of school.

Who created the 100th day of school? ›

Back in 1979, Lynn Taylor, along with her colleagues David Cooper and Mary Hurdlow, celebrated their first 100th day of school.

What is the old person idea for 100 days of school? ›

Dressing as 100 years old. White hair spray, sunglasses with no lenses, pearl necklace, over sized purse, and house coat.

What is the 1000th day of school? ›

Celebrated in the same timeframe as the 100th Day of School, the 1000th Day of School is just for 5th graders. That is because fifth graders will be celebrating 1000 days in elementary school during the festivities. That's right, 1000 whole days! On average, children spend 180 days at school every year.

What cultures celebrate 100 days? ›

This powerful number, which construes the meaning of perfection, wholeness and milestone, has long been associated with a baby's birth in traditional Chinese, Japanese and Korean culture.

What are the math activities for the 100th day of school? ›

Skip Counting Sparkle: This game is easy to play, but it's also one of my favorite math activities for the 100th day of school! To play this whole group game, students will stand in a circle and count by 2s, 5s, or 10s to 100. On their turn, students will say the next number in the skip counting sequence.

How many hours do we spend at school in our lifetime? ›

Your total would be 16,380 hours worth of school. If you wanted to add up any hours done outside of class, including activities, homework etc. You might rack up to around 30,000 or so. That's 567 days worth of doing outside activities!

How much time do we spend in school in our lives? ›

Given that a mere 5% of one's life is spent in school, understanding how people learn during the remaining 95% is crucial (Falk & Dierking, 2010) .

Do you bring a gift to a 100 day celebration? ›

Traditional baby 100 days celebration gifts usually include symbolic gifts, gold jewellery and ang baos from older family members and close friends, as well as prayers for the new baby and their family. The proud parents would distribute red eggs (symbols of fertility and of life's changing process).

How should I dress my child for 100 days of school? ›

Many kids who dress up for the 100th day of school wear centenarian costumes, also known as 100 year old person costumes. Little girls will look cute dressed in floral print dresses paired with comfy cardigan sweaters and spectacles.

What is a 100th day? ›

The 100th day of school might not be an official holiday, but it holds a place of significance in many schools. It is a time to celebrate the milestone of successfully completing 100 days of learning.

Why is it important to celebrate the United Nations Day in school? ›

Celebrating United Nations Day through students' presentation and participation was also a way of acknowledging United Nations' tireless work and a reminder of the importance of diversity, culture, and the spirit of brotherhood to everyone.

What is the idea for the 1000th day of school? ›

Your students can collaborate to create a spectacular mural celebrating just how much they have learned in 1,000 days of school. Make a plan for a special snack for your 1,000 day of school.

Why do we celebrate teachers day in 100 words? ›

Teacher's Day is a special occasion celebrated to honor and appreciate our teachers for their valuable contributions to our education and growth. For children in classes 4 and 5, this day holds great significance as it gives us the opportunity to express our gratitude towards our teachers.

References

Top Articles
Latest Posts
Article information

Author: Margart Wisoky

Last Updated:

Views: 6338

Rating: 4.8 / 5 (58 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Margart Wisoky

Birthday: 1993-05-13

Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169

Phone: +25815234346805

Job: Central Developer

Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting

Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.