Connect with us

Northeast

2 found dead in Pennsylvania house explosion, investigation underway

Published

on

2 found dead in Pennsylvania house explosion, investigation underway

Two people were found dead after an explosion that destroyed a house in the Pittsburgh area near the Ohio River, authorities said Tuesday.

Allegheny County emergency dispatchers said the blast in Crescent Township in the northwest Pittsburgh suburbs was reported shortly before 9 a.m. Tuesday. Aerial images from the scene showed smoking ruins with the structure reduced to rubble and some large pieces lodged in trees above.

Chief Andrew Tomer of the Crescent Township fire department said a man and woman were found dead at the scene. The county medical examiner’s office will confirm their identities and determine the cause and manner of death.

FIRETRUCKS COLLIDE HEADING TO BURNING PENNSYLVANIA HOUSE, 6 FIREFIGHTERS INJURED

The explosion “completely leveled” the home, with arriving units reporting “fire throughout the foundation” and fire along the hillside, Tomer said. The blast also damaged at least two other homes, he said. A private gas well and two propane tanks on the scene were secured, he said.

Advertisement

Tomer called the blast “severe, absolutely extreme,” adding “You could feel it in your chest.” He said it was heard and felt throughout the Crescent and nearby townships and even across the river. At the fire department, he and others immediately saw “a column of white smoke up in the air followed by a thick column of black smoke.”

Emergency services on Tuesday were dispatched to a house explosion in the Pittsburgh area.  (Tim Robbibaro/Pittsburgh Post-Gazette via AP)

The cause of the explosion is under investigation by the Allegheny County fire marshal’s office and the federal Bureau of Alcohol, Tobacco, Firearms and Explosives.

The county’s emergency services department said the scene “is in a remote location and we’re asking everyone to avoid the area in order to allow responders access.”

Advertisement

On Aug. 12, a blast in the borough of Plum about 25 miles (40 kilometers) away in the same county killed six people and destroyed three homes. Authorities said the cause was under investigation, but the explosion occurred inside one of the homes, ruling out an outside cause including wells, pipelines and other utilities.

Read the full article from Here

Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

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
Continue Reading

New Jersey

Jamie Ding wins 21st on ‘Jeopardy!’ to tie fellow New Jerseyan on list

Published

on

Jamie Ding wins 21st on ‘Jeopardy!’ to tie fellow New Jerseyan on list


play

  • ‘Jeopardy!’ champ Jamie Ding won his 21st straight game on April 10, tying a fellow New Jerseyan Cris Pannullo on the all-time wins list.

Jamie Ding won his 21st straight game on “Jeopardy!” on the April 10 show, tying a fellow New Jerseyan on the all-time wins list.

The Lawrenceville resident moved into a sixth place tie on the wins list with Cris Pannullo, an Ocean City native who won $748,286 while winning 21 games in 2022.

Advertisement

Ding won $36,400 on Friday’s show to bring his 21-day total to $609,000. He is in sixth place on the regular-season money list behind Pannullo and remains in 14th place on the all-time earnings list, according to Jeopardy.com and TheJeopardyFan.com (See Top 10 lists below).

Ding’s opponents on Friday’s show were: Kathi Fitzgerald, an English teacher from Williamsburg, Virginia, and Xaque Williams, a writer from Knoxville, Tennessee.

As has been his trademark during most of his run, Ding had the game clinched prior to Final Jeopardy. He had $26,800 to Williams’ $8,200 and Fitzgerald’s $200, TheJeopardyFan.com reported.

Advertisement

The Final Jeopardy was: “A river named for the sacred lotus flower flows toward this 890,000-square-mile body of water.”

Ding and Williams both had the correct response: “What is the Bay of Bengal?”

Ding risked $9,600 to finish with $36,400, while Williams bet $7,000 to finish with $15,200.

Advertisement

Who is Jamie Ding?

Ding, who works for the New Jersey Housing and Mortgage Finance Agency, has secured a spot in the season-ending Tournament of Champions.

He has a supporter in New Jersey Gov. Mikie Sherrill, who posted applauding Ding after he set an impressive record on the show that began 62 years ago.

On the March 17 show, Ding set the mark for highest Coryat score with with $42,400, topping the record of $39,200 achieved by now “Jeopardy!” host Ken Jennings on June 10, 2004, according to TheJeopardyFan.com. On the April 1 show, Ding tied Jennings with at $39,200 Coryat. A Coryat score, named after a former contestant, is the sum of the natural value of any clues without Daily Doubles or Final Jeopardy.

Sen. Andy Kim has also tweeted out congratulations to Ding.

Advertisement

