Ilhan Omar Facing Expulsion Threat – GOP Lawmaker “Actively Considering” Removal from Congress

Ilhan Omar Facing Expulsion Threat – GOP Lawmaker “Actively Considering” Removal from Congress
Posted June 15, 2026
ST. PAUL, MN
— In a desperate, high-stakes cover-up operation, establishment Democrats have successfully weaponized a partisan procedural loophole to shield radical Squad member Representative Ilhan Omar from being forced to testify under oath about her disturbing connection to the infamous $250 million "Feeding Our Future" public corruption ring.
The tense, highly anticipated showdown occurred inside the Minnesota House Fraud Prevention and State Agency Oversight Committee, where a fierce 5-3 majority vote to subpoena Omar fell exactly one vote short of the six-vote supermajority threshold required under a controversial operating agreement.
The narrow partisan escape provides Omar with temporary relief, but it has triggered a massive national backlash, with conservative lawmakers immediately vowing to bypass local roadblocks and escalate the investigation straight to the federal level on Capitol Hill.
The Architect of the Welfare Heist
Minnesota Republicans have spent months meticulously mapping out Omar’s legislative footprints, directly linking her actions to one of the largest and most brazen public fraud schemes in modern American history. At the center of the legislative corruption matrix is the federal MEALS Act, a piece of pandemic-era legislation aggressively sponsored and pushed by Omar in March 2020.
Committee Chair Kristin Robbins delivered a blistering indictment of the lawless legislation, explaining that Omar’s bill served as a perfect Trojan horse that systematically stripped away all critical regulatory oversight and accounting guardrails from federal child nutrition programs.
By intentionally blinding state and federal auditors, the MEALS Act created the exact, chaotic vacuum required for a highly organized network of corrupt actors to siphon off hundreds of millions of taxpayer dollars intended for low-income children.
"Representative Omar had some role, whether inadvertent or not," Chairwoman Robbins stated with absolute clarity. "She passed the MEALS Act in March of 2020, and that took the guardrails off the federal school nutrition program which created the conditions for Feeding Our Future."
The Safari Restaurant Smoking Gun
The multi-million-dollar criminal enterprise, which has already resulted in massive federal indictments against ringleader Aimee Bock and dozens of prominent figures within Minneapolis's Somali community, utilized fake nonprofits, fabricated meal distribution logs, and shell corporations to fund lavish lifestyles, luxury cars, and seaside real estate.
The stymied committee subpoena sought to force Omar to surrender all private communications with the indicted fraudsters and account for her aggressive public promotion of Safari Restaurant—a notorious local establishment that served as a major epicenter for the illicit cash-laundering operation.
Investigators highlighted a damning, Somali-language television interview in which Omar used her massive political platform to praise the fraudulent restaurant as a thriving, essential meal site at the exact moment the conspiracy was actively bleeding taxpayers dry.
"We thought it’d be very helpful to understand from Rep. Omar’s perspective how she thought the MEALS Act impacted the community, why she brought it, what communication she had with the fraudsters," Robbins explained, exposing why the radical Left is terrified of letting Omar speak under penalty of perjury.
Escalating to the Federal Iron Fist
Rather than demanding accountability for stolen welfare funds, committee Democrats chose to dig in their heels, launching unhinged partisan defenses to run out the clock on the current legislative session.
Lead Democrat Representative Dave Pinto openly mocked the concept of oversight, revealing the Left's complete indifference to historic corruption by claiming the committee wouldn't even use the evidence against Omar if they found it. Pinto then shifted to a predictable defense strategy, whining that the current Trump administration and federal authorities have "no hesitation going after political enemies" and investigating deep-state allies.
While the corrupt local machine celebrates its hollow procedural victory, the loop is tightening around Omar faster than her progressive allies realize. Because Omar is a sitting member of the United States Congress, she remains completely exposed to the absolute authority of federal oversight committees in Washington, D.C.
Refusing to let the trail go cold, Chairwoman Robbins confirmed that she is already in active communication with powerful, conservative allies on Capitol Hill to initiate a sweeping federal congressional subpoena. With House oversight committees already running aggressive purges against pandemic-era waste and deep-state self-dealing, the Left’s short-lived cover-up has only ensured that Ilhan Omar’s reckoning will take place on the national stage.
Report this article
Select a reason for reporting:
Inaccurate information Copyright violation Spam / advertisement Offensive content Other '; footer.hidden = true; overlay.hidden = false; document.body.style.overflow = 'hidden'; } function hideSection() { if (section) section.hidden = true; } function openModal() { if (alreadyReported) { showSuccess(); return; } overlay.hidden = false; document.body.style.overflow = 'hidden'; } function closeModal() { overlay.hidden = true; document.body.style.overflow = ''; footer.hidden = false; overlay.querySelectorAll('input[name="report_reason"]').forEach(function(r) { r.checked = false; }); document.getElementById('reportMessage').value = ''; errorBox.hidden = true; submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; imageItems = []; imgGrid.innerHTML = ''; updateAttachBtn(); } btn.addEventListener('click', openModal); closeBtn.addEventListener('click', closeModal); cancelBtn.addEventListener('click', closeModal); overlay.addEventListener('click', function(e) { if (e.target === overlay) closeModal(); }); document.addEventListener('keydown', function(e) { if (!overlay.hidden && e.key === 'Escape') closeModal(); }); // --- Error helper --- function showError(msg) { errorBox.textContent = msg; errorBox.hidden = false; } // --- Submit --- submitBtn.addEventListener('click', function() { var selected = overlay.querySelector('input[name="report_reason"]:checked'); if (!selected) { showError('Please select a reason.'); return; } errorBox.hidden = true; submitBtn.disabled = true; var itemsToUpload = imageItems.filter(function(it) { return !it.uploadedUrl; }); if (itemsToUpload.length === 0) { doSubmit(selected.value); return; } submitBtn.textContent = 'Uploading…'; var done = 0, failed = 0; itemsToUpload.forEach(function(entry) { entry.statusEl.textContent = '…'; entry.statusEl.className = 'report-img-item__status'; entry.statusEl.hidden = false; resizeImage(entry.file, MAX_LONG_PX, function(resized) { uploadFile(resized, currentSlug, function(err, url) { done++; if (err) { failed++; entry.statusEl.textContent = 'Failed'; entry.statusEl.className = 'report-img-item__status err'; } else { entry.uploadedUrl = url; entry.statusEl.textContent = '✓'; entry.statusEl.className = 'report-img-item__status done'; } if (done === itemsToUpload.length) { if (failed > 0) { showError('Could not upload ' + failed + ' image(s). Remove the failed ones (red) or submit without them.' ); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; } else { doSubmit(selected.value); } } }); }); }); }); function doSubmit(reason) { submitBtn.textContent = 'Sending…'; var uploadedUrls = imageItems .map(function(it) { return it.uploadedUrl; }) .filter(Boolean); var payload = { reason: reason, message: document.getElementById('reportMessage').value.trim(), post_slug: currentSlug, post_url: window.location.href }; if (uploadedUrls.length) payload.image_urls = uploadedUrls; fetch('/api/post-report', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest' }, body: JSON.stringify(payload) }) .then(function(r) { return r.json(); }) .then(function(data) { if (data && data.ok) { markReported(currentSlug); alreadyReported = true; bodyEl.innerHTML = '✓ Thank you for your report.'; footer.hidden = true; setTimeout(function() { closeModal(); footer.hidden = false; hideSection(); }, 2000); } else { showError((data && data.message) ? data.message : 'Something went wrong. Please try again.'); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; } }) .catch(function() { showError('Connection failed. Please try again.'); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; }); } })();Comments 0
Posting as Guest '; } return; } var normalizedItems = items.slice().reverse(); var html = normalizedItems.map(function(comment) { var replies = Array.isArray(comment.replies) ? comment.replies : []; var repliesHtml = replies.map(function(reply) { return '' + '' + '' + escapeHtml(initials(reply.author_name)) + '' + '' + '' + escapeHtml(reply.author_name) + '' + escapeHtml(reply.time) + '' + '' + escapeHtml(reply.content) + '
' + '' + '' + '' + ''; }).join(''); return '' + '' + '' + escapeHtml(initials(comment.author_name)) + '' + '' + '' + escapeHtml(comment.author_name) + '' + escapeHtml(comment.time) + '' + '' + escapeHtml(comment.content) + '
' + '' + '' + '' + '' + (repliesHtml ? '' + repliesHtml + '' : '') + ''; }).join(''); if (mode === 'prepend') { listEl.insertAdjacentHTML('afterbegin', html); return; } listEl.insertAdjacentHTML('beforeend', html); } async function loadComments(page, mode) { var query = new URLSearchParams({ post_slug: postSlug, page: String(page), per_page: String(perPage), }); var response = await fetch('/api/post-comments?' + query.toString(), { method: 'GET', headers: { 'Accept': 'application/json' } }); var data = await response.json().catch(function() { return {}; }); if (!response.ok || data.ok === false) { throw new Error((data && data.message) || 'Cannot load comments.'); } var pagination = data.pagination || {}; currentPage = Number(pagination.current_page || 1); lastPage = Number(pagination.last_page || 1); totalCountEl.textContent = String((data.post && data.post.comment_count) || pagination.total || 0); loadMoreBtn.classList.toggle('comment-box__hidden', currentPage >= lastPage); renderComments(data.comments || [], mode); } async function postComment(content, parentId, feedbackTarget, submitTarget) { var authorName = ensureName(false); if (!authorName) { var forced = ensureName(true); if (!forced) { throw new Error('Please enter your name first.'); } authorName = forced; } var payload = { post_slug: postSlug, post_url: window.location.href, author_name: authorName, content: content, }; if (parentId > 0) { payload.parent_id = parentId; } if (submitTarget) submitTarget.disabled = true; if (feedbackTarget) { feedbackTarget.textContent = 'Submitting...'; feedbackTarget.style.color = ''; } try { var response = await fetch('/api/post-comments', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify(payload) }); var data = await response.json().catch(function() { return {}; }); if (!response.ok || data.ok === false) { throw new Error((data && data.message) || 'Cannot submit comment.'); } await loadComments(1, 'replace'); return true; } finally { if (submitTarget) submitTarget.disabled = false; } } form.addEventListener('submit', async function(event) { event.preventDefault(); var content = String(contentEl.value || '').trim(); if (!content) { setFeedback('Please enter comment content.', true); return; } submitBtn.disabled = true; setFeedback('Submitting...'); try { await postComment(content, 0); contentEl.value = ''; setFeedback('Comment submitted.'); } catch (error) { setFeedback(error.message || 'Cannot submit comment.', true); } finally { submitBtn.disabled = false; } }); listEl.addEventListener('click', function(event) { var replyBtn = event.target.closest('.comment-item__reply-btn'); if (replyBtn) { var row = replyBtn.closest('.comment-item'); if (!row) return; var formEl = row.querySelector('.comment-item__reply-form'); if (!formEl) return; listEl.querySelectorAll('.comment-item__reply-form').forEach(function(f) { if (f !== formEl) f.classList.add('comment-box__hidden'); }); formEl.classList.remove('comment-box__hidden'); var input = formEl.querySelector('textarea'); if (input) input.focus(); return; } var cancelBtn = event.target.closest('.comment-item__reply-cancel'); if (cancelBtn) { var rf = cancelBtn.closest('.comment-item__reply-form'); if (!rf) return; rf.classList.add('comment-box__hidden'); var rInput = rf.querySelector('textarea'); var rFeedback = rf.querySelector('.comment-item__reply-feedback'); if (rInput) rInput.value = ''; if (rFeedback) rFeedback.textContent = ''; } }); listEl.addEventListener('submit', async function(event) { var replyForm = event.target.closest('.comment-item__reply-form'); if (!replyForm) return; event.preventDefault(); var row = replyForm.closest('.comment-item'); if (!row) return; var parentId = Number(row.getAttribute('data-comment-id') || 0); var input = replyForm.querySelector('textarea'); var submit = replyForm.querySelector('.comment-item__reply-submit'); var feedback = replyForm.querySelector('.comment-item__reply-feedback'); var replyText = String((input && input.value) || '').trim(); if (!replyText) { if (feedback) { feedback.textContent = 'Please enter reply content.'; feedback.style.color = '#dc2626'; } return; } try { await postComment(replyText, parentId, feedback, submit); // setFeedback('Reply submitted.'); } catch (error) { if (feedback) { feedback.textContent = error.message || 'Cannot submit reply.'; feedback.style.color = '#dc2626'; } } }); changeNameBtn.addEventListener('click', function() { ensureName(true); }); loadMoreBtn.addEventListener('click', async function() { if (currentPage >= lastPage) return; loadMoreBtn.disabled = true; try { await loadComments(currentPage + 1, 'prepend'); } catch (error) { setFeedback(error.message || 'Cannot load more comments.', true); } finally { loadMoreBtn.disabled = false; } }); ensureName(false); loadComments(1, 'replace').catch(function(error) { setFeedback(error.message || 'Cannot load comments.', true); }); })();The Zombies’ “Time of the Season” Becomes a Psychedelic Anthem and Late-Blooming Classic in 1968

