Connect with us

Milwaukee, WI

Remembering Bob Uecker

Published

on

Remembering Bob Uecker


Obviously, this is a Milwaukee Bucks blog. However, today, it’s more than that. Today, it’s not just a Milwaukee Brewers one as well, but a Milwaukee one.

Today, we lost an absolute legend in Bob Uecker.

Let me be frank. I don’t know where to start with this, so I’m just going to type out whatever comes into my head.

Bob Uecker embodied baseball to perfection. In its simplest form, baseball is a children’s game where all that’s needed is a ball and a stick.

Advertisement

When Ueck talked baseball, everyone felt transported back to that euphoric, childhood state where so many of us first found our love for the game.

Ueck achieved that in such an easy way — by being himself. Whether it was a close nail biter of a finish or the Brewers were getting trounced 14-1, it was always a must-listen. You never knew what stories would unfold with him behind the mic.

In a day and age where stats and accolades are endlessly analyzed and arguments of who’s the GOAT are overwhelmingly debated, Bob Uecker was the exact opposite.

By constantly making himself the butt of every one of his jokes, he brought not just laughs, but a sense of nostalgia association with the game of baseball from childhood, where smiles and laughter are the synonymous definitions of the game.

When I think of Ueck, that’s what I think of — my childhood.

Advertisement

Growing up, my family didn’t have cable. In fact, we’d finally get cable in 2008, which was the year the Brewers made their first playoff appearance since 1982.

Contrary to what my then 7th grade-self was thinking, I’m glad we didn’t have cable up until then. It allowed me to listen to Ueck on the airwaves.

It created an endless amount of memories that I’ll cherish the rest of my life.

I’ll never forget Eddie Pérez’s walk-off HR against the Reds in 2003 and Ueck’s, ““It hit the pole!” call. And then Wes Helms’ walk-off HR against the Expos in 2004. For that one, my brother and I were listening to a radio under our bed after we had been told it was bedtime, only to jump out of bed and run around the house (the excitement began before Ueck even started his second “Get up!” call.).

Then, you have the shared experiences that so many of us will treasure together. Sitting outside on a warm summer night, crickets chirping, the radio on, a warm breeze hitting your face, the smell of the grill tickling your nose, and Ueck’s voice gracing the airwaves.

Advertisement

When you sit back and remember those moments, you think back to the simplicity of it all. Bob Uecker, by being himself and just speaking words into a microphone, crafted himself as the voice of summer. And to me (and I’m sure many of you), that exact scene is, and will remain, the definition of summer.

So tonight, I welcome you all join me by heading out and to grabbing a pack of Usinger’s bratwurst and a pint of Cedar Crest ice cream to go along with it. That’s what I’ll be having for dinner.

And afterwards, I’ll be headed down to Miller Park (yes, I still call it that) to lay flowers by Ueck’s statue. If you’re in the Milwaukee area, please join me in doing so.

Ueck was Milwaukee. He was Wisconsin. Milwaukee Brewers games will never be the same. However, it’s through conversation with fellow fans that we’ll mourn, celebrate, smile, and joke about Ueck’s life — because that’s what he’d want us to do.

So, with that being said, I welcome you all to leave comments about some of your favorite Uecker calls. I know it’ll help me and I hope it’ll help you too.

Advertisement

RIP, Mr. Baseball. We’ll never forget you.



Source link

Milwaukee, WI

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person

Published

on

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person


Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

Advertisement

Milwaukee Police Department

have you seen him? milwaukee police searching for critically missing person

SOURCE: Milwaukee Police Department

Advertisement

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person

Advertisement

Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

WISN logo

Updated: 11:45 PM CDT Apr 10, 2026

Editorial Standards

Advertisement

The Milwaukee Police Department needs your help finding Bobby Smith, who police say is critically missing.Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.Smith is 5’11” and weighs 140 pounds. Police say he was last seen wearing a white T-shirt, black pants, and black shoes.If anyone knows where Smith may be, they are asked to call MPD District 7 at 414-935-7272.

The Milwaukee Police Department needs your help finding Bobby Smith, who police say is critically missing.

Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

Advertisement

Smith is 5’11” and weighs 140 pounds. Police say he was last seen wearing a white T-shirt, black pants, and black shoes.

If anyone knows where Smith may be, they are asked to call MPD District 7 at 414-935-7272.

Advertisement

`;
}

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

`;
}

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

Advertisement

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

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

Advertisement

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

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

Advertisement

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

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

Advertisement

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;

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

Advertisement

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

Continue Reading

Milwaukee, WI

Milwaukee stabbing suspect deemed ‘not competent’ for trial

Published

on

Milwaukee stabbing suspect deemed ‘not competent’ for trial


play

