Connect with us

North Carolina

North Carolina advisory group recommends legalizing marijuana

Published

on

North Carolina advisory group recommends legalizing marijuana


North Carolina advisory group recommends legalizing marijuana for adults

Advertisement

PUMP STATION AND IS NOT INTENDED FOR PUBLIC USE. A NORTH CAROLINA STATE ADVISORY GROUP WANTS LAWMAKERS TO LEGALIZE MARIJUANA FOR ADULTS IN A TIGHTLY REGULATED SYSTEM. THE RECOMMENDATION CAME IN AN INTERIM REPORT FROM THE NORTH CAROLINA ADVISORY COUNCIL ON CANNABIS. THE GROUP SAYS LEGALIZATION FOR ADULTS 21 AND OLDER WOULD MAKE CANNABIS USE SAFER BY REPLACING UNREGULATED SALES WITH TESTED, CONTROLLED PRODUCTS. IT COULD ALSO GENERATE MILLIONS IN TAX REVENUE FOR THE STATE, ACCORDING TO THE MARIJUANA POLICY PROJECT, NORTH CAROLINA IS ONE OF A HANDFUL OF STATES THAT DO

Advertisement

North Carolina advisory group recommends legalizing marijuana for adults

Updated: 9:46 PM EDT Apr 6, 2026

Editorial Standards

Advertisement

A North Carolina state advisory group wants lawmakers to legalize marijuana for adults in a tightly regulated system.The recommendation came in an interim report from the North Carolina Advisory Council on cannabis. Officials said legalization for adults 21 and older would make cannabis use safer by replacing unregulated sales with tested, controlled products.It could generate millions in tax revenue for the state.According to the Marijuana Policy Project, North Carolina is one of a handful of states that do not allow either medical or recreational use of marijuana.Watch: NOWCAST streaming newscastsNAVIGATE: Home | Weather | Watch NOWCAST TV | Local News | National | News We Love |Keep up with the latest news and weather by downloading the WXII app here

A North Carolina state advisory group wants lawmakers to legalize marijuana for adults in a tightly regulated system.

The recommendation came in an interim report from the North Carolina Advisory Council on cannabis. Officials said legalization for adults 21 and older would make cannabis use safer by replacing unregulated sales with tested, controlled products.

Advertisement

It could generate millions in tax revenue for the state.

According to the Marijuana Policy Project, North Carolina is one of a handful of states that do not allow either medical or recreational use of marijuana.

Watch:NOWCAST streaming newscasts

Advertisement

NAVIGATE: Home | Weather | Watch NOWCAST TV | Local News | National | News We Love |

Keep up with the latest news and weather by downloading the WXII app here

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wxii12.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wxii12.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

Advertisement

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

Advertisement

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wxii12.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wxii12.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

Advertisement

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…

Advertisement



Source link

North Carolina

North Carolina High School Football Program Promotes From Within

Published

on

North Carolina High School Football Program Promotes From Within


Less than two weeks after losing its head coach to Duke University, a North Carolina high school football program has been promoted from within.

Kevin Reddick will become the new head coach at Rolesville High School, replacing Ranier Rackley, who became the Director of Player Development at Duke University.

News of the decision was first reported by High School OT.

Advertisement

Reddick was the defensive coordinator for the Rams for the past three seasons, helping the team win 25 games during that run. Last year, Rolesville allowed just under 15 points per game with Reddick in charge of the defense.

North Carolina High School Promotes Defensive Coordinator To Head Coach

Rolesville finished 9-4 last season under Rackley and Reddick.

Reddick is a graduate of New Bern High School, helping the Bears capture the 2007 Class 4AA North Carolina High School Athletic Association State Football championship. He was tabbed the most valuable player of that title game as a sophomore fullback after scoring two touchdowns in a 28-17 victory over Independence.

Advertisement

At New Bern, Reddick earned conference defensive player of the year honors and was all-state at lineback as a senior after recording 189 tackles, eight quarterback sacks, six forced fumbles and four blocked punts. He also ran for over 160 yards and scored six touchdowns.

Kevin Reddick Was College Standout, Had NFL Career Before Becoming Coach

Following his high school career, Reddick signed with North Carolina as a four-star prospect, earning first team all-ACC honors as a senior. He also had offers from North Carolina State, Virginia and Clemson.

With the Tar Heels, Reddick played in 50 games, recording 275 tackles, including 36 for loss, with 8.5 quarterback sacks, two interceptions and two forced fumbles.

Advertisement

Reddick signed with the New Orleans Saints as an undrafted rookie free agent, and also had stints with the San Diego Chargers, Carolina Panthers and Buffalo Bills.

Advertisement

Rolesville reached the North Carolina High School Athletic Association State Football championship game with Reddick on the coaching staff and the third round this past season.

Rolesville Returns Top Rusher, Several Other Key Players

The Rams will be replacing starting quarterback Kaleb Williams, who had almost 2,500 yards passing and 22 touchdowns, as freshman Chase Williams was 8-for-8 for 98 yards with a touchdown in three games.

Advertisement

