Connect with us

Nebraska

Nebraska Baseball Weekend Preview: Michigan State

Published

on

Nebraska Baseball Weekend Preview: Michigan State


Series Preview

Michigan State Spartans (3-8) at Nebraska Cornhuskers (7-5)

Location: Hawks Field at Haymarket Park, Lincoln, NE

Dates: March 6th-8th

Times (all CT): Friday @ 2pm, Saturday @ 1pm, Sunday @ 12pm

Advertisement

Advertisement

Head Coaches: Jake Boss Jr. (18th season, 496-450) & Will Bolt (7th season, 177-131-1)

TV/Stream: B1G+

Radio: All Nebraska games on Huskers Radio Network, Huskers.com, Huskers App

Nebraska baseball goes into conference play having won both of its mid-week games since returning home to Haymarket Park. It’s riding the hot bats of Dylan Carey, and Mac Moyer. Carey is fresh off a 5 for 5 game, the first 5 hit game for a Husker since Gunner Hellstrom in 2018. Carey is leading all Big Ten batters in both hits (28) and doubles (8) and is 2nd in avg. (.509). He is piling up the RBIs with Moyer reaching base at a .592 clip. He is tied for the Big Ten lead with 13 walks.

Advertisement

Advertisement

Nebraska should also be getting Will Jesske back after a week off due to feeling a twing in his hamstring Friday night at Auburn. Husker coach Will Bolt said he was going to pinch hit if needed the last inning against South Dakota State, but didn’t want him playing the field yet with the cold weather. Jesske has 3 home runs on the year, but with the amount of hits on the barrel he has had at some giant ballparks, he could be close to the Big Ten lead if he played all his games at a place like Haymarket Park.

The Spartans had the biggest upset of the first week of the season, taking the series from then #8 Louisville by winning the first 2 games 4-3 and 13-4. They have struggled mightily since, going 1-8 against a pretty rough schedule. They went from Louisville to #3 Texas and were swept by a combined score of 15-2 in 3 games.

They have a yearly “residency” as they call it, in Greenville, South Carolina early every year, thanks to a big alumni base in the area. They struggled to put up runs in those 2 weeks, never putting up more than 4. Their lone win was a 4-1 victory over Albany, and they ended the residency on a sour note, with a 7 inning run rule loss to #10 Clemson, 12-1. Husker pitchers will need to limit walks and hit batters, and should be able to manage the lineup if they can.

Pitching Probables



Source link

Nebraska

Nebraska Humane Society asking for help after abandoned dog found severely starved in Omaha

Published

on

Nebraska Humane Society asking for help after abandoned dog found severely starved in Omaha


Nebraska Humane Society investigating after abandoned dog found severely starved in Omaha

Advertisement

Advertisement

Nebraska Humane Society investigating after abandoned dog found severely starved in Omaha

Updated: 9:08 AM CDT Apr 8, 2026

Editorial Standards

Advertisement

The Nebraska Humane Society is asking for the public’s help after an abandoned dog was found severely starved in Omaha.Animal control officers found the boxer mix in a plastic kennel near 31st Street and Fowler Avenue on Friday, the shelter said.The dog, which the Nebraska Humane Society has named Jedi, was in critical condition and is receiving lifesaving treatment.Officials said the case appears to involve long-term neglect, and Jedi had ribs, vertebrae and pelvic bones that were easily visible with no palpable fat.Anyone with information is asked to call 402-444-7800, option 1.Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

The Nebraska Humane Society is asking for the public’s help after an abandoned dog was found severely starved in Omaha.

Animal control officers found the boxer mix in a plastic kennel near 31st Street and Fowler Avenue on Friday, the shelter said.

Advertisement

The dog, which the Nebraska Humane Society has named Jedi, was in critical condition and is receiving lifesaving treatment.

Officials said the case appears to involve long-term neglect, and Jedi had ribs, vertebrae and pelvic bones that were easily visible with no palpable fat.

Anyone with information is asked to call 402-444-7800, option 1.

Advertisement

This content is imported from Facebook.
You may be able to find the same content in another format, or you may be able to find more information, at their web site.

Make sure you can always see the latest news, weather, sports and more from KETV NewsWatch 7 on Google search.

NAVIGATE: Home | Weather | Local News | National | Sports | Newscasts on demand |

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

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