The Milwaukee man accused of stabbing his 44-year-old girlfriend to death then allegedly confessing to the crime in a text message was found not competent to stand trial and unable to assist in his own defense.

Mile Dukic has been in custody at the Milwaukee County Jail since his arrest in February, following the brutal killing of Amanda Varisco, 44.

Advertisement

Dukic is charged with first-degree intentional homicide, use of a dangerous weapon, and felony counts of bail jumping.

The doctor’s report was submitted to the court April 9, online court records show. At an April 10 hearing, Dukic, attending by Zoom, and his lawyers Arial Rosenberg and Theodore O’Reilly did not contest any of the report’s conclusions.

Court proceedings were ordered suspended by Circuit Court Judge David Swanson, and Dukic was assigned to the Department of Health and Family Services for institutional treatment to restore competency.

Swanson ordered the parties to return for a review hearing on July 9 to report progress.

Advertisement

Here’s what police and prosecutors say happened that night

According to a criminal complaint, Dukic and Varisco had a physical altercation on Feb. 3 at an apartment on the 3600 block of West National Avenue.

Milwaukee police were sent there that night to do a welfare check.

Officers arrived and talked to Varisco’s daughter and the daughter’s boyfriend at the scene. The daughter shared with police a text message she said she received from Dukic in which he claimed he had killed her mother, the complaint said.

Advertisement

Dukic told officers in an interview he and Varisco fought because Varisco had gotten a phone call from another man and that she told Dukic she wanted him to leave, the complaint reads.

Online court records show Dukic was out on bail in two cases at the time of Varsico’s death – one for stalking another woman, one for bail jumping.

Chris Ramirez covers courts for the Milwaukee Journal Sentinel. He can be reached at caramirez@usatodayco.com.



Source link

Advertisement
Continue Reading

Milwaukee, WI

Milwaukee man accused of appliance beating; victim later dies

Published

on

Milwaukee man accused of appliance beating; victim later dies


A Milwaukee man accused of beating a longtime friend with household appliances now faces additional scrutiny after the victim later died from his injuries.

What we know:

Advertisement

The accused is 51-year-old David Tisser. He has been charged with the following:

  • Battery to an elderly person – intentionally causing great bodily harm, use of a dangerous weapon
  • Battery to an elderly person – intentionally causing bodily harm

If convicted, he faces up to $110,000 in fines and up to 46 years in prison, including a possible five-year dangerous weapon enhancer. However, now that one of the victims has died, the Milwaukee County District Attorney’s Office will be reviewing additional charges.

Advertisement

The backstory:

According to a criminal complaint, the incident happened just after 7 p.m. April 1 at a building near 15th and National.

FREE DOWNLOAD: Get breaking news alerts in the FOX LOCAL Mobile app for iOS or Android

Advertisement

Investigators say Tisser first kicked in a door and injured a 72-year-old man before forcing his way into another room belonging to 64-year-old Steve Stegall.

Stegall’s daughter, Sheronica McIntyre, said her father knew Tisser and considered him a friend.

Advertisement

The complaint says Tisser struck Stegall in the head and face using multiple items inside the room, including a microwave, mini-fridge and television, before pushing him down a stairway as he attempted to leave.

What they’re saying:

 McIntyre reiterated this.

Advertisement

“He went to open the door, David Tisser forced himself in his room. He beat my dad severely with a microwave and picked up a refrigerator, yes, to beat my day with appliances over the head,” McIntyre said. “He threw him down the stairs severely and my dad says that’s when he hit his head. He was left with a TBI in severe bleeding up the brain.”

Stegall was taken to the hospital with a head wound requiring five staples, a forehead injury requiring 15 stitches and brain bleeding that doctors described as potentially life-threatening.

Advertisement

McIntyre said her father was placed in a coma for three days following the attack. She said he later woke up and described the assault.

“This happened to my dad, being a good person because he believed they’re showing grace,” McIntyre said.

SIGN UP TODAY: Get daily headlines, breaking news emails from FOX6 News

Advertisement

Stegall died Wednesday, according to McIntyre.

“I’m the only child, he’s my only parent, this is my last parent. This is my dad,” McIntyre said. “He was somebody my dad thought was a friend, so yeah, I want justice for my dad. You know he wasn’t insane. When he did this, he wasn’t insane. He knew exactly what he was doing.”

Advertisement

What’s next:

A competency exam has been ordered for Tisser, with the report expected in court May 4, according to court records.

His cash bond was set at $10,000.

Advertisement

The Source: Information in this report is from the Milwaukee County District Attorney’s Office and Wisconsin Circuit Court.

Crime and Public SafetyMilwaukeeNews



Source link

Advertisement
Continue Reading

Trending