While Sen. Cory Booker tweeted on April 1: “Jamie Ding! Making New Jersey proud! This Lawrenceville resident spends his days helping fund affordable housing across the Garden State, then goes on national TV and dominates. The man answers trivia on @Jeopardy and houses people for a living. New Jersey does not miss. Keep buzzing, Jamie.”

Originally, Ding is from the Detroit area, having graduated from Grosse Pointe North High School in 2009. He graduated from Princeton University in 2013.

Ding told his alma mater that being on the show is “phenomenal.”

He and his sister have a Instagram account where they review General Tsos chicken at restaurants called: @attorneygeneraltsos. Ding talked about it on the show.

Top 10 ‘Jeopardy!’ consecutive wins

Here are the Top “Jeopardy!” contestants in terms of consecutive wins, according to Jeopardy.com (Note: Prior to season 20 in 2003, there was a five-game win limit on the show):

Advertisement
  • Ken Jennings, 74 games, 2004
  • Amy Schneider, 40 games, 2022
  • Matt Amodio, 38 games, 2021
  • James Holzhauer, 32 games, 2019
  • Mattea Roach, 23 games, 2022
  • Jamie Ding, 21 games, current
  • Cris Pannullo, 21 games, 2022
  • Julia Collins, 20 games, 2014
  • Jason Zuffranieri, 19 games, 2019
  • David Madden, 19 games, 2005

Top 10 ‘Jeopardy!’ regular-season money

Here are the Top “Jeopardy!” contestants in terms of money won during regular-season play, according to Jeopardy.com:

  1. Ken Jennings, $2,520,700
  2. James Holzhauer, $2,462,216
  3. Matt Amodio, $1,518,601
  4. Amy Schneider, $1,382,800
  5. Cris Pannullo, $748,286
  6. Jamie Ding, $609,000
  7. Mattea Roach, $560,983
  8. Jason Zuffranieri, $532,496
  9. Scott Riccardi, $455,000
  10. David Madden, $430,400





Source link

Continue Reading

Pennsylvania

1-on-1 interview | U.S. Sen. Dave McCormick discusses the effects of the Iran war on Pa.

Published

on

1-on-1 interview | U.S. Sen. Dave McCormick discusses the effects of the Iran war on Pa.


Gas prices in Pennsylvania have risen sharply due to the Iran war, with the state average now at $4.18 per gallon — an increase of $1.06 since the conflict began. McCormick says rising prices are a concernU.S. Sen. Dave McCormick acknowledged the financial strain on Pennsylvanians.”I am worried about gas prices, that the gas is up a buck a gallon,” McCormick said. McCormick expressed hope that relief could come soon as negotiations related to the Iran war progress.”I think the sooner we can finish up the mission and get home, I don’t think there’s any risk of a long, Iraq-like situation, where we’re trying to fix Iran. I think the president’s clear on that, and I’m certainly clear on that,” he said. Farmers feel impact beyond the pumpDuring recent meetings with farmers in Middletown and Tioga County, McCormick noted that higher fuel prices are significantly affecting the agricultural industry.”Fertilizer prices have gone way up largely because of what’s going on in Iran,” he said. Labor issues add to farm concernsMcCormick also addressed labor concerns raised by farmers, particularly regarding the H-2A visa program, which allows farm workers to enter the U.S.”We need to make some changes on that, I think, and maybe even a new visa category for folks that work full-time. And these are jobs that, frankly, most Americans aren’t taking or willing to take. So, so there’s definitely work to do,” he said.

Gas prices in Pennsylvania have risen sharply due to the Iran war, with the state average now at $4.18 per gallon — an increase of $1.06 since the conflict began.

McCormick says rising prices are a concern

Advertisement

U.S. Sen. Dave McCormick acknowledged the financial strain on Pennsylvanians.

“I am worried about gas prices, that the gas is up a buck a gallon,” McCormick said.

McCormick expressed hope that relief could come soon as negotiations related to the Iran war progress.

“I think the sooner we can finish up the mission and get home, I don’t think there’s any risk of a long, Iraq-like situation, where we’re trying to fix Iran. I think the president’s clear on that, and I’m certainly clear on that,” he said.

Advertisement

Farmers feel impact beyond the pump

During recent meetings with farmers in Middletown and Tioga County, McCormick noted that higher fuel prices are significantly affecting the agricultural industry.

“Fertilizer prices have gone way up largely because of what’s going on in Iran,” he said.

Labor issues add to farm concerns

McCormick also addressed labor concerns raised by farmers, particularly regarding the H-2A visa program, which allows farm workers to enter the U.S.

“We need to make some changes on that, I think, and maybe even a new visa category for folks that work full-time. And these are jobs that, frankly, most Americans aren’t taking or willing to take. So, so there’s definitely work to do,” he said.

Advertisement



Source link

Continue Reading

Trending