Tragedy Strikes Congress - Top Democrat Representative Has Died, Mike Johnson Announces Passin

Tragedy Strikes Congress - Top Democrat Representative Has Died, Mike Johnson Announces Passin
Posted September 7, 2026WASHINGTON, D.C. — The United States House of Representatives was jolted on Wednesday morning following the sudden and unexpected death of Representative David Scott, a veteran Democratic lawmaker from Georgia. His passing instantly alters the fragile political mathematics in the lower chamber and triggers what is guaranteed to be a chaotic, high-stakes special election in the Atlanta suburbs.
The 80-year-old congressman, who had continuously represented a safely blue district in the Atlanta metropolitan area since first taking federal office in 2003, passed away after a sweeping political career that spanned more than half a century. His congressional office formally confirmed the death in a somber statement, sending immediate shockwaves through Capitol Hill.
While Scott's staff described his passing as "unexpected," they declined to provide an immediate cause of death, respectfully asking for privacy for his grieving family during this difficult time.
The tragic news arrives at a highly consequential moment for the United States Congress. The untimely death marks the fifth sitting House member to pass away during this current, highly contentious session—a tragic tally that includes one Republican and four Democrats.
A Razor-Thin Margin
With Scott's sudden departure, the balance of power in the House of Representatives shifts once again in a chamber where absolutely every single vote is critical. Following the vacancy, the House breakdown now stands at 217 seats held by the Republican majority, and 212 seats held by the Democratic minority.
For GOP leadership, navigating this razor-thin margin has been a daily, grueling challenge, and the unexpected vacancy in the Georgia delegation only adds to the complex calculus of passing major, conservative legislative initiatives.
House Speaker Mike Johnson (R-La.) was quick to issue a heartfelt statement crossing party lines, expressing his profound condolences. Setting aside the fierce partisan battles that define modern Washington, the Republican Speaker graciously noted that the veteran congressman had “spent the majority of his life in service to others.”
Betrayed by the Progressive Left
Despite the unified outpouring of grief from the Democratic establishment on Wednesday, Scott's final years in Washington were heavily marked by intense internal party friction and a ruthless, unapologetic push by younger progressive Democrats to force him out of power.
Scott was a prominent member of the New Democrat Coalition, a voting bloc of centrist, business-friendly Democrats—a demographic that is rapidly going extinct within the modern, far-left Democratic Party.
As the octogenarian's health visibly declined in recent years, leading to a series of health-related absences, he faced mounting, highly public calls from his own Democratic colleagues to step aside. The intra-party rebellion reached a boiling point following his last reelection campaign. In a highly publicized and controversial display of Washington ruthlessness, House Democrats actually voted to forcibly remove the veteran lawmaker from his prestigious position as the top Democrat on the powerful House Agriculture Committee.
Prioritizing aggressive party maneuvering over institutional seniority and respect, the progressive wing successfully ousted him, ultimately replacing him with Representative Angie Craig (D-Minn.).
A Legacy of Business and Agriculture
Before being unceremoniously dumped by his own caucus, Scott had chaired the highly influential Agriculture Committee from 2021 to 2023. During his tenure, he played a massive, instrumental role in shaping multiple comprehensive Farm Bills. He was widely recognized as a fierce advocate for expanding vital disaster assistance programs to protect vulnerable American farmers from crippling economic losses, and he aggressively supported funding for the nation's land-grant universities.
Unlike many career politicians, Scott's path to the halls of federal power was paved by a highly successful career in the private sector. After earning a prestigious Master of Business Administration (MBA) from the Wharton School at the University of Pennsylvania, he built a lucrative career in business, founding his own highly successful advertising firm in Atlanta before officially entering the political arena in 1974.
The Looming Special Election
Now, the political focus immediately shifts back to Georgia, where state law dictates a strict timeline for replacing the deceased representative.
Republican Governor Brian Kemp is legally mandated to officially call a special election within the next 10 days to fill the vacant 13th Congressional District seat. Under Georgia election statutes, that high-stakes special election must take place at least 30 days after the governor issues the call.
While the district remains heavily Democratic, the special election is expected to draw a massive, crowded field of ambitious local politicians vying for the rare open seat. Even before his passing, Scott was already facing multiple, well-funded primary challengers ahead of the upcoming election cycle, signaling that a fierce political battle was already brewing in the Atlanta suburbs.
He is survived by his wife of many years, Alfredia, their two children, and several beloved grandchildren.
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 GuestTrump admits live on CNN we're...

