Connect with us

New Hampshire

NH Supreme Court overturns conviction of man for voting in two states in 2016 election

Published

on

NH Supreme Court overturns conviction of man for voting in two states in 2016 election


NH Supreme Court overturns conviction of man for voting in two states in 2016 election

Advertisement

DOZENS OF LOCAL BUSINESSES. THE STATE SUPREME COURT HAS JUST OVERTURNED THE CONVICTION OF A MAN WHO. PROSECUTORS SAID VOTED IN THE 2016 GENERAL ELECTION IN MASSACHUSETTS AND IN NEW HAMPSHIRE. RICHARD ROSEN WAS CONVICTED IN 2024 ON A FELONY COUNT OF WRONGFUL VOTING, WHILE YESTERDAY’S RULING CONCLUDED THAT THE TRIAL COURT MADE A MISTAKE BY EXCLUDING EVIDENCE ABOUT ANOTHER MAN WHO ALLEGEDLY CONFESSED TO REPEATEDLY CASTING VOTES IN ROSEN’S NAME IN MASSACHUSETTS, PROSECUTORS WERE ALLOWED TO MENTION EVIDENCE OF SIX PRIOR INSTANCES IN WHICH VOTES WERE CAST IN ROSEN’S NAMES. IN BOTH STATES, THE STATE SUPREME COURT SAID. DOING SO DESPITE ROS

Advertisement

NH Supreme Court overturns conviction of man for voting in two states in 2016 election

Updated: 8:19 PM EDT Apr 10, 2026

Editorial Standards

Advertisement

The New Hampshire Supreme Court has overturned the conviction of a man who prosecutors say voted in the 2016 general election in Massachusetts and New Hampshire.Richard Rosen was convicted in 2024 on a felony count of wrongful voting.Thursday’s ruling concluded that the trial court made a mistake by excluding evidence about another man who allegedly confessed to repeatedly casting votes in Rosen’s name in Massachusetts.Prosecutors were allowed to mention evidence of six prior instances in which votes were cast in Rosen’s name in both states. The New Hampshire Supreme Court said that withholding evidence about another person voting in Rosen’s name unfairly prejudiced the jury.

The New Hampshire Supreme Court has overturned the conviction of a man who prosecutors say voted in the 2016 general election in Massachusetts and New Hampshire.

Advertisement

Richard Rosen was convicted in 2024 on a felony count of wrongful voting.

Thursday’s ruling concluded that the trial court made a mistake by excluding evidence about another man who allegedly confessed to repeatedly casting votes in Rosen’s name in Massachusetts.

Prosecutors were allowed to mention evidence of six prior instances in which votes were cast in Rosen’s name in both states.

Advertisement

The New Hampshire Supreme Court said that withholding evidence about another person voting in Rosen’s name unfairly prejudiced the jury.

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’;

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

Advertisement

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;
}

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

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;

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

Advertisement

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.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wmur.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;
}

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

Advertisement

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);
}
}

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

Advertisement

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();
}
}

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.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wmur.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

Loading more articles…



Source link

Advertisement

New Hampshire

NH’s Business: NH labor force participation

Published

on

NH’s Business: NH labor force participation


NH’s Business: NH labor force participation

Advertisement

