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…

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? ›

Reflect on progress: The 100th day of school is a great opportunity for students to reflect on their progress and to celebrate their accomplishments. It allows students to see how far they have come since the start of the school year and to appreciate their hard work and effort.

What month is 100 days of school? ›

The 100th day of school will vary by school, but most schools celebrate in the month of February.

What happens at a 100 day celebration? ›

On that 100th day, a family would traditionally pray and give food offerings to thank the Shaman spirit of childbirth for the child having survived this difficult period. If the child was sick at this time, the family would pass the day without celebration or party as this would be considered bad luck for the infant.

How do you represent 100 days of school? ›

Here are some activities to consider:
  1. 100 snack pieces. The 100th day of school cannot be complete without a tasty snack. ...
  2. Collect 100 items. ...
  3. 100 hungry ants. ...
  4. Snack and party. ...
  5. Scavenger hunt. ...
  6. Read a 100 days themed book. ...
  7. Take 100 steps in the classroom. ...
  8. Write a 100-word story.

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? ›

People in Hong Kong, China, Korea, Japan, and Singapore hold a baby's 100th day as an especially important occasion, and some even consider the 100-day mark as the baby's first birthday.

Who has the longest school day in the world? ›

Taiwan leads with the longest school day globally, clocking in at 10 hours. This extensive timeframe is indicative of the country's rigorous academic culture. Following closely is China, with students dedicating about 9 hours and 30 minutes to school each day.

What do kids wear for the 100th day of school? ›

Your students can also dress up like they're 100 years old—but be prepared for some extremely cute ensembles. Decorate paper hats with the number 100, memories of the last 100 days, or by drawing 100 of something.

What is the stem activity for the 100th day of school? ›

10 classroom activities to celebrate the 100th day of school

100-item math challenge: List 100 equations that equal 100. 100-piece puzzle: Have students work together to complete a 100-piece puzzle. 100-cups challenge: Create a structure with 100 red plastic cups.

How do you greet someone on the 100th day morning meeting? ›

100th Day of School Activity: Morning Meeting

Also, you can have students pass a greeting around the circle and say, “Happy 100th Day, (name)!” To make it even more fun, create a handshake like touching 1 finger, and then make a zero with your hand and bump hands twice, to make 100!

What day is the 100th day of the year? ›

April 10 is the 100th day of the year (101st in leap years) in the Gregorian calendar; 265 days remain until the end of the year.

How many days are actually in a school year? ›

In the U.S., 180 days of school is most common, but length of school day varies by state. School has started in most of the United States. On average, K-12 public schools will be in session close to 180 days this year, according to a Pew Research Center analysis of data from the Education Commission of the States.

What is the 1st 100 days? ›

First hundred days (alternatively written first 100 days) often refers to the beginning of a leading politician's term in office, and may refer to: First 100 days of the Franklin D. Roosevelt presidency. First 100 days of the Barack Obama presidency. First 100 days of the Donald Trump presidency.

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

This holiday celebrates the signing of the charter, or founding document, for the United Nations, an international organization that focuses on world peace. United Nations Day is a day to celebrate the achievements of the UN and focus on the goals for working together to build a better world for 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? ›

India celebrates Teacher's Day on September 5th, commemorating Dr. Sarvepalli Radhakrishnan's birthday. Teachers inspire, guide and impart knowledge, moulding future generations of the world. This day serves as a reminder of their dedication and tireless efforts for us.

What is the celebration of the 100th year? ›

A centenary is the hundredth anniversary of some event.

References

Top Articles
Latest Posts
Article information

Author: Margart Wisoky

Last Updated:

Views: 5821

Rating: 4.8 / 5 (58 voted)

Reviews: 89% 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.