They will have top running back Amir Brown back, as he ran for 1,374 yards with 22 touchdowns and six games of 100 yards rushing as a junior. He also had 13 receptions for 106 yards and another TD.

Advertisement

Anthony Roberts is another key player back, as he caught 35 passes for 656 yards and nine TDs. Top tacklers Jayden Broadie, Javon Campbell, Genesis Allen and Keonte Sutton are all set to return, as well.

Add us as a preferred source on Google



Source link

Advertisement
Continue Reading

North Carolina

Shooting in park near North Carolina school leaves two dead and several hurt

Published

on

Shooting in park near North Carolina school leaves two dead and several hurt


At least two people are dead and “several” others are injured after a “planned fight” at a North Carolina park escalated into a mass shooting, authorities said.

Police have identified several victims and suspects after Monday’s shooting at Leinbach Park near Jefferson Middle School, according to the Winston-Salem Police Department.

Authorities confirmed there were multiple victims in the shooting, but did not provide an exact number. The suspects were still at large over two hours later.

Officers were called to the park just before 10 a.m. after reports of a fight, which then escalated into multiple people shooting each other.

Advertisement

Area schools are not in lockdown, and classes are operating as normal, police said.

“Due to the number of people involved, efforts are ongoing to account for everyone. At this time, some of those involved in the incident are juveniles,” police said.

According to local news station WFMY, at least three people were taken to the hospital. Officials have not shared their conditions.

Police said the shooting was an isolated incident and remains under investigation.

This is a developing story

Advertisement



Source link

Continue Reading

North Carolina

NC Lottery Pick 3 Day, Pick 3 Evening results for April 19, 2026

Published

on


The NC Lottery offers several draw games for those aiming to win big.

Here’s a look at Sunday, April 19, 2026 results for each game:

Winning Pick 3 numbers from April 19 drawing

Day: 6-2-0, Fireball: 6

Evening: 4-1-7, Fireball: 5

Advertisement

Check Pick 3 payouts and previous drawings here.

Winning Pick 4 numbers from April 19 drawing

Day: 7-6-9-4, Fireball: 4

Evening: 8-1-5-6, Fireball: 6

Check Pick 4 payouts and previous drawings here.

Winning Cash 5 numbers from April 19 drawing

02-21-32-35-37

Advertisement

Check Cash 5 payouts and previous drawings here.

Winning Double Play numbers from April 19 drawing

18-26-27-31-42

Winning Millionaire for Life numbers from April 19 drawing

32-42-52-53-55, Bonus: 05

Check Millionaire for Life payouts and previous drawings here.

Feeling lucky? Explore the latest lottery news & results

Advertisement

Are you a winner? Here’s how to claim your lottery prize

All North Carolina Lottery retailers will redeem prizes up to $599.

For prizes over $599, winners can submit winning tickets through the mail or in person at North Carolina Lottery Offices. By mail, send a prize claim form, your signed lottery ticket, copies of a government-issued photo ID and social security card to: North Carolina Education Lottery, P.O. Box 41606, Raleigh, NC 27629. Prize claims less than $600 do not require copies of photo ID or a social security card.

To submit in person, sign the back of your ticket, fill out a prize claim form and deliver the form, along with your signed lottery ticket and government-issued photo ID and social security card to any of these locations:

  • Asheville Regional Office & Claim Center: 16-G Regent Park Blvd., Asheville, NC 28806, 877-625-6886 press #1. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes up to $99,999.
  • Greensboro Regional Office & Claim Center: 20A Oak Branch Drive, Greensboro, NC 27407, 877-625-6886 press #2. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes up to $99,999.
  • Charlotte Regional Office & Claim Center: 5029-A West W. T. Harris Blvd., Charlotte, NC 28269-1861, 877-625-6886 press #3. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes up to $99,999.
  • NC Lottery Headquarters: Raleigh Claim Center & Regional Office, 2728 Capital Blvd., Suite 144, Raleigh, NC 27604, 877-625-6886 press #4. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes of any amount.
  • Greenville Regional Office & Claim Center: 2790 Dickinson Avenue, Suite A, Greenville, NC 27834, 877-625-6886 press #5. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes up to $99,999.
  • Wilmington Regional Office & Claim Center: 123 North Cardinal Drive Extension, Suite 140, Wilmington, NC 28405, 877-625-6886 press #6. Hours: 9 a.m. to 5 p.m. Monday through Friday. This office can cash prizes up to $99,999.

Check previous winning numbers and payouts at https://nclottery.com/.

When are the North Carolina Lottery drawings held?

  • Powerball: 10:59 p.m. Monday, Wednesday, and Saturday.
  • Mega Millions: 11 p.m. Tuesday and Friday.
  • Lucky for Life: 10:38 p.m. daily.
  • Pick 3, 4: 3:00 p.m. and 11:22 p.m. daily.
  • Cash 5: 11:22 p.m. daily.
  • Millionaire for Life: 11:15 p.m. daily.

This results page was generated automatically using information from TinBu and a template written and reviewed by a Carolina Connect editor. You can send feedback using this form.



Source link

Advertisement
Continue Reading
Advertisement

Trending