WEEKEND. WELCOME TO NEW HAMPSHIRE’S BUSINESS. I’M FRED KOCHER. LET’S TALK ABOUT THE NEW HAMPSHIRE WORKFORCE FOR A FEW MINUTES. A BIG DIFFERENCE IN PARTICIPATION RATES OF MEN AND WOMEN IN THE LABOR FORCE BY AGE GROUPS, AND A BIG DIFFERENCE IN THEIR PAY. HERE ARE THE PARTICIPATION RATES OF MEN AND WOMEN. MEN IN THE GREEN BARS. WOMEN. THE BLUE BARS, AGES 25 TO 34 ON THE LEFT, AGES 35 TO 44 IN THE MIDDLE AND AGES 45 TO 54 ON THE RIGHT. MEN HAD MEDIAN EARNINGS OF 75,397. WOMEN HAD MEDIAN EARNINGS OF 61,442. SO WOMEN EARNED 81% OF WHAT MEN EARNED. NOT A NEW REVELATION. AND THE GENDER PAY GAP IS REPORTEDLY WIDER FOR PEOPLE OF COLOR ACROSS ALL RACIAL AND ETHNIC GROUPS. NOW, HEALTH DIAGNOSING AND TREATMENT. THESE ARE THE LARGE ONES. THESE ARE THE LARGE PAY GAPS. LOOK AT THE NUMBERS. PERSONAL CARE AND SERVICE. YOU CAN SEE THE NUMBERS IN THE PAY GAPS BETWEEN MEN AND WOMEN. COMPUTER AND MATHEMATICAL 112 66986649 FOR WOMEN NATIONALLY IN 2025, THE LARGEST GENDER PAY GAP WAS AMONG LEGAL OCCUPATIONS, ACCORDING TO USA FACTS, WORKERS IN CAREGIVING OCCUPATIONS, MEDIAN HOURLY WAGES IN NEW HAMPSHIRE, 2020 FOR EARLY CARE AND EDUCATION WORKERS, YOU CAN SEE THE NUMBER. HOME HEALTH AND PERSONAL CARE AIDES. YOU CAN SEE THE NUMBER. NURSING ASSISTANTS. ALL OF THOSE ARE BELOW THE STATEWIDE MEDIAN NUMBER OF 2529. AFTER SAYING ALL THAT, HERE’S THE LAW EQUAL PAY AND THE LAW. IT IS ILLEGAL IN NEW HAMPSHIRE UNDER BOTH STATE AND FEDERAL LAW, TO PAY EMPLOYEES DIFFERENT WAGES FOR THE SAME WORK BASED SOLELY ON SEX APPLICABLE LAW. RSA 275. COLON 37. WITH ME TO WALK THROUGH. THIS IS THE PERSON WHO DID THE RESEARCH ON THOSE NUMBERS. JESSICA WILLIAMS, SENIOR POLICY ANALYST AT THE NEW HAMPSHIRE FISCAL POLICY INSTITUTE. WELCOME. NICE TO HAVE YOU HERE. THANK YOU FOR HAVING ME ON. IN DOING THAT RESEARCH, WHAT DID YOU COME ACROSS? ANYTHING THAT EXPLAINS THE PERSISTENCE OF THIS GAP BETWEEN MEN AND WOMEN FOR EQUAL. WHAT DID YOU COME ACROSS? I MEAN, IT’S LASTED. THIS THING HAS LASTED FOR OVER 50 YEARS. THE NATIONAL PAY, EQUAL PAY ACT MORE THAN 50 YEARS AGO. IS CLEAR. NEW HAMPSHIRE LAW IS CLEAR, BUT THE GAP COULD PERSIST. ABSOLUTELY. SO THERE’S LIKELY VARIOUS FACTORS PLAYING A ROLE IN THESE PAY GAPS. ONE IS OCCUPATIONAL DIFFERENCES. WE KNOW THAT WOMEN ARE MORE LIKELY TO BE ENGAGED IN PAID CAREGIVING ROLES, SUCH AS, YOU KNOW, PERSONAL CARE, CHILD CARE OCCUPATIONS. WE SAW A SIGNIFICANT PORTION OF THAT IN 2025. WE ALSO SEE A DIFFERENCE IN CAREER INTERRUPTIONS. WOMEN MAY BE MORE LIKELY TO LEAVE THE WORKFORCE TO CARE FOR CHILDREN OR OLDER ADULT FAMILY MEMBERS, WHICH COULD PLACE A GAP IN THOSE PAYS OVER TIME. WE ALSO SEE SOME BARRIERS TO CAREER ADVANCEMENT, IN PARTICULAR. SO WHILE WOMEN MEN MAY EARN THE SAME FOR CERTAIN ROLES, MEN MAY BE MORE LIKELY TO HOLD THOSE HIGHER PAYING LEADERSHIP ROLES, PARTICULARLY AMONG CERTAIN OCCUPATIONS. YOU MONITOR THE NEW HAMPSHIRE LEGISLATURE LIKE A HAWK. ALL OF YOU AT THE INSTITUTE. HAS THERE BEEN ANY EFFORT THAT YOU’RE AWARE OF IN THE LEGISLATURE IN NEW HAMPSHIRE TO DEAL WITH THIS ISSUE? SO I’M NOT AWARE OF ANY AT THE MOMENT. BUT WHEN WE DO CONSIDER POLICY SOLUTIONS IMPORTANT TO CONSIDER WHY THESE PAY GAPS MAY EXIST. SO OPPORTUNITIES FOR EDUCATIONAL OPPORTUNITIES TRAINING MAY HELP WOMEN ADVANCE IN THEIR CAREERS. TAKE ON SOME OF THOSE HIGHER PAYING ROLES, AS WELL AS INVESTMENTS IN THE CHILDCARE SECTOR. OLDER ADULT CARE SECTOR COULD HELP. YOU KNOW, MAKE THOSE OPTIONS MORE AFFORDABLE FOR FAMILIES AND TO REMAIN IN THE WORKFORCE. ONE OF THE OCCUPATIONS ON YOUR LIST WAS HEALTH CARE, AND IT’S ONE OF THE LARGEST, IF NOT THE LARGEST OCCUPATION SECTOR IN NEW HAMPSHIRE. AND YOU HAVE A PAY GAP THERE OF $90,000, IF I’VE GOT THAT RIGHT. THAT’S AMAZING. YES. YEAH. SO THAT IS REPRESENTING THE HEALTH CARE SECTOR AS A WHOLE. THERE ARE VARIOUS HEALTHCARE OCCUPATIONS WITHIN THAT SECTOR, BUT IN 2024, WOMEN EARNED ESSENTIALLY HALF OF WHAT MEN EARNED IN THOSE SECTORS. NOW, HERE’S A NOTE FOR ALL OF YOU THAT MAY BE THINKING ABOUT YOUR PAY GAP. THE NEW HAMPSHIRE DEPARTMENT OF LABOR INDICATES ON ITS WEBSITE THAT IF YOU THINK YOUR EMPLOYER HAS VIOLATED THE PROVISIONS OF STATE LAW ON WAGES FOR THE SAME WORK THAT YOU ARE ENCOURAGED TO CONTACT THEM, THE NEW HAMPSHIRE DEPARTMENT OF LABOR IN CONCORD, AND THAT IS IT. JESSICA WILLIAMS, SENIOR POLICY, SENIOR POLICY ANALYST AT THE NEW HAMPSHIRE FISCAL POLICY INSTITUTE. THANK YOU. YES, THANK YOU FOR HAVING ME. AND IF YOU MISSED THIS BRIEFING ON PAY GAP