Released in 1968, “Time of the Season” by The Zombies arrived like a gentle echo in a year defined by chaos, rebellion, and experimentation.
With its hypnotic rhythm, hushed vocals, and eerie, call-and-response structure, the track didn’t just reflect the spirit of the era—it preserved it in sound.
Though it initially went unnoticed in the UK and underwhelmed at first in the U.S., it later surged up the American charts to become a surprise Top 10 hit in 1969.
Over time, it evolved into a quintessential psychedelic anthem, embodying both the dreamy optimism and fragile uncertainty that defined the tail end of the 1960s.
The Zombies had already made their mark in the British Invasion with hits like “She’s Not There” and “Tell Her No.”
Formed in St Albans, England, in 1961, the group stood apart from their peers.
While other bands leaned on blues riffs and brash vocals, The Zombies approached pop with jazz sensibilities, baroque arrangements, and restrained vocal performances.
Keyboardist Rod Argent and lead singer Colin Blunstone served as the creative anchors—Argent with his compositional sophistication and Blunstone with his airy, breathy delivery that seemed suspended in another world.
“Time of the Season” was written by Rod Argent during the sessions for the band’s second and final studio album, Odessey and Oracle.
The song was conceived at a time when The Zombies were already unraveling.
Tensions within the group, financial strain, and frustration with their record label loomed large.
Argent drew lyrical inspiration from the Summer of Love ethos still lingering in the cultural air, but he crafted a song that felt more introspective than celebratory.
“What’s your name? Who’s your daddy?” wasn’t a pickup line—it was a veiled meditation on identity and inheritance during a time of transformation.

