Connect with us

Iowa

Iowa State women’s basketball team adds transfer guard from Kent State

Published

on

Iowa State women’s basketball team adds transfer guard from Kent State


Iowa State women’s basketball team adds transfer guard from Kent State

Advertisement

ROUND PICK. WE’LL BE PULLING FOR HIM. THE DRAFT STARTS THURSDAY, APRIL 23RD. CYCLE IN. WOMEN LOST NEARLY THEIR ENTIRE ROSTER THURSDAY. THEY GOT ONE BACK. MAYA BABBITT IS COMING OVER FROM KENT STATE. SHE LED THAT TEAM AT 16 POINTS PE

Advertisement

Iowa State women’s basketball team adds transfer guard from Kent State

Updated: 10:40 PM CDT Apr 9, 2026

Editorial Standards

Advertisement

Iowa State got a strong start on its 2026 transfer class Thursday.Kent State guard Mya Babbitt announced her commitment to Iowa State.Babbitt, a 5’8″ guard from Papillion, Nebraska, has been a two-year starter for the Golden Flashes and earned second-team All-MAC honors in 2025-26 after averaging 16.1 points and 4.0 rebounds per game. She also set the Kent State record for 3-pointers in a season as a sophomore, making 83 3-pointers at a 41.5% clip.Babbitt is the first incoming transfer to announce her commitment to Iowa State this offseason. She will have one year of eligibility remaining.The Cyclones are tasked with replacing nearly the entire roster from 2025-26 after nine players entered the transfer portal.Senior-to-be Arianna Jackson has announced her return, as has reserve guard Freya Jensen. Iowa State also brings in highly touted recruit Macy Comito. Comito led Carlisle High School to its first state title this winter.» Subscribe to KCCI’s YouTube page» Download the free KCCI app to get updates on the go: Apple | Google Play

Iowa State got a strong start on its 2026 transfer class Thursday.

Advertisement

Kent State guard Mya Babbitt announced her commitment to Iowa State.

Babbitt, a 5’8″ guard from Papillion, Nebraska, has been a two-year starter for the Golden Flashes and earned second-team All-MAC honors in 2025-26 after averaging 16.1 points and 4.0 rebounds per game. She also set the Kent State record for 3-pointers in a season as a sophomore, making 83 3-pointers at a 41.5% clip.

This content is imported from Twitter.
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.

Advertisement

Babbitt is the first incoming transfer to announce her commitment to Iowa State this offseason. She will have one year of eligibility remaining.

The Cyclones are tasked with replacing nearly the entire roster from 2025-26 after nine players entered the transfer portal.

Senior-to-be Arianna Jackson has announced her return, as has reserve guard Freya Jensen. Iowa State also brings in highly touted recruit Macy Comito. Comito led Carlisle High School to its first state title this winter.

» Subscribe to KCCI’s YouTube page

» Download the free KCCI app to get updates on the go: Apple | Google Play

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

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