Fred Kocher sits down with Jessica Williams with the NH Fiscal Policy Institute to talk about data from the 2025 labor force participation in New Hampshire.

Fred Kocher sits down with Jessica Williams with the NH Fiscal Policy Institute to talk about data from the 2025 labor force participation in New Hampshire.

Advertisement



Source link

Advertisement
Continue Reading

New Hampshire

How? Minor League team scores 10 runs on 1 hit — 8 before the hit! — in one inning

Published

on

How? Minor League team scores 10 runs on 1 hit — 8 before the hit! — in one inning


Sometimes, a couple of well-timed hits is all it takes to start a big inning. Every once in a while, you don’t even need that.
On a chilly Tuesday evening in Maine — 35 degrees at first pitch — the New Hampshire Fisher Cats (Double-A affiliate of the Blue Jays)



Source link

Continue Reading

New Hampshire

New Hampshire Sees Rising Concern Over Tick-Borne Meat, Dairy Allergy

Published

on

New Hampshire Sees Rising Concern Over Tick-Borne Meat, Dairy Allergy


A tick-borne illness that can leave people severely allergic to meat and dairy is becoming a growing concern in New Hampshire, according to comments from a state public health official and federal health guidance.

Alpha-gal syndrome is becoming more frequent in New England as ticks move farther north, some say, due to climate change.

The illness is carried most commonly by the Lone Star tick.

According to the Centers for Disease Control and Prevention, nearly half a million people nationwide are affected by alpha-gal syndrome. The CDC says the condition differs from typical food allergies because symptoms are often delayed by two hours or more after exposure and can appear suddenly after years of eating meat without problems.

Advertisement

The CDC says the reaction is linked to alpha-gal, a molecule associated with mammalian meat and some mammalian-derived products. In people with the syndrome, symptoms can occur 2 to 10 hours after eating pork, beef, lamb, other mammalian meat, or products such as gelatin. The CDC also says symptoms can develop within two hours after intramuscular, intravenous, or subcutaneous administration of alpha-gal-containing vaccination or medication.

Symptoms listed by the CDC include abdominal pain, nausea, diarrhea, vomiting, and heartburn or indigestion. The agency also says people may experience hives, itching, swelling of the lips, tongue, throat, face or eyelids, shortness of breath, cough, wheezing, and acute hypotension. Anaphylaxis is also among the symptoms identified by the CDC.





Source link

Continue Reading

Trending