The track was recorded at Abbey Road Studios in 1967, just weeks after The Beatles wrapped up Sgt. Pepper’s Lonely Hearts Club Band.
The atmosphere was ripe for experimentation, and Argent took full advantage of the studio’s resources.
Using a Vox Continental organ, he constructed the now-iconic riff—part trance, part groove—which gave the song its hypnotic foundation.
The breathy, conversational vocals from Blunstone offered a stark contrast to the usual psychedelic bombast of the day.
Rather than push for volume, the song whispered, inviting listeners into its groove like a secret.
Ironically, upon its release, the song fell flat in the UK and received little fanfare in the United States.
The Zombies had already disbanded by the time it started climbing the charts in early 1969, propelled by underground radio and growing demand in the U.S.
It eventually peaked at No. 3 on the Billboard Hot 100, giving the band their biggest American success.
The irony was not lost on the group—by the time they had their greatest hit, they no longer existed.
Culturally, “Time of the Season” became a touchstone for the psychedelic era, though it didn’t rely on the usual sonic tropes.
There were no screaming guitars or overloaded effects pedals—just a haunting sense of space and rhythm.
It captured a more introspective, sensual side of psychedelia, aligning more closely with the spiritual and poetic undercurrents of the late 1960s.

It was a song for twilight, not for protest marches or festivals.
The unexpected success of the song brought renewed attention to Odessey and Oracle, which had been largely ignored upon release.
Critics began reevaluating the album, eventually hailing it as one of the most innovative and beautiful records of the psychedelic period.
For The Zombies, it was a bittersweet moment—validation arriving after the curtain had already closed.
Still, the song’s popularity opened doors for the surviving members to pursue solo projects and future reunions.
Its influence can be felt in the works of artists who followed, particularly those who embraced subtlety over spectacle.
Bands like Air, The Flaming Lips, and even Tame Impala have drawn from its dreamy, syncopated style.
“Time of the Season” helped show that psychedelic rock didn’t need to scream—it could float, drift, and linger.
Over the decades, the song has been covered, sampled, and reinterpreted by a wide range of artists, from hip-hop producers to indie rockers.
Eminem used a portion of the song in his track “Rhyme or Reason,” and its unmistakable bass line and organ riff have appeared in film soundtracks and television series, often deployed to evoke a mood of wistful retrospection or swirling nostalgia.
Around the time the song finally found success, Colin Blunstone had already stepped away from music, working in insurance before slowly returning to the studio in the 1970s.
Rod Argent, meanwhile, formed his own band, Argent, and achieved chart success with songs like “Hold Your Head Up.”