`;
}

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

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

Advertisement

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

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;

Advertisement

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

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

Advertisement

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

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

Advertisement

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;

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

Advertisement

Loading more articles…



Source link

Continue Reading

Nebraska

Fundraiser to support ranchers affected by Nebraska Wildfire

Published

on

Fundraiser to support ranchers affected by Nebraska Wildfire


SIOUX FALLS, S.D. (KELO) —The Nebraska wildfires have destroyed hundreds of thousands of acres of grassland that many ranchers use to feed their cattle. It’s a sad reality that has provoked sympathy from ranchers in South Dakota.

“When your family’s in the ranching business, that’s your whole life. It’s your whole livelihood. And, you know, you’re caretakers of these creatures. And, to be without food, you know, without feed for them, when it’s your way of life. That’s just a horrible place to be,” SD Cattlemen’s Foundation board member, Ty Eschenbaum said.

South Dakota ranchers were motivated to help out in a way only they could– by donating hay.

“They’re sending us right in the burn footprint. So we’re going into that Arthur, Oshkosh, Lakeside areas, where they were hit the hardest. They’re telling us that the hay that we are bringing down will be completely fed by the end of the weekend,” Kingsbury County Cattlemen’s Association, Laurie Casper said.

Advertisement

But it’s not cheap getting the hay to Nebraska.

“The price of fuel is astronomical. And, you know, we’re trying to get these trucks going those 39,800 miles total. Definitely a huge bill to flip,” Casper said.

That’s why the South Dakota Cattlemen’s Foundation has a way for you to help get that hay across state lines. They are matching up to $10,000 dollars worth of donations.

“It’s a lot of fuel. So that’s exactly where our dollars are going and the dollars that we help fundraise. And anybody that wants to join in and help us, 100% of your funds are going to this effort,” Eschenbaum said.

Neighbors helping neighbors, hundreds of miles apart.

Advertisement

“It’s very taxing, you know, this time of year. Calving cows, starting to breed cows, feeding cows, worried about the drought. And, you know, if I’m going to have enough pasture, so to get hit with a fire that takes out everything, on top of all of that, I think it’s pretty easy for other cattlemen to say, hey, we got to help,” Eschenbaum said.



Source link

Continue Reading

Nebraska

Drought-resilient crop options for Nebraska corn-soybean growers

Published

on

Drought-resilient crop options for Nebraska corn-soybean growers

Rituraj Khound, left, and Dipak K. Santra evaluate crop conditions of field peas at the UNL Panhandle Research Extension and Education Center. Photo by Chabella Guzman
Crops-RFP-040626

Nebraska is heading into the 2026 growing season with limited precipitation and groundwater resources. Growers are also facing rising input costs and declining commodity prices, forcing many to rethink how much risk they can afford to carry with irrigated corn and soybeans.

“In years like this, even small shifts in cropping strategy can help protect both yield and profitability,” said Dipak Santra, Nebraska Extension Alternative Crops Breeding specialist at the University of Nebraska-Lincoln Panhandle Research Extension and Education Center. “Alternative crops such as proso millet and field pea offer lower water and nitrogen requirements, making them potential tools for reducing risk in water-limited systems.”

Water limitations are not the only concern for farmers this season. The risk of yield loss could be exacerbated by skyrocketing N-fertilizer prices resulting from the war in the Middle East. The U.S. fertilizer industry depends heavily on imports, and the nation’s prices have reportedly jumped roughly 32 percent in the past few weeks. Prices are expected to rise if the international crisis is prolonged. 



“With spring planting approaching, these price increases present additional challenges for producers already managing tight margins,” said Rituraj Khound, UNL post-doctoral research associate. At the same time, corn and soybean market prices have declined by 50 percent and 40 percent, respectively, since 2022. 

ALTERNATIVE CROPS

Advertisement


Santra and Khound suggest growers consider alternative cereal millet (proso millet and/or grain sorghum), a crop recognized for its ability to efficiently utilize moisture for producing a considerable yield. Its shallow, fibrous root system effectively takes up early-season water from the topsoil while conserving deeper soil water for subsequent crops. 

“Another crop, field pea, is a widely grown pulse crop that is gaining popularity in Nebraska and global health food markets as a source of plant proteins due to its nutrient-dense seeds,” Santra said. “It is also suitable for animal feed as soybean.” 

Field peas provide several advantages. Biological nitrogen (N) fixation, enhanced rotation efficiency with cereals, reduced fertilizer requirements, and adaptation to semi-arid conditions due to its early maturity and low seasonal water use. Field pea also helps interrupt common disease cycles when introduced into cereal rotations. 

Nebraska is among the states with notable field pea production. In 2025, USDA NASS cited Nebraska farmers harvested approximately 566,667 bushels of field peas from 20,000 acres of farmland. 

Dryland millet and peas are both low-input crops that require considerably less seasonal precipitation and minimal fertilizer and herbicide applications, thereby reducing production costs. 

Advertisement

In addition to lowering input requirements, both crops contribute to soil health. Field pea supports soil fertility through biological nitrogen fixation and enhanced soil microbial activity, while millet increases soil organic matter deposition, improves soil aggregation, and helps reduce erosion. Together, these crops offer a practical way to improve system resilience and maintain productivity in water-limited environments.   

In the face of a challenging growing season, Nebraska farmers could consider diversifying their farms by planting a small portion (e.g., 10-25 percent of the total acreage) of corn with millet, depending on feasibility and resources available on their farms. A similar approach could be used to reduce risk in soybean systems by allocating a portion of acres to dryland field pea.

Rituraj Khound, left, and Dipak K. Santra evaluate crop conditions of field peas at the UNL Panhandle Research Extension and Education Center. Photo by Chabella Guzman
Crops-RFP-040626
More Like This, Tap A Topic
news


Source link
Continue Reading

Trending