`;
}

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

Loading more articles…



Source link

Advertisement

Iowa

New York Times/Siena Polls in Alaska, Iowa, North Carolina, and Ohio – Siena Research Institute

Published

on

New York Times/Siena Polls in Alaska, Iowa, North Carolina, and Ohio – Siena Research Institute


  • Alaska: Sullivan 47% – Peltola 45%
  • Iowa: Hinson 48% – Turek 46%
  • North Carolina: Cooper 50% – Whatley 43%
  • Ohio: Husted 50% – Brown 47%

All Toplines

All Crosstabs

AK Toplines

Advertisement

AK Crosstabs

IA Toplines

IA Crosstabs

NC Toplines

NC Crosstabs

Advertisement

OH Toplines

OH Crosstabs

“The fight for control of the U.S. Senate is on. Republicans hold razor thin leads in Alaska, Iowa and Ohio while in North Carolina, the former governor holds an early 7-point advantage,” according to Siena Research Institute’s Executive Director, Don Levy. “Of the six states we polled, these four as well as Maine and Texas, all except for North Carolina are well within the margin of error.”

Contact Information:

Siena Research Institute Director, Dr. Don Levy is available starting at 8:30 AM ET Wednesday, July 1st, to discuss the findings.

Advertisement

Levy can be reached at (518)-284-3551 or don.levy@reconmr.com to arrange for interviews in person or via phone.



Source link

Advertisement
Continue Reading

Iowa

Iowa judges take ICE to task over ‘astonishing conduct’ and violations of court orders

Published

on

Iowa judges take ICE to task over ‘astonishing conduct’ and violations of court orders


CEDAR RAPIDS, Iowa (Iowa Capital Dispatch) – Two federal judges in Iowa have sharply criticized government officials for repeatedly violating the law in immigration cases, with one Iowa ICE enforcement officer held in contempt for “astonishing conduct” and willfully violating a court order.

The two cases, each handled by a different federal judge, involve Immigration and Customs Enforcement officials who have moved detainees out of Iowa jails and the court’s jurisdiction while the individuals have pending immigration cases before the court.

The judge in one of the two cases took aim at the U.S. Attorney’s Office for the Southern District of Iowa, saying “the court expects better” of assistant U.S. attorneys who, she said, should be working in the interests of justice. The judge also criticized ICE and the U.S. Department of Homeland Security for what she called their “unprecedented disregard for court orders and continued failure to follow the law.”

In the second case, the chief judge of the Southern District of Iowa referenced ICE’s “record of defying court orders,” and warned the federal government that “noncitizens are not bargaining chips to be shifted from district to district as litigation strategy.”

Advertisement

ICE officer held in contempt

The first of the two Iowa cases involves Pardeep Saini, 22, of Sacramento, California, who was pulled over by Iowa State Patrol Trooper Aaron Taylor in February 2026 along Interstate 80 in Jasper County. Taylor instructed Saini to go to a weigh station where, according to court records, ICE officials were waiting.

At the weigh station, Taylor ticketed Saini for failing to stop at the weigh station prior to being pulled over and turned him over to ICE officials, who arrested him on the grounds that his student visa had been revoked. Saini was then taken to the Polk County Jail and detained.

Saini’s attorney filed a lawsuit in U.S. District Court, seeking his client’s immediate release, and on March 19, 2026, U.S. District Judge Rebecca Goodgame Ebinger ordered the U.S. Department of Justice to show cause as to why Saini was not being illegally detained. At the time, Ebinger also ordered federal officials to refrain from moving Saini out of the Southern District of Iowa while the case was pending.

Without notifying the court, ICE officials then transferred Saini from the Polk County Jail in Iowa to a detention facility in McCook, Nebraska. Court records show that ICE Supervisory Detention and Deportation Officer Quintin Erdman later testified that while there was a general understanding that individuals such as Saini would not be transferred out of a judicial district while their court case was pending, ICE officers didn’t place a hold on those detainees to prevent their removal and instead merely noted the pending case in the detainees’ file.

According to court records, Erdman testified that while ICE Deportation Officer Daniel Archer would have been aware of Saini’s pending court case, Archer nevertheless approved Saini’s transfer to Nebraska on April 1, 2026 — almost two weeks after the court issued its order blocking any such transfer.

Advertisement

Erdman testified he became aware of the violation of the court’s order on April 9 or 10, 2026, and acknowledged that he did not notify the court or consult with the U.S. Attorney’s Office on the issue. Instead, he testified, he twice sought guidance from ICE’s own Office of the Principal Legal Advisor, which advised him both times to keep Saini in Nebraska.

Court records show that Assistant U.S. Attorney Andrew Kahl became aware of the violation when Saini filed court papers indicating his presence at a bond hearing held in Nebraska. On June 11, 2026, two days after learning of the violation, Kahl disclosed to the Judge Ebinger that Saini had been transferred from Iowa to Nebraska, but he did so only in a footnote in a court filing.

In reviewing the matter, Ebinger stated that Erdman had known of the violation of the court’s order for more than two months without ever disclosing it to the U.S. Attorney’s Office or to her.

“Astonishingly,” Ebinger noted, at the time of a June 23, 2026, hearing in Saini’s case, “Saini remained in Nebraska despite Erdman becoming aware of the violation of the court’s order on April 9 or 10, 2026, (and) Assistant U.S. Attorney Kahl becoming aware of the violation of the court’s order on June 9, 2026.”

Judge cites ‘unprecedented disregard for court orders’

In her court order responding to the government’s actions, Ebinger observed that “this is not the first time the federal respondents have violated a court order to keep immigration detainees in this district,” adding that they had violated court orders regarding immigration detainee transfers “in matters before every district judge in this district over the past two months … And these violations are not isolated to this district. Courts across the country are struggling with an unprecedented disregard for court orders and continued failure to follow the law.”

Advertisement

Ebinger ruled that Erdman had “knowingly and willfully violated the court’s order” and, rather than take corrective action by returning Saini to Iowa, he had instead perpetuated the violation. “He made no effort, at any point, to bring his agency into compliance,” Ebinger found.

Ebinger concluded that while Erdman was given “plainly erroneous advice” by ICE’s Office of the Principal Legal Advisor, that did not “relieve Erdman of his duty to follow the law, comply with court orders, and comport with his ethical obligations to the court, his agency, and immigration detainees.”

Ebinger said an aggravating factor was Erdman’s action in another recent case involving a different ICE detainee, Abhishek Kumar, who, like Saini, was detained as part of “Operation ICE Wall” involving ICE and the Iowa State Patrol.

Court records show that in that case, Erdman admitted Kumar had been transferred out of the Southern District of Iowa in violation of a court order. The records show Erdman then told the court steps had been taken to ensure similar violations didn’t occur in the future. At the time Erdman made those claims, Ebinger noted in her recent order, he had been aware, for two weeks, of the violation in Saini’s case but said nothing about it.

At the same time Erdman was attesting to ICE’s noncompliance in the Kumar matter, he chose to remain silent as to the exact same noncompliance in this matter.

Advertisement

– U.S. District Judge Rebecca Goodgame Ebinger

“At the same time Erdman was attesting to ICE’s noncompliance in the Kumar matter, he chose to remain silent as to the exact same noncompliance in this matter,” Ebinger stated in her order. “Federal officials, including ICE officials and the federal respondents in this matter, are in a position of power over numerous lives. Detainees’ rights depend on these officials complying with the law and court orders … It is untenable that federal officials refuse to meet their obligation to follow the law and court orders, especially in this context … This is astonishing conduct and exceedingly unacceptable.”

Ebinger ruled Erdman was in civil contempt and admonished him for his conduct in the case, warning him that any future violations could result in sanctions.

While Erdman told Ebinger that ICE has implemented a plan to prevent court-prohibited transfers in the future, the judge said she did not find that assertion convincing and noted that “ICE continues to struggle to follow the law and court orders.”

Ebinger ordered Erdman to conduct a review of all Southern District of Iowa cases in which ICE detainees are challenging their detention and to then file a statement with the court attesting to the fact that all of those individuals remain in the district.

Advertisement

In her order, Ebinger also reminded the U.S. Attorney’s Office for the Southern District of Iowa of its “ethical obligations to the court and the Iowa Bar.” She noted Kahl’s footnoted disclosure to the court, made two days after he became aware of the violation, calling it “insufficient” in meeting those obligations.

“The court expects better, particularly from assistant U.S. attorneys,” Ebinger stated. “The court will not tolerate willful disobedience of judicial orders.”

MacKenzie Benson Tubbs, the public information officer for the U.S. Attorney’s Office for the Southern District of Iowa, did not respond Tuesday to messages from Iowa Capital Dispatch seeking comment.

Chief judge: ‘Noncitizens are not bargaining chips’

The second recent Iowa case that has resulted in a judge taking federal officials to task over their handling of an immigration case involves Osmar Jose Arraiz Montilla. He was originally detained in Cedar Rapids, within the Northern District of Iowa, before being transferred to the Southern District of Iowa while his court challenge was still pending.

In that case, the judge in the Northern District had not issued an order explicitly barring such a transfer. But the chief judge of the Southern District, Stephanie M. Rose, noted in a court order this week that such transfers aren’t typical, since they would enable the government to “transfer noncitizens from district to district in search of a more favorable locale, or to forestall adjudication of the legality of their detention.”

Advertisement

Rose cited concerns about Montilla’s transfer, given the government’s “record of defying court orders.” She noted that in the previous three weeks, the government had violated two orders prohibiting the transfer of immigration detainees outside the Southern District of Iowa.

“Noncitizens are not bargaining chips to be shifted from district to district as litigation strategy dictates,” Rose stated in her order. “If (Montilla’s) transfer was necessary to make room for other detainees, that interest does not justify defeating a court’s jurisdiction over a pending petition. If it was meant to impede (Montilla’s court challenge), the matter is graver still. Either way, this pattern of behavior is troubling.”

Rose stated that ICE’s transfer of Montilla and the resulting jurisdictional uncertainty it triggered “wasted two weeks of litigation and judicial resources in both the Northern District and Southern District of Iowa.”

Rose’s order bars ICE from transferring Montilla outside the Southern District of Iowa, but with the understanding that if the parties determine that the Northern District is better suited to handle the case, they can notify her so she can clear the way for Montilla’s transfer back to the Northern District.

As part of her order, Rose also directed the federal government to state in writing “the true reason for (Montilla’s) transfer from the Northern District of Iowa to the Southern District of Iowa.”

Advertisement

Copyright 2026 Iowa Capital Dispatch. All rights reserved.



Source link

Continue Reading

Iowa

Laid-off Iowa state IT workers receive offers from private company

Published

on

Laid-off Iowa state IT workers receive offers from private company



The offers come as Iowa transitions oversight of state websites and data to two private companies.

play

IT employees laid off as Iowa privatizes management of its government data and websites are receiving job offers from a private company contracting with the state, as promised by Gov. Kim Reynolds.

Cognizant Government Solutions, the New Jersey-based company tasked with taking over daily IT operations for Iowa’s executive branch, sent offer letters to state workers whose jobs are being terminated as a result of the transition, according to the governor’s office and a state employee who is part of the layoffs.

Reynolds, who initially announced the transition to Cognizant and Amazon Web Services on June 9, maintained that the roughly 200 impacted state employees would receive “individualized, competitive job offers” from Cognizant by June 25.

State employees have until July 10 to accept Cognizant’s offers before the two companies begin providing the state services on Aug. 3.

The governor has touted the transition as a continuation of her administration’s initiative to consolidate and centralize the state’s IT services, which her office says will save taxpayers more than $525 million over 10 years

Advertisement

“This isn’t easy. Nobody likes to make decisions like that. It’s hard. We are so fortunate to have just the workforce that we have at the state,” Reynolds said in a June 19 interview on PBS’s Iowa Press. “They are providing the services every single day. But I also have a responsibility to the taxpayers of Iowa and Iowa, and we can’t keep doing things the way we did 40 years ago.

“This is where industry is going. This is where government is going.”

A state employee who was part of the layoffs and who asked to remain anonymous for fear of jeopardizing their employment, said they received an offer June 25 that included less expansive health and retirement benefits compared to state plans and a salary slightly higher than their state earnings.

Amid the layoff announcement, multiple state IT workers faced confusion and fear over their employment status as they waited for clear confirmation on future work, wages or benefits with Cognizant.

Advertisement

During one of many meetings between employees, state and Cognizant, employees were told if they accept the Cognizant offer, their job descriptions will remain the same for one year, according to the laid-off employee.

The companies will adjust job descriptions or let workers pick a different contract, the worker said, but there are no guarantees of employment past the first year.

“We are eager to welcome you to the team! You are joining the Company at an exciting time, and we know your fresh thinking and expertise will help us accomplish great things,” a Cognizant offer letter obtained by the Register states.

The state will pay Cognizant and AWS nearly $420 million over the next decade, $80.4 million of which will go to AWS to shift the state’s data from dozens of data centers and thousands of physical servers to a cloud-based system, according to contracts.

Gov. Kim Reynolds: State data is ‘secure’

As Iowa transfers oversight of government websites and data to Cognizant and AWS, Reynolds insisted the information will remain safeguarded.

Advertisement

“It (state data) absolutely is secure,” Reynolds said on Iowa Press. “There are all kinds of contracts and MOU and things that you have to sign. And even when it came to like the HIPAA data, we’ve got a form that you have to sign that you can’t release any of the information. They (Cognizant and AWS) have absolutely no access to any of that data.”

A data privacy framework for Cognizant to deal with customer data and confidential information is laid out in the contract between the company and the state. Under the agreement, the company must keep state data “secure, and not disclose or use it for any purpose other than providing Services under the Agreement,” the contract states.

The company may only retain state data to perform IT services for Iowa or with prior written approval of the state.

Rapid Response Politics Reporter Maya Marchel Hoff can be reached at mmarchelHoff@usatodayco.com. You can find her on X (formerly Twitter) at @mmarchelhoff.



Source link

Advertisement
Continue Reading
Advertisement

Trending