Yet “Time of the Season” remained a defining chapter—an echo from a project that was almost lost to time.
Its long-term legacy is undeniable.
It continues to feature in documentaries, playlists, and retrospectives about the 1960s, often cited as one of the era’s most enduring and enigmatic tracks.
Despite its late bloom, it has become one of The Zombies’ most recognizable and celebrated works, alongside “She’s Not There.”
In 2019, the band was inducted into the Rock and Roll Hall of Fame, with this song standing as a testament to their timeless appeal.
The track also helped shape how music historians view commercial failure.
It’s a case study in how timing, radio, and cultural shifts can breathe life into a song long after its creators have moved on.
“Time of the Season” demonstrated that art sometimes needs the right moment to bloom—and that moment isn’t always when the ink dries on a record contract.
More than five decades later, “Time of the Season” remains a song out of time—ethereal, seductive, and strangely eternal.
For a band that was already fading when it was released, the song became a kind of resurrection.
For the world, it captured a fleeting moment when everything seemed on the verge of change.
Ultimately, it’s a song that refuses to be forgotten.
Like a memory that resurfaces in a quiet moment, “Time of the Season” drifts through the decades, still asking that curious, whispered question: “What’s your name? Who’s your daddy?”
And in doing so, it reminds us that even the most subtle voices can leave the deepest echoes.
4 minutes read