Trump admits live on CNN we're...
WASHINGTON, D.C. — The radical left is in a state of absolute, unvarnished panic, and this time, their primary target is one of their very own.
Following a deeply respectful and solemn phone interview between President Donald J. Trump and CNN anchor Jake Tapper regarding the tragic passing of Republican Senator Lindsey Graham, liberal viewers and mainstream media watchdogs completely lost their minds. Their apparent crime? Tapper treated the Commander-in-Chief with basic human decency, and President Trump dared to suggest that the notoriously biased network should return to objective journalism.
The highly publicized exchange occurred when President Trump graciously phoned into the network to honor the life and legacy of Senator Graham. Displaying true leadership and focus during a moment of national mourning, Trump explicitly declined to take the media's bait when pressed on other subjects, including the recent, highly successful U.S. military strikes on Iran. He kept the focus exactly where it belonged: on the passing of an American patriot.
However, it was a brief exchange at the end of the interview that sent the liberal echo chamber into a complete tailspin.
Addressing the historically hostile relationship between his administration and the network, President Trump bluntly and honestly stated his desire for fair, unbiased coverage.
“We’re trying to have CNN go on a normal path, and we’ll do that,” Trump declared on live national television, signaling his hope that the network would abandon its years-long crusade of fake news and return to the bedrock principles of objective, down-the-middle reporting.
Instead of launching into a combative, partisan argument, Tapper simply accepted the President's premise with basic professional courtesy.
“Well, I’m on a normal path right here, sir, and I appreciate your time. And thank you for calling in,” Tapper replied cordially, closing the segment by telling the President, “we would love to have you back sometime.”
The Left-Wing Backlash
In today’s hyper-polarized media landscape, treating a Republican president with respect is apparently a cardinal sin. The backlash from CNN's liberal viewership was immediate, brutal, and entirely unhinged.
Social media platforms were instantly flooded with outraged left-wing activists labeling Tapper an “enabler” and a “sycophant” simply for conducting a civil interview. Rather than appreciating a moment of bipartisan mourning for a deceased senator, the radical left demanded hostility, confrontation, and grandstanding.
One furious viewer took to social media to complain that it is not up to the president “to direct the ‘path’ any news organization follows.” The outraged user added that if CNN is buying into the concept of fair and normal coverage, the network should “close their doors, or officially merge with Fox.”
Another liberal critic hysterically framed the polite exchange as a sinister plot, writing: “Admitting they are trying to control the media.”
Grasping at Conspiracy Theories
Unable to comprehend that a journalist might simply be showing respect to the President of the United States, liberal media critics immediately resorted to spinning wild, baseless conspiracy theories to explain Tapper's behavior.
Left-wing pundits are now desperately attempting to link Tapper's polite demeanor to the Justice Department’s recent approval of Paramount Skydance’s acquisition of Warner Bros. Discovery, CNN’s parent company. The latest frantic narrative sweeping liberal circles suggests that the multi-billion-dollar merger depends on staying in the administration’s "good graces," twisting Trump's call for a "normal path" into a sinister warning rather than a simple plea for journalistic integrity.
These critics are pointing to statements Tapper made just months ago, where he declared on air that CNN’s job “is not to try and please the president or only report the statements he likes.”
Yet, to the millions of everyday Americans watching, the interview was not an example of a network bowing to a dictator, as the left breathlessly claims. It was a rare, refreshing moment of a mainstream media anchor treating a conservative leader with the dignity the office demands.
The hysterical reaction from the left perfectly illustrates the tragic reality of the modern progressive movement: they do not want a free press or objective reporting. They want a taxpayer-subsidized, anti-Trump resistance echo chamber. And the moment a reporter steps off that radical path to act "normal," the left will immediately try to destroy them.
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